@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*
---------------------------------------------
reset
---------------------------------------------
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 25px;
  color: #4a4a4a;
}

:root {
  --main-color: #00B4D3;
  --white-color: #FFFFFF;
  --black-color: #2A2A2A;
  --opacity-color: #3fe3ff1c;
  --color-optain:#d8f9ff;
  --gray-color: #DCDCDC;
  --whiteModify-color: #fefefe;
  --secondary-color: #7A7A7A;
}

/*
---------------------------------------------
global styles
---------------------------------------------

*/
.whatsapp{
    position: fixed;
    z-index: 9999999;
    left: 36px;
    bottom: 45px;
    width: 10%;
    /* background-color: aliceblue; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5%;
    display: none;
    transition: all .5s;
}
.whatsapp.showing{
    display: block;
    transition: all .5s;
}
.whatsapp span {
    position: absolute;
    top: 14px;
    right: -120px;
    background: var(--main-color);
    padding: 12px 25px;
    color: var(--white-color);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    font-family: Rubik;
    font-size: 12px;
    font-weight: 700;
}
.whatsapp a{
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.whatsapp a i{
    width: 60px;
    height: 60px;
    color: var(--main-color);
    font-size: 46px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 14px;
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
    box-shadow: 0px 4px 15.7px -3px #0000001A;
  }

  .scroll-top i {
    font-size: 24px;
    /* color: var(--color-secondary); */
    color: #fff;
    line-height: 0;
  }
  .scroll-top:hover i{
    color: #E42626;
  }

  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }
/* The scrollbar container */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }


  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }


  ::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 10px;
  }


  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
/*
---------------------------------------------
preloader
---------------------------------------------
*/
#preloader {
    overflow: hidden;
    background-image: linear-gradient(145deg, #00b4c6 0%, #0088e8 100%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999;
    color: #fff;
  }

  #preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
  }

  #preloader .jumper > div {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: jumper 1s 0s linear infinite;
    animation: jumper 1s 0s linear infinite;
  }

  #preloader .jumper > div:nth-child(2) {
    -webkit-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
  }

  #preloader .jumper > div:nth-child(3) {
    -webkit-animation-delay: 0.66666s;
    animation-delay: 0.66666s;
  }
/*
  ----------------------------------
  Header
  -----------------------------------
*/
.header-area {
  border-bottom: 1px solid var(--gray-color);
}

