/*======== Global Fonts ====*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');




/*======= Global Root Elements========*/
:root{
  --main-color: #01314A;
  --main-second: #008E9B;
  --light-color: #ffffff;
  --primary-font: "Inter", sans-serif;;
  --accent-font: "Bebas Neue", sans-serif;;
  --text-color: #0C0C0C;
  --smooth: all .3s linear;
}

h1, h2,h3,h4,h5,h6{
  font-weight: 600;
}
h1, h2,h3{
  letter-spacing: -1px;
}
.char{
  display: inline-block;
}

body{
  font-family: var(--primary-font);
  color: #0C0C0C;
  background: #fff;
  word-wrap: break-word;
  overflow-x: hidden !important;
}
section{
  background-color: #fff;
}

.gr-text{
  background: -webkit-linear-gradient(to left, var(--main-color), var(--main-second));
  background: linear-gradient(to left, var(--main-color), var(--main-second));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lt-gr{
  background: -webkit-linear-gradient(to right, #ffd1b2 10%, #fff 100%);
  background: linear-gradient(to right, #fdbd90 10%, #fff 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}
.gr-bg{
  background-image: linear-gradient(var(--main-color), var(--main-second));
}
.section{
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  margin: 0 !important;
}

.sectionw{
  padding: 7rem 0;
 }

section{
  margin: 0 !important;
}
footer{
  position: relative;
  z-index: 2;
  background: #fff;
}
.hr-line{
  width: 100%;
  height: 1px;
  background-color: #00000050;
  position: relative;
  z-index: 3;
}
.hr-line a{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #000;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hr-line span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: #fff;
  border: 1px solid #00000060;
  border-radius: 50%;
  z-index: 1;
}

.hr-line a:hover{
  background: linear-gradient(to left, var(--main-color), var(--main-second));
}

.site-btn .btn{
  padding: 10px 30px;
  font-size: 18px;
  background: linear-gradient(to left, #035783 0%, #008E9B 70%);
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: var(--smooth);
}
.site-btn .btn:hover{
  /*background: linear-gradient(to left, var(--main-color),#000);*/
      background: linear-gradient(to left, #053d5a 0%, #04717a 70%);
  transition: var(--smooth);
}
#benifit .beni-card, .site-btn .btn, #about .about-box, #service .beni-card{
  overflow: hidden;
  transition: var(--smooth);
}
#benifit .beni-card:before, .site-btn .btn:before, #about .about-box:before, #service .beni-card:before, #sec-banner::before, #head-banner::before, #header.bg-head:before, .sticky-header:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url('../img/dots.webp');
  background-size: contain;
  background-position: center;
  opacity: .25;
  pointer-events: none;
}
.site-btn .btn span{
  position: relative;
  z-index: 2;
  font-weight: 600;
}

#benifit .beni-card:hover:before, #service .beni-card:hover:before{
  transform: scale(2);
}

/*
.site-btn .btn:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: ;
}
*/
.site-btn .btn:hover{
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.site-btn p{
  font-weight: 500;
}

.logo{
  font-family: var(--accent-font);
  font-weight: 500;
  letter-spacing: -1px;
}

/*-------- Animations ======*/

.hang:hover{
  animation: hang 1.5s infinite;
}
@keyframes hang{
  0%{transform: translateY(0px);}
  50%{transform: translateY(-10px);}
  100%{transform: translateY(0px);}
}
.scale img{
  transition: var(--smooth);
}
.scale:hover img{
  transform: scale(2);
  transition: var(--smooth);
}
.scaleUp:hover{
  animation: scaleUp 2s;
}
@keyframes scaleUp{
  0%{transform: scale(1);}
  50%{transform: scale(1.5);}
  100%{transform: scale(1);}
}


/*====== Global Header ======*/
#header{
  position: absolute;
  width: 100%;
  z-index: 9;
  transition: all .3s linear;
}

#header .menu-link a{
  font-size: 14px;
  text-transform: uppercase;
}

#header .navbar-collapse li{
  text-align: right;
}
#header .ctc-detail .nav-link{
  text-align: left;
}
#header a {color: #fff;}

