
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  body {
    background: #fff;
    color: #666666;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
  }
  
  a {
    color: #1F94C3;
    transition: 0.5s;
  }
  
  a:hover, a:active, a:focus {
    color: #1F94C3;
    outline: none;
    text-decoration: none;
  }
  
  p {
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
  }
  
  /* Back to top button */
  .back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(45deg, #1F94C3, #1dc8cd);
    color: #fff;
    padding: 2px 20px 8px 20px;
    font-size: 16px;
    border-radius: 4px 4px 0 0;
    right: 15px;
    bottom: 0;
    transition: none;
  }
  
  .back-to-top:focus {
    background: linear-gradient(45deg, #1de099, #1dc8cd);
    color: #fff;
    outline: none;
  }
  
  .back-to-top:hover {
    background: #1dc8cd;
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    padding: 30px 0 20px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
  }
  
  #header #logo {
    float: left;
    
  }
  
  #header #logo h1 {
    font-size: 36px;
    margin: -4px 0 0 0;
    padding: 0;
    line-height: 1;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  #header #logo h1 a, #header #logo h1 a:hover {
    color: #fff;
  }
  
  #header #logo img {
    padding: 0;
    margin: 0; width: 270px;
  }
  
  
  embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}
  @media (max-width: 768px) {
    #header #logo h1 {
      font-size: 28px;
      margin-top: 0;
    }
    #header #logo img {
      /* max-height: 40px; */
      width: 200px;
    }
  }
  
  #header.header-fixed {
    transition: all 0.5s;
    position: fixed;
    padding: 20px 0;
  }
  
  /*--------------------------------------------------------------
  # Intro Section
  --------------------------------------------------------------*/
  #intro {
    width: 100%;
    height: 788px;
    background: url("../images/banner-bg.png") center top no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 115px;
    margin-top: 116px;
    position:relative;
  }
  
  
    /*#intro::before{*/
    /*    position:absolute;*/
    /*    content:'';*/
    /*    width:100%;*/
    /*    height:100%;*/
    /*    background:rgba(0,0,0.5);*/
    /*        z-index: -1;*/
    /*}*/
  #intro .intro-text { max-width: 1024px;
  }
  
  #intro h2,
  #intro h1{
    margin: 0;
    padding:0;
    font-size: 62px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    #intro h2 {
      font-size: 28px;
      line-height: 36px;
    }
  }
  
  #intro p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 40px; line-height: 46px;
  }
  
  @media (max-width: 768px) {
    #intro p {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 20px;
    }
  }
  
  #intro .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 0 8px 40px;
    transition: 0.5s;
    text-transform: uppercase;
    color: #fff;
    position: relative;
  }
  #intro .btn-get-started:before{
    position: absolute;
    width: 28px;
    height: 28px;
    background: #fff;
    left: 0; top: 21px;
    content: '';
  }
  
  
  
  
  
  @media (max-width: 767px) {
    #intro .product-screens .product-screen-1 {
      position: static;
      padding-top: 30px;
    }
    #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
      display: none;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Nav Menu Essentials */
  .nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
  }
  
  .nav-menu li {
    position: relative;
    white-space: nowrap;
  }
  
  .nav-menu > li {
    float: left;
  }
  
  .nav-menu li:hover > ul,
  .nav-menu li.sfHover > ul {
    display: block;
  }
  
  .nav-menu ul ul {
    top: 0;
    left: 100%;
  }
  
  .nav-menu ul li {
    min-width: 180px;
  }
  
  /* Nav Menu Arrows */
  .sf-arrows .sf-with-ul {
    padding-right: 30px;
  }
  
  .sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
  }
  
  .sf-arrows ul .sf-with-ul:after {
    content: "\f105";
  }
  
  /* Nav Meu Container */
  #nav-menu-container {
    float: right;
    margin: 0;
    position: relative;
    top: 32px;
  }
  
  @media (max-width: 991px) {
    #nav-menu-container {
      display: none;
    }
  }
  
  /* Nav Meu Styling */
  .nav-menu a {
    padding: 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 20px;
    outline: none;
  }
  .nav-menu a:hover{color: #1F94C3;}
  .nav-menu > li {
    margin-left: 10px;
  }
  
  .nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
  }
  
  .nav-menu ul li {
    transition: 0.3s;
  }
  
  .nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
  }
  
  .nav-menu ul li:hover > a {
    color: #1dc8cd;
  }
  
  .nav-menu ul ul {
    margin: 0;
  }
  
  /* Mobile Nav Toggle */
  #mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
  }
  
  #mobile-nav-toggle i {
    color: #000;
  }
  
  @media (max-width: 991px) {
    #mobile-nav-toggle {
      display: inline;
    }
  }
  
  /* Mobile Nav Styling */
  #mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(52, 59, 64, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
  }
  
  #mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  #mobile-nav ul li {
    position: relative;
  }
  
  #mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
  }
  
  #mobile-nav ul li a:hover {
    color: #fff;
  }
  
  #mobile-nav ul li li {
    padding-left: 30px;
  }
  
  #mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
  }
  
  #mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #1dc8cd;
  }
  
  #mobile-nav ul .menu-item-active {
    color: #1dc8cd;
  }
  
  #mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
  }
  
  /* Mobile Nav body classes */
  body.mobile-nav-active {
    overflow: hidden;
  }
  
  body.mobile-nav-active #mobile-nav {
    left: 0;
  }
  
  body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
  /* Sections Header
  --------------------------------*/
  .section-header .section-title {
    font-size: 62px;
    /* color: #000; */
    color: #262626;
    text-align: center;
    font-weight: 700;
  }
  
  .section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: #000;
    font-size: 30px;
  }
  
  .section-header .section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: #1dc8cd;
    background: linear-gradient(0deg, #1dc8cd 0%, #55fabe 100%);
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  /* Section with background
  --------------------------------*/
  .section-bg {
    background: #F5F3F1;
  }
  
  /* About Us Section
  --------------------------------*/
  #about {
    padding: 90px 0;
  }
  
  #about .about-img {
    height: 510px;
    overflow: hidden;
  }
  
  #about .about-img img {
    margin-left: -15px;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    #about .about-img {
      height: auto;
    }
    #about .about-img img {
      margin-left: 0;
      padding-bottom: 30px;
    }
  }
  
  #about .content .h2 {
    color: #333;
    font-weight: 300;
    font-size: 24px;
  }
  
  #about .content h3 {
    color: #777;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
  }
  
  #about .content p {
    line-height: 26px;
  }
  
  #about .content p:last-child {
    margin-bottom: 0;
  }
  
  #about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #1dc8cd;
  }
  
  #about .content ul {
    list-style: none;
    padding: 0;
  }
  
  #about .content ul li {
    padding-bottom: 10px;
  }
  
  /* Product Featuress Section
  --------------------------------*/
  #features {
    background: #fff;
    padding: 60px 0 0 0;
    overflow: hidden;
  }
  
  #features .features-img {
    text-align: center;
    padding-top: 20px;
  }
  
  @media (min-width: 769px) {
    #features .features-img {
      padding-top: 120px;
      margin-top: -200px;
    }
  }
  
  #features .features-img img {
    max-width: 100%;
  }
  
  #features .box {
    margin-bottom: 15px;
    text-align: center;
  }
  
  #features .icon {
    margin-bottom: 10px;
  }
  
  #features .icon i {
    color: #666666;
    font-size: 40px;
    transition: 0.5s;
  }
  
  #features .icon i:before {
    background: #1dc8cd;
    background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  #features .title {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  #features .title a {
    color: #111;
  }
  
  #features .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  
  #features .section-description {
    padding-bottom: 10px;
  }
  
  /* Product Advanced Featuress Section
  --------------------------------*/
  #advanced-features {
    overflow: hidden;
  }
  
  #advanced-features .features-row {
    padding: 60px 0 30px 0;
  }
  
  #advanced-features h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
  }
  
  #advanced-features h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
    color: #999;
  }
  
  #advanced-features p {
    line-height: 24px;
    color: #777;
    margin-bottom: 30px;
  }
  
  #advanced-features i {
    color: #666666;
    font-size: 64px;
    transition: 0.5s;
    float: left;
    padding: 0 15px 0px 0;
    line-height: 1;
  }
  
  #advanced-features i:before {
    background: #1dc8cd;
    background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  #advanced-features .advanced-feature-img-right {
    max-width: 100%;
    float: right;
    padding: 0 0 30px 30px;
  }
  
  #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: left;
    padding: 0 30px 30px 0;
  }
  
  @media (max-width: 768px) {
    #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
      max-width: 50%;
    }
  }
  
  @media (max-width: 767px) {
    #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
      max-width: 100%;
      float: none;
      padding: 0 0 30px 0;
    }
  }
  
  /* Call To Action Section
  --------------------------------*/
  #call-to-action {
    overflow: hidden;
    background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
    background-size: cover;
    padding: 80px 0;
  }
  
  #call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  
  #call-to-action .cta-text {
    color: #fff;
  }
  
  @media (min-width: 769px) {
    #call-to-action .cta-btn-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
  }
  
  #call-to-action .cta-btn {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 25px;
    transition: background 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
  }
  
  #call-to-action .cta-btn:hover {
    background: #1dc8cd;
    border: 2px solid #1dc8cd;
  }
  
  /* More Features Section
  --------------------------------*/
  #more-features {
    padding: 60px 0 60px 0;
    overflow: hidden;
  }
  
  #more-features .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    transition: 0.4s;
  }
  
  #more-features .icon {
    float: left;
  }
  
  #more-features .icon i {
    color: #666666;
    font-size: 80px;
    transition: 0.5s;
    line-height: 0;
  }
  
  #more-features .icon i:before {
    background: #1dc8cd;
    background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  #more-features h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #more-features h4 a {
    color: #111;
  }
  
  #more-features p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
  }
  
  @media (max-width: 767px) {
    #more-features .box {
      margin-bottom: 20px;
    }
    #more-features .icon {
      float: none;
      text-align: center;
      padding-bottom: 15px;
    }
    #more-features h4, #more-features p {
      margin-left: 0;
      text-align: center;
    }
  }
  
  /* Clients Section
  --------------------------------*/
  #clients {
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
  }
  
  #clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
  }
  
  #clients img:hover {
    opacity: 1;
  }
  
  /* Pricing Section
  --------------------------------*/
  #pricing {
    padding: 60px 0 60px 0;
    overflow: hidden;
  }
  
  #pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
  }
  
  #pricing h3 {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 28px;
  }
  
  #pricing h4 {
    font-size: 46px;
    color: #1dc8cd;
    font-weight: 300;
  }
  
  #pricing h4 sup {
    font-size: 20px;
    top: -20px;
  }
  
  #pricing h4 span {
    color: #bababa;
    font-size: 20px;
  }
  
  #pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
  }
  
  #pricing ul li {
    padding-bottom: 12px;
  }
  
  #pricing ul i {
    color: #1dc8cd;
    font-size: 18px;
    padding-right: 4px;
  }
  
  #pricing .get-started-btn {
    background: #515e61;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
  }
  
  #pricing .featured {
    border: 2px solid #1dc8cd;
  }
  
  #pricing .featured .get-started-btn {
    background: linear-gradient(45deg, #1de099, #1dc8cd);
  }
  
  /* Frequently Asked Questions Section
  --------------------------------*/
  #faq {
    padding: 60px 0;
    overflow: hidden;
  }
  
  #faq #faq-list {
    padding: 0;
    list-style: none;
  }
  
  #faq #faq-list li {
    border-bottom: 1px solid #ddd;
  }
  
  #faq #faq-list a {
    padding: 18px 0;
    display: block;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
    padding-right: 20px;
  }
  
  #faq #faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 16px;
  }
  
  #faq #faq-list p {
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    #faq #faq-list a {
      font-size: 18px;
    }
    #faq #faq-list i {
      top: 13px;
    }
  }
  
  #faq #faq-list a.collapse {
    color: #1dc8cd;
  }
  
  #faq #faq-list a.collapsed {
    color: #000;
  }
  
  #faq #faq-list a.collapsed i::before {
    content: "\f2c7" !important;
  }
  
  /* Our Team Section
  --------------------------------*/
  #team {
    padding: 60px 0;
    overflow: hidden;
  }
  
  #team .member {
    text-align: center;
    margin-bottom: 20px;
  }
  
  #team .member .pic {
    margin-bottom: 15px;
    overflow: hidden;
    height: 260px;
  }
  
  #team .member .pic img {
    max-width: 100%;
  }
  
  #team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
  }
  
  #team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
  }
  
  #team .member .social {
    margin-top: 15px;
  }
  
  #team .member .social a {
    color: #b3b3b3;
  }
  
  #team .member .social a:hover {
    color: #1dc8cd;
  }
  
  #team .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  /* Gallery Section
  --------------------------------*/
  #gallery {
    background: #fff;
    padding: 60px 0 0 0;
    overflow: hidden;
  }
  
  #gallery .container-fluid {
    padding: 0px;
  }
  
  #gallery .gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }
  
  #gallery .gallery-item {
    overflow: hidden;
    position: relative;
    padding: 0;
    vertical-align: middle;
    text-align: center;
  }
  
  #gallery .gallery-item img {
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    width: 100%;
  }
  
  #gallery .gallery-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  #gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
  }
  
  /* Contact Section
  --------------------------------*/
  #contact {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    overflow: hidden;
    background: #29495C;
  }
  
  #contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1dc8cd;
  }
  
  #contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Roboto", sans-serif;
    color: #888;
  }
  
  #contact .social-links {
    padding-bottom: 20px;
  }
  
  #contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #1dc8cd;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #1dc8cd;
  }
  
  #contact .social-links a:hover {
    background: #1dc8cd;
    color: #fff;
  }
  
  #contact .info {
    color: #fff; margin-top: 125px;
  }
  .contact-about{ margin-top: 30px;}
  
  #contact .info h4{ font-size: 30px; font-weight: 700; color: #fff;}
  #contact .info a{ font-size: 20px; font-weight: 700; color: #fff; width: 50%; display: inline-block;}
  
  #contact .info i {
    font-size: 32px;
    color: #1dc8cd;
    float: left;
    line-height: 1;
  }
  
  #contact .info p {
    padding: 0; display: flex; flex-wrap: wrap; margin: 0;
  }
  #contact h4{ font-size: 30px; font-weight: 700; color: #fff;}
  #contact ul{ margin: 0; padding: 0; display: flex; flex-wrap: wrap;}
  #contact ul li{ margin: 2px 0; padding: 0; list-style: none; width: 33.33%;}
  #contact ul li a{ display:inline-flex; align-items: center; color: #fff; font-size: 20px;}
  #contact ul.global-office-ul li a{
      pointer-events:none;
  }
  
  
  #contact .form #sendmessage {
    color: #1dc8cd;
    border: 1px solid #1dc8cd;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
    display: block;
  }
  
  #contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
  }
  
  #contact .form input, #contact .form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  #contact .form button[type="submit"] {
    background: linear-gradient(45deg, #1de099, #1dc8cd);
    border: 0;
    border-radius: 20px;
    padding: 8px 30px;
    color: #fff;
  }
  
  #contact .form button[type="submit"]:hover {
    cursor: pointer;
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #000;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 0;
    color: #fff;
    font-size: 14px;
  }
  
  #footer .credits {
    font-size: 13px;
    color: #888;
  }
  
  #footer .footer-links a {
    color: #fff;
    padding-left: 15px;
  }
  
  #footer .footer-links a:first-child {
    padding-left: 0;
  }
  
  #footer .footer-links a:hover {
    color: #1F94C3;
  }
  
  
  
  /* PANKAJ */
  

  .nav-menu .current_page_item a
  {
    color: #1F94C3;
  } 
  .flip-boxes{ display: flex; justify-content: space-between; margin-bottom: 90px;}
  
  .flip-box {
    background-color: transparent;
    width: 300px;
    height: 390px;
    perspective: 1000px; 
  }
  
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  /* FRONT SIDE (white) */
  .flip-box-front,
  .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Front white card */
  .flip-box-front {
    background: #ffffff;
    color: #007ab8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
  }
  
  .flip-box-front h3{ font-size: 30px; font-weight: 700; margin-bottom: 0; text-transform: uppercase;}
  
  .flip-box-front .icon{text-align: right;}
  .flip-box-front .icon img {
    height: 75px;
    margin-left: auto;
  }
  
  /* Back blue card */
  .flip-box-back {
    background: #007ab8;
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
  }
  .flip-box-back .icon{text-align: right;}
  .flip-box-back .icon img {
    height: 75px;
    margin-left: auto;
  }
  
  .flip-box-back p {
    font-size: 24px; line-height: 30px;
    line-height: 1.4; margin-bottom: 0;
  }
  
  #soc-center, #soc-architecture, #soc-difference{ padding: 60px 0;}
  #soc-center h4{ font-size: 30px; font-weight: 700; color: #000;}
  
  .soc-center-box{ display: flex;}
  .soc-center-box .box-4{ width: 25%; font-size: 30px; color: #000; padding:0 20px; border-right: 1px solid #707070;}
  .soc-center-box .box-4:first-child{padding-left: 0;}
  .soc-center-box .box-4:last-child{ border: 0;}
  
  .soc-architecture-box{ display: flex; color: #000; }
  .soc-architecture-box h2{ font-size: 62px; line-height: 62px; font-weight: 700; margin-bottom: 100px;color: #262626;}
  .soc-architecture-box p{font-size: 30px; line-height: 40px; margin-bottom: 20px;}
  .soc-architecture-box p:last-child{margin-bottom: 0;}
  .soc-architecture-box .left-box{ width: 50%; padding-right: 50px; border-right: 5px solid #fff;}
  .soc-architecture-box .right-box{ width: 50%; padding-left: 50px;}
  .soc-architecture-box .right-box a{ background: #1F94C3; color: #fff; font-size: 30px; font-weight: 700; padding: 5px 10px 5px 15px; display: flex; justify-content: space-between; margin-bottom: 10px;}
  .soc-architecture-box .right-box a img{ width: 28px; height: 28px; margin: 8px 10px 0 0;}
  .soc-architecture-box .right-box p span{ display: block;}
  
  #soc-difference{ border-bottom: 1px solid #707070;}
  .soc-difference-box{ display: flex; flex-wrap: wrap;  justify-content: space-between; }
  .soc-difference-box .box-3{ width: 32.5%; font-size: 30px; line-height: 40px; color: #262626; padding:30px; background: #F5F3F1; margin-top:20px; min-height: 230px;}
  
  #clients{ padding: 100px 0; color: #000;}
  #clients h2{ font-size: 50px; font-weight: 700; text-align: center;color:#262626;}
  .logo-cnt{ display: flex; flex-wrap: wrap; max-width: 1230px; margin: 0 auto; justify-content: space-between; align-items: center;}
  .logo-cnt span{border: 1px solid #707070; padding: 0 20px !important; border-radius: 10px; display: block; width: 24%; margin-top: 20px; text-align: center; min-height: 140px; display: flex; align-items: center; justify-content: center;}
  .logo-cnt img{ max-width: 230px; padding: 0 !important; opacity: 1 !important; }
  
  .mx-width-112{ max-width: 112px !important;}
  
  #soc-setup{ margin-bottom: 100px; color: #fff;}
  #soc-setup .section-header{ background: #1F94C3; padding: 60px 100px 60px;}
  #soc-setup .section-header .section-title{margin: 0;
    padding:0;
    font-size: 62px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    margin-bottom: 20px;}
  #soc-setup .section-header .section-description{color: #fff;
    margin-bottom: 20px;
    font-size: 30px; line-height: 36px;}
  #soc-setup .section-header a{}
  
  #soc-setup .section-header a.btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 0 8px 40px;
    transition: 0.5s;
    text-transform: uppercase;
    color: #fff;
    position: relative;
  }
  #soc-setup .section-header a.btn-get-started:before{
    position: absolute;
    width: 28px;
    height: 28px;
    background: #fff;
    left: 0; top: 24px;
    content: '';
  }




  /* enterprise soc page  */

  #intro.enterprise-soc{
    background: url(../images/service-pages/Enterprise_SOC_Banner.png);
  }
  #architecture {
    padding: 60px 0;
  }
  #architecture  h2{
    text-align: center;
    font-size: 62px;
    line-height: 83px;
    color: #262626;
    font-weight: 700;
  }
  #architecture .boxes{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
  }
  #architecture .boxes .box{
    width: 32%;
    /* border-right: 2px solid #E4E4E4; */
    position: relative;
  }
  #architecture .boxes .box::before{
    position: absolute;
    content: '';
    border-right: 2px solid #E4E4E4;
    width: 100%;
    height: 70%;
    top: 20%;
  }
  #architecture .boxes .box .icon{
    margin-bottom: 40px;
    text-align: center;
  }
  #architecture .boxes .box:nth-child(3)::before,
  #architecture .boxes .box:nth-child(6)::before{
    border-right: 0;

  }
  #architecture .boxes .box p{
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    padding-right: 20px;
  }
  .page-template-enterprise-soc #about h3{
    color: #262626;

  }
  .page-template-enterprise-soc #about .flip-boxes{
    margin-top: 60px;
  }
  .soc-difference-box .box-3 span{
    display: block;
    font-weight: 700;
  }
  .text-c-black{
    color: #262626 !important;
  }

    /* cloud soc page  */
    #intro.cloud-soc{
      background: url(../images/service-pages/cloud_SOC_Banner.png);
    }
    .page-template-cloud-soc .flip-box,
    .page-template-hybrid-soc .flip-box
    {
      width: 32%;
      height: 280px;
    }
    .page-template-cloud-soc .flip-boxes,
    .page-template-hybrid-soc .flip-boxes{
      margin-top: 40px;
      margin-bottom: 35px;
    }
    .page-template-cloud-soc .flip-boxes:nth-child(2),
    .page-template-hybrid-soc .flip-boxes:nth-child(2){
      margin-top: 35px;
      margin-bottom: 0;
    }
    /* hybrid soc page  */
    #intro.hybrid-soc{
      background: url(../images/service-pages/hybrid_soc_Banner.png);
    }
    .page-template-cloud-soc #soc-difference,
    .page-template-hybrid-soc #soc-difference,
    .page-template-enterprise-soc #soc-difference
    {
    border-bottom: 0;
    padding: 60px 0 100px;

    }




    .form-check-custom {
      display: flex;
      margin-top: 1rem;
      margin-bottom: 1rem;
      /*align-items: center;*/
      gap: 10px;
  }
  .form-check-custom.mt-0{
      margin-top:0 !important;
  }
  .form-check-custom.mb-5{
      margin-bottom:5px !important;
  }
  .form-check-custom .wpcf7-list-item {
      margin: 0px;
  }
  .form-check-custom .contact-checkbox {
      margin-bottom: 0px;
          font-size: 18px;
      /* margin-top: 1px; */
  }
  .form-sec .form .form-row .form-group.form-check-custom  .wpcf7-form-control-wrap{
  width: auto;
  }
  .form-sec .form .form-row .form-group.form-check-custom{
    margin-bottom: 0;
    display: flex;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }
  .form-sec .form .form-row.custom-row{
    margin-right: 0;
    margin-left: 0;
  }
  .form-sec .form .form-row.custom-row  .form-group.text-right{
    justify-content: flex-end;
  }
  .form-sec .form .form-group input[type=checkbox]{
    min-height: auto;
  }
  
   /* about page css starts */
