/*----------------------------------------------------
@File: Default Styles
@Author: NavThemes
@URL:https://www.navthemes.com
@Version: 1.0

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.



This files contents are outlined below.
  

0. General Style
1. Buttons
2. Headings
3. Subtitle
4. Prefix Styles
5. Top header
6. ABOUT US
7. our_partners_area
9. our_services_area
10. our_services_tow
11. Analytics to answer_area
12. our_services_three
13. our_PRICING_area
14. testimonial_area
16. footer_area
17. Edit-css
18. blog-area start
19. blog-details-area start
20.sidebar-style-here
21.media query in css-Responsive
22.(mxn-width: 1024px)  media query 
23.(min-width: 768px) media query 
24.(min-width: 1023px) and (max-width: 1100px)  media query
25.(max-width: 768px) media query 
26.(max-width: 480px) media query 



----------------------------------------------------*/
/*--------------------------------------------------*/
/*Color Variables*/
::selection {
    background-color:#99a9bb;
    color: #FFF
}

/*----------------------------------
   1.Start button
------------------------------------*/
.btn{
padding: 18px 50px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 30px;
      display: inline-block;
    border: 0;
     text-transform: uppercase;
    position: relative;
    z-index: 2;
     text-decoration: none !important;
}

.btn-default {
   background: #2e7ffe !important;
    color: #fff !important;
}
.btn-default:before {
    content: "";
    position: absolute;
    z-index: -1;
        background:#504cf5 !important;
  
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    transform: scaleY(0);
    transform-origin: 50%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.btn-default:hover:before, .btn-default:focus:before {
    transform: scaleY(1);
    color: #fff !important;
    border-radius: 30px;
}

.btn-primary {
   background: #504cf5 !important;
    color: #fff !important;
  }
   
.btn-primary:before {
    content: "";
    position: absolute;
    z-index: -1;
        background:#f356c9 !important;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    transform: scaleY(0);
    transform-origin: 50%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.btn-primary:hover:before, .btn-primary:focus:before {
    transform: scaleY(1);
    color: #fff !important;
    border-radius: 30px;
}
a:before, a:after, .btn:before, .btn:after, button:before, button:after {
    transition: all 300ms linear 0s;
}

a {
      color: #fff !important;
    text-decoration: none !important;
}

/* Estilo base para el botón de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
}

    .whatsapp-float img.whatsapp-icon {
        width: 100%;
        height: 100%;
        padding: 10px;
        border-radius: 50%;
    }

/* Ajustes para pantallas pequeñas (teléfonos y dispositivos móviles) */
@media (max-width: 575px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Ajustes para pantallas medianas (dispositivos móviles más grandes) */
@media (min-width: 576px) and (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 18px;
        right: 18px;
        box-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Ajustes para pantallas grandes (tabletas y dispositivos medianos) */
@media (min-width: 768px) and (max-width: 991px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    }
}

/* Ajustes para pantallas extra grandes (escritorios y pantallas grandes) */
@media (min-width: 992px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    }
}


/*----------------------------------
   End button
------------------------------------*/

/*----------------------------------
   2. Headings
------------------------------------*/

/* Section Title*/
.title {
  text-align: center;
  /*text-transform: uppercase;*/
}
.title h2  {
    font-size: 30px;
    color: #99a9bb;
 
    font-weight: 550;
    /*text-transform: capitalize;*/
}
.pt_banner_30{
  padding-top: 35px !important}
}



.title h4 {

  color: #555555;
  padding-top: 55px;
}
.subtitle h2 {

  color: #222222;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
}





/*----------------------------------
   4.Prefix Styles
------------------------------------*/
/*Prefix Styles*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

body {
 font-family: 'Open Sans', sans-serif;
  /*Section Fix*/
}

