
:root {
    --secondary: #ff684c;
    --primary: #2aa7ff;
    --headercolor: #eaf7ff;
    --textcolor: #1b3c74;
    --white: #ffffff;
    --black: #000000;
    --smallpara: #727c8d;
  }
  *, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
    body{
     font-style: normal;
     font-family: 'Poppins';
      font-weight: 500;
      /* background-color: var(--headercolor); */
    } 
    a{
       text-decoration: none;
   }
   .container{
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
    } 

    /* .subcontainer{
        max-width: 1440px;
        margin: 0 auto;
        padding-left: 12px;
        padding-right: 12px; 

    } */
    img{
      max-width: 100%;
      display: inline-block;
    }
    ul{
      list-style: none;
    }
   .col-1{width: 8.33%; padding-left: 12px; padding-right: 12px; }
   .col-2{width: 16.66%; padding-left: 12px; padding-right: 12px; }
   .col-3{width: 25%; padding-left: 12px; padding-right: 12px; }
   .col-4{width: 33.33%; padding-left: 12px; padding-right: 12px; }
   .col-5{width: 41.66%; padding-left: 12px; padding-right: 12px; }
   .col-6{width: 50%; padding-left: 12px; padding-right: 12px; }
   .col-7{width: 58.33%; padding-left: 12px; padding-right: 12px; }
   .col-8{width: 66.66%; padding-left: 12px; padding-right: 12px; }
   .col-9{width: 75%; padding-left: 12px; padding-right: 12px; }
   .col-10{width: 83.33%; padding-left: 12px; padding-right: 12px; }
   .col-11{width: 91.66%; padding-left: 12px; padding-right: 12px; }
   .col-12{width: 100%; padding-left: 12px; padding-right: 12px; } 
   

/* --------------------------------------------header section--------------------------------------------------- */
header {
 background-color: var(--headercolor);
   padding-top: 20px;
   padding-left: 10px;
   }
  .row {
    display: flex;
    flex-wrap: wrap;
    /* margin-left: -12px;
    margin-right: -12px; */
    align-items: center;
    width: 100%;
  }
  .logo {
    display: flex;
    align-items: center;
    margin-right: 200px;
    }
  .logo img{
    width:150px;
    height: 45px;
    }
  nav {
    /* padding-left: 350px;  */
    /* margin-top: -35px; */
     flex-grow: 1;
     text-align: center;
  }
  nav ul {
    list-style: none;
    /* margin: 0; */
    /* padding: 0px; */
    display: flex;
    font-family: 'Inter';
    }
  nav li {
    font-family: 'Inter';
    /* color: #1b3c74; */
    color:var(--textcolor);
    font-size: 17px; 
    font-weight: 500;
  }
    nav a {
    text-decoration: none;
    color:var(--textcolor);
    transition: color 0.2s ease;
    font-family: 'Inter';
  }
  nav a:hover{
    color: var(--secondary);
  }
  ul li i{
    font-size: 12px;
    padding: 5px;
    font-family: 'Inter';
  }
  ul li i{
    transform: rotate(1800deg)
  }
  ul li i:hover{
    transform: rotate(180deg)
  }
  .main-menu > li {
   position: relative;
    margin: 0 15px;
    /* padding: 2px; */
    transition: 0,3s;
    }
  .main-menu  li:hover {
    color: var(--secondary);
   }
  .sub-menu {
    font-family: 'Inter';
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 2px 4px #0000001a;
    list-style: none;
    padding: 10px;
    margin: 0;
    width: max-content;
  }
  .main-menu  li:hover .sub-menu {
    display: block;
    border-radius: 10px;
    font-family: 'Inter';
   }
  .sub-menu  li {
    padding: 5px 10px;
    text-align: left;
   }
  .btn{
    position: relative;
     font-size: 16px;
     width: 192.6px;
     height: 51.18px;
     background-color: var(--primary);
      color: var(--white);
      padding: 10px 20px;
      font-family: 'Inter';
      font-weight: 700;
      line-height: 19.2px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: 0.5s;
      z-index: 1;
  }
  .btn::after{
    content: '';
    position: absolute;
    color: var(--white);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--white);
    background-color: var(--secondary);
    border-radius: 30px;
    transform: scaleX(0);
    transition: 0.5s;
    transform-origin: left;
    z-index: -1;
  }
  .btn:hover::after{
    
    transform: scaleX(1);
  
  }
  /* doctor // texts  */
  .Doctor{
   background-color:var(--headercolor);
    padding: 100px 30px 0px;
    margin-top: 150px;
  }
  .doctor-content{
    background-color: var(--headercolor);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .doctor-text{
    /* max-width: 500px; */
    font-family: 'Inter';
    width: 433.11px;
    height: 380px;
    margin-top: 150px;
    margin-left: 30px;
   }
  .hr-lines:before{
    content:" ";
    display: block;
    height: 2px;
    width: 130px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--secondary)
  }
  .hr-lines{
    position: relative;
    /*  new lines  */
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
  }
  .doctor-text h2{
    /* border-top: 1px solid var(--secondary); */
    font-family: 'Inter';
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 20px;
    margin-right: -70px;
  }
  .doctor-text h1{
    font-family: 'Inter';
    font-size: 50px;
    font-weight: 600;
    color:var(--textcolor);
    line-height: 63.8px;
     margin-bottom: 20px;
   
  }
  .doctor-text p{
    font-family: 'Inter';
    font-size: 18px;
    color: var(--smallpara);
    line-height:1.5 ;
  }
  .image-continer{
    margin-top: 200px;
    margin-left: 100px;
    align-items: flex-start;
    align-content: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 0;
  }
  .hero-image {
    margin-bottom: 100px;
    margin-left: 50px;
    width: 433.1px;
    height: 300px;
  }
  label #menu,
  label #cals {
    display: none;
    color: var(--white);
    /* font-size: 20px; */
    float: right;
    /* line-height: 80px; */
    /* margin-right: 20px; */

  }
  #check{
    display: none;
  }
  