#header .navbar-toggler{
  border: none;
  padding: 0;
}
#header .navbar-brand, #header .navbar-toggler b{
  font-family: var(--accent-font);
  font-weight: 400;
}
#header .navbar-toggler:focus{
  box-shadow: none;
}

#header.bg-head {
  transition: all .3s linear;
  padding: 20px 25px 30px !important;
  background: linear-gradient(-200deg, var(--main-color) 10%, var(--main-color) 0%, var(--main-second) 50%, var(--main-second) 100%);

  /*
  background-size: 200% 100%;
  animation: animateGradient 5s linear infinite;
  background-repeat: no-repeat;
animation: animateGradient 5s linear infinite;
*/
}

/*
@keyframes animateGradient {
  0% {
    background-position: 0 50%; 
  }
  50% {
    background-position: 100% 50%; 
  }
  100% {
    background-position: 0 50%; 
  }
}

*/

#header .hamburger{
  display: flex;
  flex-direction: column;
}

#header .hamburger span{
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #fff;
  margin-right: 20px;
  transition: all .3s linear;
}
#header .hamburger span:last-child{
  margin-top: 8px;
}

#header.bg-head .hamburger span:first-child{
  transform: rotate(10deg) translatey(-2px);
}
#header.bg-head .hamburger span:last-child{
  transform: rotate(-15deg) translatey(-4px);
  margin-top: 0;
}
#header .nav-link {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  padding: 0;
}

/*#header .nav-link::after {
  content: attr(data-title);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  font-weight: bold;
  top: 0;
  transform-origin: 100% 50%;
  transform: translateY(-200%);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  color: #ffffff;
}

#header .nav-link:hover::after {
  transform: translateY(5%);
}*/

#header .nav-link span {
  display: inline-block;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

#header .nav-link:hover span {
  transform: translateY(200%);
}

#header .ctc-detail a:first-child{
  font-size: 18px;
}



/*======== Main BAnner =====*/

#head-banner{
  position: relative;
  display: flex;
  align-items: center;
  /* background: linear-gradient(-200deg, var(--main-color) 10%, var(--main-color) 0%, var(--main-second) 50%, var(--main-second) 100%); */
  background: url('../img/Hero.webp') no-repeat;
  background-size: cover;
  background-position: bottom right;
  padding: 100px 0 10px;
}

#head-banner .container{
  position: relative;
  z-index: 2;
}


/*
#head-banner::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../img/dots.webp');
  background-position: center;
  opacity: 0.3;
  z-index: 3;
}
*/


#head-banner .bg-video{
  width: 100%;
  height: 700px;
}
#head-banner .bg-video #backgroundVideo{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#head-banner .title{
  color: var(--light-color);
  letter-spacing: -2px;
}

/*
#head-banner .title{
  background: -webkit-linear-gradient(to left, #EABC81, #fff);
  background: linear-gradient(to left, #EABC81 0, #fff 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}

*/

#head-banner .banner-desc{max-width: 900px;}

#head-banner .banner-desc li{
  font-size: 18px;
  font-weight: 500;
}

#head-banner .list-item{
  margin: 0 15px;list-style: none;
  display: flex;
  text-align: left;
  background: #ffffff35;
  padding: 10px 15px;
  box-shadow: 0px 0px 5px 0px;
  border-radius: 25px;
}
#head-banner .list-item svg{
  margin: 3px 0 0;
  width: 30px;
  height: 18px;
}


#head-banner p.sm-desc{
  font-size: 14px;
  background-color: #00A3B299;
}

.sm-desc{display: inline-block;
  background: var(--main-second);
  color: #fff;
}

#head-banner .site-btn .btn, #sec-banner .site-btn .btn{
  background: #fff !important;
  transition: var(--smooth);
}