body p {
  font-family: 'Open Sans', sans-serif;
  line-height: 26px;
  color: #555555;
  font-size: 16px;
  margin: 0;
}
body section.row, body header.row, body footer.row {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

/*Ancore*/
a, .btn, button {
  outline: none;
  transition: all 300ms linear 0s;
}
a:before, a:after, .btn:before, .btn:after, button:before, button:after {
  transition: all 300ms linear 0s;
}
a:focus, a:hover, .btn:focus, .btn:hover, button:focus, button:hover {
  outline: none;
  text-decoration: none;
  transition: all 300ms linear 0s;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

blockquote {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
}
blockquote, q {
    position: relative;
    padding: 4rem 3rem 3rem;
    text-align: center;
    font-size: 2rem;
    line-height: 1.88;
    border: 1px double rgba(0,0,0,.1);
    margin: 6rem 0;
    display: block;
}
thead, th, td {
    border: 1px solid black;
    padding: 10px;
}
ul li {
    line-height: 30px;
}
ol li {
    line-height: 30px;
}
strong {
    font-weight: 600;
    line-height: 35px;
}
tbody a{
  color:#337ab7 !important;
}
dd, dt {
    line-height: 2.428571;
    }
   
/*--------------------------------------------------*/


/* Header Aera */


.header_aera {
  background:no-repeat !important;
  border-radius: 0;
  border: 0;
  margin: 0;
  
  
      padding: 70px 0px;
  width: 100%;
  z-index: 9999;
  top: 0;
 
}
.header_aera .searchForm {
  height: 0;
  overflow: hidden;
  transition: all 300ms linear 0s;
}
.header_aera .searchForm .input-group-addon {
  border-radius: 0;
  border: none;
  font-size: 14px;
  padding: 0 45px;
  background: #f6b60b;
  color: #fff;
  cursor: pointer;
}
.header_aera .searchForm .form-control {
  height: 79px;
  padding: 0 15px;
  border-radius: 0;
  border: none;
  color: #fff;
  background: #f6b60b;
  text-align: center;
  font: 400 16px "Roboto", sans-serif;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.header_aera .searchForm .form-control.placeholder {
  font: 400 16px "Roboto", sans-serif;
  color: #fff;
}
.header_aera .searchForm .form-control:-moz-placeholder {
  font: 400 16px "Roboto", sans-serif;
  color: #fff;
}
.header_aera .searchForm .form-control::-webkit-input-placeholder {
  font: 400 16px "Roboto", sans-serif;
  color: #fff;
}
.header_aera .show {
  height: 80px;
  border-bottom: 1px solid transparent;
}
.header_aera .navbar-header .navbar-brand {
  padding-top:0px !important;
}
.header_aera .navbar-header .navbar-brand img {
  max-width: 100%;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li a {
  
    text-transform: uppercase;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    padding-left: 30px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;

}
.header_aera .navbar-collapse .navbar-nav.navbar-right li a:hover, .header_aera .navbar-collapse .navbar-nav.navbar-right li a:focus {
  color: #f6b60b;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li .nav_searchFrom {
  width: 100px;
  background: #f6b60b;
  color: #fff;
  padding: 0;
  text-align: center;
  margin-left: 15px;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li .nav_searchFrom:hover, .header_aera .navbar-collapse .navbar-nav.navbar-right li .nav_searchFrom:focus {
  color: #222222;
}


.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul li {
  display: block;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul li a {
  line-height: normal;
  padding: 12px 8px;
  display: block;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul:before {
  content: "";
  width: 100%;
  height: 5px;
  background: #222222;
  position: absolute;
  top: 0px;
  transform: translateZ(0);
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 800ms ease-in-out;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul:after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0px;
  background: #222222;
  transform: translateZ(0);
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: all 800ms ease-in-out;
}
@media (min-width: 768px) {
  .header_aera .navbar-collapse .navbar-nav.navbar-right li:hover.submenu ul {
    transform: rotateX(0deg);
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li:hover.submenu ul:before {
    transform: scaleX(1);
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li:hover.submenu ul:after {
    transform: scaleX(1);
  }
}

/* End Header Aera */
/* End header area 2 */
.header_aera_tow {
  background-color: transparent;
  position: relative;
  box-shadow: none;
}
.header_aera_tow .navbar_right_fulid {
  background: #fff;
  height: 100px;
  padding-left: 20px;
  box-shadow: 0px 0px 40px 0px rgba(21, 47, 95, 0.2);
}
.header_aera_tow .navbar_right_fulid:after {
  content: "";
  position: absolute;
  right: 0;
  height: 100px;
  background: #fff;
  width: 30%;
  z-index: -1;
  box-shadow: 0px 0px 40px 0px rgba(21, 47, 95, 0.2);
}
.header_aera_tow .navbar_right_fulid ul.nav.navbar-nav.navbar-right {
  margin-right: 0;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
  background-color: transparent;
}

/* header area 2 */
/*--------------------------------------------------*/



/*start banner area 1*/
/*--------------------------------------------------*/
.title-left h1,
.title-left h2,
.title-left h3{
    font-size: 35px;
    font-weight: 700;
    color: #364167;
        line-height: 50px;
    /*text-transform: capitalize;*/
}
  
.bg-banner-img{
 
    background: rgba(255,255,255,0);
    background-image: url(../images/banner-img.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.clip-ellipse {
  clip-path: ellipse(95%  100% at top);
  -webkit-clip-path: ellipse(93%  100% at top);

}
.mb-90{
  padding-bottom:140px;
}
.color-gray{
  color:#dedede;
}

.back-shap{
    background-image: url(../images/shap-a.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
   
   

    
}

.ovrllay{
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    right: 0;
 background-image: linear-gradient(to right top ,#2725b9d4,#3a39dcd1,#e748bec2 ,#e748bec9 ,#e748beb5)!important;

}
img{
    vertical-align: middle;
    max-width: 100%;
}
.shap_top{
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 30px;
}
.all-text {
    padding: 108px 50px;
}
.shap_bottom{
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}


.banner-text{
   text-align: center;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}
.py-70{
  padding: 70px 0px;
}
.mb-60{
  margin-bottom: 60px;
}
/*End banner area 1*/
/*--------------------------------------------------*/

/*start servise area */
/*--------------------------------------------------*/
.servise-top{
    text-align: center;
    visibility: visible;
    animation-name: fadeInUp;
    background: #2e7ffe;
        width: 85px;
    line-height: 80px;
    height: 85px;
    margin-bottom: 20px;
    border-radius: 50%;
}
.unify{
  font-weight: 700;
    font-size: 24px;
    text-align: left;
    margin: 10px 0; 
    color: #364167;
}
.bottom-s{
    font-size: 16px;
    line-height:1.7em;
    color: #97a6b9;
    margin-bottom:30px;
}
.col-4pad{
  padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
}
.button-div{
  margin-top: 20px;
}
.button-s:after {
    content: '→';
    position: absolute;
    margin-left: 5px;
    font-family: 'IntercomText', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: transform 0.3s;
    margin-top: 2px;
    transition-duration: 1s;
}
.button-s:hover:after{
  margin-left: 15px;
  transition-duration:1s;
}
.button-s{
    font-size: 14px;
    color: #2e7ffe !important;
    font-weight: 400;
        display: block;
    letter-spacing: 0.15px;
      transition-duration:1s;
}

.service-1{
         border: 1px solid rgba(90,122,190,0.08);
    box-shadow: 0 3px 0 0 rgba(90,122,190,0.12);
    padding: 30px 15px 30px 20px;
    border-radius: 10px;
    transition-duration: 1s;
}
.contact-map{
        box-shadow: 0px 6px 21px -5px #d3d3d3;
   background:#edf6fb;
    border-radius: 10px;
    transition-duration: 1s;
    float: left;
}
.section-heading.left {
    margin-bottom: 30px;
    text-align: left;
}
.section-heading h4 {
    font-size: 30px;
    line-height: normal;
        position: relative;
        padding-bottom: 20px;
}
.section-heading h4:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #504cf5;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin:0px;

}
.top-contact{
  margin-top:20px;
}

.contact-info-section h4 {
    color: #232323;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: normal;
}
.contact-info-section p {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}
.contact-info-section {
    border-bottom: 1px solid #ececec;
    padding: 25px 0;
    margin-bottom: 0;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}
.contact-info-section h4 {
    color: #232323;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: normal;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
    padding-left: 0px !important;
}
.list-style-1 li {
    padding: 5px 0;
}
.contact-info-section p {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}
.contact-info-section i {
    width: 25px;
    height: 25px;
    padding-top: 7px;
    border-radius: 50%;
    background: #47588f;
    color: #fff;
    font-size: 12px;
    margin-right: 5px;
    line-height: 11px;
}
strong {
    font-weight: 600;
}
.list-style-2 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-style-2 li {
    position: relative;
    padding: 0 0 0 12px;
    margin: 0 0 9px 0;
}
.list-style-2 li:before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #232323;
    position: absolute;
    top: 12px;
    left: 0;
}
input,
select {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 15px 0;
    max-width: 100%;
    resize: none;
    height: 50px;
}
textarea{
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 15px 0;
    max-width: 100%;
    resize: none;
    height: 200px;
}

input[type="button"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
input[type="submit"] {
    -webkit-appearance: none;
    outline: none

}

input:focus,
textarea:focus {
    border-color: #585858;
    outline: none
}

input[type="button"]:focus {
    outline: none
}

select::-ms-expand {
    display: none
}

iframe {
    border: 0
}
.padding-30px-left {
    padding-left: 30px;
}
.list-style-1 li {
    padding: 5px 0;
    list-style-type: none;
}




.map_top_h{
    font-weight: 400;
    font-size: 50px;
    text-align: center;
    color: #364167;
    padding-top: 80px;
    padding-bottom: 100px;
}
.service-1:hover{
    box-shadow: 0 1px 1px 0 rgba(90,122,190,0.1), 0 10px 20px 0 rgba(90,122,190,0.2);

    transition-duration: 1s;
}
.about_row{
  margin-top:100px;
}
.mb_150{
  margin-bottom: 100px; 
}
.font_30{
  font-size: 30px;
  font-weight: 600;
}




.p-0{
  padding-left: 0px !important;
}
.pt-0{
  padding-top: 0px !important;
}
.pb-0{
  padding-bottom: 0px !important;
}

.about_h{     font-size: 25px;     color: #90a0b4;     font-weight: 540;
margin: 30px 0px; } 

.about_s2 {
  text-align: left;
    font-size: 25px;
    color: #90a0b4;
    line-height: 40px;
    font-weight: 400;
    margin: 30px 0px;
}

.about_bottom_h{font-size: 20px;     line-height:
35px;color: #90a0b4; padding-right: 15px; 
    /*text-transform: capitalize;*/

}
.mt-50{
  margin-top: 50px;
} 
 .my_0{margin:0px !important}
.video-img{
  text-align: center;
  padding: 200px 0px;
    position: relative;
    top: 168px;
    left: 100px;
  }
.mr-0{
  margin-right: 0px;
}
.pl-40{
  padding-left: 40px !important;
}
.py-40{
  padding:0px 30px ;
}
.pr-0{
  padding-right: 0px !important;
}





 /*End servise area */

/*--------------------------------------------------*/
/*----------------------------------   


 1.pricingTable_area
------------------------------------*/
.pricingTable{
    text-align: center;
}
.mt-50{
  margin-top: 40px !important;
}
.tebel-color.pricingTable .pricingTable-header{
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding:60px 0;
    background:#7a90ff;
    position: relative;
    transition: all 0.3s ease 0s;
}
.pricingTable .pricingTable-header {
    padding:30px 0;
   background: #7a90ff;
    position: relative;
    transition: all 0.3s ease 0s;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

}


.pricingTable .pricingTable-header:before{
    left: 40px;
}
.pricingTable .pricingTable-header:after{
    right: 40px;
}
.pricingTable .heading{
    font-size: 20px;
    color: #e5cebf;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}
.pricingTable .price-value{
    display: inline-block;
    position: relative;
    font-size: 55px;
    font-weight: bold;
    color: #ffffff;
    transition: all 0.3s ease 0s;
}

.pricingTable .currency{
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 6px;
    left: -19px;
}
.pricingTable .month{
    font-size: 16px;
    color: #fff;
    position: absolute;
    bottom: 15px;
    right: -35px;
    text-transform: uppercase;
}
.pricingTable .pricing-content{
    padding-top: 20px;
    background: #fff;
    position: relative;
        border-top: 1px solid #eee;
            border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
   


.pricingTable .pricing-content:before{
    left: 40px;
}
.pricingTable .pricing-content:after{
    right: 40px;
}
.pricingTable .pricing-content ul{
    padding: 0 20px;
    margin: 0;
    list-style: none;
}

.pricingTable:hover .pricing-content ul:before,
.pricingTable:hover .pricing-content ul:after{
        background: #0e0fb352 !important;
    background-image: linear-gradient(to left ,#0e0fb34f,#0e0fb378,#e6349c75,#e6349c9e,#e6349c)!important;
}
.pricingTable .pricing-content ul:before{
    left: 44px;
}
.pricingTable .pricing-content ul:after{
    right: 44px;
}
.pricingTable .pricing-content ul li{
    font-size: 15px;
    font-weight: 600;
    color: #90a0b4;
    padding: 8px 0;
}
.pricingTable .pricing-content ul li:last-child{
    border-bottom: none;
}
.pricingTable .btn-default{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    background: #7a90ff;
    padding: 12px 25px;
    margin: 30px 0;
    margin-top: 60px;
    border-radius: 30px;
    transition: all 0.3s ease 0s;
}
.pricingTable .btn-default:hover{
    text-decoration: none;
}

.pricingTable{
       box-shadow: 0px 0px 70px #bbbaba69;
       border-radius: 30px;
}
.pricing-three{
    box-shadow: 0px 0px 140px #aeaeae8a;
    position: relative;
    z-index: 999999999999 !important;
}
.p-0{
  padding:0px !important;
}
.pt-100{
  padding-top:70px !important;
}

.tabel-color{
    font-size: 25px;
    font-weight: 600;
    color: #364167;
    margin: 40px 0px;
}


/*------------------------------------
.End pricingTable_area
------------------------------------*/


/*------------------------------------
.start about_area
------------------------------------*/
.title-lefts h1,
.title-lefts h2{
    font-size: 50px;
    font-weight: 900;
    color: #364167;
        line-height: 50px;
    /*text-transform: capitalize;*/
}

.title-lefts .bottom_h{
    font-size: 20px;
    line-height: 35px;
    color: #37456D;
    margin: 25px 0px;
}
.about-s{
    font-size: 25px;
    color: #37456c;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top:55px;
}
.about-bottom-s{

    font-size: 20px;
    color: #37456c;
    line-height: 40px;
    font-weight: 500;

}
.posi-r-img{
    position: relative;
    bottom:100px;
}
.video-a {
    bottom: 50px;
    position: absolute;
    right: 30px;
}
.box-s{
    box-shadow: 0px 0px 100px #ccc!important;
}
.about-right h1{
    font-size: 25px;
    font-weight: 600;
    color: #364167;
    line-height: 50px;
    /*text-transform: capitalize;*/
    margin-bottom:18px;
}
.about-team h1,
.about-team h2{
    font-size:40px;
    padding-top: 65px;
    font-weight: 700;
    color: #364167;
    line-height: 50px;
    /*text-transform: capitalize;*/
    margin-bottom: 45px;
}

.about_bottom_r{
    font-size: 30px;
    color: #36415f;
    font-weight: 540;
    margin: 30px 0px;
}
.about_top-100{
  margin-top: 120px;
}
.contact_bottom_r{
    font-size: 30px;
    color: #3b4a6b;
    font-weight: 540;
   margin-bottom: 30px;
}
label{
    font-size: 16px;
    color: #98a4b2;
    font-weight: 400;
    margin: 10px 0px;
}
.services-right{
    padding-top: 40px;
    padding-left: 35px;
    padding-right: 25px;
}

.services-right-text{
    font-size: 22px;
    line-height: 45px;
    color: #90a0b4;
    padding-right: 0px;
    text-transform: capitalize;
}
.owl-prev {
   
    position: absolute;
    bottom: 50%;
    color: transparent !important;
}
.testimonial_area:hover .owl-prev{
  display:block !important;
} 
.testimonial_area:hover .owl-next{
  display:block !important;
} 

.owl-next{
   
    position: absolute;
    right: 0;
    bottom: 50%;
    color: transparent !important;
}
.owl-prev::before { 
    content: url(../images/left-r.png);

}
.owl-next::before { 
    content: url(../images/right-r.png);

}
.owl-dots{
  display: none !important;
}
  
.title h1{
    font-size: 35px;
    padding-top: 90px;
    font-weight: 700;
    color: #364167;
    line-height: 50px;
    /*text-transform: capitalize;*/
}

.section-heading.left h2{
    font-size: 30px;
    font-weight: 700;
    color: #364167;
    line-height: 40px;
}








.site-header {
    position: relative;
    z-index: 10;
}

.site-header .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

.site-header__brand img {
    max-height: 54px;
    width: auto;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.site-nav > li {
    float: none;
}

.site-nav > li > a {
    padding: 10px 14px !important;
    border-radius: 999px;
}

.site-nav > li > a:hover,
.site-nav > li > a:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

.nav-cta {
    margin-left: 10px;
}

.site-nav__cta {
    display: inline-block;
    padding: 12px 22px !important;
    border-radius: 999px;
    background: #ffffff;
    color: #10204a !important;
    box-shadow: 0 12px 28px rgba(7, 12, 35, 0.22);
    text-transform: none !important;
}

.site-nav__cta:hover,
.site-nav__cta:focus {
    background: #dff2ff;
    color: #09142f !important;
}

.hero-section {
    padding-top: 10px;
}

.hero-grid {
    align-items: center;
}

.hero-copy {
    padding-top: 24px;
    padding-bottom: 18px;
}

.hero-eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
}

.hero-title.main-h {
    text-align: left;
    max-width: 13em;
    margin: 18px 0 18px;
    font-size: 58px;
    line-height: 1.03;
}

.hero-lead {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions .btn {
    min-width: 210px;
}

.hero-actions .btn-default {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.hero-actions .btn-default:before {
    background: rgba(255, 255, 255, 0.18) !important;
}

.hero-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.hero-pill-list li {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 14, 44, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel {
    padding-top: 18px;
}

.hero-panel-card {
    background: rgba(8, 15, 43, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(8, 12, 42, 0.28);
}

.hero-panel-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.hero-panel-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.hero-panel-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-list li:last-child {
    border-bottom: 0;
}

.hero-panel-list strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.hero-panel-list span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.6;
}

.hero-panel-foot {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.itsg-hero {
    padding-top: 36px;
    padding-bottom: 28px;
}

.itsg-hero__grid {
    display: flex;
    align-items: center;
    gap: 26px;
}

.itsg-hero__visual {
    display: flex;
    align-items: center;
}

.itsg-hero__copy,
.itsg-hero__visual {
    position: relative;
    z-index: 1;
}

.itsg-hero__eyebrow {
    margin-bottom: 18px;
}

.itsg-hero__title {
    max-width: 12.2em;
    margin: 18px 0 18px;
    color: #f7fbff;
    font-size: clamp(44px, 4.9vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.itsg-hero__title .itsg-gradient-text {
    display: inline;
    background-size: 100% 100%;
}

.itsg-hero__lead {
    max-width: 560px;
    margin: 0;
    color: rgba(230, 236, 250, 0.9);
    font-size: 18px;
    line-height: 1.58;
}

.itsg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.itsg-hero__actions .itsg-button {
    min-width: 214px;
}

.itsg-hero__capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.itsg-hero__capability {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 16px;
    border: 1px solid rgba(0, 232, 200, 0.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(12, 20, 38, 0.84), rgba(9, 15, 32, 0.8));
    box-shadow: 0 10px 24px rgba(5, 10, 24, 0.22);
    color: #edf4ff !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.itsg-command-center {
    width: 100%;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 232, 200, 0.12), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(124, 107, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(8, 14, 31, 0.94) 0%, rgba(10, 16, 32, 0.98) 100%);
}

.itsg-command-center__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.itsg-command-center__header h2 {
    margin: 14px 0 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.1;
}

.itsg-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.itsg-status-chip--live {
    background: rgba(46, 229, 157, 0.12);
    color: #bff6de !important;
    border-color: rgba(46, 229, 157, 0.18);
}

.itsg-command-center__map {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 430px;
    margin-top: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 50% 35%, rgba(0, 232, 200, 0.12), transparent 26%),
        radial-gradient(circle at 20% 80%, rgba(124, 107, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(5, 10, 24, 0.7) 0%, rgba(8, 13, 29, 0.92) 100%);
    overflow: hidden;
}

.itsg-command-center__map::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.42;
}

.itsg-command-card {
    position: absolute;
    z-index: 2;
    min-width: 154px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(12, 20, 38, 0.88);
    box-shadow: var(--itsg-shadow-soft);
    backdrop-filter: blur(8px);
    animation: itsg-float 10s var(--itsg-ease-emphasized) infinite;
}

.itsg-command-card strong,
.itsg-command-card span {
    display: block;
}

.itsg-command-card strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.itsg-command-card span {
    margin-top: 6px;
    color: rgba(235, 243, 255, 0.75);
    font-size: 12px;
    line-height: 1.45;
}

.itsg-command-card--core {
    position: relative;
    min-width: 248px;
    padding: 18px 20px;
    text-align: center;
    border-color: rgba(0, 232, 200, 0.18);
    background: linear-gradient(180deg, rgba(7, 22, 28, 0.92), rgba(12, 20, 38, 0.96));
    box-shadow: 0 0 0 1px rgba(0, 232, 200, 0.12), 0 20px 48px rgba(0, 0, 0, 0.28);
    animation-delay: 0.5s;
}

.itsg-command-card--node {
    width: 192px;
}

.itsg-command-card--left {
    top: 24px;
    left: 22px;
}

.itsg-command-card--right {
    top: 24px;
    right: 22px;
    animation-delay: 1s;
}

.itsg-command-card--top {
    top: 112px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.35s;
}

.itsg-command-card--bottom {
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.75s;
}

.itsg-flow-line {
    position: absolute;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 232, 200, 0.08), rgba(0, 232, 200, 0.72), rgba(124, 107, 255, 0.08));
    filter: drop-shadow(0 0 14px rgba(0, 232, 200, 0.2));
}

.itsg-flow-line--a {
    width: 1px;
    height: 120px;
    top: 88px;
    left: 50%;
}

.itsg-flow-line--b {
    width: 64%;
    height: 1px;
    top: 200px;
    left: 18%;
}

.itsg-flow-line--c {
    width: 1px;
    height: 112px;
    bottom: 88px;
    left: 50%;
}

.itsg-command-center__stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.itsg-command-tile {
    padding: 15px 16px;
    border: 1px solid rgba(0, 232, 200, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 14, 31, 0.88), rgba(8, 14, 31, 0.68));
    box-shadow: 0 12px 28px rgba(5, 10, 24, 0.18);
    animation: itsg-float 10s var(--itsg-ease-emphasized) infinite;
}

.itsg-command-tile:nth-child(2) {
    animation-delay: 0.4s;
}

.itsg-command-tile:nth-child(3) {
    animation-delay: 0.8s;
}

.itsg-command-tile p {
    margin: 0 0 4px;
    color: #a9bbd6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.itsg-command-tile strong {
    color: #f4f8ff;
    font-size: 15px;
    line-height: 1.34;
}

@keyframes itsg-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (hover: hover) and (pointer: fine) {
    .itsg-command-card:hover,
    .itsg-command-tile:hover {
        border-color: rgba(0, 232, 200, 0.24);
        box-shadow: var(--itsg-shadow-strong), var(--itsg-glow-cyan);
    }
}

@media (max-width: 991px) {
    .itsg-hero__grid {
        display: block;
    }

    .itsg-hero__visual {
        margin-top: 24px;
    }

    .itsg-command-center__map {
        min-height: 340px;
    }

    .itsg-command-card--left {
        top: 18px;
        left: 18px;
    }

    .itsg-command-card--right {
        top: 18px;
        right: 18px;
    }

    .itsg-command-card--top {
        top: 108px;
    }

    .itsg-command-card--bottom {
        bottom: 18px;
    }

    .itsg-command-center__stack {
        grid-template-columns: 1fr;
    }

    .itsg-trustband__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .itsg-ops-grid {
        display: block;
    }

    .itsg-ops-grid > [class*="col-"] {
        float: none;
        width: 100%;
    }

    .itsg-ops-visual {
        margin-top: 24px;
    }

    .itsg-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .itsg-hero {
        padding-top: 24px;
        padding-bottom: 20px;
    }

    .itsg-hero__title {
        max-width: 100%;
        font-size: clamp(36px, 10vw, 48px);
    }

    .itsg-hero__lead {
        font-size: 17px;
    }

    .itsg-hero__title {
        max-width: 100%;
        font-size: clamp(36px, 10vw, 48px);
    }

    .itsg-hero__actions .itsg-button {
        width: 100%;
        min-width: 0;
    }

    .itsg-hero__capability {
        font-size: 12px;
    }

    .itsg-command-center {
        padding: 18px;
        border-radius: 24px;
    }

    .itsg-command-center__header h2 {
        font-size: 20px;
    }

    .itsg-command-center__map {
        min-height: 420px;
        padding: 18px 0;
    }

    .itsg-command-card {
        min-width: 0;
        width: auto;
        max-width: calc(100% - 32px);
    }

    .itsg-command-card--core {
        width: min(250px, calc(100% - 32px));
    }

    .itsg-command-card--left,
    .itsg-command-card--right,
    .itsg-command-card--top,
    .itsg-command-card--bottom {
        position: absolute;
        transform: none;
    }

    .itsg-command-card--left {
        top: 18px;
        left: 16px;
    }

    .itsg-command-card--right {
        top: 86px;
        right: 16px;
    }

    .itsg-command-card--top {
        top: 168px;
        left: 16px;
    }

    .itsg-command-card--bottom {
        top: 252px;
        left: 16px;
        bottom: auto;
    }

    .itsg-flow-line--b,
    .itsg-flow-line--c {
        display: none;
    }

    .itsg-flow-line--a {
        height: 180px;
    }

    .itsg-command-center__stack {
        margin-top: 12px;
    }

    .itsg-command-tile {
        padding: 12px 14px;
    }

    .home-stack-groups.itsg-trust-grid {
        grid-template-columns: 1fr !important;
    }

    .itsg-trust-card,
    .itsg-proof-card,
    .itsg-proof-stack {
        padding: 22px 18px;
    }

    .itsg-proof-card h3 {
        font-size: 21px;
    }

    .itsg-proof-item strong {
        font-size: 17px;
    }

    .itsg-trustband__inner {
        padding: 20px 16px;
    }

    .itsg-trustband__logos {
        grid-template-columns: 1fr 1fr;
    }

    .itsg-client-tile {
        min-height: 72px;
        padding: 12px;
    }

    .itsg-ops-diagram {
        padding: 18px;
    }

    .itsg-ops-diagram__header h3 {
        font-size: 21px;
    }

    .itsg-ops-diagram__map {
        min-height: 620px;
    }

    .itsg-ops-node {
        min-width: 0;
        max-width: calc(100% - 30px);
    }

    .itsg-ops-node--center {
        width: min(250px, calc(100% - 32px));
    }

    .itsg-ops-node--left { top: 18px; left: 14px; }
    .itsg-ops-node--right { top: 96px; right: 14px; }
    .itsg-ops-node--top { top: 184px; left: 14px; transform: none; }
    .itsg-ops-node--top-left { top: 276px; left: 14px; }
    .itsg-ops-node--top-right { top: 366px; left: 14px; right: auto; }
    .itsg-ops-node--bottom { top: 458px; left: 14px; bottom: auto; transform: none; }
    .itsg-ops-node--bottom-left { top: 544px; left: 14px; bottom: auto; }

    .itsg-flow-line--b,
    .itsg-flow-line--c {
        display: none;
    }

    .itsg-flow-line--a {
        height: 260px;
    }

    .itsg-ops-diagram__footer span {
        font-size: 11px;
    }

    .itsg-process-grid {
        grid-template-columns: 1fr;
    }

    .itsg-process-grid::before {
        display: none;
    }

    .itsg-process-step {
        padding: 20px 16px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .itsg-command-card,
    .itsg-command-tile {
        animation: none !important;
    }

    .itsg-command-card,
    .itsg-command-tile,
    .itsg-button,
    .itsg-nav > li > a,
    .whatsapp-float {
        transition: none !important;
    }

    .itsg-button:hover,
    .itsg-button:focus,
    .itsg-nav > li > a:hover,
    .itsg-nav > li > a:focus,
    .whatsapp-float:hover,
    .whatsapp-float:focus {
        transform: none !important;
    }
}

.home-stack-section {
    padding: 18px 0 8px;
}

.home-stack-groups {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.itsg-trustband {
    padding: 10px 0 18px;
}

.itsg-trustband__inner {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(8, 14, 31, 0.88), rgba(10, 16, 32, 0.94));
    border: 1px solid rgba(135, 164, 236, 0.14);
    box-shadow: 0 20px 50px rgba(7, 12, 35, 0.18);
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-trustband__copy h2 {
    margin: 10px 0 10px;
    color: #fff;
    font-size: clamp(26px, 2.8vw, 38px);
    line-height: 1.08;
}

.itsg-trustband__copy p {
    margin: 0;
    color: #97a7c6;
    font-size: 16px;
    line-height: 1.7;
}

.itsg-trustband__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.itsg-trustband__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
    align-items: stretch;
}

.itsg-client-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 28px rgba(5, 10, 24, 0.16);
}

.itsg-client-tile img {
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
    opacity: 0.9;
    filter: grayscale(1) brightness(1.15);
}

.itsg-ops-section {
    padding-top: 18px;
}

.itsg-ops-grid {
    display: flex;
    align-items: center;
}

.itsg-ops-copy h2 {
    margin: 12px 0 12px;
    color: #fff;
    max-width: 14ch;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.itsg-ops-copy .itsg-section-lead {
    max-width: 520px;
}

.itsg-ops-copy .itsg-section-lead {
    max-width: 520px;
}

.itsg-ops-stats {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.itsg-ops-stat {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(8, 14, 31, 0.82);
    border: 1px solid rgba(135, 164, 236, 0.14);
    display: flex;
    align-items: center;
    gap: 14px;
}

.itsg-ops-stat strong,
.itsg-ops-stat span {
    display: block;
}

.itsg-ops-stat strong {
    color: #fff;
    font-size: 14px;
    min-width: 112px;
}

.itsg-ops-stat span {
    margin-top: 0;
    color: #9fb0cc;
    font-size: 13px;
    line-height: 1.5;
}

.itsg-ops-diagram {
    padding: 26px;
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-ops-diagram__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.itsg-ops-diagram__header h3 {
    margin: 14px 0 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.12;
}

.itsg-ops-diagram__map {
    position: relative;
    min-height: 460px;
    margin-top: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 50% 34%, rgba(0, 232, 200, 0.14), transparent 24%),
        radial-gradient(circle at 76% 20%, rgba(124, 107, 255, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(5, 10, 24, 0.68) 0%, rgba(8, 13, 29, 0.94) 100%);
    overflow: hidden;
}

.itsg-ops-diagram__map::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.5;
}

.itsg-ops-node {
    position: absolute;
    z-index: 2;
    min-width: 164px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 20, 38, 0.9);
    box-shadow: var(--itsg-shadow-soft);
}

.itsg-ops-node strong,
.itsg-ops-node span {
    display: block;
}

.itsg-ops-node strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
}

.itsg-ops-node span {
    margin-top: 6px;
    color: rgba(235, 243, 255, 0.76);
    font-size: 12px;
    line-height: 1.4;
}

.itsg-ops-node--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 220px;
    text-align: center;
    border-color: rgba(0, 232, 200, 0.18);
    background: linear-gradient(180deg, rgba(7, 22, 28, 0.96), rgba(12, 20, 38, 0.98));
}

.itsg-ops-node--left { top: 56px; left: 26px; }
.itsg-ops-node--right { top: 56px; right: 26px; }
.itsg-ops-node--top { top: 132px; left: 50%; transform: translateX(-50%); }
.itsg-ops-node--bottom { bottom: 52px; left: 50%; transform: translateX(-50%); }
.itsg-ops-node--top-left { top: 176px; left: 30px; }
.itsg-ops-node--top-right { top: 176px; right: 30px; }
.itsg-ops-node--bottom-left { bottom: 52px; left: 30px; }

.itsg-ops-diagram__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.itsg-ops-diagram__footer span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7e2f4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.itsg-section {
    position: relative;
    z-index: 1;
}

.itsg-section-eyebrow {
    margin: 0 0 10px;
    color: #9db8ff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}

.itsg-section-lead {
    max-width: 820px;
    margin: 14px auto 0;
    color: #98a7c0;
    font-size: 17px;
    line-height: 1.7;
}

.itsg-trust-section {
    padding: 18px 0 6px;
}

.home-stack-groups.itsg-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.itsg-trust-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(8, 14, 31, 0.78);
    border: 1px solid rgba(135, 164, 236, 0.16);
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.16);
}

.itsg-proof-section {
    padding: 18px 0 6px;
}

.itsg-proof-grid {
    margin-top: 24px;
}

.itsg-proof-grid > [class*="col-"] {
    margin-bottom: 24px;
}

.itsg-proof-card,
.itsg-proof-stack {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(8, 14, 31, 0.86);
    border: 1px solid rgba(135, 164, 236, 0.16);
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.16);
}

.itsg-proof-card--accent {
    background: linear-gradient(180deg, rgba(13, 23, 56, 0.98) 0%, rgba(16, 29, 71, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 58px rgba(4, 9, 28, 0.22);
}

.itsg-proof-card h3 {
    margin: 16px 0 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.itsg-proof-card > p:not(.itsg-badge),
.itsg-proof-item span {
    color: rgba(230, 236, 250, 0.86);
    font-size: 15px;
    line-height: 1.72;
}

.itsg-proof-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: rgba(230, 236, 250, 0.92);
}

.itsg-proof-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.itsg-proof-link {
    display: inline-block;
    margin-top: 18px;
    color: #dbe7ff !important;
    font-weight: 700;
}

.itsg-proof-stack {
    display: grid;
    gap: 14px;
}

.itsg-proof-item {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.itsg-proof-item p {
    margin: 0 0 6px;
    color: #9db8ff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
}

.itsg-proof-item strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.itsg-proof-item span {
    display: block;
}

.itsg-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
    position: relative;
}

.itsg-process-grid::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 232, 200, 0.08), rgba(0, 232, 200, 0.35), rgba(124, 107, 255, 0.08));
}

.itsg-process-step {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    padding: 22px 18px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 17, 41, 0.94), rgba(8, 14, 31, 0.96));
    border: 1px solid rgba(135, 164, 236, 0.14);
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.18);
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-process-step .skill-card__icon {
    margin-bottom: 16px;
}

.itsg-process-step h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.itsg-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.68;
}

@media (min-width: 1280px) {
    .itsg-process-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .itsg-process-grid::before {
        display: block;
    }
}

@media (max-width: 991px) {
    .itsg-process-grid {
        grid-template-columns: 1fr;
    }

    .itsg-process-grid::before {
        display: none;
    }
}

.home-stack-group {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(92, 113, 152, 0.12);
    box-shadow: 0 18px 45px rgba(16, 27, 58, 0.06);
}

.home-stack-title {
    margin: 0;
    color: #1d2a4a;
    font-size: 18px;
    font-weight: 700;
}

.home-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.home-chip-cloud--center {
    justify-content: center;
}

.home-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eef4ff;
    color: #23345c !important;
    border: 1px solid rgba(46, 127, 254, 0.12);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.services-intro-section {
    padding-top: 20px;
}

.home-process-section {
    padding-top: 10px;
}

.project-cases-section {
    padding: 0 0 20px;
}

.project-cases-eyebrow {
    margin: 0 0 10px;
    color: #9db8ff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}

.project-cases-lead {
    max-width: 760px;
    margin: 14px auto 0;
    color: #98a7c0;
    font-size: 17px;
    line-height: 1.7;
}

.project-cases-grid {
    margin-top: 24px;
}

.project-cases-grid > [class*="col-"] {
    margin-bottom: 24px;
}

.case-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 18, 37, 0.94), rgba(8, 14, 31, 0.96));
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.18);
    border: 1px solid rgba(135, 164, 236, 0.14);
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard);
}

.case-card--featured {
    background: linear-gradient(180deg, rgba(13, 23, 56, 0.98) 0%, rgba(16, 29, 71, 0.98) 100%);
    border-color: rgba(0, 232, 200, 0.18);
    box-shadow: 0 24px 58px rgba(4, 9, 28, 0.26);
}

.case-card--featured h3,
.case-card--featured .case-summary,
.case-card--featured .case-points,
.case-card--featured .case-stack,
.case-card--featured .case-problem,
.case-card--featured .case-solution,
.case-card--featured .case-chips,
.case-card--featured .case-link,
.case-card--featured .case-sector {
    color: #fff;
}

.case-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.case-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 232, 200, 0.1);
    color: #d8fffa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.case-card--featured .case-chip {
    background: rgba(137, 174, 255, 0.2);
    color: #dbe7ff;
}

.case-sector {
    color: #6d7c96;
    font-size: 13px;
    font-weight: 600;
}

.case-card h3 {
    margin: 0 0 12px;
    color: #f5f8ff;
    font-size: 23px;
    line-height: 1.15;
}

.case-summary {
    margin: 0 0 16px;
    color: #b7c5df;
    font-size: 14px;
    line-height: 1.7;
}

.case-points {
    margin: 0 0 16px;
    padding-left: 18px;
    color: #c6d2e8;
}

.case-points li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.case-stack {
    margin: 0 0 18px;
    color: #d4def0;
    font-size: 14px;
    line-height: 1.65;
}

.case-problem,
.case-solution {
    margin: 0 0 10px;
    color: #d3def1;
    font-size: 14px;
    line-height: 1.55;
}

.case-problem strong,
.case-solution strong {
    color: #fff;
}

.case-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.case-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e7efff;
    font-size: 12px;
    line-height: 1.2;
}

.case-link {
    display: inline-block;
    color: #2e7ffe !important;
    font-weight: 700;
}

.case-card--featured .case-link {
    color: #dbe7ff !important;
}

@media (hover: hover) and (pointer: fine) {
    .case-card:hover,
    .skill-card:hover,
    .itsg-trustband__inner:hover,
    .itsg-ops-diagram:hover {
        border-color: rgba(0, 232, 200, 0.2);
        box-shadow: 0 24px 56px rgba(4, 9, 28, 0.24), var(--itsg-glow-cyan);
        transform: translateY(-2px);
    }
}

.service-capabilities-section {
    padding: 20px 0 0;
}

.service-band {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.service-band span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7e1f5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-capabilities-eyebrow {
    margin: 0 0 10px;
    color: #9db8ff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}

.service-capabilities-lead {
    max-width: 820px;
    margin: 14px auto 0;
    color: #98a7c0;
    font-size: 17px;
    line-height: 1.7;
}

.service-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.service-capabilities-grid > [class*="col-"] {
    float: none;
    width: auto;
    display: flex;
    margin-bottom: 0;
}

.skill-card {
    height: 100%;
    width: 100%;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 17, 41, 0.94), rgba(8, 14, 31, 0.96));
    border: 1px solid rgba(135, 164, 236, 0.16);
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.18);
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard);
}