/* -------------------------------------------------Department section--------------------------------------- */
.Departments{
    padding: 100px 30px 30px;
    margin-top: 98px;
    background-color: var(--white);
    margin: -10px;
    width: 1272px;
    height: 764.46px;
    /* display: flex; */
  }
  .depart_info{
    margin-top: 50px;
    /* width: 1343.73px;
    height: 614.48px; */
  }
  .maintitle p{
    font-family: 'Inter';
    font-size: 20px;
    color: var(--secondary);
    font-weight: 500;
    line-height: 27px;
    margin-left: -30px;
    /* padding-left: 100px; */
}
  .maintitle h2{
    font-family: 'Inter';
    font-size: 38px;
    color: var(--textcolor);
    font-weight: 700;
    line-height: 45.6px;
  }
.depart_part{
    box-shadow: rgba(27, 60, 116, 0.06) 0px 16px 46px 0px;
    background-color: var(--white);
    display: flex;
    padding: 24px;
    margin-top: 4px;
    border-radius: 16px;
   width:500px ; 
    height: 131.98px;
    /* margin-left: 5px; */
    /* margin-right: 5px; */
  }
.depart_part img{
    width: 83.99px;
    height: 83.99px;
  }
  .dch{
    background-color: #e4edf3;
    flex: none;
    height: 78px;
    overflow: hidden;
    position: relative;
    width: 2px;
}
.depart_details h4{
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 700px;
    letter-spacing: -0.5px;
    line-height: 33.6px;
    text-align: start;
    cursor: pointer;
    color:  var(--textcolor);
    font-family: 'Inter';
  }
  .depart_details h4:hover{
    color: var(--secondary);
    text-decoration:  underline solid;
    transition: color 0.2s ease;
  }
  .depart_details-para{
    font-family: 'Inter';
    color: var(--smallpara);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    margin-top:10px ;
  }
.depart_details{
    margin-left: 15px;
  }
#depart2{
    margin-top: 20px;
  }