#head-banner .site-btn .btn:hover, #sec-banner .site-btn .btn:hover{
  background: linear-gradient(253.64deg, rgba(3, 87, 131, 0.15) 100%, rgba(0, 142, 155, 0.15) 100%), #FFFFFF!important;
  transition: var(--smooth);
  animation: animateGradient 5s linear infinite;
  background-size: 200% 50%;
}
#head-banner .site-btn .btn:hover .gr-text, #sec-banner .site-btn .btn:hover .gr-text{
  background: -webkit-linear-gradient(-200deg, var(--main-color) 10%, var(--main-color) 0%, var(--main-second) 50%, var(--main-second) 100%);
  background: linear-gradient(-200deg, var(--main-color) 10%, var(--main-color) 0%, var(--main-second) 50%, var(--main-second) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--smooth);
}

#head-banner .list-ico{
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
#head-banner .list-ico img{
  width: 100%;
}

#head-banner .banner-list{
  list-style: none;
  padding: 0;
}
#head-banner .banner-list .list-ico{
  width: 20px;
}

/*======= Brands LOGO ====*/
#brands-logo{
  padding: 20px 0px;
}
#brands-logo .owl-item{
  height: 100px;
}
.brands-logo img{width: 100%;
  height: 100%;
  max-width: 150px;
  object-fit: contain;
}
.brands-logo .owl-nav, .brands-logo .owl-dots{
  display: none;
}
#brands-logo h3{
  font-family: var(--accent-font);
  font-weight: 500;
}



/*============== Process Section ====*/
.process-desc{justify-self: center;
  font-size: 22px;
}
.overlap-img{
  background-image: url('../img/bg2.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply, screen, overlay;
  width:100%;
  height: 600px;  box-sizing:border-box;
  background-position:50% 50%;
  position:relative;
  margin:auto;
}
.overlap-img::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #00000050;
}
.overlap-text{
  position:absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
  text-align:center;
  margin:0;
  font-size: 115px;
  color:#ffffff;
  mix-blend-mode: difference;
}
.overlap-text.text-2{
  mix-blend-mode: overlay;
}
#process{
  overflow: hidden !important;
}
/*
.overlap-text::after{
  content: attr(data-title);
  position:absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
  text-align:center;
  margin:0;
  font-size: 115px;
  color:#ffffff;
  mix-blend-mode: overlay;
}
  */



/*============ About Us Section =====*/
#about .about-box{
  background: linear-gradient(to bottom, #003A59 0%, var(--main-second) 50%);
  padding: 45px 35px 30px;
  height: 100%;
  color: #fff;
  min-height: 500px;
  position: relative;
  z-index: 2;
}
#about .about-box div{
  position: relative;
  z-index: 2;
}

#about h4{font-size: 25px;font-weight: 500;}

#about .about-box.second-box{
  position: relative;
  background: url('../img/bg.webp') no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
#about .about-box.second-box::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #003A59 0%, #006C86 30%, #008E9B00 70%, transparent 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
}


#about .title-desc{position: relative;z-index: 2;} 

#about .img-box{
  position: relative;
  width: 100%;
  height: auto;
}
#about .img-box img{
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}



/*=========== TEAM Section ========*/

#team .overview{
  background-color: #fff;
  height: 100%;
}
#team .team-box{
  position: relative;
  display: flex;
  align-items: end;
  height: 100%;
  padding-top: 60px !important;
  height: 600px;
  transition: var(--smooth);
  overflow: hidden;
}
#team .team-img{
  background: url('../img/033c594d904bd2d67d791f5d1c886d8c503eca22.webp');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: grayscale(1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: var(--smooth);
}

#team .team-img:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  mix-blend-mode: color;
}

#team div.team-box2{
  background-image: url('../img/765098414ac12d0fb0549fd73dbb115ee5c5d6b0.webp') !important;
}
#team div.team-box3{
  background-image: url('../img/doctor-robert.jpg') !important;
}
#team div.team-box4{
  background-image: url('../img/team5.webp') !important;
}
#team div.team-box5{
  background-image: url('../img/team6\ \(1\).webp') !important;
}
#team div.team-box6{
  background-image: url('../img/team4.webp') !important;
}
#team .team-box:hover .team-img{
  transform: scale(1.1);
}

#team .team-box .team-detail{
  background: linear-gradient(to top, #00000099 30%, #00000060 50%, #00000000 100%);
  padding: 25px;
  position: relative;
  z-index: 2;
}
#team .team-detail p:last-child{
  color: #ffffff;
  opacity: .8;
}