#intro.about-page{
  background: url(../images/about/about-banner.png) right center no-repeat;
  background-size: cover;
}
.main-sec{
  padding: 100px 0;
}
.main-sec h2,
.legacy-sec h2{

  padding-right: 30px;
}
.main-sec p{
  font-size: 23px;
  color: #464646;
  margin-bottom: 10px;
  padding-right: 30px;
}

.main-sec .main-sec-box
{
  display: flex;
  justify-content: space-between;
}
.main-sec .main-sec-box .left-content{
  width: 60%;
}

.main-sec .right-img{
  padding-left: 0;
}
.main-sec h3{
  color: #262626;
  font-weight: 600;
  margin-bottom: 15px;


}
.main-sec .highlighted-text{
  background: #F5F3F1;
  padding:30px;


}
.main-sec ul{
  margin: 0;
  padding-left: 25px;
}
.main-sec ul li{
  color: #464646;
  font-size: 22px;
  margin-bottom: 5px;


}
.legacy-sec{
  background: #F5F3F1;
  padding: 100px 0;
}

.legacy-sec .white-boxes{
  display: flex;
  gap: 20px;
  justify-content: space-between;
  max-width: 1595px;
  flex-wrap: wrap;
}


.legacy-sec .white-boxes .white-box{
  background: #fff;
  width: 24%;
  padding: 20px;
  text-align: center;

}
.legacy-sec .white-boxes .white-box img{
  margin-bottom: 20px;
}
.legacy-sec .white-boxes .white-box p{
  margin-bottom: 0;
  color: #464646;
}