.skill-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #2e7ffe, #6c5cff);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.skill-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
}

.skill-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .skill-card {
        padding: 22px 18px;
    }

    .skill-card h3 {
        font-size: 20px;
    }

    .service-capabilities-lead {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .service-capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .service-capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .case-card {
        padding: 22px 18px;
    }

    .case-card h3 {
        font-size: 21px;
    }

    .project-cases-lead {
        font-size: 16px;
    }

    .home-stack-group {
        padding: 20px 16px;
    }
}

@media (min-width: 768px) {
    .home-stack-groups {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .site-nav {
        margin-top: 10px;
    }

    .site-nav > li > a {
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-radius: 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 6px;
    }

    .site-nav__cta {
        padding-left: 0 !important;
        padding-right: 0 !important;
        background: transparent;
        box-shadow: none;
        color: #ffffff !important;
    }

    .hero-title.main-h {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 0;
    }

    .hero-copy {
        padding-top: 10px;
        text-align: center;
    }

    .hero-title.main-h {
        font-size: 38px;
        line-height: 1.08;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        font-size: 17px;
        line-height: 1.65;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-actions .btn {
        min-width: 100%;
    }

    .hero-pill-list {
        justify-content: center;
    }

    .hero-panel-card {
        padding: 22px 18px;
    }
}



/*------------------------------------
.End about_area
------------------------------------*/

@media screen and (max-width: 990px){
    .pricingTable{ margin-bottom: 25px; }

}

/*End Table   */




/* our_team_area start */
.our_team_area {
  padding-bottom: 70px;
  }
.our_team_area .team_row {
  padding-top: 70px;
}
.our_team_area .team_row .team_membar {
  height:500px;
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  border-radius: 30px;
  box-shadow: 0px 17px 51px -10px #cccccc9e;
  
}
.our_team_area .team_row .team_membar img {
  max-width: 100%;
}
.our_team_area .team_row .team_membar .team_content {
 
    padding-top: 28px;
    padding-bottom: 42px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}
.our_team_area .team_row .team_membar .team_content ul {
  padding: 0;
  margin:20px 0px;
  margin-bottom: 30px;
  height: 0px;

  transition: all 300ms linear 0s;
}
.our_team_area .team_row .team_membar .team_content ul li {
  list-style: none;
 
  display: inline-block;
}
.our_team_area .team_row .team_membar .team_content ul li:first-child {
  padding: 0;
  margin-left: 50px;
}
.our_team_area .team_row .team_membar .team_content ul li a {
    font-size: 20px;
    color: #fff;
    line-height: 90px;
    width: 38px;
    color: #494dcb !important;
    text-align: left;
    display: block;
}

.our_team_area .team_row .team_membar .team_content .name {

text-align: left;
      font-size: 22px;
    color: #36415f !important;
     margin-left: 10px;
  display: block;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 10px;
}
.our_team_area .team_row .team_membar .team_content h6 {
 text-align: left;
 margin-top: 10px;
      font-size:18px;
    color: #36415f !important;
    margin-left: 10px;
}
.float-left{
  float: left;
}

/*End our_team_area*/
/*--------------------------------------------------*/


/*----------------------------------
   12.our_achievments_area
------------------------------------*/



/*--------------------------------------------------*/

/*----------------------------------
   13.testimonial_area
------------------------------------*/
/* Testimonial Area start */
.testimonial_area {
  padding-bottom: 90px;
  background: #fff;
}
.testimonial_area .testimonial_carosel {
  padding-top: 60px;
}
.testimonial_area .testimonial_carosel .item .media {
  max-width: 140px;
  margin: 0 auto;
  padding-bottom: 35px;
}
.testimonial_area .testimonial_carosel .item .media .media-left {
  padding-right: 30px;
}
.testimonial_area .testimonial_carosel .item .media .media-left a img {
    width: auto;
    height: 110px;
    border-radius: 50%;
}
.testimonial_area .testimonial_carosel .item .media .media-body {
  padding-top: 40px;
}
.testimonial_area .testimonial_carosel .item .media .media-body h4 {
  font: 700 14px "Roboto", sans-serif;
  text-transform: uppercase;
  color: #222222;
}
.testimonial_area .testimonial_carosel .item .media .media-body h6 {
  
  color: #555555;
  padding-top: 5px;
}
.body-slider{
    font-size: 20px;
    font-weight: 600;
    color: #364167;
}
.img-s{
    margin: 30px 0px;
}
.owl-carousel .owl-item img{
  max-width: 100% !important;
  text-align: center !important;
}
.testimonial_area .testimonial_carosel .item p  {
    color: #90a0b4;
    max-width: 945px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    padding-bottom:36px;
}
.testimonial_area .testimonial_carosel .item p i {
  color: #555555;
  font-size: 18px;
  display: block;
}
.testimonial_area .testimonial_carosel .item p .fa-quote-left {
  text-align: right;
  padding-top: 5px;
}
.testimonial_area .testimonial_carosel .item p .fa-quote-right {
  text-align: left;
  padding-bottom: 5px;
}
.testimonial_area .testimonial_carosel .owl-controls {
  text-align: center;
}
.testimonial_area .testimonial_carosel .owl-controls .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border: 2px solid #555555;
  margin-left: 15px;
  display: inline-block;
  transition: all 300ms linear 0s;
  border-radius: 50%;
}
.testimonial_area .testimonial_carosel .owl-controls .owl-dots .owl-dot:hover, .testimonial_area .testimonial_carosel .owl-controls .owl-dots .owl-dot:focus, .testimonial_area .testimonial_carosel .owl-controls .owl-dots .owl-dot.active {
  background: #7a90ff;
  border: 2px solid #7a90ff;
}

/* End Testimonial Area */





/*----------------------------------
   14.our_partners_area
------------------------------------*/
/* Our Partners Area start */
.bg-grediunt{
  background: #f4f9fb!important;
    background-image: linear-gradient(to right bottom,#f4f9fb,#f4f9fb,#f4f9fb,#f4f9fb,#f4f9fb)!important;
}
.bg-grediunts {
    background: #f1f9fc!important;
    background-image: linear-gradient(to right bottom,#f1f9fc,#f1f9fc,#f1f9fc,#f1f9fc,#f1f9fc)!important;
}
.email_color_site{
  color:#999 !important; 
}

.our_partners_area .book_now_aera {
  
  padding: 50px 0;
}
.our_partners_area .book_now_aera .book_now .booking_text {
  padding-top: 8px;
}
.our_partners_area .book_now_aera .book_now .booking_text h4 {
 
  color: #364167;
    line-height: 30px;
    font-size: 20px;
    font-weight: 600;

}
.our_partners_area .book_now_aera .book_now .booking_text p {
    color: #364167;
    font-size: 16px;
    padding-top: 20px;
}




/* End Our Partners Area */
/*----------------------------------
   14.our_modal_area
------------------------------------*/


.hero {
  position: relative;
  height:500px;
  width: 100%;
  background: #ccc;
}
.hero__overlay {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.no-background-blend-mode .hero__overlay {
  background: rgba(27, 82, 83, 0.6) !important;
}
.hero__overlay {
  position: fixed;
  z-index: 50;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 300ms linear;
  opacity: 0;
}
.hero__overlay--active {
  opacity: 1;
}
.hero__modal {
  width: 50%;
  margin: 30px auto 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__close {
    position: absolute;
    z-index: 15;
    right: -15px;
    bottom: 96%;
    width: 40px;
    border-radius: 50%;
    background: #67336b;
    height: 40px;
    text-indent: -9999em;
}
.hero__close:before, .hero__close:after {
  content: '';
  position: absolute;
 width: 20px;
    top: 50%;
    left: 50%;
    height: 4px;
    margin-left: -10px;
  background: #fff;
  transform: rotate(45deg);
}
.hero__close:after {
  transform: rotate(-45deg);
}
.hero a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: black;
}


.clip-polygon {
    background-color: #fff !important;
    background: url(../images/s-left-1.png) left top no-repeat;
    background-size: cover;
    clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%);
    -webkit-clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%) !important;
}

.clip-polygon2 {
    background-color: #fff !important;
    background: url(../images/s-left-2.png) left top no-repeat;
    background-size: cover;
    clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%);
    -webkit-clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%) !important;
}
.clip-polygon3 {
    background-color: #fff !important;
    background: url(../images/s-left-3.png) left top no-repeat;
    background-size: cover;
    clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%);
    -webkit-clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%) !important;
}
.clip-right {
    background-color: #fff !important;
    background: url(../images/s-left.png) right top no-repeat;
    background-size: cover;
    clip-path: polygon(14% 9%, 106% 34%, 100% 100%, 61% 100%, 0% 82%, 2% 72%, -1% 88%);
    -webkit-clip-path: polygon(14% 9%, 106% 34%, 100% 100%, 61% 100%, 0% 82%, 2% 72%, -1% 88%) !important;
}
.clip-right2 {
    background-color: #fff !important;
    background: url(../images/s-left-4.png) right top no-repeat;
    background-size: cover;
    clip-path: polygon(14% 9%, 106% 34%, 100% 100%, 61% 100%, 0% 82%, 2% 72%, -1% 88%);
    -webkit-clip-path: polygon(14% 9%, 106% 34%, 100% 100%, 61% 100%, 0% 82%, 2% 72%, -1% 88%) !important;
}
/* Pantallas pequeñas (móvil pequeño: hasta 575px) */
@media (max-width: 575px) {
    .clip-polygon {
        background-size: contain; /* Ajusta la imagen para evitar cortes */
        clip-path: polygon(0% 30%, 75% 0%, 85% 85%, 50% 95%, 0% 100%);
        -webkit-clip-path: polygon(0% 30%, 75% 0%, 85% 85%, 50% 95%, 0% 100%);
    }
    .clip-polygon2, .clip-polygon3 {
        background-size: contain;
        clip-path: polygon(0% 30%, 75% 0%, 85% 85%, 50% 95%, 0% 100%);
        -webkit-clip-path: polygon(0% 30%, 75% 0%, 85% 85%, 50% 95%, 0% 100%);
    }

    .clip-right, .clip-right2 {
        background-size: contain;
        clip-path: polygon(20% 10%, 90% 40%, 100% 100%, 60% 100%, 5% 90%);
        -webkit-clip-path: polygon(20% 10%, 90% 40%, 100% 100%, 60% 100%, 5% 90%);
    }
}