/*=========== WHAT we do =======*/

#service .ques-card{
  padding: 30px 0;
  border-bottom: 1px solid #00000015;
  position: relative;
}
#service div.ques-card:last-child{
  border: none !important;
}

#service .ques-card button{
  position: relative;
  font-weight: 600;
  font-size: 28px;
  padding: 0;
}
#service .accordion-button::after{
  display: none;
}
#service .ques-card button.collapsed, #service .ques-card button.collapsed span{
  color: #00000030 !important;
  transition: var(--smooth);
  cursor: cell;
}

#service .ques-card:hover button, #service .ques-card:hover button span{
  color: #000 !important;
}
#service .ques-card button span{
  font-size: 16px;
  font-weight: 700;
  position: relative;
  top: -20px;
  margin-left: 15px;
  color: #000;
}
#service .ques-card button span::after, #service .ques-card button span::before{
  position: absolute;
  top: 5px;
  font-size: 100%;
  color: var(--main-second);
}
#service .ques-card button.collapsed span::after, #service .ques-card button.collapsed span::before{
  color: #00000030;
}
#service .ques-card button span::before{
  content: '[';
  left: 0;
}
#service .ques-card button span::after{
  content: ']';
  right: 0;
}
#service .ques-card:hover button.collapsed span::before, #service .ques-card:hover button.collapsed span::after{
  color: var(--main-second);
}
.accordion-button:not(.collapsed){
  box-shadow: none;
}

#service .accordion-body{
  color: #00000090;
  padding: 25px 0 15px !important;
}
#service .accordion-button:focus{
  box-shadow: none;
  border: none;
}
#service .accordion-button:not(.collapsed){
  background-color: #fff !important;
  color: #000;
}

/*======= Case Studies ==========*/

#case{background-color: #000;}

#case .case-box h3{
  font-size: 72px;
}

#case .case-single p{font-size: 14px;}
#case .case-single h5{font-size: 36px;}
#case .surgeon-detail{
  display: flex;
  flex-direction: column;
  align-items: end;
}
#case .case-single .surgeon-detail h5{font-size: 22px !important;}
#case .case-single p{
  color: #ffffff90;
}

#case .hang:hover{
  box-shadow: 5px 5px 10px #ffffff50;
  transition: var(--smooth);
}
#case .hang{
  transition: var(--smooth);
}
#case .percent:after {
  content: "%";
  display: inline-block;
}
#case .plus:after {
  content: "+";
  display: inline-block;
}
#case .dollar:before {
  content: "$";
  display: inline-block;
}
#case .dollar:after {
  content: "M";
  display: inline-block;
}


/*========== how it works section =====*/


#works .step-no{width: 50px;height: 50px;border-radius: 50%;display: flex;align-items: center;justify-content: center;padding: 25px;border: 1px solid #00000030;margin-right: 20px;}
#works h3{font-size: 26px;margin: 0 0 10px;position: relative;}
#works h3 img{position: absolute;
  top: 0;
  right: 0px;
}
#works .step-detail p{
  color: #0c0c0c90;
  margin: 0;
  font-weight: 500;
}

#works h3{
  padding-right: 20px;
}

/*============== benifit section =======*/
#benifit .col-sm-6{
  padding: 20px;
}
#benifit .beni-card, #service .beni-card{
  padding: 25px;
  background: linear-gradient(220deg,  #035783 0%,  #008E9B 100%);
  
  position: relative;
  height: 100%;
  min-height: 300px;
  color: #fff;
  transition: var(--smooth);
}

#benifit .card-ico{
  position: relative;
  z-index: 2;
}
#benifit .beni-card img{
  position: absolute;
  right: 20px;
  bottom: 20px;
}
#benifit .beni-card:hover{
  background: linear-gradient(to right, #035783, #008e9b);
  transition: var(--smooth);

}



/*======== Second video banner ========*/