/* --------------------------------------------------------Tretment section--------------------------------------------------------- */
.treatment{
    margin: -10px;
   width:1250px ;
    height: 399.653px;
    position: relative;
    align-items: center;
    align-content: center;
    display: flex;
    z-index: 1;
    column-gap: 10px;
    row-gap: 10px;
    /* margin-top: 9%; */
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 50px;
    background-color: var(--white);
  }
  .treatment_imges{
    display: flex;
    width: 435.97px;
    height: 344.1px;
  }
  .imgpart_1{
    margin-top: 90px;
  }
  .imgpart_1 img{
    height: 223px;
    width: 250px;
  }
  .imgpart_2{
    margin-left: 15px;
  }
  .imgpart_2 img{
    height: 150px;
    width: 209px;
  }
  .treatment_text{
    margin-top: -20px;
    /* margin-left: 5px; */
  }
  .treatment_text{
  margin-left: -150px;
}
  .treatment_text span{
    font-family: 'Inter';
    font-size: 18px;
    color: var(--secondary);
    font-weight: 500;
    line-height: 27px;
    margin-left: -50px;
   }
  .treatment_text h2{
    font-family: 'Inter';
    font-size: 38px;
    color: var(--textcolor);
    font-weight: 700;
    line-height: 45.6px;
    margin-bottom: 10px;
    margin-left: -10px;
  }
.treatment_para_teaxt p{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    color: var(--smallpara);
    line-height: 27px;
    text-align: start;
    /* margin-left: -20px; */
  }