/* Pantallas medianas (móvil grande: 576px a 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .clip-polygon {
        background-size: contain;
        clip-path: polygon(0% 27%, 80% 0%, 87% 85%, 52% 98%, 0% 100%);
        -webkit-clip-path: polygon(0% 27%, 80% 0%, 87% 85%, 52% 98%, 0% 100%);
    }
    .clip-polygon2, .clip-polygon3 {
        background-size: contain;
        clip-path: polygon(0% 27%, 80% 0%, 87% 85%, 52% 98%, 0% 100%);
        -webkit-clip-path: polygon(0% 27%, 80% 0%, 87% 85%, 52% 98%, 0% 100%);
    }

    .clip-right, .clip-right2 {
        background-size: contain;
        clip-path: polygon(15% 12%, 95% 35%, 100% 100%, 60% 100%, 0% 85%);
        -webkit-clip-path: polygon(15% 12%, 95% 35%, 100% 100%, 60% 100%, 0% 85%);
    }
}

/* Pantallas grandes (tablet: 768px a 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .clip-polygon {
        background-size: cover;
        clip-path: polygon(0% 26%, 78% 0%, 88% 87%, 54% 100%, 0% 100%);
        -webkit-clip-path: polygon(0% 26%, 78% 0%, 88% 87%, 54% 100%, 0% 100%);
    }
    .clip-polygon2, .clip-polygon3 {
        background-size: cover;
        clip-path: polygon(0% 26%, 78% 0%, 88% 87%, 54% 100%, 0% 100%);
        -webkit-clip-path: polygon(0% 26%, 78% 0%, 88% 87%, 54% 100%, 0% 100%);
    }

    .clip-right, .clip-right2 {
        background-size: cover;
        clip-path: polygon(14% 9%, 100% 30%, 100% 100%, 61% 100%, 5% 80%);
        -webkit-clip-path: polygon(14% 9%, 100% 30%, 100% 100%, 61% 100%, 5% 80%);
    }
}

/* Pantallas extra grandes (escritorio: desde 992px en adelante) */
@media (min-width: 992px) {
    .clip-polygon {
        background-size: cover;
        clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%);
        -webkit-clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%);
    }
    .clip-polygon2, .clip-polygon3 {
        background-size: cover;
        clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%);
        -webkit-clip-path: polygon(0% 25%, 78% 0%, 90% 89%, 54% 101%, 0% 100%, 0% 75%, 0% 100%);
    }

    .clip-right, .clip-right2 {
        background-size: cover;
        clip-path: polygon(14% 9%, 106% 34%, 100% 100%, 61% 100%, 0% 82%, 2% 72%, -1% 88%);
        -webkit-clip-path: polygon(14% 9%, 106% 34%, 100% 100%, 61% 100%, 0% 82%, 2% 72%, -1% 88%);
    }
}

