/*


#042940 navy blue deep
    #005C53 sea green dark
    #9FC131 yellow greenish 
    #DBF227 yellow
    #D6D58E khaki
    #011F26 grey
    #A5A692 light grey 
    #BFB78F khaki
    #F2A71B yellow ocre
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Poppins:wght@400;600&family=Raleway:wght@400;600&display=swap&family=Hurricane');

  :root {
    --primary-color:        #057a8d;
    --secondary-color:      #f1c111;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --project-bg:           #f0f8ff;
    --menu-bg:              #171819;

    --title-color:          #15141a;
    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;

    --base-font-family:     'Inter', sans-serif;
    --title-font-family:    'Inter', sans-serif;
    --font-bold-family:     'Inter', sans-serif;
    --font-weight-bold:     bold;

    --h1-font-size:         42px;
    --h2-font-size:         32px;
    --h3-font-size:         24px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;

    --border-radius-large:  100px;
    --border-radius-small:  5px;
  }

  /*body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }*/

.mobile-only {
    display: none;
}

/* Show on screens smaller than 768px */
@media (max-width: 767.98px) {
    .mobile-only {
        display: block !important;
    }
}

.desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .desktop-only {
        display: block; /* or flex/grid */
    }
}
  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/
.handwriting {
    font-family: "Hurricane", cursive;
    font-weight: 400;
    font-size: 25px;
}

  h1,h2,h3,h4,h5,h6 {
    font-family: var(--title-font-family);
    line-height: inherit;
  }

  h1 {
    color: var(--title-color);
    font-size: var(--h1-font-size);
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: 100;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: 100;
    margin-bottom: 0;
  }

  h4 {
    color: var(--gray-color);
    font-family: var(--base-font-family);
    font-size: var(--p-font-size);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.5em;
  }

  b, 
  strong {
    letter-spacing: 0;
    color: var(--secondary-color);
  }


  /*  BLOCKQUOTES */
  .quote {
    position: relative;
    margin: 0;
  }

  .quote::after {
    content: "“";
    position: absolute;
    bottom: -80px;
    left: 20px;
    font-family: times;
    color: var(--gray-color);
    font-weight: var(--font-weight-bold);
    font-size: 14em;
    line-height: 0;
    opacity: 0.10;
  }

  blockquote {
    border-left: 5px solid rgba(0,0,0,0.05);
    display: block;
    margin: 42px 0;
    padding: 14px 22px;
    color: rgba(0,0,0,0.5);
  }


  /* BUTTON */
  .custom-btn {
    background: transparent;
    border: 2px solid var(--dark-color);
    border-radius: var(--border-radius-large);
    padding: 12px 26px 14px 26px;
    color: var(--dark-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    white-space: nowrap;
  }

  .custom-btn.btn-bg {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: transparent;
	transition: all .3s ease;
  }
  
  .custom-btn:hover,
  .custom-btn:focus {
    background: var(--dark-color);
    color: var(--white-color);
    border-color: transparent;
  }


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--secondary-color);
    outline: none;
    text-decoration: none;
  }

  ::selection {
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .section-padding {
    padding: 8em 0;
  }
  .section-padding-half {
    padding: 4em 0;
  }

  .google-map iframe {
    display: block;
    width: 100%;
  }



  /*---------------------------------------
    MENU             
  -----------------------------------------*/

  /*.navbar {
    background: var(--menu-bg);
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    padding: 1.5em;
  }

  .navbar-brand {
    color: var(--white-color);
    font-size: var(--h2-font-size);
  }

  .nav-link {
    color: var(--black-color);
    font-size: var(--menu-font-size);
    letter-spacing: 0.4px;
    margin: 0 1.6em;
    padding: 0.6em;
  }

  .nav-link.active,
  .nav-link:hover {
    color: var(--secondary-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact {
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius-large);
    color: var(--secondary-color);
    font-family: var(--font-bold-family);
    padding: 0.6em 2em 0.8em 2em;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact:hover,
  .navbar-expand-lg .navbar-nav .nav-link.contact.active {
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .navbar-nav .navbar-toggler-icon {
    background: none;
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }
*/


  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    position: relative;
    padding: 5em 0;
    overflow: hidden;
  }

  .hero-bg {
    background: linear-gradient(170deg, var(--primary-color) 64%, var(--white-color) 30%);
  }

  .hero-image {
    position: relative;
    top: 2em;
  }