.treatment_points{
    margin-top: 30px;
  }
  .treatment_points li{
    display: flex;
  }
  .treatment_points li p{
    margin-left: 13px;
    color: var(--textcolor);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 26px;
    text-align: start;
  }
 .treatment_point_img img{
    width: 20px;
  }
 .tbtn{
    margin-top: 10px;
  }
  .btnl{
     position: relative;
     font-size: 12px;
     font-weight: 900;
     width: 158.646px;
     height: 51.181px;
     background-color: var(--white);
      color: var(--primary);
      padding: 16px 24px 16px 24px;
      border:1px solid var(--primary);
      opacity: 1;
      border-radius: 58px;
      cursor: pointer;
      transition: 0.10s;
      z-index: 1;
     }
  .btnl::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 102%;
    color: var(--white);
    background-color: var(--textcolor);
    border-radius: 58px;
    transform: scaleX(0);
    transition: 0.5s;
    transform-origin: left;
    z-index: -1;
  }
  .btnl:hover::after{
    transform: scaleX(1);
  }

  /* -----------------------------------------------------------process-section------------------------------------------------------ */
  .Process{
    margin-top: 9%;
    text-align: center;
    margin: -10px;
    background-color: var(--white);
    padding: 50px 30px 100px;
    max-width: 1250px;
    height: 412.50px;
  }
  .process_details{
    display: flex;
    justify-content: space-around;
    padding: 20px;
   }
  .Process_card{
    background-color: var(--white);
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    text-align: center;
    width: 20%;
  }
  .process_img img  {
    border-radius: 65%;
    width: 129.99px;
    height: 129.99px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .hr-line-2{
    position: relative;
    max-width: 500px;
    /* margin: 100px auto; */
    text-align: center;
   }
  .hr-line-2:before{
    content:" ";
    height: 2px;
    width: 130px;
    background: var(--secondary);
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    }
  .hr-line-2:after{
    content:" ";
    height: 2px;
    width: 130px;
    background: var(--secondary);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    }
  .process_details_para h6 {
    font-family: 'Inter';
    color: var(--textcolor);
    font-size: 20px;
    font-weight: 700; 
    line-height: 26px;
    text-align: center;
    align-items: center;
    margin-left: 100px;
   }
.Process .process_details_para p{
    font-family: 'Inter';
    color: var(--smallpara);
    font-size: 16px;
    margin-top: 10px;
    /* margin-right: -1000px; */
    line-height: 20px;
    font-weight: 400;
    } 
.process_card .process_card_digit{
    color: var(--textcolor);
    font-size: 40px;
    font-weight: 800;
}
.process_card{
    margin-top: 50px;
    
  }
/* ---------------------------------------------------Treatment-section------------------------------------------------------------   */
.provide_tratment{
  margin-top: 50px;
   width: 1250px;
    height: 1116.22px;
    padding: 100px 30px;
    background-color: var(--headercolor);
}
.star{
    width: 34px;
    height: 32px;
}
.img1{
    width: 530px;
    height: 572px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.img2 {
  position: absolute;
  top: 450%; left: 50%;
  transform: translate(-50%,-50%);
  width: 96px;
  height: 96px;
    }
.treat-deprtments{
 max-width: 1200px;
  height: 334px;
 
}
.trat-heading{
  margin-top: 50px;
  text-align: center;
}
.trat-heading p{
  font-family: 'Inter';
  font-style: normal;
  font-size: 18px;
  color: var(--secondary);
  font-weight: 500;
  line-height: 27px;
  align-items: center;
}
.trat-heading h2{
  font-family: 'Inter';
  font-style: normal;
  color: var(--textcolor);
  font-size: 38px;
  font-weight: 700;
  line-height: 45.6px;
}
.services {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.service img{
  width: 39.98px;
  height: 39.98px;
}
.white{
  /* display: block; */
  width: 300px;
  height: 215px;
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
}
.header-co{
  background-color: var(--headercolor);
  display: block;
  width: 300px;
  height: 215px;
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
}
.service {
  display: block;
  width: 300px;
  height: 215px;
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
}

.service h2 {
  font-family: 'Inter';
  font-size: 20px;
  color: var(--textcolor);
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 5px;
}
.service p{
  font-family: 'Inter';
  font-size: 16px;
  color: var(--smallpara);
  font-weight: 400;
  line-height: 19.5px;
}

/* ----------------------------------------------specialized treatment------------------------------------------- */
      .hospital-info {
    text-align: center;
   /* background-image: url(../image/ttr.png); */
    padding: 100px 30px 50px;
    min-width: 1250px;
    height: 493.88px;
}
 .content{
   background-image: url(../image/ttr.png); 
}
 .hospital-info span{
  font-family: 'Inter';
  color: var(--secondary);
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}
 .hospital-info h2 {
    color:var(--textcolor);
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 45.6px;
}
.stats {
  
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}
.stat {
  width: 268.74px;
  height: 144.75px;
    text-align: center;
    }
.stat img {
  
    width: 50px;
    height: 50px;
}
.stat h2 {
  font-family: 'Inter';
    margin: 10px 0 0;
    font-size: 38px;
    color:var(--textcolor);
    font-weight: 700;
    line-height: 45.6px;
}
.stat p {
  font-family: 'Inter';
  margin: 10px 0 0;
  font-size: 16px;
  color:var(--smallpara);
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: -0.2px;
    display: block;
}
.doctors {
    text-align: center;
    margin: 50px 0;
}
.doctors h3 {
    color: #003366;
    font-size: 2em;
}

/* --------------------------------------Doctors-team-section-------------------------------------------------- */
.doctors-sec{
  background-color: var(--white);
  width: 1200px;
  height: 1798.36;
  padding: 50px 30px 100px;
}
.doctors-sec p{
  /* margin-top: 500px; */
  font-family: 'Inter';
  font-size: 16px;
  justify-content: flex-start;
  color: var(--secondary);
  margin-right: 800px;
}
.doctors-sec h2{
  color: var(--textcolor);
  font-family: 'Inter';
  font-size: 38px;
  font-weight: 700;
  line-height: 45.6px;
  margin-bottom: 10px;
}
.doctors-sec .tbtn{
  margin-left: 1000px;
/* margin-bottom: 50px; */
}
.doctors-sec .btnl{
 
  width: 187px;
  height: 51px;
}
.doc-main{
  /* width: 1000px; */
  height: 1648.38;
  display: flex;
  justify-content: space-around;
  /* flex-direction: row-reverse; */
  flex-wrap: wrap;
}
.doctor-card{
  background-color:var(--white);
  width: 228.93px;
  height: 320px;
  padding: 20px 20px 24px 20px;
  border-radius: 10px;
  justify-content: space-between;
}
.sub-1{
  margin-top: 30px;
  margin-left: 300px;
}
.sub-2{
  margin-top: 30px;
  margin-right: 300px;
}
.doctor-card img{
  width: 228.93px;
  height: 180.99px;
  background-color: var(--headercolor);
  text-align: center;
}
.doctor-card h3{
  text-align: center;
  color: var(--textcolor);
  font-family: 'Inter';
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  margin-top: 10px;
}
.doctor-card  p{
  font-family: 'Inter';
  color: var(--smallpara);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  margin-right: -10px;
  margin-top: 10px;
  /* align-items: center; */
 
}
.doctor-card .btn{
  justify-content: center;
  font-family: 'Inter';
  width: 145px;
  height:40.97px;
  font-size: 12px;
  margin-right: -60px;
  margin-top: 10px;
  text-align: center;
 
}
   /* ---------------------------------------------apportiment-form----------------------------------------------- */
   .registration_form {
    /* background: white; */
     /* padding: 25px; */
     border-radius: 10px;
    width: 450px;
    height: 600px;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    margin-left: auto;
    margin-right: auto;
} 
.formimage{
  width: 469.13px; ;
  height: 106px;
}
.title  h3{
  font-family: 'Satoshi-Black';
    text-align: center;
   margin-bottom: -10px;
    /* padding: 22px 0; */
    font-size: 36px;
    font-weight: 700;
    line-height: 46.8px;
    align-items: center;
   /* background-image: url(../image/form.png); */
   /* width: 440px;
   height: 106px; */
    color: white;
    /* background-size: cover;  */
   
}
.input_wrap {
    margin-bottom: 15px;
}
.input_wrap i{
  margin-bottom: -00px;
  margin-left: 420px;
  font-size: 12px;
}
label {
  font-family: 'Satoshi-Black';
  font-size: 18px;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
    color: var(--textcolor);
}
input[type="text"],
input[type="date"],
input[type="time"],
input[type="tel"],
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
.submit_btn {
  font-family: 'Satoshi-Black';
    width:450.155px ;
    height:25.98px ;
    justify-content: center;
    margin-top: 10px;
    background-color: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 10px;
    text-align: center;
}
.submit_btn:hover {
    background-color: var(--secondary);
}
.form_wrap{
    margin-top: 20px;
}

.formdata{
  margin-top: 100px;
}


/* ----------------------------------------------------News-section------------------------------------------- */

.News{
  background-image: url(../image/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--headercolor);
  height: 1212.14px;
  width: 1250px;
  margin-top: 8%;
  padding: 100px 30px;
  /* margin-left: 0 auto;
  margin-right: 0 auto; */
  }
.News .maintitle{
  text-align: center;
  margin-top: 20px;
padding-right: -90px;
 }
.maintitle{
  /* margin-top: 200px; */
  padding: 0px 13px 0px ;
}
.News .maintitle  span{
  color: var(--secondary);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
.News .maintitle h2{
  text-align: center;
  font-size: 38px;
  color: var(--textcolor);
  font-weight:700 ;
  line-height: 45.6px;
  /* margin-left: 200px; */
}
.main_news{
  width: 999.99px;
  height: 873.6px;
  justify-content: center;
}
.news_card{
  align-items: center;
  align-content: center;
  margin-top:50px ;
  background-color: var(--white);
  padding: 20px ;
  border-radius:10px;
  width: 429.99px;
  height: 430px;
  justify-content: center;
 margin-left: 100px;
  opacity: 1;
  row-gap: 24px;
  box-shadow: rgba(27, 60, 116, 0.06) 0px 16px 46px 0px;
  margin-left: 0 auto;
  margin-right: 0 auto;
  }
.admin-image{
  width: 16px;
  height: 16px;
}
.calender-image{
  width: 16px;
  height: 16px;
}
 .news_data .news_data_1 {
  font-size: 16px;
  color: var(--textcolor);
  font-weight: 500;
  line-height: 19.2px;
}
.news_card .news_data{
  display: flex;
  color: var(--textcolor);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 500;
}
.news_card  h4{
  color: var(--textcolor);
  font-size: 24px;
  font-weight: 600;
  max-width: 330px;
  margin-bottom: 30px;
  transition: 0.2s;
}
.news_card  h4:hover{
  color: var(--secondary);
  text-decoration: underline;
}
.news_card  span{
  color: var(--primary);
  font-size: 17px;
  font-weight: 600;
  transition: 0.2s;
  }
.news_card  span:hover{
  color: var(--secondary);
}
/* --------------------------------------------Testimonials------------------------------------------------- */
.Testimonials .maintitle{
  margin-top: 10%;
  margin-left: 24px;
}
.Testimonials .maintitle h2{
  font-size: 38px;
  color: var(--textcolor);
  text-align: left;
  /* padding: 10px; */
  font-weight: 700;
  line-height: 45.6px;
}
 .maintitle span{
  font-size: 18px;
  color: var(--secondary);
  font-weight: 500;
  line-height: 24px;
 }
.Testimonials_card_top{
  width: 299px;
  height:219px ;
  box-shadow: rgba(27, 60, 116, 0.06) 0px 16px 46px 0px;
  padding:40px;
  background-color: var(--white);
}
.Testimonials_card_top p{
  font-size: 18px;
  color: var(--smallpara);
  font-weight: 400;
  line-height: 27px;
  width: 360px;
  margin-bottom: 20px;
  letter-spacing: normal;
  text-align: start;
}
.star_rating{
  color: var(--primary);
}
.Testimonials_card_bottam{
  display: flex;
  margin-top: 20px;
  margin-left: 10px;
}
.Testimonials_card_bottam img{
  width: 48px;
  height: 48px;
}
.Testimonials_bottom_data{
  margin-left: 10px;
  margin-top: 7px;
}
.Testimonials_bottom_data h4{
 font-size: 20px;
 color: var(--textcolor);
 font-weight: 700;
 line-height: 26px;
}
.Testimonials_bottom_data span{
  font-size: 16px;
  color: var(--smallpara);
  font-weight: 400;
  line-height: 26px;
}
/* -----------------------------------------------Footer-section--------------------------------------------- */
 footer {
  padding: 20px;
  background-color: #0e173a;
  margin-top: 9%;
  }
.mainfooter {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}
.mainfooter .row{
  margin-top: 50px;
}
.fpart{
  margin-top: -80px;
  margin-left: -10px;
}
.fpart p{
  color: var(--white);
  margin-top: 30px;
}
.col-3, .col-2 {
  padding: 10px;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-2 {
  flex: 0 0 16.6667%;
  width: 16.6667%;
}
.flogo img {
  width: 50%;
  height: auto;
  width: 176px;
  height: 51px;
  margin-left: -20px;
}
.para{
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  /* text-align: justify; */
  color: var(--smallpara);
}
footer h3 {
  margin-bottom: 20px;
  color: var(--secondary);
  font-weight: 700;
 }
.phonnumber_foot h3 {
  /* margin-bottom: 20px; */
  color: var(--secondary);
  font-weight: 700;
  margin-top: 20px;
}
.address,  p {
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
  /* margin-top: -50px; */
}
.address,  h3 {
  margin-top: -50px;
}
.phonnumber_foot  p {
  /* margin-bottom: 20px; */
  color: var(--white);
  font-weight: 700;
}
footer ul {
  list-style-type: none;
  padding: 0;
}
footer li {
  margin-bottom: 10px;
  color: var(--white);
  cursor: pointer;
}
footer li :hover{
  color: var(--secondary);
}
footer a {
  text-decoration: none;
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--white);
  padding-top: 10px;
  margin-top: 50px;
}
footer .social  {
  margin: 0 10px;
  margin-left: 900px;
  justify-content: space-between;
}
.footer-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.opening-hours{
  margin-top: -80px;
}