.py-200{
 padding: 201px 0px !important;
    padding-bottom: 328px !important;
}
.py-45{
  padding: 40px 0px !important;
}
.py_map_40{
  padding-top: 40px;
  padding-bottom: 0px !important;
}



/*------------------------------------
14.End-modal area
------------------------------------*/

/*------------------------------------
19.Edit-css
------------------------------------*/

/*Edit-css start*/
.top-button {
    margin-top: 10px;
}
.button-n,
a {
    text-decoration: none!important
    color:#fff !important;
}

.header_aera .navbar-header .navbar-brand{
  padding-top:0px !important;
}
.py-30{
  padding:20px 0px;
}
.tr{
text-align: right;
}
.logo-biss{
  
    color: #fff !important;
    font-size: 30px;
    font-weight: 700;

}


.what_we_area {
    
    background: #f2e9df !important;
    background-image: linear-gradient(to right bottom, #f2e9df, #c6dae1, #c6dae1, #f2e9df, #f2e9df) !important;
}

section{
  padding: 70px 0px;
}

.main-h{
    font-size: 45px;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: bold;
    /*text-transform: capitalize;*/
    margin: 30px 0 40px;
    -webkit-animation-delay: 150ms;
    animation-delay: 150ms;
    visibility: visible;
    
}
.main-h2{
    font-size: 24px;
  visibility: visible;
    animation-name:fadeInUp;
    font-weight: normal;
    margin-bottom: 30px;
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
    visibility: visible;
    animation-name:fadeInUp;
  }
  .main-h3{
visibility: visible;
    animation-name:fadeInUp;
  }

  .slider_area .slider_inner .camera_caption div a {
    font: 700 18px/59px "Roboto", sans-serif;
    width: 180px;
    text-align: center;
    background: #f6b60b;
    display: block;
    text-shadow: none;
    margin: 0 auto;
    outline: none !important;
    box-shadow: none;
    border: 0;
    color: #222222;
    position: relative;
    z-index: 2;
    padding: 0;
}

.top-banner {
    margin-top: 40px;
}
.mt-120{
 padding: 60px 0px 30px 75px;
}


.professional_builder .builder_all .builder i {
   
    color: #9eccfd !important;
  
}

.pb-90{
padding-bottom: 90px;

}

.our_footer_area{
  background-image: url(../images/footer-img.jpg);
    padding-top:70px;
    padding-bottom: 90px;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.commercial-footer__cta {
    background: linear-gradient(135deg, #08122a 0%, #10214e 55%, #223a78 100%);
    padding: 42px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-cta-eyebrow {
    margin: 0 0 10px;
    color: #9db8ff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
}

.footer-cta-row h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
}

.footer-cta-copy {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
}

.footer-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-cta-actions .btn {
    min-width: 240px;
    text-align: center;
}

.commercial-footer .footer-menu a,
.commercial-footer .location a,
.commercial-footer .color-gray a {
    color: #fff !important;
}

.commercial-footer .footer-menu a:hover,
.commercial-footer .location a:hover {
    color: #9db8ff !important;
}

.chat-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1105;
    font-family: 'Open Sans', sans-serif;
}

.chat-widget__launcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #2e7ffe, #5c57f4);
    color: #fff;
    box-shadow: 0 18px 40px rgba(10, 20, 56, 0.28);
}

.chat-widget__launcher-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8fffd0;
    box-shadow: 0 0 0 4px rgba(143, 255, 208, 0.2);
}

.chat-widget__panel {
    width: min(360px, calc(100vw - 40px));
    margin-bottom: 12px;
    border-radius: 22px;
    background: rgba(9, 15, 38, 0.98);
    border: 1px solid rgba(157, 184, 255, 0.16);
    box-shadow: 0 28px 70px rgba(3, 9, 28, 0.42);
    overflow: hidden;
}

.chat-widget__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 12px;
    color: #fff;
}

.chat-widget__eyebrow {
    margin: 0 0 6px;
    color: #9db8ff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.chat-widget__header h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.chat-widget__close {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.84);
    font-size: 30px;
    line-height: 1;
}

.chat-widget__transcript {
    max-height: 320px;
    overflow-y: auto;
    padding: 0 18px 10px;
}

.chat-bubble {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.chat-bubble p {
    margin: 0;
}

.chat-bubble--assistant {
    background: rgba(255, 255, 255, 0.08);
    color: #eff4ff;
}

.chat-bubble--user {
    background: linear-gradient(135deg, #2e7ffe, #5c57f4);
    color: #fff;
    margin-left: 42px;
}

.chat-bubble--pending {
    opacity: 0.8;
    font-style: italic;
}

.chat-widget__quick-replies,
.chat-widget__response-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 12px;
}

.chat-quick-reply {
    border: 1px solid rgba(157, 184, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 12px;
}

.chat-widget__form {
    padding: 0 18px 18px;
}

.chat-widget__form textarea {
    width: 100%;
    resize: none;
    border-radius: 16px;
    border: 1px solid rgba(157, 184, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 12px 14px;
    min-height: 58px;
}

.chat-widget__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.chat-widget__actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.chat-widget__send,
.chat-widget__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
}

.chat-widget__send {
    border: 0;
    color: #fff;
    background: #2e7ffe;
}

.chat-widget__whatsapp {
    border: 1px solid rgba(157, 184, 255, 0.18);
    color: #fff !important;
}

@media (max-width: 767px) {
    .chat-widget {
        left: 12px;
        bottom: 12px;
        right: 12px;
    }

    .chat-widget__panel {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .commercial-footer__cta {
        padding: 34px 0;
    }

    .footer-cta-row {
        display: block;
    }

    .footer-cta-row h2 {
        font-size: 26px;
    }

    .footer-cta-copy {
        font-size: 16px;
    }

    .footer-cta-actions {
        align-items: stretch;
        margin-top: 20px;
    }

    .footer-cta-actions .btn {
        min-width: 100%;
    }
}

.footer-logo{
    max-width: 100%;
    text-align: left;
    height: 100px;
}
.footer-h{
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    margin-top: 25px;
}
.footer-top{
    font-size: 25px;
    color: #fff;
    font-weight: 600;

     margin-bottom: 20px;
}
.footer-menu{
  padding:0px;
  margin:0px;
}
.footer-left-h{
    font-size: 20px;
    color: #fff;
    line-height: 30px;
   
}

.footer-menu li{
    font-size: 20px;
    list-style-type: none;
    line-height: 40px;
    color: #fff;
}
.location li {
    font-size: 20px;
    list-style-type: none;
    line-height: 30px;
    color: #fff;
    margin-bottom: 25px;
}
.location_map li {
    font-size: 20px;
    list-style-type: none;
    line-height: 35px;
    color: #3b4a6b;
    margin-bottom: 25px;
}
.location_map{

  margin:0px;
}
.location li i {
    margin-right:10px;
}
.location_map li i {
    margin-right:10px;
}
.location_map li a {
    margin-right:10px;
    color:#3b4a6b !important;
}

.social:hover {
     -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
     -o-transform: scale(1.1);
 }
 .social {
     -webkit-transform: scale(0.8);
     /* Browser Variations: */
     
     -moz-transform: scale(0.8);
     -o-transform: scale(0.8);
     -webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
     -o-transition-duration: 0.5s;
 }
 .maps{
  margin-bottom:0px;
 }
#contatti a{
  color: #fff;
  text-decoration: none;
}


 .hero__player{
  height: 450px !important;
 }
iframe{
    width: 100%;
    height:550px;
  }
@media (max-width: 575.98px) {

  
  #contatti .maps iframe{
    width: 100%;
    height: 550px;
  }
 }


@media (min-width: 576px) {

 

   #contatti .maps iframe{
     width: 100%;
     height: 450px;
   }
 }

@media (min-width: 768px) {

 

  #contatti .maps iframe{
    width: 100%;
    height: 850px;
  }
}

@media (min-width: 992px) {


   #contatti .maps iframe{
     width: 100%;
     height: 700px;
   }
}


.comment-wrap {
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #0c487b;
    padding: 30px 20px;
}
.comment-theme{
  float:left;
}
.comment-main-area{
  margin-left:115px;
}
.comment-wrap1 {
    margin-left: 20px;
}
.comment-wrap2{
    margin-left:40px;
}
.sewl-comments-meta h4{
  margin-top: 2.2em;
  text-transform:capitalize;
  font-weight:500;
  font-size: 20px;
}
.comment-area p{
    margin-bottom: 5px;
    color: #000c17;
}

.sewl-comments-meta h4 span {
    font-weight: 400;
    font-size: 13px;
    display: inline-block;
    margin-left: 15px;
    font-style: normal;
}

.comment-image img {
    border-radius: 50%;
    height: 100px;
}




.sewl-form-inputs textarea,.sewl-form-inputs input{
  height:38px;
  width:100%;
      font-size: 16px;
  padding-left:20px;
  margin-bottom:25px;
      border: 1px solid #98a4b2;
   color:#98a4b2; 
    border-radius: 5px;
}
.sewl-form-inputs textarea:focus,.sewl-form-inputs input:focus{
  outline:none;
}
.sewl-form-inputs textarea{
  height:150px;
  padding-top:10px;
  margin-bottom: 40px;
  margin-top: 25px;
}
.mt-30{
  margin-bottom:10px;
}
.mr-15{
  margin-left: 15px;
}
.mb_20{
  margin-bottom: 20px;
}

.form-submit  input:hover{
  background:#0552b1;
  border-color:#0552b1;
}
.sewl-form-inputs {

}


.pb-50{
  padding-bottom: 50px;
}
.form-c{
    display: block;
    height: 6rem;
    padding: 1.5rem 2.4rem;
    border: 0;
    outline: none;
    color: #151515;
    font-size: 1.5rem;
    line-height: 3rem;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.12);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/*close*/
/*--------------------------------------------------*/

/*
    Multicoloured Hover Variations
*/
 
 #social-fb:hover {
     color: #fff;
 }
 #social-tw:hover {
     color: #fff;
 }
 #social-gp:hover {
     color: #fff;
 }
 #social-em:hover {
     color: #fff;
 }
.bigpixi-footer-social{
  margin-top: 80px;
}
/*End Edit-css*/
/*--------------------------------------------------*/