#sec-banner{
  position: relative;
  display: flex;
  align-items: center;
  background: -webkit-linear-gradient(-150deg, var(--main-color) 10%, var(--main-color) 0%, var(--main-second) 50%, var(--main-second) 100%);
  background: linear-gradient(-150deg, var(--main-color) 10%, var(--main-color) 0%, var(--main-second) 50%, var(--main-second) 100%);
}

#sec-banner::before{
  z-index: -1;
}

#sec-banner .bg-video{
  width: 100%;
  height: 800px;
}
#sec-banner .bg-video #backgroundVideo2{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*
#sec-banner .container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  width: 100%;
  z-index: 3;
}
  */
#sec-banner .title{
  background: -webkit-linear-gradient(to right, #fbd6b1 0, #fff 70%);
  background: linear-gradient(to right, #fbd6b1 0, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 95%;
}

#sec-banner .site-btn{
  z-index: 9;
}



/*=========== MAP Section ====*/

#map svg{
  width: 100%;
  height: 100%;
}
#trust h2{
  color: #fff;
}
#trust .team-card {height: 100%;}
#trust .team-card h5{
  font-weight: 400;
}
#trust .team-card h6{
  color: #ffffff;
  opacity: .8;
  font-weight: 400;
}

/*====== ABOUT us ====*/

#about-us h3{
  font-size:30px;
}

#about-us p{
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}

#about-us .sign{
  border-top: 1px solid #00000030;
}
#about-us .sign-name h6{
  color: #000;
  opacity: .6;
}
#about-us .sign-name h6, #about-us .sign-name h5{
  font-weight: 500;
}
#about-us .about-img figure{
  width: 100%;
  overflow: hidden;
  transition: var(--smooth);
}
#about-us .about-img figure img{
  transition: var(--smooth);
}
#about-us .about-img figure:hover img{
  transform: scale(1.1) !important;
  transition: var(--smooth);
}
/*======== FAQ ======*/

#faq button{
  font-size: 18px;
  padding: 30px 0;
  font-weight: 500;
}
#faq .accordion-body{
  color: #00000090;
  padding: 10px 0 30px !important;
}
#faq .accordion-button:focus{
  box-shadow: none;
  border: none;
}
#faq .accordion-button:not(.collapsed){
  background-color: #fff !important;
  color: #000;
}

#faq .faq-title p{
  font-weight: 500;
  color: #0C0C0C;
  opacity: .6;
}

/*============ MAin Footer =========*/
#footer .footer-inner{
  background-color: #F5F5F5;
  padding: 40px 25px 30px;
  transform: scale(1);
}
#footer .col-md-4{
  display: flex;
}

#footer .footer-logo b{
  font-size: 80px;
  max-width: 300px;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: -5px;
}
#footer .second-col{
  max-width: 100%;
}
#footer .second-col p:first-child{
  font-size: 25px;
  font-weight: bold;
  line-height: 35px;
}
#footer .third-col{
  max-width: 200px;
}

#footer .copyright b{
  font-size: 35px;
}
#footer label input{
  padding: 10px 0;
  border: none;
  background: transparent;
  font-size: 14px;
  width: 90%;
  font-weight: 500;
  color: #00000080;
}

#footer label input:focus{
  border: none;
  outline: none;
}

#footer label input::placeholder {
  color: #00000050;
  font-weight: 500;
}
#footer form label{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00000030;
}
#footer .sub-btn{
  border: none;
  background: #00A3B2;
  padding: 6px 10px 7px;
  border-radius: 50%;
}

#footer .sub-btn img{
  width: 15px;
}

#footer .sub-btn{
  padding: 3px 10px 6px !important;
}
#footer .sub-btn img{
  width: 12px !important;
}