.secure-box .content{
  background: #1F94C3;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 20px 0;
  border-radius: 0 0 10px 10px;
}
.about-gsecure-sec{
  padding: 100px 0;
}
.about-gsecure-sec .secure-boxes{
  display: flex;
  gap: 20px;
}
.about-gsecure-sec .secure-boxes .secure-box{
  width: 23.4%;

}
.secure-box .content p{
  margin-bottom: 0;
  font-size: 20px;  
}
.main-title{
  font-size: 62px;
  font-weight: 700;
  color: #262626;
  line-height: 83px;

}
.font-20{
  font-size: 20px;
}
.blue-bg-sec{
  padding: 100px 0;
  background: #1C394A;
  text-align: center;
  color: #fff;
}
.lets-talk-sec{
  padding: 100px 0;
  text-align: center;

}
.lets-talk-btn{
  background: #1F94C3;
  font-size: 32px;
color: #fff;
padding: 20px 60px;
text-align: center;
border-radius: 10px;


}
.lets-talk-btn:hover{
  color:#fff;
}
  /* about page css ends */

  @media(min-width:1367px){
    .container {
      max-width: 1320px;
}

  }


  @media(min-width:1441px){
    .container {
      max-width: 1400px;
}

  }
  @media(min-width:1680px){
    .container {
      max-width: 1640px;
}
#architecture .boxes .box {
  width: 31%;
}


  }

  @media(max-width:1679px){
#architecture .boxes .box {
  width: 31%;
}
#intro h2 {
  font-size: 50px;
}
#intro p {
  font-size: 35px;
}
#intro .btn-get-started {
  font-size: 35px;

}
.section-header .section-title {
  font-size: 50px;
}
#intro {
  height: 700px;
}
.section-header .section-description {
  padding-bottom: 30px;
  font-size: 25px;
}
.flip-box-front h3 {
  font-size: 25px;
}
.flip-box-back p {
  font-size: 20px;
}
.flip-box {
  height: 360px;
}
.flip-boxes {
  margin-bottom: 60px;
}
.soc-center-box .box-4 {
  font-size: 25px;
}
.soc-architecture-box h2 {
  font-size: 50px;
  line-height: 58px;
}
.soc-architecture-box p {
  font-size: 25px;
  line-height: 35px;
}
.soc-architecture-box .right-box a {
  font-size: 25px;
}
.soc-difference-box .box-3 {
  font-size: 25px;
}
#soc-setup .section-header .section-title {
  font-size: 50px;
}
#soc-setup .section-header .section-description {
  font-size: 25px;
}
#soc-setup .section-header a.btn-get-started {
  font-size: 35px;
  padding: 12px 0 8px 40px;
}
#contact h4 {
  font-size: 25px;
}
#contact .info h4 {
  font-size: 25px;
}
#contact .info a {
  font-size: 18px;
}
.main-title{
  font-size: 50px;
  line-height: 65px;
}
.main-sec p {
  font-size: 19px;
}
.main-sec ul li {
  font-size: 20px;
}
.main-sec h3{
  font-size: 25px;
}
.main-sec p{margin-bottom: 19px;}
.legacy-sec .white-boxes .white-box {
  width: 23%;
}
.font-20 {
  font-size: 18px;
}
.secure-box .content p {
  font-size: 18px;
}
.lets-talk-btn {
  font-size: 28px;
}
  }

  
  @media(max-width:1440px){
    #intro h2,
    #architecture h2,
    #intro h1,
    .main-title{
      font-size: 40px;
  }
  #intro p {
    font-size: 30px;
}
#intro .btn-get-started {
  font-size: 30px;
  padding: 14px 0 8px 40px

}