.jumbotron-bg-image {
   /*  background-image: url('_content/EndoSynaSpaces.Shared/images/headerimg.png'); Replace with your image URL */
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image repetition */
    color: white; /* Change text color for readability if needed */
}

  /*---------------------------------------
     PROJECT              
  -----------------------------------------*/

  .project {
    background: var(--project-bg);
  }

  .project-wrapper {
    position: relative;
  }

  .project-wrapper img {
    border-radius: var(--border-radius-small);
  }

  .project-info {
    background: var(--white-color);
    border-radius: var(--border-radius-small);
    position: absolute;
    bottom: 32px;
    right: 32px;
    left: 32px;
    width: 90%;
    padding: 32px;
  }

  .project-info small {
    font-family: 'Inter';
    color: var(--gray-color);
    position: relative;
    top: 2px;
  }

  .project-info a {
    color: var(--primary-color);
  }

  .project-info .project-icon {
    background: var(--primary-color);
  }

  .project-icon {
    position: absolute;
    right: 30px;
    top: 40px;
    background: var(--dark-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--h2-font-size);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-left: 5px;
  }

  .owl-theme .owl-dots .owl-dot {
    outline: none;
  }

  .owl-theme .owl-dots .owl-dot span {
    background: var(--gray-color);
    width: 50px;
    height: 3px;
    margin:  35px 5px;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
  }

  .list-detail {
    margin-left: 1em;
    padding-left: 1em;
    position: relative;
  }

  .list-detail li {
    display: block;
    list-style: none;
    margin: 0.6em 0 0 0.8em;
  }

  .list-detail li::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0 16px 16px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    border-style: solid;
    position: absolute;
    left: 0;
  }

  .list-detail span {
    position: relative;
    bottom: 5px;
  }

  .client-info img {
    width: 100px;
    margin-right: 1em;
  }



  /*---------------------------------------
      ABOUT            
  -----------------------------------------*/

  .about {
    position: relative;
    overflow: hidden;
  }

  .about-image img {
    display: block;
    margin: 0 auto;
  }



  /*---------------------------------------
      BLOG            
  -----------------------------------------*/

  .blog-header {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
  }

  .blog-header img {
    border-radius: var(--border-radius-small);
    display: block;
  }

  .blog-header-info {
    background: linear-gradient(transparent,rgba(0,0,0,0.95));
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 2em;
  }

  .blog-header-info h3 {
    max-width: 80%;
  }

  .blog-header-info a {
    color: var(--white-color);
  }

  .blog-header-info a:hover {
    color: var(--secondary-color);
  }

  .blog-sidebar img {
    border-radius: var(--border-radius-small);
    width: 159px;
    margin-right: 22px;
  }

  .blog-sidebar h3 {
    font-size: 18px;
  }



  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .newsletter-form .form-control,
  .contact-form .form-control {
    box-shadow: none;
    background: var(--project-bg);
    border: 0;
    padding: 1.7em 1.3em;
    margin: 14px 0;
  }

  .newsletter-form button,
  .contact-form #submit-button {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    cursor: pointer;
    font-size: var(--p-font-size);
    line-height: 0px;
    padding: 1.5em 1.3em;
  }

  .newsletter-form button {
    background: var(--secondary-color);
  }



  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    background: var(--dark-color);
    padding: 7em 0 6em 0;
  }

  .site-footer a {
    color: var(--p-color);
  }

  .site-footer a:hover,
  .footer-icon {
    color: var(--secondary-color);
  }

  .footer-link li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 6em;
  }

  .copyright-text {
    margin-top: 5.3em;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 4em 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    font-size: var(--base-font-size);
    margin: 10px;
    text-align: center;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (min-width: 1200px) {

    .about-info h2 {
      max-width: 70%;
    }
  }

  @media screen and (min-width: 991px) {

    .project h2 {
      max-width: 32%;
      margin: 0 auto;
    }
  }

  @media screen and (max-width: 991px) {

    .hero {
      padding-top: 14em;
    }

    .hero-text {
      bottom: 2em;
    }

  /*  .navbar {
      padding: 1em;
    }

    .navbar-collapse {
      text-align: center;
      padding: 2.5em 0;
    }

    .nav-link {
      display: inline-block;
    }

    .navbar-expand-lg .navbar-nav .nav-link.contact {
      margin: 1em 0;
    }

    .copyright-text, 
    .footer-link, 
    .site-footer .social-icon {
      margin-top: 3em;
      padding: 0;
      text-align: left;
    }*/
  }

  @media screen and (max-width: 767px) {

    h1 {
      font-size: 36px;
    }

    h2 {
      font-size: 28px;
    }

    h3 {
      font-size: 22px;
    }

    .project-info {
      right: 0;
      left: 0;
      margin: 0 auto;
    }

    .footer-link, 
    .site-footer .social-icon {
      margin-top: 1em;
    }

    .copyright-text {
      margin: 2.5em 0 1em 0;
    }

    .footer-link li {
      margin-left: 0;
    }
  }


/*body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}*/

body {
    margin: 0;
    padding: 0;
    line-height: 1.7em;
    font-family: 'Poppins',Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    background: #F2F2F2;
}

a:link {
    color: #0066AA;
    text-decoration: none;
}

a:visited {
    color: #0066AA;
    text-decoration: none;
}

a:active {
    color: #CC0066;
    text-decoration: underline;
}

a:hover {
    color: #CC0066;
    text-decoration: underline;
}

p {
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    font-style: normal;
    font-size: 14px;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
    line-height: 1.8em;
}

b {
    font-size: 110%;
}

em {
    color: red;
}

.description {
    max-width: 660px;
    margin: 10px;
    font-weight: 500;
    font-size: 1.5em;
    line-height: 2.2em;
    text-align: justify;
    color: #333;
}

.clear_left {
    clear: left;
}

.clear_right {
    clear: right;
}

.clear_both {
    clear: both;
}

.text_left {
    text-align: left;
}

.fb-like {
    float: left;
    margin-right: 12px;
    width: 90px;
    height: 30px;
}

.tn_list_box {
    margin: auto;
    max-width: 1040px;
}

.tn_list_inner {
    clear: both;
    margin-left: 3.3%;
}

#templatemo-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 120px;
    background: #FFFFFF;
}