@media (min-width:1400px){
  h2{font-size: 90px;letter-spacing: -3px;line-height: 95%;}
  h3{font-size: 45px;}

  #team h2{font-size: 64px;}
  #team .team-detail p{
    font-size: 20px;
  }
  #team .team-detail p.m-0{
    font-size: 16px;
  }
  #team .team-detail p:last-child{
    font-size: 14px;
  }
  #case .case-detail h4{
    font-size: 30px;
  }
  #service .ques-card h3{
    font-size: 50px;
  }
  h4 .logo{
    font-size: 35px;
    font-weight: 500;
  }
  #about-us h4 .logo, #service h4 .logo, h4.logo{
    font-size: 45px;
    font-weight: 500;
  }
  #header .navbar-brand, #header .navbar-toggler b{
    font-size: 49px;
  }
  #header .hamburger span:last-child{
    margin-top: 10px;
  }
  #header.bg-head .nav-item a{
    font-size: 30px;
  }
  #header .ctc-detail a:last-child{
    font-size: 46px;
  }
  #head-banner .bg-video{
    width: 100%;
    height: 750px;
  }
  #head-banner .banner-desc li{
    font-size: 35px;
    line-height: 50px;
  }
  #head-banner p.banner-desc{
    font-size: 32px!important;
    line-height: 42px;
    font-weight: 500;
  }
  #head-banner .title{
    font-size: 150px;
    letter-spacing: -7px;
    line-height: 95%;
    margin-bottom: 40px;
  }
  
  .site-btn span{
    font-size: 40px;
  }
  #head-banner p.sm-desc{
    font-size: 24px;
  }
  #head-banner .inline-list{
    font-size: 28px;
  }
  #about-us h3{
    font-size:60px;
  }
  .overlap-text{
    font-size: 115px;
    letter-spacing: -4px;
  }
  #about h4{font-size: 34px;}

  .site-btn p{
    font-size: 24px;
  }
  #faq .faq-title p{
    font-size: 20px;
    width: 90%;
  }
  #footer label input{
    font-size: 20px;
  }
  #footer .footer-inner{
    background-color: #F5F5F5;
    padding: 50px;
  }

  #benifit .card-ico h3{
    font-size: 42px;
  }
  #benifit .card-ico p{
    font-size: 24px;
  }
  #sec-banner p{
    font-size: 24px;
  }
  #trust .team-card {
    padding: 20px 20px;
    transition: var(--smooth);
  }
  #trust .team-card:hover {
    box-shadow: 0 5px 10px #00a3b275;
    transition: var(--smooth);
  }
  #footer .footer-logo b{
    font-size: 90px;
  }
  #footer .second-col p:first-child{
    font-size: 35px;
  }

  #service .ques-card button{
    font-size: 50px;
  }

  /*
  #head-banner{
    position: sticky;
  }

  */

}

@media (min-width:1200px) and (max-width:1400px){
#head-banner .inline-list{
  font-size: 20px;
}
}

@media (min-width:991px){
  #about-us p{
    font-size: 23px;
  }
  
}

@media (min-width:991px) and (max-width:1400px){
  .about-box img{
    width: 100%;
  }
  h2{font-size: 70px !important;}
  #team h2{font-size: 60px !important;}
  #footer .second-col p:first-child{
    font-size: 30px;
  }
  #service .ques-card button{
    font-size: 35px;
  }

  #head-banner p.banner-desc {
    font-size: 25px !important;
    max-width: 720px;
  }
}

@media (min-width: 767px){
  #footer .second-col{
    max-width: 300px;
  }
  
}


@media (max-width:1400px){
  h1{font-size: 80px;}
  h2{font-size: 60px;}

  .site-btn p{
    font-size: 20px;
  }
  #head-banner{
    padding-bottom: 20px;
  }
  #team h2{font-size: 40px;}

  #team .team-detail p.m-0{
    font-size: 14px;
  }
  #team .team-detail p:last-child{
    font-size: 12px;
  }

  #service .ques-card h3{
    font-size: 40px;
  }
  h4.logo{
    font-size: 40px;
    font-weight: 500;
  }
  h4 .logo{
    font-size: 35px;
  }
  #header.bg-head .nav-item a{
    font-size: 23px;
  }
  #about h4{font-size: 28px;}
  #case .case-box h3{
    font-size: 45px;
  }
  #footer .copyright b{
    font-size: 30px;
  }
  #footer .footer-logo b{
    font-size: 70px;
  }
  #header .navbar-brand, #header .navbar-toggler b{
    font-size: 40px;
  }
  #header .hamburger span{
    width: 40px;
    margin-right: 10px;
  }
  #header .ctc-detail a:last-child{
    font-size: 20px;
  }
  #head-banner .title{
    font-size: 90px;
    line-height: 95px;
    margin-bottom: 0px !important;
  }
  #head-banner .banner-desc li{
    font-size: 23px;
  }
  .site-btn span{
    font-size: 30px;
  }
  .site-btn img{
    width: 25px;
  }
  #head-banner p.sm-desc{
    font-size: 22px;
  }
  #about-us h3{
    font-size:50px;
  }
  .overlap-text{
    font-size: 80px;
    letter-spacing: -2px;

  }
  #footer label input{
    font-size: 18px;
  }

  #benifit .beni-card{
    min-height: 250px;
  }
  #team .team-detail p{
    font-size: 16px;
  }
  #team .team-box .team-detail, #team .team-box{
    padding: 20px !important;
  }
  #head-banner .bg-video{
    height: 750px;
  }
  
}