#intro .btn-get-started:before {
  width: 24px;
  height: 24px;
}
#intro {
  height: 630px;
}
.section-header .section-title {
  font-size: 40px;
}
.section-header .section-description {
  padding-bottom: 30px;
  font-size: 22px;
}
#about {
  padding: 70px 0;
}
.flip-box-front h3 {
  font-size: 22px;
}
.flip-box-back p {
  font-size: 18px;
}
.soc-center-box .box-4 {
  font-size: 22px;
}
.soc-architecture-box h2 {
  font-size: 40px;
  line-height: 50px;
}
.soc-architecture-box p ,
#architecture .boxes .box p{
  font-size: 22px;
  line-height: 33px;
}
.soc-architecture-box .right-box a {
  font-size: 22px;
}
.soc-architecture-box .right-box a img {
  width: 24px;
  height: 24px;
}
.soc-difference-box .box-3 {
  font-size: 22px;
}
#clients h2 {
  font-size: 40px;
}
#clients {
  padding: 80px 0;
}
#soc-setup .section-header .section-title {
  font-size: 40px;
}
#soc-setup .section-header a.btn-get-started {
  font-size: 30px;
  padding: 14px 0 8px 40px;
}
#soc-setup .section-header .section-description {
  font-size: 22px;
}
#contact h4 {
  font-size: 22px;
}
#contact .info h4 {
  font-size: 22px;
}
#contact .info a {
  font-size: 16px;
}
#contact ul li a {
  font-size: 18px;
}