.templatemo-logo {
    float: left;
    max-width: 290px;
    padding-top: 40px;
    padding-left: 40px;
}

.templatemo-slogan {
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    margin-top: 10px;
    padding-left: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #FFF;
}

#top_section {
    background: linear-gradient(#3AA0D4 10%, #0B6A9D 90%);
    background-image: url(https://templatemo.com/images/templatemo-header-9e.png);
    min-height: 186px;
    border-bottom: 5px solid #fff;
    box-shadow: 0px 3px 4px -2px #888;
}

.tm-menu {
    clear: both;
    float: right;
    margin: -36px 36px 0 0;
    max-width: 680px;
}

    .tm-menu a {
        float: left;
        display: block;
        margin: 4px;
        padding: 14px 22px;
        font-family: Raleway, Verdana, Arial, Helvetica, sans-serif;
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 0.6px;
        background: linear-gradient(#fff,#d8d8d8,#fff,#fff,#c6c6c6);
    }

        .tm-menu a:hover {
            background: linear-gradient(#CCC, #FFF, #FFF);
            text-decoration: none;
        }

#content_area {
    clear: both;
    background: #FFF;
}

#one_column {
    margin-left: 3.3%;
    min-height: 640px;
}

.one_col_rep {
    margin-left: 3.3%;
}

#content_column {
    float: left;
    width: 670px;
}

#right_column {
    float: right;
    width: 165px;
    line-height: 1.8em;
}

#left_column {
    float: left;
    padding-left: 10px;
    width: 300px;
}