.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 80px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.logo {
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.logo .brand {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.logo .brand img {
  width: 100%;
  height: 100%;
}

.logo span {
  font-size: 24px;
  font-weight: 600;
  color: var(--main-color);
}

.nav-link {
  transition: 0.7s ease;
}

.nav-link:hover {
  color: var(--main-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--black-color);
}

.wbar {
  width: 31px;
}

.right-buttons {
  /*margin-left: 4rem;*/
  display: flex;
  align-items: baseline;
}

.right-buttons .nav-item {
  margin-right: 8px;
}

.right-buttons .nav-item:nth-child(2) {
  margin-right: 0;
}

.right-buttons .nav-item:nth-child(1) {
  margin-left: 0;
}

.right-buttons .nav-link {
  background-color: var(--main-color);
  padding: 8px 24px;
  color: var(--white-color);
  border-radius: 12px;
}
.right-buttons .btn-1 {
  background-color: var(--main-color);
  padding: 8px 24px;
  color: var(--white-color);
  border-radius: 12px;
  transition: all .5s ease-in-out;
}


.right-buttons .btn-login {
  padding: 8px 32px;
  background-color: var(--white-color);
  border: 1px solid var(--main-color);
  color: var(--main-color);

}

.btn-1:hover{
  background-color: var(--white-color) !important;
  color: var(--main-color) !important;
  transition: all .5s ease-in-out;
}
.right-buttons .btn-login:hover{
  background-color: var(--main-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
}
/*
  ----------------------------------
  Main
  -----------------------------------
*/

.main {
  width: 100%;
}

.head-main {
  margin-top: 64px;
  text-align: center;
}

.head-main h1 {
  font-size: 44px;
  margin-bottom: 24px;
  color: var(--black-color);
}

.head-main p {
  font-size: 16px;
  line-height: 33px;
  color: var(--secondary-color);
  margin-bottom: 48px;
}

.head-main .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.head-main .cta-buttons .book-btn {
  padding: 10px 21px;
  background-color: var(--main-color);
  border-radius: 12px;
  color: var(--white-color);
  font-weight: 500;
}

.head-main .cta-buttons .login-btn {
  padding: 10px 32px;
  background-color: var(--white-color);
  border: 1px solid var(--main-color);
  border-radius: 12px;
  color: var(--main-color);
  font-weight: 500;
}

.hero-img {
  width: 72%;
  margin: 26px auto;
}

.hero-img img {
  width: 100%;
  height: 100%;
}

.transform-degi, .testimonials {
  margin-top: 48px;
  background-color: var(--opacity-color);
  Padding: 48px 0px 48px 0px;
}

.transform-degi .contain-transform {
  text-align: center;
}

.transform-degi .contain-transform p {
  font-size: 16px;
  color: var(--secondary-color);
}

.our-transform {
  margin-top: 64px;
}

.our-transform .contain-our {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.our-transform .box-our {
  width: 32.33%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 64px;
}

.our-transform .box-our .icon {
  width: 48px;
  height: 48px;
  /* margin-bottom: 20px; */
  margin: 0 auto 20px;
}

.our-transform .box-our .icon img {
  width: 100%;
  height: 100%;
}

.our-transform .box-our h4 {
  font-size: 20px;
  line-height: 33px;
}

.join-sys, .contain-join, .trial, .contain-trial{
  margin-top: 64px;
}

.contain-join {
  text-align: center;
}
.join-sys .contain-join p, .trial .contain-trial p {
  margin-top: 16px;
  font-size: 16px;
  margin-bottom: 48px;
  color: var(--secondary-color);
}
.join-sys .contain-join .join-btn, .trial .contain-trial .trial-btn{
  padding: 10px 21px;
    background-color: var(--main-color);
    border-radius: 12px;
    color: var(--white-color);
    font-weight: 500;
}

.testimonials h2{
  margin-bottom: 48px;
}
.testimonials .testimonial-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 47px;
}
.testimonials .all-testi-container {
  width: 30.33%;
  text-align: center;
}
.testimonials .testimonial-boxes{
  padding: 31px 21px;
  background-color: var(--opacity-color);
}
.testimonials .testimonial-boxes p {
  color: var(--black-color);
}
.testimonials .editt .testimonial-boxes p {
  color: var(--white-color);
}
.testimonials .testimonial-boxes::after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-optain);
  position: relative;
  top: 2.5rem;
  left: 46%;
  /* margin-top: 20px; */
  /* margin-left: 8.5rem;
  margin-right: 8.5rem; */
  transform:translateZ(10px) rotate(45deg);
}
.testimonials .editt .testimonial-boxes::after{
  background-color: var(--main-color);
}
.testimonials .editt .testimonial-boxes{
  background-color:var(--main-color);
}
.testimonials .all-testi-container p {
  margin-top: 16px;
}

.testimonials .client-info {
  margin-top: 48px;
}

footer{
  margin-top: 136px;
  padding: 56px 0px 48px 0px;
  background-color: var(--main-color);
  color: var(--white-color);
}
footer .foot_left{
  width: 55%;
}

footer .foot_title{
  display: flex;
  align-items: center;
  color: var(--white-color);
}
footer .foot_title .imgf{
  width: 30px;
  height: 30px;
}
footer .foot_title .imgf img {
  width: 100%;
  height: 100%;
}
footer .footer_p{
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color) !important;
  margin-top: 16px;
}
footer .foot_left ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .foot_left ul li {
  font-weight: 600;
  margin-top: 16px;
  font-size: 18px;
}
footer .foot_left ul li a {
  color: var(--white-color);
}

footer .foot_right .foot_contain h6{
  margin-bottom: 16px;
}
footer .foot_right .foot_right_li{
  margin-bottom: 16px;
}
.footer_bootom {
  display: flex;
  justify-content: space-between;
}
footer .footer_bootom p {
  color: var(--white-color) ;
}
.footer_bootom ul{
  display: flex;
  gap: 24px ;
}