.form-check-custom .contact-checkbox{
  font-size: 16px;
}
.main-sec p {
  font-size: 17px;
}
.main-sec ul li {
  font-size: 18px;
}
.main-sec h3 {
  font-size: 23px;
}
.main-sec p {
  margin-bottom: 30px;
}
.page-template-about-us  section{
  padding: 80px 0;
}
.secure-box .content p {
  font-size: 16px;
}
.font-20 {
  font-size: 16px;
}
.lets-talk-btn {
  font-size: 24px;
  padding: 20px 40px;
}
  }

  @media(max-width:1366px){
    #intro {
      height: 590px;
  }
  #intro p {
    font-size: 25px;
    margin-bottom: 10px;
}
.flip-box {
  height: 320px;
    width: 250px;
}
.flip-boxes {
  margin-bottom: 40px;
}
.flip-box-front h3 {
  font-size: 20px;
}
#soc-setup .section-header .section-title {
  font-size: 35px;
}
#soc-setup .section-header a.btn-get-started {
  font-size: 25px;
  padding: 16px 0 8px 35px;
}
#soc-setup .section-header a.btn-get-started:before {
  width: 20px;
  height: 20px;
}
#soc-setup .section-header .section-description {
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 15px;

}
#soc-setup {
  margin-bottom: 80px;
}
.arrow-img{
  width: 50px !important;
}
#soc-setup .section-header {
  padding: 45px 70px 45px;
}
.section-header .section-title {
  font-size: 35px;
}
#soc-center h4 {
  font-size: 25px;
}
.section-header .section-description {
  font-size: 20px;
}
.soc-center-box .box-4 {
  font-size: 20px;
}
#intro h2,
#architecture h2 {
  font-size: 35px;
  line-height: 45px;
}
#intro .btn-get-started {
  font-size: 25px;
  padding: 18px 0 8px 40px;
}
.soc-architecture-box h2 {
  font-size: 35px;
  line-height: 45px;
}
.soc-architecture-box p ,
#architecture .boxes .box p{
  font-size: 20px;
  line-height: 30px;
}
.soc-architecture-box .right-box a {
  font-size: 20px;
}
.soc-difference-box .box-3 {
  font-size: 20px;
}
#clients h2 {
  font-size: 35px;
}
.page-template-enterprise-soc #about .flip-boxes {
  margin-top: 40px;
}