#footer {
    clear: both;
    background: #06A;
    color: #FFF;
    text-align: center;
    padding: 20px;
}

    #footer a {
        color: #FFFFFF;
    }

#template_preview {
    margin: auto;
    margin-bottom: 20px;
    padding: 0px;
    min-height: 400px;
    text-align: center;
}

    #template_preview img {
        max-width: 100%;
        height: auto;
    }

#tm-dl-box {
    margin: 20px auto 30px auto;
    max-width: 910px;
    padding: 15px 30px;
    background: linear-gradient(#FFF, #EEE, #FFF, #EEE);
    border: 1px solid #ddd;
    border-radius: 10px;
}

.line {
    height: 2px;
    background: #0066AA;
}

.inner_tube {
    margin: 10px;
    overflow: hidden;
}

.right_box {
    margin-top: 10px;
    margin-right: 10px;
}

.templatemo_clear {
    clear: both;
    width: 100%;
    height: 0px;
    font-size: 0px;
}

.templatemo_link_box {
    float: left;
    width: 190px;
    line-height: 1.8em;
    padding: 0px;
    text-align: left;
}

.templatemo_info {
    color: #C00;
}

.title_tag {
    font-family: Raleway, Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #06a;
    background-image: linear-gradient(#d1eafb, #fff);
    padding: 38px 0px;
    margin-right: 3.1%;
    text-align: center;
    line-height: 1.8em;
}

.title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: normal;
    color: #009900;
}

.title_2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: normal;
    color: #009900;
}

.title_small {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #009900;
    font-weight: bold;
}

.subtitle {
    font-family: Raleway, Arial, Helvetica, sans-serif;
    font-size: 1.7em;
    font-weight: normal;
    color: #CC0066;
}

/* 200x200 starts */

#live-view {
    position: fixed;
    left: 0;
    top: 0;
    /*	top: 90px;
	height: calc(100% - 90px); */
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#templatemo_top_ads {
    position: absolute;
    top: 5px;
    left: 0px;
}

#templatemo_content {
    position: inherit;
    padding-top: 355px;
}

.tm_banner {
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    text-align: center;
}

.tm_bn_tag {
    margin-left: -3.3%;
    width: 103.3%;
}

.float_left {
    float: left;
    width: 200px;
    margin-top: 20px;
}

.tm_mr10 {
    margin-right: 10px;
}

.tm_mr20 {
    margin-right: 20px;
}

.col3-ft {
    margin: 30px 3.2% 40px 0;
    max-width: 90%;
    padding: 60px 10%;
    color: #fff;
    border: 6px #fff solid;
    box-shadow: 2px 2px 10px #999;
}

.bg22 {
    background: linear-gradient(45deg, #5A5A5A, #303030);
    padding: 40px 20% 40px 90px;
}

.col3-ft p {
    line-height: 2.4em;
    font-size: 1.3em;
}

.col3-ft a {
    color: #9CF;
}

    .col3-ft a:hover {
        color: #FF6;
    }

.col3-ft h1 {
    padding: 10px 0;
    color: #fff;
    font-size: 3.3em;
    text-shadow: 1px 1px 2px #333;
}

.col2-360 {
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 760px;
}

    .col2-360 p {
        font-size: 15px;
        line-height: 2.2em;
        text-align: justify;
    }

    .col2-360 li {
        font-size: 1.4em;
        line-height: 2em;
        font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    }

.link_200 {
    float: left;
    margin: 0;
    padding: 0;
    width: 260px;
    text-align: left;
}

    .link_200 a {
        line-height: 2.4em;
        font-size: 1.2em;
        font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    }

.holder_200 {
    float: left;
    margin: 0px 20px 0px 0px;
    padding: 5px;
    width: 202px;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

/* carbon BEGIN */

#carbonads {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#carbonads {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 330px;
    background-color: hsl(0, 0%, 98%);
    box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
}

    #carbonads a {
        color: inherit;
        text-decoration: none;
    }

        #carbonads a:hover {
            color: inherit;
        }

    #carbonads span {
        position: relative;
        display: block;
        overflow: hidden;
    }

    #carbonads .carbon-wrap {
        display: flex;
    }