/*------------------18. blog-area start --------------------*/
.blog-wrap{
  background:#fff;
}
.blog-img{
  position:relative;
  z-index:99;
  overflow:hidden;
}
.blog-img:before,.blog-img:after{
  position:absolute;
  top:0;
  width:0;
  height:100%;
  background:#000;
  content:"";
  transition:all .5s;
  -webkit-transition:all .5s;
  -moz-transition:all .5s;
  opacity:.5;
}
.blog-img:before{
  left:0;
}
.blog-wrap:hover .blog-img:before{
  width:50%;
}
.blog-img:after{
  right:0;
}
.blog-wrap:hover .blog-img:after{
  width:50%;
}
.blog-meta{
  margin-bottom:10px;
}
.blog-meta ul li{
  display:inline-block;
  margin-right:10px;
}
.blog-meta ul li a{
  color:#555 !important;
}
.blog-meta ul li a:hover{
  color:#296dc1;
}
.blog-meta ul li a i{
  margin-right:3px;
}
.blog-content{
  position:relative;
  padding:20px 20px 30px;
  border-bottom:2px solid #c3c3c3;
}
.blog-content:before,.blog-content:after{
  position:absolute;
  left:0;
  bottom:-2px;
  width:10%;
  height:2px;
  background: #296dc1;
  content:"";
  transition:all .5s;
  -webkit-transition:all .5s;
  -moz-transition:all .5s;
  opacity:.7;
}
.blog-wrap:hover .blog-content:before,.blog-wrap:hover .blog-content:after{
  width:50%;
}
.blog-content:after{
  left:auto;
  right:0;
}
.blog-content h3{
  margin-bottom:15px;
}
.blog-content h3 a{
  font-size:20px;
  text-transform:capitalize;
  color:#555!important; 
}
.blog-content p{
  margin-bottom:20px;
  line-height:24px;
}
.blog-content a.btn-style{
  border:1px solid #296dc1;
}