@media (max-width:991px){
  h1{font-size: 70px;}
  h2,#team h2{font-size: 50px;}

  h4.logo{
    font-size: 35px;
    font-weight: 500;
  }
  h4 .logo{
    font-size: 25px;
  }
  #service .ques-card h3{
    font-size: 35px;
  }
  #head-banner{
    padding-bottom: 10px;
  }

  #head-banner .banner-desc{
    max-width: 450px;
  }
  #service .ques-card.border-0 .beni-card{
    top: -100%;
  }
  #service .ques-card.border-0 .beni-card h4{
    font-size: 18px;
  }
  #service .ques-card.border-0 .beni-card p{
    font-size: 14px;
  }
  .process-desc{font-size: 18px;}
#case .case-box h3{
  font-size: 35px;
}
#case .case-single h5{font-size: 30px;}
#case .case-box h4{
  font-size: 18px;
}
#footer .footer-inner{
  padding: 20px;
}
#footer .footer-logo b{
  font-size: 60px;
}
#footer .copyright b{
  font-size: 20px;
}
#header .navbar-brand, #header .navbar-toggler b{
  font-size: 30px;
}
#header .hamburger span{
  width: 35px;
  margin-right: 10px;
}
#header .ctc-detail a:first-child{
  font-size: 14px;
}
#header.bg-head .nav-item a{
  font-size: 18px;
}
#head-banner .title{
  font-size: 75px;
  line-height: 80px;
}
#head-banner .banner-desc li{
  font-size: 18px;
}
.site-btn span{
  font-size: 20px;
}
.site-btn img{
  width: 20px;
}
#head-banner p.sm-desc{
  font-size: 20px;
}
#about-us h3{
  font-size:35px;
}
.overlap-text{
  font-size: 60px;
  letter-spacing: -1px;
}
.overlap-img{
  height: 400px;
}

#benifit .beni-card{
  min-height: 200px;
}

#service .ques-card .beni-card{
  width: 300px;
}
#team .team-detail p{
  font-size: 16px;
}
#head-banner .bg-video{
  height: 600px;
}
}

@media (max-width:767px){
  h1{font-size: 60px;}
  .site-btn p{
    font-size: 18px;
  }
  #footer label input{
    font-size: 14px;
  }
  #header .hamburger span{
    width: 25px;
  }
  #header.bg-head{
    padding: 10px 5px 20px !important;
  }
  
  #header .navbar-toggler b{
    font-size: 25px;
  }
  #head-banner .title{
    font-size: 60px;
    line-height: 70px;
  }

  #case .case-single p{font-size: 12px;}
  #case .case-single h5{font-size: 25px;}
  
  #works h3{
    font-size: 20px;
  }

  #footer .copyright b{
    font-size: 16px;
  }
  #footer .footer-logo span{
    max-width: 100% !important;
  }
  .site-btn span{
    font-size: 20px;
  }
  .site-btn .btn{
    padding: 10px 15px;
  }
  .site-btn img{
    width: 12px;
  }
  #head-banner p.sm-desc{
    font-size: 16px;
  }
  .overlap-text{
    font-size: 40px;
  }
  #case .case-box h3{
    font-size: 28px;
  }
  
  #service .ques-card h3{
    font-size: 25px;
  }
  
  #head-banner .banner-desc{
    padding-left: 20px !important;
    padding-top: 10px !important;
  }
  #service .ques-card.border-0 .beni-card{
    top: -100%;
  }
  
}