.carbon-img {
    display: block;
    margin: 0;
    line-height: 1;
}

    .carbon-img img {
        display: block;
    }

.carbon-text {
    font-size: 13px;
    padding: 10px;
    line-height: 1.5;
    text-align: left;
}

.carbon-poweredby {
    display: block;
    padding: 8px 10px;
    background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    font-size: 9px;
    line-height: 1;
}
/* carbon END */

.thumbnail_270_carbon {
    float: left;
    margin: 20px 2.2% 20px 0px;
    position: relative;
    width: 22.518%;
}

.thumbnail_270 {
    float: left;
    margin: 20px 2.2% 20px 0px;
    position: relative;
    width: 22.518%;
    background-color: #F4F4F4;
    border-bottom: 3px solid #e4e4e4;
    border-bottom-right-radius: 24px;
}

    .thumbnail_270 img {
        width: 100%;
        height: auto;
    }

.tn_desc {
    min-height: 140px;
}

.thumbnail_360 .tn_desc {
    min-height: 120px;
}

.thumbnail_270 p {
    padding: 0 12px 10px 20px;
}

.tm_silver_360 {
    float: left;
    margin: 20px 2.5% 20px 0;
    position: relative;
    width: 28.2%;
    padding: 8px;
    padding-right: 10px;
    background: linear-gradient(#FFF, #E8E8E8, #FFF);
    border: 1px solid #d6d6d6;
    border-bottom: 4px solid #d6d6d6;
    border-top: 4px solid #d8d8d8;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 14px;
}

    .tm_silver_360 p {
        padding: 0 6px 0 12px;
    }

    .tm_silver_360 img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        border: 1px solid #ddd;
    }

    .tm_silver_360 .tn_desc {
        min-height: 120px;
    }


.thumbnail_360 {
    float: left;
    margin: 20px 3.3% 40px 0px;
    position: relative;
    width: 30.0236%;
    background-color: #F4F4F4;
    border-bottom: 4px solid #e4e4e4;
    border-bottom-right-radius: 30px;
}

    .tm_silver_360 h2, .thumbnail_360 h2, .thumbnail_270 h2 {
        font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
        font-weight: 500;
        text-align: center;
        font-size: 1.4em;
    }

    .thumbnail_360 p {
        padding: 0 12px 10px 20px;
    }

    .thumbnail_360 img {
        width: 100%;
        height: 100%;
    }

.thumbnail_200 {
    float: left;
    margin: 10px 20px 10px 0px;
    padding: 5px 5px 6px 5px;
    position: relative;
    /*new*/
    width: 200px;
    background: #F2F2F2 url("https://templatemo.com/images/tm_2014_tn_bg7a.jpg");
    border: 1px solid #DDDDDD;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-align: left;
}