.main-sec ul li {
  font-size: 16px;
}
.main-sec p {
  font-size: 16px;
  margin-bottom: 20px;

}
.main-sec .highlighted-text{
  padding: 26px;
}
  }


  @media(max-width:1199px){
    .nav-menu a {
      font-size: 16px;
    }
    .flip-box {
      height: 300px;
      width: 210px;
  }
  .flip-box-back p {
    font-size: 16px;
}
.flip-boxes {
  margin-bottom: 30px;
}
.flip-box-front h3 {
  font-size: 18px;
}
.section-header .section-title {
  font-size: 32px;
}
#soc-center h4 {
  font-size: 22px;
}
#intro {
  height: 530px;
}
#intro h2,
#architecture h2 {
  font-size: 32px;
  line-height: 42px;
}
#intro p {
  font-size: 22px;
}
#intro .btn-get-started {
  font-size: 22px;
}
#about {
  padding: 45px 0;
}
.section-header .section-description {
  font-size: 18px;
  padding-bottom: 10px;

}
#soc-center, #soc-architecture, #soc-difference {
    padding: 45px 0;
}
.soc-architecture-box h2 {
  font-size: 32px;
  line-height: 42px;
}
.soc-architecture-box p,
#architecture .boxes .box p {
  font-size: 18px;
  line-height: 28px;
}
.soc-difference-box .box-3 {
  font-size: 18px;
  padding: 20px;
  margin-top: 10px;
}
#clients {
  padding: 60px 0;
}
#clients h2 {
  font-size: 32px;
}
#soc-setup .section-header .section-title {
  font-size: 32px;
  line-height: 45px;
}
#soc-setup {
  margin-bottom: 60px;
}
#contact .ml-5{
  margin-left: 1.5rem !important;
}
#contact ul li a {
  font-size: 14px;
}
#contact h4 {
  font-size: 20px;
}
#contact .info h4 {
  font-size: 20px;
}
#contact .info a {
  font-size: 14px;
}
.copyright{
  font-size: 12px;
}
.page-template-cloud-soc #soc-difference, .page-template-hybrid-soc #soc-difference, .page-template-enterprise-soc #soc-difference {
  border-bottom: 0;
  padding: 60px 0 60px;
}
.form-check-custom .contact-checkbox {
  font-size: 14px;
}
.main-sec .highlighted-text {
  padding: 20px;
}
.main-sec h3 {
  font-size: 20px;
}
.main-sec ul li {
  font-size: 14px;
  margin-bottom: 4px;
}
.main-sec p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 19px;
}
.main-sec .main-title{
  margin-bottom: 15px;
}
.main-sec .main-sec-box .left-content {
  width: 70%;
}
.page-template-about-us section {
  padding: 65px 0;
}
.secure-box .content p {
  font-size: 14px;
  padding: 0 8px;
}
.font-20 {
  font-size: 14px;
}
.lets-talk-btn {
  font-size: 20px;
  padding: 20px 35px;
}
  }


  @media(max-width:991px){
    #intro {
      height: 480px;
      margin-top: 99px;
      padding-bottom: 99px;
  }
  .flip-box {
    height: 250px;
    width: 48%;
    margin-bottom: 30px;
}
.flip-boxes{
  flex-wrap: wrap;
}
.flip-boxes {
  margin-bottom: 0;
}
#about {
  padding: 45px 0 25px;
}
.soc-center-box .box-4 {
  font-size: 16px;
}
.soc-architecture-box .right-box a {
  font-size: 18px;
}
.soc-difference-box .box-3 {
  font-size: 18px;
  line-height: 25px;
}
#soc-setup .section-header {
  padding: 45px 44px 45px;
}
#contact ul li{
  width: 50%;
}
#contact .info a {
  font-size: 12px;
  margin-bottom:8px;
}
#contact .info h4,
#contact h4 {
  font-size: 18px;
}
#footer .footer-links a{
  font-size: 12px;
}
.copyright {
  font-size: 11px;
}
#footer{
  padding: 10px 0;
}
#architecture .boxes .box {
  width: 47.5%;
}
#architecture .boxes .box:nth-child(2n-1)::before{
  border-right: 2px solid #E4E4E4;
}
#architecture .boxes .box:nth-child(2n)::before{
  border-right: 0;
}
.page-template-cloud-soc .flip-boxes:nth-child(2), .page-template-hybrid-soc .flip-boxes:nth-child(2) {
  margin-top: 0;
}
.page-template-cloud-soc .flip-boxes, .page-template-hybrid-soc .flip-boxes{
  margin-bottom: 0;
}
.page-template-cloud-soc .flip-boxes .flip-box, .page-template-hybrid-soc .flip-boxes .flip-box{
  margin-bottom: 15px;
}
.form-sec .form .form-row .form-group.form-check-custom {
flex-wrap: nowrap;
}
.main-sec .main-sec-box{
  flex-wrap: wrap;
}
.main-sec .main-sec-box .left-content{
  width: 100%;
}
.main-sec .main-title br{
  display: none;
}
.page-template-about-us section {
  padding: 40px 0;
}
.legacy-sec .white-boxes {
  gap: 15px;
  }
  .about-gsecure-sec .secure-boxes{
    flex-wrap: wrap;
  }
  .about-gsecure-sec .secure-boxes .secure-box {
    width: 48.5%;
}
.about-gsecure-sec p br{
  display: none;
}
.font-20 {
  font-size: 13px;
}
.secure-box .content p {
  font-size: 13px;

}
.lets-talk-btn {
  font-size: 18px;
}
  }


  @media(max-width:767px){
    #intro {
      height: 440px;
      padding-bottom: 70px;
    }
    #intro h2,
    #architecture h2,
    #architecture h2,#intro h1,
    .main-title{
      font-size: 28px;
      line-height: 38px;
  }
  #intro p {
    font-size: 16px;
    line-height: 22px;
}
#intro .btn-get-started {
  font-size: 18px;
  padding: 20px 0 8px 30px;
}
#intro .btn-get-started:before {
  width: 18px;
  height: 18px;
}
.section-header .section-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.section-header .section-description {
  font-size: 16px;
  padding-bottom: 0px;
}
.flip-box-front h3 {
  font-size: 16px;
}
.soc-center-box{
  flex-wrap: wrap;
}
.soc-center-box .box-4{
  width: 100%;
  border-bottom: 1px solid #707070;
  padding: 15px 0;
  border-right: 0;
  font-size: 15px;

}
.soc-architecture-box h2 {
  font-size: 28px;
  line-height: 38px;
}
.soc-architecture-box p,
#architecture .boxes .box p{
  font-size: 16px;
  line-height: 25px;
}
.soc-architecture-box .right-box {
  padding-left: 30px;
}
.soc-architecture-box .right-box a {
  font-size: 16px;
}
.soc-architecture-box .right-box a img {
  width: 18px;
  height: 18px;
}
.soc-architecture-box .left-box {
  padding-right: 30px;
}
.soc-difference-box .box-3{
  width: 48.5%;
  margin-top: 16px;
}
#clients h2 {
  font-size: 28px;
}
.logo-cnt span {
  width: 48%;

}
#soc-setup .section-header .section-title {
  font-size: 28px;
  line-height: 38px;
}
#soc-setup .section-header {
  padding: 30px 30px 30px;
}
#soc-setup .section-header a.btn-get-started {
  font-size: 16px;
}
#soc-setup .section-header a.btn-get-started:before {
  width: 18px;
  height: 18px;
}
#soc-setup .section-header a.btn-get-started {
  font-size: 16px;
  padding: 21px 0 0px 28px;
}
.arrow-img {
  width: 40px !important;

}
#soc-setup .section-header .section-description {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 5px;
}
#contact .info {
  margin-top: 50px;
  margin-bottom: 30px;
}