.blog-img img {
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
/*------------------18. blog-area end --------------------*/
/*--------------------pagination-wrap start--------------*/
.pricing-page-area{
  padding-top:220px;
}
.pagination-wrap ul{
    margin-top:70px;
    display: flex;
    justify-content: center;
}
.pagination-wrap ul li a{
    height: 45px;
    width: 45px;
    background: #;
    line-height: 45px;
    display: block;
    border: 1px solid #296dc1;
    text-align: center;
    margin-left: -1px;
    color:#333 !important;
    font-size: 18px;
}
.pagination-wrap ul li a:hover,.pagination-wrap ul li.active a{
    background: #296dc1;
    color: #fff !important;
}
.blog-img img{
    width: 100%;
}
.btn_font_16{
  font-size: 16px;
  text-transform:capitalize;
  padding: 12px 25px;
}
/*--------------------pagination-wrap end--------------*/


/*============================================
            19.blog-details-area start
=============================================*/
.blog-details-img{
    margin-bottom: 40px;
}
.blog-details-content h3{
    margin-bottom: 20px;
}
.blog-details-content p{
    margin-bottom: 25px;
}
.blog-details-content blockquote{
    font-size: 16px;
    font-style: italic;
        background: rgb(39, 40, 156);
    padding: 30px;
    border-left: 5px solid rgb(186, 85, 187);
    margin:35px 0px;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.blog-details-content ul{
    margin-bottom: 30px;
}
.blog-details-content ul li{
    line-height: 30px;
    padding-left: 20px;
    position: relative;
}
.blog-details-content ul li::before,.blog-details-content ul li::after{
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2e7ffe;
    content: "";
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 99;
}
.blog-details-content ul li::after{
    height: 10px;
    width: 10px;
    background: #2e7ffe;
    z-index: 9;
    left: -2px;
}
ol{
  list-style:none;
}
.comment-wrap {
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #f1f1f1;
    padding: 30px 20px;
}
.comment-theme{
  float:left;
}

.comment-wrap1 {
    margin-left: 20px;
}
.comment-wrap2{
    margin-left:40px;
}
.sewl-comments-meta h4{
  text-transform:capitalize;
  font-weight:500;
  margin-top: 0px;
}
.sewl-comments-meta h4 span {
    font-weight: 400;
    font-size: 13px;
    display: inline-block;
    margin-left: 15px;
    font-style: italic;
}
.comment-main{
  margin-bottom:50px;
}
.comment-image img {
    border-radius: 50%;
}
.comment-area p{
    margin-bottom: 5px;
}
.comments-reply a.comment-reply-link{
    font-style: italic;
}
h3.blog-title {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
}


.sewl-form-inputs textarea,.sewl-form-inputs input{
  height:50px;
  width:100%;
  border:1px solid #f1f1f1;
  padding-left:20px;
  margin-bottom:20px;
}
.sewl-form-inputs textarea:focus,.sewl-form-inputs input:focus{
  outline:1px solid #296dc1;
}
.sewl-form-inputs textarea{
  height:150px;
  padding-top:10px;
}
.form-submit  input{
  text-transform:uppercase;
  background:#296dc1;
  color:#fff;
  width: auto;
  padding: 10px 25px;
}
.form-submit  input:hover{
  background:#0552b1;
  border-color:#0552b1;
}
/*----------------commingsoon-area start------------------*/
.comming-soon-area {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comming-soon-wrap h3{
  font-size: 30px;
  margin-bottom: 20px;
}
.comming-soon-wrap p{
  font-size: 16px;
  margin-bottom: 30px;
}
.timer span.cdown {
    display: block;
    float: left;
    width: 24%;
    text-align: center;
    height: 150px;
    display: flex;
    flex-direction: column;
    background: #296dc1;
    justify-content: center;
    color: #fff;
  transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
    -moz-transform: skewX(25deg);
    margin-left: 10px;
}
.timer span.cdown:first-child{
  margin-left: 0px;
}
.timer span.time-count {
    font-size: 40px;
  margin: 0px auto;
    margin-bottom: 10px;
    display: block;
  transform: skewX(-25deg);
  -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
  padding-bottom: 10px;
  width: 100px;
  position: relative;
}
.timer span.time-count::before,.timer span.time-count::after{
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}
.timer span.time-count::after{
  left: 30px;
  bottom: -2px;
}
.timer span.cdown p{
  color: #fff;
  transform: skewX(-25deg);
  -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
  font-size: 18px;
}
.search-sidebar input {
    width: 100%;
    height: 45px;
    background: transparent;
    border: 1px solid #c0dbfd;
    padding-left: 10px;
}
.search-sidebar button {
    position: absolute;
    right: 0;
    width: 45px;
    height: 45px;
    top: 0;
    color: #fff;
    background: #296dc1;
    border: 1px solid #296dc1;
}

/*----------------contact-area start------------------*/

.contact-wrap textarea{
  height: 200px;
}
.contact-wrap button{
  border: 1px solid #999;
  padding: 10px 30px;
}
.contact-wrap ul li{
  padding: 30px 30px;
  background: #296dc1;
  color: #fff;
  position: relative;
  padding-left: 90px;
}
.contact-wrap ul li:nth-child(odd){
  background:#0552b1;
}
.contact-wrap ul li p{
  color: #fff;
}
.contact-wrap ul li i{
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  font-size: 35px;
}
.contact-wrap h3{
  text-transform: uppercase;
  margin-bottom: 30px;
}
#googleMap{
  height: 500px;
  width: 100%;
  background: #296dc1;
  margin-top: 100px;
}

/*----------------contact-area End------------------*/

/*-----------------------20.sidebar-style-here-----------------------*/
.search-sidebar form{
    position: relative;
}
.search-sidebar input{
    width: 100%;
    height: 45px;
    background: transparent;
    border: 1px solid #c0dbfd;
    padding-left: 10px;
}
.search-sidebar button{
    position: absolute;
    right: 0;
    width: 45px;
    height: 45px;
    top: 0;
    color: #fff;
    background: #2e7ffe;
    border: 1px solid #2e7ffe;
}
.search-sidebar button:hover{
    background: #0552b1;
    border-color: #0552b1;
}
.sidebar-title{
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.category-wrap ul li{
    line-height: 35px;
    border-bottom: 1px solid #f1f1f1;
}
.category-wrap ul li:last-child{
    border-bottom: none;
}
.category-wrap ul li a{
    padding-left: 20px;
    position: relative;
    display: block;
    color:#555 !important;
}
.category-wrap ul li a::before{
    position: absolute;
    left: 0;
    content: "\f101";
    font-family: fontawesome;
    color: #296dc1;
    font-size: 16px;
    top: 0;
}
.related-post ul li{
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.related-post ul li:last-child{
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.post-img{
    float: left;
}
.post-info{
    margin-left: 95px;
}
.post-info a {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    line-height: 20px;
    color:#555 !important;
}
.post-info p{
    line-height: 20px;
    font-size: 12px;
    color: #296dc1;
}
.archive-wrap ul li{
    line-height: 35px;
}
.archive-wrap ul li a{
    display: block;
    color: #555!important;
}
.tags-wrap ul li{
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}
.tags-wrap ul li a{
    display: block;
    padding: 8px 20px;
    border: 1px solid #e1e1e1;
      color: #555!important;

}
.tags-wrap ul li a:hover{
    background: #296dc1;
    color: #fff !important;
}
/*-----------------------20.sidebar-style-here-----------------------*/

/*------------------------------------
21.Responsive
(mxn-width: 1024px)  media query
------------------------------------*/

@media (max-width: 1024px) {
 .video-a {
    position: absolute;
    right: 30px;
    top: 200px;
}
.our_team_area .team_row .team_membar .team_content ul li a {
    font-size: 15px;
    color: #fff;
    line-height: 90px;
    width: 17px;
    }
}

/*------------------------------------
21.Responsive
(min-width: 768px)  media query
------------------------------------*/
@media (min-width: 768px) {
  .header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu .other_dropdwn {
    margin-right: -122px;
  }
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul {
  border: none;
  box-shadow: none;
  border-radius: 0px;
  min-width: 190px;
  transition: all 500ms ease-in-out;
  background: #f6b60b;
}
}

@media (min-width: 768px) {
  .header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul {
    margin-right: -150px;
    display: block;
    transform: rotateX(-90deg);
    transform-origin: top;
  }
}


/*------------------------------------
21.Responsive
(min-width: 1023px) and (max-width: 1100px)  media query
------------------------------------*/
@media (min-width: 1023px) and (max-width: 1100px) {
.shap_top{
    font-size:25px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 30px;
}
.all-text {
    padding: 108px 50px;
}
.shap_bottom{
    font-size:16px;
    line-height: 30px;
    color: #fff;
}
.about-bottom-s {
    font-size: 19px;

}
}
  
  /*------------------------------------
22.Responsive
(max-width: 767px) media query
------------------------------------*/
@media (max-width: 767px) {
  
section {
    padding: 30px 0px !important;
}
section.bg-banner-img {
    padding-bottom: 100px !important;
}
.row.book_now {
    margin-bottom: 20px;
}

h2.footer-top{
  margin-top: 30px;
}
ul.location{
  margin-top: 40px;
}
.clip-polygon .video-img{
  left:0px !important;
}
.hero__player {
    height: 200px !important;
    width: 100%;
}
.header_aera{
  padding: 30px 0px !important}
.button-banner {
    padding: 18px 30px !important;}
    .title h2{
      padding-top: 0px !important;
    }
.top-banner .button-banner{
      font-size: 12px !important;
    }
    .video-img{
      padding-left:0px !important; 
    }

    p.about_bottom_h.mt-50 {
    padding: 0px 10px;
}
.m-s{
  padding:0px !important;
}
button.navbar-toggle {
   background: #ffffff;
    border-color: #ffffff !important;
    color: #fff !important;
}
ol {
    list-style: none;
    padding: 0;
}
.comment-main-area{
  margin-left: 0px;
}
.col-xs-6.pr-0{
  width: 100%;
  padding-right: 15px !important;
}
.pr-0{padding-right: 15px !important;}

.pt-100 {
    padding-top:30px !important;
}
.contact-map{
  float: none;
}
.button-left {
    padding: 18px 30px !important;}
.main-h {
    font-size: 30px;
    line-height: 40px;}
  .py-70{
    padding:30px;
  }
  .title h1 {
    font-size: 30px !important;
  }
  .title-left h1 {
    font-size: 30px;
    margin-top: 10px;
  }
  img.posi-r-img{
    bottom: 0;
  }
  .video-a {
    position: absolute;
    right: 20px !important;
    bottom: 10PX !important;
        top: auto !important;
}
.search-sidebar form{
  margin-top: 15px;
}
  .top-banner.wow.fadeInRight.text-right{
    text-align: center;
  }
  .top-banner.wow.fadeInRight.text-left {
    text-align: center;
}
  .navbar-toggle {
    top: 15px;
  }

  .header_aera .navbar-header {
    height: 80px;
  }
  .header_aera .navbar-header .navbar-brand {
    padding-top: 25px !important;
  }

  .header_aera .navbar-collapse .navbar-nav.navbar-right li a {
    line-height: 45px;

  }
  .navbar-default .navbar-collapse, .navbar-default .navbar-form{
        background: #000 !important;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li a:hover, .header_aera .navbar-collapse .navbar-nav.navbar-right li a:focus {

  background-color:#464646 !important;
}

  .header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul {
    padding-left: 30px;
    background-color: transparent;
  }

  

  .slider_inner.camera_wrap {
    height: 500px !important;
  }

  

  .our_team_area .team_row .team_membar {
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

  /*------------------------------------
23.Responsive
(max-width: 480px) media query
------------------------------------*/
@media (max-width: 480px) {
  .bg-about-img{
    background-image: none;
  }
  .owl-stage-outer{text-align: center;}
  .py-70{
    padding: 5px;
  }
  .all-text{
    padding: 0px;
  }
  .owl-nav{
    display: none !important;
  }
  .owl-dots {
    display:block !important;
}
  .back-shap{
    margin-top: 10px;
    top: 0;
    padding: 70px 0px;
    background-size: contain;
}
.shap_bottom {
    font-size: 15px;
    line-height: 23px;
    color: #fff;
    padding-left:30px;
  
}
.about-right h1 {
    font-size:30px;
    padding-top:10px;
    }
    .about_top-400 {
    margin-top: 30px;
}
.clip-ellipse {
    clip-path: ellipse(100% 150% at top);
    -webkit-clip-path: ellipse(100% 150% at top);
}
.banner-text {
    text-align: center;
    line-height: 30px;
}
.service-1{
margin-bottom: 15px;
}
.clip-polygon{
  clip-path:none !important;
  -webkit-clip-path:none !important;
}
.clip-right{
  clip-path:none !important;
  -webkit-clip-path:none !important;
      background: url(../images/s-left.png)center top no-repeat;
      margin-top: 15px;
}
.p-0 {
    padding: 15px !important;
}
.testimonial_area .testimonial_carosel .item .media {
    max-width: 112px !important;
    }
    .testimonial_area .testimonial_carosel .item .media .media-left{padding: 0px;}
.services-right{
  padding: 0px !important;
}
.shap_top  {
    padding-left: 15px;
    font-size: 22px;
    font-weight: 600;
    padding-left:30px;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 4px;
}
.row.text-left.box-s{padding: 15px;}
.title-left.wow.fadeInUp{
  padding:15px;
}
img.posi-r-img{
  margin-top: 15px;
}
.row.about_row.py-40{
  margin-top: 0px;
}

  }

@media (max-width: 1024px) {
 .button-left {
    padding: 18px 35px;
  }

  .button-banner {
    padding: 18px 22px;
  }
  
}

@media (min-width: 767px) {
 .navbar-brand {
  
    padding: 25px 15px !important;
}

.video-img{
  left: 0px !important;
}
}
/*------------------------------------
24.Responsive End
(max-width: 480px) media query
------------------------------------*/












/* ----------------------------------
   iTSG dark-tech shell
------------------------------------ */
:root {
    --itsg-bg: #050812;
    --itsg-bg-alt: #0a1020;
    --itsg-surface: rgba(12, 20, 38, 0.78);
    --itsg-surface-strong: #10182c;
    --itsg-surface-soft: rgba(16, 18, 31, 0.92);
    --itsg-text: #f5f8ff;
    --itsg-text-muted: #9aa7bd;
    --itsg-text-soft: #7f8aa6;
    --itsg-border: rgba(255, 255, 255, 0.10);
    --itsg-border-strong: rgba(0, 232, 200, 0.22);
    --itsg-accent: #00e8c8;
    --itsg-accent-2: #7c6bff;
    --itsg-accent-3: #2a8cff;
    --itsg-success: #2ee59d;
    --itsg-gradient-accent: linear-gradient(135deg, #00e8c8 0%, #2a8cff 55%, #7c6bff 100%);
    --itsg-gradient-panel: linear-gradient(180deg, rgba(16, 24, 44, 0.92) 0%, rgba(10, 16, 32, 0.92) 100%);
    --itsg-shadow-soft: 0 18px 45px rgba(7, 12, 35, 0.18);
    --itsg-shadow-strong: 0 24px 60px rgba(4, 9, 28, 0.28);
    --itsg-glow-cyan: 0 0 0 1px rgba(0, 232, 200, 0.14), 0 0 36px rgba(0, 232, 200, 0.18);
    --itsg-glow-purple: 0 0 0 1px rgba(124, 107, 255, 0.14), 0 0 36px rgba(124, 107, 255, 0.18);
    --itsg-radius-sm: 8px;
    --itsg-radius-md: 14px;
    --itsg-radius-lg: 22px;
    --itsg-radius-xl: 28px;
    --itsg-radius-pill: 999px;
    --itsg-space-1: 4px;
    --itsg-space-2: 8px;
    --itsg-space-3: 12px;
    --itsg-space-4: 16px;
    --itsg-space-5: 20px;
    --itsg-space-6: 24px;
    --itsg-space-8: 32px;
    --itsg-space-10: 40px;
    --itsg-space-12: 48px;
    --itsg-space-16: 64px;
    --itsg-z-header: 1000;
    --itsg-z-overlay: 1100;
    --itsg-z-modal: 1200;
    --itsg-z-popover: 1300;
    --itsg-z-tooltip: 1400;
    --itsg-t-fast: 150ms;
    --itsg-t-base: 300ms;
    --itsg-t-slow: 550ms;
    --itsg-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --itsg-ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
}

body.itsg-page {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(0, 232, 200, 0.08), transparent 28%),
        radial-gradient(circle at 20% 20%, rgba(124, 107, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #050812 0%, #070b16 100%);
    color: var(--itsg-text);
}

body.itsg-page *,
body.itsg-page *::before,
body.itsg-page *::after {
    box-sizing: border-box;
}

.itsg-page__main {
    position: relative;
    z-index: 1;
}

.itsg-container {
    width: min(1200px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.itsg-section {
    position: relative;
    padding: 72px 0;
}

.itsg-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--itsg-border);
    border-radius: var(--itsg-radius-xl);
    background: var(--itsg-gradient-panel);
    box-shadow: var(--itsg-shadow-soft);
}

.itsg-card-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 232, 200, 0.18), transparent 34%);
    pointer-events: none;
}

.itsg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(0, 232, 200, 0.18);
    border-radius: var(--itsg-radius-pill);
    background: rgba(10, 16, 32, 0.72);
    color: #bdfcf0 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.itsg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: var(--itsg-radius-pill);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), background-color var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard), color var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-button:hover,
.itsg-button:focus {
    transform: translateY(-1px);
}

.itsg-button-primary {
    background: var(--itsg-gradient-accent);
    color: #031019 !important;
    box-shadow: 0 14px 30px rgba(0, 232, 200, 0.18);
}

.itsg-button-primary:hover,
.itsg-button-primary:focus {
    box-shadow: 0 16px 34px rgba(0, 232, 200, 0.24);
    color: #031019 !important;
}

.itsg-button-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #eaf1ff !important;
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.itsg-button-secondary:hover,
.itsg-button-secondary:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff !important;
}

.itsg-grid {
    display: grid;
    gap: 24px;
}

.itsg-gradient-text {
    background: var(--itsg-gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.itsg-cyber-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 84%);
}

.itsg-glow-orb {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.32;
    pointer-events: none;
    z-index: 0;
}

.itsg-glow-orb--cyan {
    top: 40px;
    right: -120px;
    background: radial-gradient(circle, rgba(0, 232, 200, 0.9), rgba(0, 232, 200, 0));
}

.itsg-glow-orb--purple {
    top: 260px;
    left: -140px;
    background: radial-gradient(circle, rgba(124, 107, 255, 0.82), rgba(124, 107, 255, 0));
}

.itsg-header {
    position: sticky;
    top: 0;
    z-index: var(--itsg-z-header);
    backdrop-filter: blur(16px);
    background: rgba(5, 8, 18, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.itsg-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 10, 20, 0.88);
    backdrop-filter: blur(16px);
}

.itsg-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
}

.itsg-topbar__group {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.itsg-topbar__group--left {
    flex-wrap: wrap;
}

.itsg-topbar__group--right {
    flex-shrink: 0;
}

.itsg-topbar__label {
    color: #9fb2d1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.itsg-topbar__link,
.itsg-topbar__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    color: #dce6f7 !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color var(--itsg-t-base) var(--itsg-ease-standard), background-color var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard), transform var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-topbar__link i,
.itsg-topbar__social i {
    color: #90c8ff;
    font-size: 13px;
}

.itsg-topbar__link:hover,
.itsg-topbar__link:focus,
.itsg-topbar__social:hover,
.itsg-topbar__social:focus {
    color: #fff !important;
    transform: translateY(-1px);
}

.itsg-topbar__link:hover i,
.itsg-topbar__link:focus i,
.itsg-topbar__social:hover i,
.itsg-topbar__social:focus i {
    color: var(--itsg-cyan);
}

.itsg-topbar__social {
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.itsg-topbar__social i {
    font-size: 13px;
}

.itsg-navbar {
    margin-bottom: 0;
    border: 0;
    min-height: 88px;
    background: transparent;
}

.itsg-navbar .navbar-header {
    display: flex;
    align-items: center;
}

.itsg-navbar__toggle {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.itsg-navbar__toggle .icon-bar {
    background: #fff;
}

.itsg-brand {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 0 !important;
    min-height: 88px;
}

.itsg-brand::before {
    content: "iTSG";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 232, 200, 0.18), rgba(124, 107, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f5f8ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.itsg-brand__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.itsg-brand__eyebrow {
    color: #f5fffd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.itsg-brand__name {
    color: #9ab0cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.itsg-navbar__collapse {
    align-items: center;
    justify-content: flex-end;
}

.itsg-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.itsg-nav > li {
    float: none;
}

.itsg-nav > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 18px !important;
    color: #eef3ff !important;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
    transition: background-color var(--itsg-t-base) var(--itsg-ease-standard), color var(--itsg-t-base) var(--itsg-ease-standard), transform var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-nav > li > a:hover,
.itsg-nav > li > a:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
}

.itsg-navbar__actions {
    margin-left: 28px;
}

.itsg-navbar__cta {
    min-height: 52px;
    padding-inline: 22px;
    box-shadow: 0 14px 30px rgba(0, 232, 200, 0.16);
}

.itsg-main,
.itsg-page__main {
    position: relative;
    z-index: 1;
}

.itsg-footer {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.itsg-footer__cta {
    padding: 72px 0 32px;
}

.itsg-footer__cta-grid {
    display: grid;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 19, 39, 0.9), rgba(8, 13, 29, 0.92));
    box-shadow: var(--itsg-shadow-strong);
}

.itsg-footer__cta h2 {
    margin: 14px 0 12px;
    color: #f5f8ff;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
}

.itsg-footer__lead {
    max-width: 720px;
    margin: 0;
    color: var(--itsg-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.itsg-footer__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-self: center;
}

.itsg-footer__main {
    padding: 34px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 8, 18, 0.8);
}

.itsg-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    text-decoration: none !important;
}

.itsg-footer__brand img {
    width: 44px;
    height: auto;
}

.itsg-footer__brand strong,
.itsg-footer__brand small {
    display: block;
}

.itsg-footer__brand strong {
    color: #fff;
    font-size: 17px;
}

.itsg-footer__brand small {
    color: var(--itsg-text-muted);
    font-size: 13px;
}

.itsg-footer__copy {
    max-width: 360px;
    margin: 0;
    color: var(--itsg-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.itsg-footer__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.itsg-footer__links,
.itsg-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itsg-footer__links li,
.itsg-footer__contact li {
    margin-bottom: 10px;
}

.itsg-footer__links a,
.itsg-footer__contact a {
    color: #d6def2 !important;
    font-size: 15px;
}

.itsg-footer__mini-cta {
    display: inline-flex;
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 232, 200, 0.12);
    border: 1px solid rgba(0, 232, 200, 0.18);
    color: #dffff9 !important;
    font-size: 13px;
    font-weight: 700;
}

.itsg-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.itsg-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #dce6f7 !important;
    text-decoration: none !important;
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard), color var(--itsg-t-base) var(--itsg-ease-standard), background-color var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-footer__social i {
    font-size: 13px;
    color: #90c8ff;
}

.itsg-footer__social:hover,
.itsg-footer__social:focus {
    transform: translateY(-1px);
    border-color: rgba(0, 232, 200, 0.24);
    background: rgba(0, 232, 200, 0.08);
}

.itsg-footer__social:hover i,
.itsg-footer__social:focus i {
    color: var(--itsg-cyan);
}

.itsg-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.itsg-footer__bottom p,
.itsg-footer__bottom a {
    margin: 0;
    color: var(--itsg-text-soft) !important;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1fbf67, #0fa556);
    box-shadow: 0 18px 34px rgba(6, 20, 13, 0.35);
    color: #fff !important;
    text-decoration: none !important;
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff !important;
    transform: translateY(-1px);
}

@media (min-width: 992px) {
    .itsg-navbar__collapse {
        display: flex !important;
    }

    .itsg-navbar__toggle {
        display: none;
    }

    .itsg-footer__cta-grid {
        grid-template-columns: 1.5fr auto;
    }
}

@media (max-width: 991px) {
    .itsg-topbar__group--left {
        gap: 10px;
    }

    .itsg-topbar__label {
        display: none;
    }

    .itsg-navbar__toggle {
        display: inline-block;
    }

    .itsg-navbar__collapse {
        display: none;
        margin-top: 6px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        background: rgba(9, 13, 26, 0.94);
        box-shadow: var(--itsg-shadow-soft);
    }

    .itsg-navbar__collapse.in,
    .itsg-navbar__collapse.collapsing {
        display: block;
    }

    .itsg-nav {
        display: block;
    }

    .itsg-nav > li {
        float: none;
    }

    .itsg-nav > li > a {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px !important;
    }

    .itsg-navbar__actions {
        margin: 12px 0 0;
    }

    .itsg-brand__name {
        display: block;
    }
}

@media (max-width: 767px) {
    .itsg-glow-orb {
        display: none;
    }

    .itsg-navbar {
        min-height: 72px;
    }

    .itsg-brand {
        min-height: 72px;
    }

    .itsg-brand__eyebrow {
        font-size: 12px;
    }

    .itsg-brand__name {
        font-size: 11px;
    }

    .itsg-topbar__inner {
        gap: 8px;
        min-height: 32px;
    }

    .itsg-topbar__group {
        gap: 8px;
    }

    .itsg-topbar__link,
    .itsg-topbar__social {
        min-height: 28px;
    }

    .itsg-topbar__text,
    .itsg-topbar__link--email {
        display: none;
    }

    .itsg-topbar__group--right {
        gap: 8px;
    }

    .itsg-navbar__actions .itsg-button,
    .itsg-footer__cta-actions .itsg-button {
        width: 100%;
    }

    .itsg-footer__cta,
    .itsg-footer__main {
        padding-left: 0;
        padding-right: 0;
    }

    .itsg-footer__cta-grid {
        padding: 22px 18px;
    }

    .itsg-footer__cta-actions {
        justify-content: stretch;
    }

    .itsg-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-img {
        position: relative !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .itsg-ops-grid {
        display: block !important;
    }

    .itsg-ops-grid > [class*="col-"] {
        float: none !important;
        width: 100% !important;
    }
}

.itsg-about-hero {
    padding-top: 42px;
    padding-bottom: 36px;
}

.itsg-about-hero__grid,
.itsg-about-experience__grid {
    align-items: center;
}

.itsg-about-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.itsg-about-hero__title {
    margin: 0;
    color: #f5f8ff;
    font-size: clamp(38px, 4.8vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

.itsg-about-hero__lead,
.itsg-about-hero__support,
.itsg-about-experience__grid .itsg-section-lead,
.itsg-about-manifesto p,
.itsg-about-cta p {
    margin: 0;
    color: var(--itsg-text-muted);
    font-size: 17px;
    line-height: 1.75;
}

.itsg-about-hero__support {
    color: #d9e4f8;
    max-width: 720px;
}

.itsg-about-hero__actions,
.itsg-about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.itsg-about-hero__chips,
.itsg-about-manifesto__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.itsg-about-hero__chips span,
.itsg-about-manifesto__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #dbe8ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.itsg-about-visual {
    padding: 24px;
}

.itsg-about-visual__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.itsg-about-visual__header h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.14;
    max-width: 13ch;
}

.itsg-about-visual__map {
    position: relative;
    min-height: 430px;
    margin-bottom: 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(0, 232, 200, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(9, 15, 31, 0.98), rgba(7, 11, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.itsg-about-visual__map::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.7;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
}

.itsg-about-visual__node {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 19, 38, 0.82);
    box-shadow: 0 16px 34px rgba(4, 9, 28, 0.28);
    backdrop-filter: blur(10px);
}

.itsg-about-visual__node strong {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.itsg-about-visual__node span {
    color: #9fb2d1;
    font-size: 12px;
    line-height: 1.45;
}

.itsg-about-visual__node--core {
    top: 50%;
    left: 50%;
    width: min(208px, calc(100% - 48px));
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
    border-color: rgba(0, 232, 200, 0.24);
    background: linear-gradient(180deg, rgba(10, 24, 34, 0.92), rgba(10, 18, 31, 0.92));
}

.itsg-about-visual__node--core strong {
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.itsg-about-visual__node--top-left {
    top: 22px;
    left: 22px;
}

.itsg-about-visual__node--top-right {
    top: 22px;
    right: 22px;
}

.itsg-about-visual__node--left {
    top: 114px;
    left: 16px;
}

.itsg-about-visual__node--right {
    top: 114px;
    right: 16px;
}

.itsg-about-visual__node--bottom-left {
    bottom: 26px;
    left: 22px;
}

.itsg-about-visual__node--bottom-right {
    bottom: 26px;
    right: 22px;
}

.itsg-about-visual__footer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.itsg-about-visual__footer span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #d8e3f7;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.itsg-about-section .title h2,
.itsg-about-manifesto h2,
.itsg-about-cta h2 {
    margin: 14px 0 12px;
    color: #f5f8ff;
    font-size: clamp(28px, 3.1vw, 44px);
    line-height: 1.1;
}

.itsg-about-experience__stack {
    display: grid;
    gap: 16px;
}

.itsg-about-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.itsg-about-process-step {
    height: 100%;
}

.itsg-about-experience__tile,
.itsg-about-diff-card,
.itsg-about-principle-card,
.itsg-about-manifesto,
.itsg-about-cta {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 20, 38, 0.86), rgba(8, 14, 28, 0.94));
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.16);
}

.itsg-about-experience__tile {
    padding: 22px 20px;
}

.itsg-about-experience__tile p {
    margin: 0 0 8px;
    color: #9fb2d1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.itsg-about-experience__tile strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
}

.itsg-about-experience__tile span {
    display: block;
    color: rgba(230, 236, 250, 0.86);
    font-size: 15px;
    line-height: 1.72;
}

.itsg-about-diff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.itsg-about-diff-card {
    padding: 24px;
}

.itsg-about-diff-card h3,
.itsg-about-principle-card h3 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}

.itsg-about-diff-card p,
.itsg-about-principle-card p {
    margin: 0;
    color: rgba(230, 236, 250, 0.86);
    font-size: 15px;
    line-height: 1.72;
}

.itsg-about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.itsg-about-principle-card {
    padding: 22px;
}

.itsg-about-manifesto {
    padding: 30px;
}

.itsg-about-manifesto__grid,
.itsg-about-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 28px;
    align-items: center;
}

.itsg-about-manifesto__chips {
    justify-content: flex-end;
}

.itsg-about-manifesto__grid p {
    max-width: 760px;
}

.itsg-about-cta {
    padding: 30px;
}

.itsg-about-cta h2 {
    max-width: 16ch;
}

.itsg-about-cta__actions {
    justify-content: flex-end;
}

.itsg-about-cta__actions .itsg-button {
    min-width: 220px;
}

@media (max-width: 991px) {
    .itsg-about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .itsg-about-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .itsg-about-manifesto__grid,
    .itsg-about-cta__grid {
        grid-template-columns: 1fr;
    }

    .itsg-about-manifesto__chips,
    .itsg-about-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .itsg-about-process-grid {
        grid-template-columns: 1fr;
    }

    .itsg-about-hero {
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .itsg-about-hero__title {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 46px);
    }

    .itsg-about-hero__lead,
    .itsg-about-hero__support,
    .itsg-about-experience__grid .itsg-section-lead,
    .itsg-about-manifesto p,
    .itsg-about-cta p {
        font-size: 16px;
    }

    .itsg-about-hero__actions .itsg-button,
    .itsg-about-cta__actions .itsg-button {
        width: 100%;
        min-width: 0;
    }

    .itsg-about-visual {
        padding: 18px;
    }

    .itsg-about-visual__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .itsg-about-visual__header h2 {
        font-size: 21px;
        max-width: 100%;
    }

    .itsg-about-visual__map {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .itsg-about-visual__map::before {
        display: none;
    }

    .itsg-about-visual__node {
        position: static;
        transform: none;
        width: 100%;
    }

    .itsg-about-visual__node--core {
        grid-column: 1 / -1;
        width: 100%;
    }

    .itsg-about-visual__footer {
        grid-template-columns: 1fr 1fr;
    }

    .itsg-about-diff-grid,
    .itsg-about-principles-grid {
        grid-template-columns: 1fr;
    }

    .itsg-about-manifesto,
    .itsg-about-cta {
        padding: 24px 18px;
    }

    .itsg-about-cta h2 {
        max-width: 100%;
    }

    .itsg-about-hero__chips span,
    .itsg-about-manifesto__chips span {
        padding-inline: 12px;
        font-size: 12px;
    }
}

.itsg-contact-hero {
    padding-top: 42px;
    padding-bottom: 28px;
}

.itsg-contact-hero__grid {
    align-items: center;
}

.itsg-contact-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.itsg-contact-hero__title {
    margin: 0;
    color: #f5f8ff;
    font-size: clamp(38px, 4.8vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 13ch;
}

.itsg-contact-hero__lead,
.itsg-contact-section__lead,
.itsg-contact-final-cta p,
.itsg-contact-side-card span,
.itsg-contact-side-card a,
.itsg-contact-quick-card p {
    margin: 0;
    color: var(--itsg-text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.itsg-contact-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.itsg-contact-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #dbe8ff;
    font-size: 13px;
    font-weight: 700;
}

.itsg-contact-panel,
.itsg-contact-quick-card,
.itsg-contact-form-card,
.itsg-contact-side-card,
.itsg-contact-final-cta {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 20, 38, 0.88), rgba(8, 14, 28, 0.96));
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.16);
}

.itsg-contact-panel {
    padding: 24px;
}

.itsg-contact-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.itsg-contact-panel__list {
    display: grid;
    gap: 12px;
}

.itsg-contact-panel__item {
    display: block;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none !important;
}

.itsg-contact-panel__item strong,
.itsg-contact-quick-card h2,
.itsg-contact-side-card h2,
.itsg-contact-final-cta h2 {
    display: block;
    margin: 0 0 6px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
}

.itsg-contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.itsg-contact-quick-card {
    display: block;
    padding: 22px;
    text-decoration: none !important;
    transition: transform var(--itsg-t-base) var(--itsg-ease-standard), border-color var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-contact-quick-card h2 {
    font-size: 22px;
}

.itsg-contact-quick-card:hover,
.itsg-contact-quick-card:focus,
.itsg-contact-panel__item:hover,
.itsg-contact-panel__item:focus {
    transform: translateY(-2px);
    border-color: rgba(0, 232, 200, 0.24);
    box-shadow: 0 18px 45px rgba(7, 12, 35, 0.22), 0 0 0 1px rgba(0, 232, 200, 0.08);
}

.itsg-contact-layout {
    align-items: flex-start;
}

.itsg-contact-form-card {
    padding: 28px;
}

.itsg-contact-section__heading {
    margin-bottom: 18px;
}

.itsg-contact-section__heading h2 {
    margin: 14px 0 10px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
}

.itsg-contact-form {
    margin-top: 18px;
}

.itsg-field {
    margin-bottom: 16px;
}

.itsg-field label {
    display: block;
    margin: 0 0 8px;
    color: #dfe9fb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.itsg-contact-input,
.itsg-contact-textarea {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 11, 24, 0.88);
    color: #f5f8ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color var(--itsg-t-base) var(--itsg-ease-standard), box-shadow var(--itsg-t-base) var(--itsg-ease-standard), background-color var(--itsg-t-base) var(--itsg-ease-standard);
}

.itsg-contact-input::placeholder,
.itsg-contact-textarea::placeholder {
    color: #7f8aa6;
}

.itsg-contact-input:focus,
.itsg-contact-textarea:focus {
    outline: none;
    border-color: rgba(0, 232, 200, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 232, 200, 0.12);
}

.itsg-contact-textarea {
    min-height: 180px;
    resize: vertical;
}

.itsg-contact-validation {
    display: block;
    margin-top: 8px;
    color: #ff9fa5;
    font-size: 13px;
    line-height: 1.45;
}

.itsg-contact-message {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    line-height: 1.6;
}

.itsg-contact-message--success {
    background: rgba(46, 229, 157, 0.1);
    border-color: rgba(46, 229, 157, 0.22);
    color: #dcfff0;
}

.itsg-contact-message--error {
    background: rgba(255, 112, 120, 0.1);
    border-color: rgba(255, 112, 120, 0.22);
    color: #ffe2e4;
}

.itsg-contact-submit {
    margin-top: 6px;
    min-width: 220px;
}

.itsg-contact-side-stack {
    display: grid;
    gap: 16px;
}

.itsg-contact-side-card {
    padding: 24px;
}

.itsg-contact-list,
.itsg-contact-steps {
    margin: 18px 0 0;
    padding-left: 18px;
    color: rgba(230, 236, 250, 0.9);
}

.itsg-contact-list li,
.itsg-contact-steps li {
    margin-bottom: 12px;
    line-height: 1.65;
}

.itsg-contact-list strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.itsg-contact-list span,
.itsg-contact-list a {
    color: #d6def2 !important;
    font-size: 15px;
}

.itsg-contact-final-cta {
    padding: 28px;
}

.itsg-contact-final-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 24px;
    align-items: center;
}

.itsg-contact-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.itsg-contact-final-cta__actions .itsg-button {
    min-width: 220px;
}

@media (max-width: 991px) {
    .itsg-contact-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .itsg-contact-final-cta__grid {
        grid-template-columns: 1fr;
    }

    .itsg-contact-final-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .itsg-contact-hero {
        padding-top: 28px;
        padding-bottom: 22px;
    }

    .itsg-contact-hero__title {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 46px);
    }

    .itsg-contact-hero__lead,
    .itsg-contact-section__lead,
    .itsg-contact-final-cta p,
    .itsg-contact-side-card span,
    .itsg-contact-side-card a,
    .itsg-contact-quick-card p {
        font-size: 15px;
    }

    .itsg-contact-panel,
    .itsg-contact-form-card,
    .itsg-contact-side-card,
    .itsg-contact-final-cta {
        padding: 22px 18px;
    }

    .itsg-contact-panel__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .itsg-contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .itsg-contact-submit,
    .itsg-contact-final-cta__actions .itsg-button {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .itsg-button,
    .itsg-nav > li > a,
    .whatsapp-float {
        transition: none !important;
    }

    .itsg-button:hover,
    .itsg-button:focus,
    .itsg-nav > li > a:hover,
    .itsg-nav > li > a:focus,
    .whatsapp-float:hover,
    .whatsapp-float:focus {
        transform: none !important;
    }
}