.tn_des {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 5px 5px 6px 5px;
    padding: 30px 8px 5px 8px;
    height: 165px;
    font-weight: normal;
    background: rgba(40, 80, 120, 0.84);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#D6285078', endColorstr='#D6285078'); /* IE */
    color: #fff;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

    .tn_des a {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 5px 8px;
        width: 184px;
        height: 242px;
        color: #fff;
        font-weight: bold;
    }

        .tn_des a:hover {
            text-decoration: none;
        }

.thumbnail_200:hover .tn_des {
    visibility: visible;
    opacity: 1;
}

.thumbnail_200_label {
    background: #F2F2F2 url("https://templatemo.com/images/tm_2014_tn_bg7a.jpg");
    border: 1px solid #DDDDDD;
    border-bottom: 1px solid #E9E9E9;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    height: 20px;
    margin: 0;
    padding: 4px 0px 8px 0px;
}

    .thumbnail_200_label a {
        padding: 6px;
        padding-left: 8px;
        display: block;
    }

.thumbnail-full {
    height: 400px;
    overflow: hidden;
}

.thumbnail-title {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
    font-weight: normal;
    color: #0066AA;
    padding: 8px 0px 4px 2px;
    margin: 0;
}

.thumbnail {
    margin-bottom: 8px;
}

.col_200 {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 232px;
}

.thumbnail-long, .plain_200 {
    float: left;
    margin: 10px 20px 10px 0px;
    padding: 5px;
    width: 200px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
}

.home_right {
    clear: both;
    float: right;
    margin-right: 3.3%;
}

.holder_center {
    margin: auto;
    max-width: 360px;
}

.holder_right {
    float: right;
    margin: 0px 20px 0px 0px;
    padding: 5px;
}

.view-all a {
    clear: both;
    float: left;
    display: block;
    padding: 15px;
    width: 240px;
    border: 1px solid #DDDDDD;
    background: #F2F2F2 url("https://templatemo.com/images/flashmo_download_bg.jpg");
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #06A;
    text-align: center;
    border-radius: 6px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 20px;
}

    .view-all a:hover, .flashmo_download a:active {
        background: #DDDDDD;
        color: #555555;
        text-decoration: none;
    }


.h10 {
    height: 10px;
}

.h20 {
    height: 20px;
}

.h25 {
    height: 25px;
}

.h30 {
    height: 30px;
}

.h60 {
    height: 60px;
}

.h100 {
    height: 100px;
}

.tm-dl-blue a {
    float: left;
    display: block;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 16px 30px;
    background: linear-gradient(#39C, #259);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
}

    .tm-dl-blue a:hover, .tm-dl-blue a:active {
        background: linear-gradient(#259, #39C);
        color: #FFFFF;
        text-decoration: none;
    }

.tm-dl-green a {
    float: left;
    display: block;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 16px 30px;
    background: linear-gradient(#3A6, #274);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
}

    .tm-dl-green a:hover, .tm-dl-green a:active {
        background: linear-gradient(#274, #3A6);
        color: #FFF;
        text-decoration: none;
    }

.tm-dl-teal a {
    float: left;
    display: block;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 15px 30px;
    background: linear-gradient(#508b9d, #305060);
    color: #FFF;
    font-size: 1.35em;
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    border-radius: 8px;
    box-shadow: 2px 2px 3px #161616;
    transition: all 0.3s ease;
}

    .tm-dl-teal a:hover, .tm-dl-teal a:active {
        background: linear-gradient(#629bAd, #3C5AAF);
        color: #FFF;
        text-decoration: none;
    }

.tm-dl-purple a {
    float: left;
    display: block;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 16px 30px;
    background: #4A5878;
    border: 1px solid #ABD;
    color: #FFF;
    border-radius: 8px;
    font-size: 16px;
}

    .tm-dl-purple a:hover, .tm-dl-purple a:active {
        background: #5C699A;
        color: #FFF;
        text-decoration: none;
    }

.tm-dl-grey a {
    float: left;
    display: block;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 16px 30px;
    background: #727E8E;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
}

    .tm-dl-grey a:hover, .tm-dl-grey a:active {
        background: #58626D;
        color: #FFFFF;
        text-decoration: none;
    }

.tm-dl-grey-premium a {
    float: left;
    display: block;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 16px 30px;
    background: linear-gradient(#626466, #303132);
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 1.35em;
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    box-shadow: -1px -1px 1px #999;
    transition: all 0.3s ease;
}

    .tm-dl-grey-premium a:hover, .tm-dl-grey-premium a:active {
        background: linear-gradient(#404040, #606472);
        color: #FFFFF;
        text-decoration: none;
    }

.google_sb {
    width: 70%;
    margin-left: 10px;
}

/* 200x200 ending */

form label {
    font-size: 14px;
    font-weight: bold;
}

.form_field, #goog-wm-qt {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    border: 1px solid #999999;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 85%;
    max-width: 450px;
}

.form_button, #goog-wm-sb {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border: 1px solid #999999;
    background: #EEEEEE;
}

.top_links {
    margin: 0px 0px 20px 0px;
    padding: 2px 0px 5px 30px;
    background: #045C97;
    font-size: 11px;
}

    .top_links a:link, .top_links a:visited {
        color: #FFFFFF;
    }

    .top_links a:active, .top_links a:hover {
        color: #CCFF00;
    }

.thumbnail_frame {
    float: left;
    margin: 10px 4px 4px 10px;
    padding: 5px;
    width: 140px;
    background: #F8F8F8;
    border: 1px solid #DDDDDD;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
}

.thumbnail_title {
    font-weight: bold;
}

.blog_post a:link, .blog_post a:visited {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #333333;
    line-height: 1.7em;
}

.blog_post a:active, .blog_post a:hover {
    color: #AA0000;
}

.page_navigation {
    margin-bottom: 10px;
    text-align: center;
}

div.paging {
    margin: 0px;
    padding: 0px;
}

    .paging_info, div.paging a, div.paging span.current, div.paging span.disabled {
        display: inline-block;
        margin: 0 12px 12px 0;
        padding: 8px 14px;
        border-radius: 6px;
    }

    div.paging a, .paging_info {
        background-color: #FFF;
        color: #333;
        border: 1px solid #999;
    }

        div.paging a:hover, div.paging a:active {
            background-color: #CCC;
            color: #000;
            text-decoration: none;
        }

    div.paging span.current {
        background-color: #CCC;
        color: #000;
        font-weight: bold;
        border: 1px solid #999;
    }

    div.paging span.disabled {
        border: 1px solid #DDD;
        color: #AAA;
    }

@media (max-width: 1080px) {

    .tm-menu {
        margin: 10px;
    }

    .bottom_right {
        clear: both;
        margin-right: 30px;
    }

    .thumbnail_360 .tn_desc {
        min-height: 164px;
    }

    .thumbnail_360, .thumbnail_270 {
        width: 30.8%;
        margin: 20px 2.2% 20px 0px;
    }

    .tm_silver_360 {
        margin: 20px 2.3% 20px 0px;
    }

        .tm_silver_360 .tn_desc {
            min-height: 140px;
        }

    .col3-ft {
        padding: 50px 5%;
    }
}

@media (max-width: 768px) {

    .col2-360 {
        width: 96%;
    }

    .thumbnail_360 {
        width: 46.7%;
    }

    .thumbnail_270 {
        width: 47%;
    }

    .tm_silver_360 {
        width: 43.2%;
    }

        .tm_silver_360 .tn_desc {
            min-height: 164px;
        }

    .home_right {
        margin-right: 3.8%;
    }
}

@media (max-width: 680px) {
    #live-view {
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
    }

    .col3-ft .title {
        font-size: 26px;
    }

    .col3-ft p {
        line-height: 2.2em;
    }

    .tm-menu a {
        padding: 10px 14px;
        font-size: 1.1em;
        font-weight: 500;
    }
}

@media (max-width: 540px) {
    p, li {
        margin-right: 10px;
        font-size: 13px;
    }

    .bottom_right {
        margin-right: 10px;
    }

    .inner_tube {
        margin: 0;
        padding: 0;
    }

    .tm_banner {
        min-height: 320px;
    }

    .holder_200 {
        margin: 0 10px 10px 0;
        padding: 5px;
        width: 150px;
        font-size: 12px;
    }

    .thumbnail-long {
        margin: 5px 10px 10px 0px;
        padding: 5px;
        width: 150px;
    }

    .plain_200 {
        margin: 0px 10px 10px 0px;
        width: 43%;
    }

    .thumbnail-full {
        height: 300px;
    }

        .thumbnail-full img {
            width: 150px;
        }
}

@media (max-width: 480px) {
    .title {
        font-size: 22px;
    }

    .title_2 {
        font-size: 18px;
    }

    .thumbnail_360 h2, .thumbnail_270 h2 {
        font-size: 1.2em;
    }

    .tn_desc {
        height: 200px;
        min-height: auto;
        overflow: hidden;
    }

    .tm_silver_360 {
        width: 42%;
        margin: 10px 2% 10px 0px;
    }

        .tm_silver_360 p {
            padding: 0 3px 0 6px;
        }
}

@media (max-width: 360px) {
    .tm_silver_360 {
        width: 90%;
    }

    .tn_desc {
        height: 140px;
    }
}