/*
  ----------------------------------
  About
  -----------------------------------
*/

.aboutHead-main{
  padding: 0 185px;
}
.ourVision {
  margin-top: 136px;
}
.ourVision .containVision {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}
.ourVision .wVision {
  width: 48%;
}
.ourVision .img-vision img {
  width: 100%;
}
.ourVision .our_visionList h3{
  font-size: 32px;
  font-weight: 600;
}
.ourServices .our_servicesList ul li{
  list-style: disc;

}

.ourServices .our_servicesList ul li {
  line-height: 32px;
}
.containContact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 20px; */
}
.contactHead {
  padding: 0 185px;
}
.contact_box .wContact{
  width:48%;
}
.contact_box .textBoxLeft{
  padding:72px 32px;
  color: var(--white-color);
  background-color: var(--main-color);
  border-radius: 6px;
}
.contact_box .textBoxLeft h3{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact_box .textBoxLeft p{
  font-weight: 400;
  color: var(--white-color);
  line-height: 24px;
  margin-bottom: 24px;
}
.contact_box .textBoxLeft .details_list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact_box .textBoxLeft .details_list li img{
  margin-right: 24px;
}
.contact_box .textBoxLeft span{
  display:block;
  margin: 16px 0 35px;
}

.social_contact{
  display: flex;
  gap:24px;
}

.contact_box .formBoxRight {
  padding: 32px;
  border:1px solid var(--main-color);
  border-radius: 6px;
}
.contact_box .formBoxRight .titleForm{
  margin-bottom: 24px;
}
.contact_box .formBoxRight .titleForm h5{
  font-weight: 700;
  font-size: 20px;
}
.contact_box .formBoxRight .btn{
  padding:17px 32px 17px 32px;
  border-radius: 4px;
  background-color: var(--main-color);
  color: var(--white-color);

}
.contact_box .formBoxRight .edittBtun{transition: all .5s;}
.contact_box .formBoxRight .edittBtun:hover{
    background-color: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: all .5s;
}
.containPrice{
  display: flex;
  justify-content:flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.containPrice .boxPrice{
  width: 22%;
  /* height: 400px; */
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 4px 15.7px -3px #0000001A;

}
.containPrice .boxPrice h3{
  margin-bottom: 16px;
}
.containPrice .boxPrice span strong{
  font-size: 36px;
  font-weight: 500;
  color: var(--main-color);
}
.containPrice .two {
  background-color: var(--main-color);
}
.containPrice .two h3, .containPrice .two span ,.containPrice .two span strong{
  color: var(--white-color);
}

.containPrice .boxPrice .paragPrice {
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 19px;
}
.containPrice .two .paragPrice {
  color: var(--white-color);
}
.containPrice .boxPrice ul{
    /*width:fit-content;
    padding-left:50px;*/
  margin-right: 1rem;
  margin-left: 1rem;
}
.containPrice .boxPrice ul li{
  list-style: disc;
  margin-bottom: 16px;
  font-size:14px;
}
.containPrice .two ul li {
  color: var(--white-color);
}


/* Responsive Design */
@media (max-width: 992px) {
  .containPrice .boxPrice{
    width: 100%;
  }
}
@media (max-width: 820px) {

  .aboutHead-main, .contactHead{
    padding: 0 20px;
  }
  .testimonials .all-testi-container {
    width: 100%;
  }
  .our-transform .box-our{
    width: 100%;
  }
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: var(--whiteModify-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .right-buttons {
    margin-left: 0rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}
@media (max-width: 768px) {
    .whatsapp span{
        right: -200px;
    }
  .contact_box .wContact{
    width: 100%;
    margin-top: 16px;
  }
  .navbar{
    padding: 16px 15px;
  }
  .ourVision .wVision{
    width: 100%;
  }
  footer .foot_right
  footer .foot_right{
    margin-top: 16px;
  }
  footer .foot_left{
    width: 100%;
  }
  footer div:nth-child(1){
    gap: 25px;  
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  footer .foot_left .foot_title{
    justify-content: center;
  }
  .footer_bootom{
      flex-direction: column;
    align-items: center;
    gap: 17px;
  }
}