#contact .info a {
  font-size: 14px;
}
#footer .copyright-text{
  justify-content: flex-start !important;
}
#footer .footer-tgc-logo{
  text-align: left !important;
}
#footer .footer-links a {
  font-size: 14px;
}
#footer .footer-links{
  margin-bottom: 6px;
}
.copyright {
  font-size: 12px;
}
#about {
  padding: 30px 0 15px;
}
#soc-center, #soc-architecture, #soc-difference {
  padding: 35px 0;
}
#clients {
  padding: 35px 0;
}
#soc-setup {
  margin-bottom: 35px;
}
#architecture .boxes .box {
  width: 47%;
}
#architecture {
  padding: 30px 0;
}
.page-template-cloud-soc #soc-difference, .page-template-hybrid-soc #soc-difference, .page-template-enterprise-soc #soc-difference {
  border-bottom: 0;
  padding: 30px 0 40px;
}
#architecture .boxes {
 margin-top: 40px;
}
.page-template-enterprise-soc #about .flip-boxes:last-child {
  margin-top: 0;
}
.page-template-cloud-soc .flip-box, .page-template-hybrid-soc .flip-box {
  width: 100%;
  height: 230px;
}
.form-check-custom .contact-checkbox {
  font-size: 11px;
}
.form-sec .form .form-row.custom-row .form-group.text-right{
  text-align: center !important;
  justify-content: flex-start;
}
.main-sec .highlighted-text {
  padding: 15px;
}
.main-sec ul {
  padding-left: 20px;
}
.page-template-about-us section {
  padding: 30px 0;
}
.legacy-sec .white-boxes .white-box {
  width: 48.5%;
}
.about-gsecure-sec .secure-boxes {
  gap: 15px;
  }
  .secure-box .content p
  {
    min-height: 39px;
  }
  .blue-bg-sec p br{
    display: none;
  }
  .page-template-about-us section.lets-talk-sec{
    padding: 30px 0 50px;
  }
  }


  @media(max-width:575px){
    #intro h2,
    #architecture h2,
    #intro h1,
    .main-title{
      font-size: 22px;
      line-height: 35px;
  }
  #intro {
    height: 390px;
    padding-bottom: 35px;

  }
  #intro p {
    font-size: 14px;
    line-height: 20px;
}
#intro .btn-get-started:before {
  width: 16px;
  height: 16px;
}
#intro .btn-get-started {
  font-size: 12px;
  padding: 23px 0 8px 30px;
}
.section-header .section-title {
  font-size: 22px;
}
.section-header .section-description {
  font-size: 14px;
}
.flip-box {
  height: 180px;
    width: 100%;
}
#soc-center h4 {
  font-size: 18px;
  margin-top: 10px;
}
.soc-center-box .box-4{
  font-size: 14px;
}
.soc-architecture-box h2 {
  font-size: 22px;
  line-height: 35px;
  margin-bottom:20px;
}
.soc-architecture-box .left-box{
  width: 100%;
  border-right: 0;
  padding-right: 0;
}
.soc-architecture-box .right-box{
  width: 100%;
  padding-left: 0;
  margin-top: 30px;
}
.soc-architecture-box{
  flex-wrap: wrap;
}
.soc-architecture-box h2 br{
  display: none;
}
.soc-difference-box .box-3{
  width: 100%;
  min-height: auto;
}
#clients h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
#soc-setup .section-header .section-title {
  font-size: 22px;
  line-height: 34px;
}
#soc-setup .section-header{
  padding: 20px;
}
#soc-setup .section-header a.btn-get-started:before {
  width: 12px;
  height: 12px;
}
#soc-setup .section-header a.btn-get-started {
  font-size: 10px;
  padding: 23px 0 0px 20px;
}
.arrow-img {
  width: 30px !important;
}
#soc-setup .section-header .section-description {
  font-size: 14px;
  line-height: 22px;
}
#architecture .boxes .box{
  width: 100%;
}
#architecture .boxes .box:nth-child(2n-1)::before{

  border-right: 0;
}
 #architecture .boxes .box p{
  text-align: center;
}
#contact .contact-about{
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
#contact .contact-about img.ns-footer-logo{
width: 130px;
}
.logo-cnt span{
  margin-top: 12px;
  min-height: 95px;

}
.mx-width-112 {
  max-width: 80px !important;
}
.main-sec p {
  font-size: 12px;
  }
  .main-sec ul li {
    font-size: 12px;
  }
  .legacy-sec .white-boxes .white-box {
    width: 100%;
}
.about-gsecure-sec .secure-boxes .secure-box {
  width: 100%;
}
.secure-box .content p {
  min-height: auto;
}
.lets-talk-sec h2.main-title br{
  display: none;

}
.lets-talk-btn {
  font-size: 16px;
  padding: 15px 25px;
}
.lets-talk-sec p{
  font-size: 14px;
}
  }



 