@media (max-width: 576px){
  h2{font-size: 45px !important;}
  #process h2{
    font-size: 35px !important;
  }
  .site-btn .btn span{
    font-weight: 800 !important;
  }

  h4.logo{
    font-size: 30px;
  }
  h4 .logo{
    font-size: 20px;
  }
  .overlap-text br{
    display: none;
  }
  .overlap-text{
    width: 90%;
  }
  #team .team-detail p{
    font-size: 14px;
  }
  #case .case-box h3{
    font-size: 25px;
  }
  .site-btn img{
    width: 10px;
  }
  .site-btn a{
    line-height: 100%;
  }
  .site-btn p{
    font-size: 14px;
  }
  #service .ques-card h3{
    display: flex;
    justify-content: space-between;
  }
  #service .ques-card h3 span{
    top: 0;
  }
  #service .ques-card h3{
    font-size: 20px;
  }
  #service .ques-card .beni-card h4{
    font-size: 15px;
  }
  #service .ques-card .beni-card p{
    font-size: 12px;
  }
  #case .case-box h4{
    font-size: 14px;
  }
  #benifit.section, #about-us.section{
    padding-bottom: 3rem !important;
  }

  .site-btn span{
    font-size: 16px;
  }
  #head-banner .banner-desc li{
    font-size: 16px;
  }
  p{font-size: 12px;}
  .process-desc{
    font-size: 14px;
  }
  #about h4{font-size: 25px;margin-bottom: 10px;}

  #head-banner .title {
    font-size: 68px;
    line-height: 70px;
    letter-spacing: -1px;
    font-weight: 800;
}
#head-banner{
  background-position: 83%;
}
  
  #team h2{
    font-size: 40px;
  }
  .about-box img{
    width: 100%;
  }
  #case .case-single h5{font-size: 20px;}
  #case .first{flex-direction: column-reverse !important;}
  #footer .footer-logo span{
    font-size: 40px;
    line-height: 40px;
  }
  #footer .footer-logo span b{
    font-size: 40px;
    letter-spacing: -2px;
  }
  #footer .copyright b{
    font-size: 12px;
  }
  .site-btn span{
    font-size: 16px;
  }
  #head-banner p.sm-desc{
    font-size: 12px;
  }
  #service .ques-card h3 span{
    right: 0;
  }
  #trust h5{
    font-size: 18px;
  }
  #trust h6{
    font-size: 14px;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }
  #about-us h3{
    font-size: 30px;
  }
  .site-btn .btn {
    padding: 10px 10px !important;
}

#service .ques-card .beni-card{
  width: 70%;
  min-height: 150px;
}
#team .team-box{
  height: 500px;
}
#head-banner::before{
  display: block;
}
#faq .faq-title p{
  font-size: 16px;
}
#service .ques-card button{
  font-size: 20px;
}
#service .ques-card button span{
font-size: 12px;
}
#service .ques-card button span{
  top: -20px;
}
#service .ques-card button span::after, #service .ques-card button span::before{
  top: 3px;
}

}

@media (min-width: 400px) and (max-width: 576px){
  .site-btn span {
    font-size: 16px;
}
}

@media (max-width: 400px){
  #head-banner .title{
    font-size: 60px;
    line-height: 57px;
  }
  .site-btn span{
    font-size: 14px;
    line-height: 100%;
  }
  .site-btn p{
    font-size: 12px;
  }
  #team .team-detail p{
    font-size: 12px;
  }
  #team .team-box{
    height: 400px;
  }
}


@media (min-width:320px){
  .container-ext{
    max-width: 1900px !important;
  }
  .container-xxl{
    max-width: 1400px !important;
  }
}

@media (max-width: 390px){
  .site-btn span{
    font-size: 14px !important;
    line-height: 100%;
  }
    #head-banner .title {
        font-size: 58px !important;
        line-height: 60px !important;
    }
    
}