/* =============================
   Default Theme
   -----------------------------
   fonts : Cormorant Garamond & Poppins
   -----------------------------
   Colors :
      White Smoke        #f4f4f4
      Black              #000
      White              #fff
      Navy Blue          #1b1b4b   
      Vintage Coral      #de7f67
      
================================ */


/* =============================
            HTML, Body
   ============================= */
html,
body {
    height: 100%;


}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
}

section {
    overflow: hidden;
}



/* =============================
            Preloader      
================================ */
#preloader {
    background: #000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;

}

#status {
    background-image: url("../img/preloader/preloder.gif");
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
}

/* =============================
            Home
   ============================= */
#home {

    height: 100%;
    background: none;
}


#home{
     background: url("../img/home/banner.webp") no-repeat;
    background-size: cover;
    position: relative;
        background-color: #fff;
 
    background-repeat: no-repeat;
    -webkit-background-size:cover;
   
   
    background-position: center;
 
}

#home-content {
    width: 100%;
    height: 100%;
    display: table;
    margin-left: 100px;

}

#home-content-inner {
    display: table-cell;
    vertical-align: middle;
}

#home-heading h1 {
    padding-left: 50px;
    color: #1b1b4b;
    font-size: 60px;
    font-weight: 500;
    
    margin: 0;
    display: inline-block;
    margin-top: -100px;

}

#home-heading h1 {
    padding-left: 50px;
    color: #1b1b4b;
    font-size: 60px;
    font-weight: 500;
    
    margin: 0;
    display: inline-block;

}
#home-btn{
    padding-left: 50px;
}
#home-btn span {
    font-size: 16px;
}



#home-text p {
    color: #1b1b4b;
    padding-left: 50px;
    font-size: 18px;
    font-weight: 200;
    margin: 8px 0 30px 0;


}

/* =============================
          Buttons
   ============================= */
.btn-general {
       display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #de7f67;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 26px;
    font-size: 14px;

  
   
    transition: 0.3s ease;
}



.btn-home {

    color: #fff;
    border: 1px solid #de7f67;
     background: #de7f67;

}

.btn-home:hover,
.btn-home:focus {
    color: #fff;
    background: #1b1b4b;
    border: 1px solid #1b1b4b;


}
.btn-about {

    color: #fff;
    border: 1px solid #de7f67;
     background: #de7f67;

}

.btn-about:hover,
.btn-about:focus {
    color: #fff;
    background: #1b1b4b;
    border: 1px solid #1b1b4b;


}



/* =============================
          Arrow Down
   ============================= */
#arrow-down {
    position: absolute;
    left: 50%;
    bottom: 20px;
     color: #fff;
    font-size: 32px;
    width: 32px;
    height: 32px;
    text-align: center;
    margin-left: -16px;
    z-index: 1;
}

#arrow-down:hover,
#arrow-down:focus {
    color: #272B33;
}


/* back to top button */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    color: #fff;
   border-radius: 4px;
    background-color:#de7f67 ;
    transition: all 400ms linear;
    display: none;


}
.btn-back-to-top:hover,
.btn-back-to-top:focus{
    background-color:#fff ;
    color: #000;
    font-size: 24px;

}

/* =============================
         Content boxes
   ============================= */
.content-box-lg {
    padding: 100px 0;

}

.content-box-md {
    padding: 80px 0;
}
.content-box-sm{
    padding: 60px 20px;

}
.content-box-xs{
    padding: 40px 20px;

}

/* =============================
        Feature Card
   ============================= */
#features {
background-color: #f8e9e3;
}
.feature-card {
    max-width: 1100px;
    margin: 40px auto;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background: #de7f67;
}

.icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #444;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-card {
        flex-wrap: wrap;
        gap: 25px;
    }

    .feature-item {
        flex: 0 0 45%;
    }

    .feature-item::after {
        display: none;
    }
}


/* =============================
         About
   ============================= */

#about {
    padding-top: 100px;
    background-color: #fff;
    background: url("../img/about/about-bg.webp");
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
   
    background-position: center;
   
   
    min-width: 100%;
    min-height: 100%;
    padding-bottom: 0;

}

#about-left {}



#about-left h1 {
    color: #1b1b4b;
    font-size: 60px;

   margin-top: -10px;
 


}


#about-left p {
    color: #1b1b4b;
    font-size: 17px;
    font-weight: 200;
    margin: 8px 0 30px 0;
}

/* =========================================
                About 01
============================================ */

/*==========================
        ABOUT BANNER
===========================*/

.about-banner{

    position:relative;

    width:100%;
    height:420px;

    background-image:url("../img/about/about-banner.webp");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    overflow:hidden;
}

/* Overlay */

.about-banner::before{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(20,24,66,.72) 0%,
        rgba(20,24,66,.45) 35%,
        rgba(20,24,66,.10) 100%
    );
}

/* Content */

.banner-content{

    position:relative;
    z-index:2;

    max-width:1200px;
    height:100%;

    margin:auto;

    display:flex;
    align-items:center;

    padding:0 70px;
}

.banner-content h1{

    color:#fff;

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

    animation:fadeUp .8s ease;
}



/* about-01 */
.about-1-heading h1 {
    color: #1b1b4b;
    font-size: 60px;
}
#about-1-left p:first-child {
    margin-top: 30px;
}



#about-1-right img {
    margin: 0 auto;
}

/* About 02*/

#about-2 {
    background-image:url("../img/about/flower-bg.webp");
    background-color: #fff;
}

.about-item {
    background-color: #fff;
    padding: 50px 30px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.about-item i {
    font-size: 42px;
    margin: 0;
}

.about-item h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1b1b4b;
}

.about-item hr {
    width: 55px;
    height: 3px;
    background-color: #de7f67;
    margin: 0 auto;
    border: none;
}

.about-item p {
    margin-top: 17px;
}
.about-item span {
     font-size: 20px;
     font-weight: 700;
     color:#de7f67 ;
     padding-right:15px;
}


/* Hover state */

.about-item:hover {
    background-color: #de7f67;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
    color: #fff;
}

.about-item:hover hr {
    background-color: #fff;
}

.about-item:hover i {
    transform: translateY(-20px);
}
.about-item:hover span {
    color: #fff;
}


/* Smooth transition */

.about-item,
.about-item i,
.about-item hr {
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.about-item h3,
.about-item p {
   -webkit-transition: all 400ms linear;
    transition: all 400ms linear;  
}
/* about-03 */
.about-3-heading h1 {
    color: #1b1b4b;
    font-size: 60px;
}
.about-3-heading h2 {
    color: #1b1b4b;
    font-size: 40px;
    font-weight: 200;
}
.about-3-heading  hr {
    width: 55px;
    height: 3px;
    margin: 0;
    background-color: #de7f67;
   
    border: none;
}
.item i{
    font-size: 20px;
    color:#de7f67 ;
    padding-right: 15px;
}

.about-3-right {
    margin-top: 10px;
}

#about-3-left img {
    margin: 0 auto;
}

/* =========================================
            Patient Navigation
============================================ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



#patient-navigation{
   
    margin:auto;
    padding:40px 40px 80px;
}
#patient-navigation .content-box-sm {
    padding-bottom: 10px;
}

/* Heading */

.heading-wrapper{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.heading-wrapper h2 {
    color: #1b1b4b;
    font-size: 55px;
    margin-top: -50px;

}


/* Cards */

.cards-wrapper{
    display:flex;
    justify-content:center;
    gap:13px;
    flex-wrap:wrap;
}

.service-card{
    width:210px;
    height:250px;
    background:#fff;
    border:1.5px solid #de7f67;
    border-radius:28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    background:#f8e9e3 ;
}

.service-card img{
    width:100px;
    height:100px;
    object-fit:contain;
    margin-bottom:28px;
}

.service-card h3{
    color:#de7f67;
    font-size:20px;
    font-weight:400;
    line-height:1.15;
    letter-spacing:0.5px;
}

/* Responsive */

@media(max-width:1200px){

    .heading-wrapper{
        justify-content:center;
    }

    .heading-wrapper h2{
        font-size:60px;
    }
}

@media(max-width:768px){

    .heading-wrapper h2{
        font-size:42px;
    }

    .service-card{
        width:100%;
        max-width:320px;
    }
}



/* =============================
        Services
   ============================= */
#services {
   
    background-color: ;
   /* background: url("../img/services/serices-bg.png");
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
   
    background-position: center;
   
   
    min-width: 100%;
    min-height: 100%;
    padding-bottom: 0;*/
   
  
   
}
#services-heading h1 {
    color: #1b1b4b;
    font-size: 60px;

   margin-top: -20px;
}
 
.services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
}

.service-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
    transition: transform .4s ease;
}

/* Dark Overlay */

.service-item .overlay{
     background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: .6;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;

}

.service-item .content {
    
    position: absolute;
    bottom: 25px;
    left: 50px;
    right: 20px;
    z-index: 2;
    color: #fff;
}

.service-item h3{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.service-item a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: .9;
}

.service-item:hover img{
    transform: scale(1.2);
}

.service-item:hover .overlay{
    
}
/* Tablet */
@media(max-width:991px){
    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .services-grid{
        grid-template-columns: 1fr;
    }

    .service-card{
        min-height: 280px;
    }

    .services-section h2{
        font-size: 30px;
    }
}






#services-01{
    background-color: #000;
}

#services-right img{
    margin: 0 auto;
}


#services-left hr {
    background-color: #fff;
    width: 280px;
    height: 3px;
    display: inline-block;
   
    margin: 0 auto;
    border: none;
    
   
    position: absolute;

}

#services-left h1 {
    color: #fff;
    font-size: 55px;
    text-transform: uppercase;
    margin: 0 5px 0 0;
}


#services-left h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 100;
    padding: 0;
    margin: 20px 5px 20px 0;
    text-transform: uppercase;
    line-height: 0;

}

#services-left p {
    color: #fff;
    font-size: 17px;
    font-weight: 100;
    margin: 20px 0 30px 0;
}
#services-left h5 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin: 30px 5px 0 0;
}

/* Services-02 */
#services-02{
    background-color: #F4F4F4;
    padding-bottom: 60px;
}
.tab-bg {
    background-color: #fff;
    padding: 80px 30px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}


.tab-bg h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.tab-bg hr {
    width: 100px;
    height: 3px;
    background-color: #064E9D;
    margin: 0 auto;
    border: none;
}

.tab-bg p {
    margin-top: 20px;
}
.tab-bg:hover {
    background-color: #064E9D;
}

.tab-bg:hover h3,
.tab-bg:hover p {
    color: #fff;
}

.tab-bg:hover hr {
    background-color: #fff;
    width: 300px;
}


/* Process */

#process{
    background-color: #C6C7C9;
     background: url("../img/services/process.png");
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
   
    background-position: center;
   
   
}
#process hr {
    background-color: #000;
    width:  400px;
    height: 3px;
    display: inline-block;
    
    position: relative;
    margin: 0 auto;
    border: none;
    top: -10px;
    
    
}

#process h2 {
    color: #000;
    font-size: 45px;

    text-transform: uppercase;
    margin: 0 0 0 5px;


}

.p-item {
    background: #fff;
    margin: 20px;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.p-item h4 {
    line-height: 40px;
    margin: 0;
}

.p-item>p {
    line-height: 24px;
    margin: 10px 0 0 0 ;
    font-weight: 300;
}
/* =========================================
                Services Page 
============================================ */
/*==========================
        ABOUT BANNER
===========================*/

.services-banner{

    position:relative;

    width:100%;
    height:420px;

    background-image:url("../img/services/services-banner.webp");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    overflow:hidden;
}

/* Overlay */

.services-banner::before{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(20,24,66,.72) 0%,
        rgba(20,24,66,.45) 35%,
        rgba(20,24,66,.10) 100%
    );
}

/* Content */

.banner-content{

    position:relative;
    z-index:2;

    max-width:1200px;
    height:100%;

    margin:auto;

    display:flex;
    align-items:center;

    padding:0 70px;
}

.banner-content h1{

    color:#fff;

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

    animation:fadeUp .8s ease;
}



/* fertility */
.service-heading h1 {
    color: #1b1b4b;
    font-size: 60px;
}
.service-heading{
    display:flex;
    align-items:center;   /* Aligns line and text on the same center line */
    gap:20px;
}

.service-heading h2{
    margin:0;
    font-size:72px;
    line-height:1.1;
}

.service-heading .line{
    width:4px;
    height:65px;
    background:#de7f67;
    flex-shrink:0;
}

.service-heading.reverse{
    justify-content:flex-end;
}

 .service-heading.reverse .line{
    order:2;      /* Move line after heading */
}

.service-heading.reverse h2{
    order:1;
}



#fertility-left {
    margin-top: 30px;
}


#fertility-right img {
   margin-top: -50px; 
}
/* why ivf */
#why-ivf .content-box-sm {
    padding-top: 0;
}
.ivf-heading h3 {
    color: #1b1b4b;
    font-size: 35px;

}
#ivf img {
    margin: 40px 0;
}

.ivf-item {
    margin: 35px 0;
}

.ivf-item .icon {
    font-size: 42px;
    margin: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ivf-item:hover .icon {
   
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}

.ivf-item h4 {
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #1b1b4b;
}

.ivf-item p {
    line-height: normal;
    font-size: 17px;
}

/* IVF PROCESS */
#ivf-process .content-box-sm {
    padding-top: 0;
}
#ivf-process{
 
   
    background-position: center;
    width:100%;
    padding:40px 6%;
    text-align:center;
}

#ivf-process-heading h3{

    font-size:35px;
    color:#1b1b4b;
    margin-bottom:70px;
   
}

.ivf-timeline{

    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:4px;
    flex-wrap:wrap;
    background-image:url("../img/services/ivf-icon/icons_sprm-bg.svg");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    
}

.step{

    width:150px;
    position:relative;
    transition:.2s;
}

.circle{

    width:90px;
    height:90px;
    margin:auto;

    border:3px solid #de7f67;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:white;

    transition:.5s;
    position:relative;
    overflow:hidden;
}

.circle::before{

    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:#de7f67;
    border-radius:50%;
    transform:scale(0);
    transition:.5s;
    z-index:0;
}

.circle img{

    font-size:30px;
    padding: 20px;
    color:#EA866A;
    position:relative;
    z-index:2;
    transition:.5s;
}

.step h3{

    margin-top:28px;
    font-size:20px;
    color:#de7f67;
    line-height:1.35;
    font-weight:700;
    transition:.4s;
}

/* Floating animation */

.circle{

    animation:float 3s ease-in-out infinite;
}

@keyframes float{

    0%,100%{

        transform:translateY(0px);
    }

    50%{

        transform:translateY(-10px);
    }
}

/* Hover */

.step:hover{

    transform:translateY(-15px);
}

.step:hover .circle{

    
    border-color:#1b1b4b;
}



.step:hover h3{

    color:#1b1b4b;
}

/* Responsive */

@media(max-width:991px){

.timeline{

flex-direction:column;
align-items:center;
}

}
/* Family Balancing */

#family-right h6{
    font-size: 24px;
    color: #1b1b4b;
}
#family-right p {
font-size: 17px;
}
/* Family Benefits */
.benefits-heading h3{

    font-size:35px;
    color:#1b1b4b;
    padding-bottom: 70px;
       
}
.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.benefit-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    position:relative;
    transition:.35s ease;
    border:1px solid #dbdbdb;
    overflow:hidden;
}

.benefit-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#1b1b4b);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.benefit-card:hover::before{
    transform:scaleX(1);
}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(140,82,255,.18);
}

.icon{
  
    margin:0 auto 25px;
    border-radius:50%;
 
    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;
}

.benefit-card:hover .icon{
 
    
    transform:rotate(10deg) scale(1.08);
}

.benefit-card h3{
    font-size:24px;
    color:#1b1b4b;
    margin-bottom:15px;
    transition:.3s;
}

.benefit-card p{
  
    line-height:1.7;
    font-size: 17px;
}

.benefit-card:hover h3{
    color:#de7f67;
}

@media(max-width:768px){

.section-title h2{
    font-size:32px;
}

.benefits-grid{
    grid-template-columns:1fr;
}

}
/* Women Wellness */
#women-support h3{
    font-size:35px;
    color:#1b1b4b;
    padding-bottom: 70px;
}

/* Child Support */
#child .service-heading .line{
    width:4px;
    height:100px;
    background:#de7f67;
    flex-shrink:0;
}


#child-right h6{
    font-size: 24px;
    color: #1b1b4b;
}
#child-right p {
font-size: 17px;
}

/* child-neuro */
#child-health {
    padding-top: 0;
}

.childn-heading  h3 {
    color: #1b1b4b;
    font-size: 35px;
   
}

.item i{
    font-size: 20px;
    color:#de7f67 ;
    padding-right: 15px;
}

.cn-right {
    margin-top: 10px;
}

#cn-left img {
    margin: 0 auto;
}

/* Holistic Wellness */

#holistic-left {
    padding-top: 50px;
}

/* International Patients */
#patient-right{
    padding-top: 50px;
}

/* =============================
             Work Flow
    ============================ */


#workflow{
 
   
    background-position: center;
    width:100%;
    padding:70px 6%;
    text-align:center;
}

#workflow h1{

    font-size:60px;
    color:#1b1b4b;
    margin-bottom:70px;
   
}

.timeline{

    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:4px;
    flex-wrap:wrap;
}

.step{

    width:150px;
    position:relative;
    transition:.2s;
}

.circle{

    width:90px;
    height:90px;
    margin:auto;

    border:3px solid #de7f67;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:white;

    transition:.5s;
    position:relative;
    overflow:hidden;
}

.circle::before{

    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:#de7f67;
    border-radius:50%;
    transform:scale(0);
    transition:.5s;
    z-index:0;
}

.circle img{

    font-size:30px;
    padding: 20px;
    color:#EA866A;
    position:relative;
    z-index:2;
    transition:.5s;
}

.step h3{

    margin-top:28px;
    font-size:20px;
    color:#de7f67;
    line-height:1.35;
    font-weight:700;
    transition:.4s;
}

.connector{

    width:80px;
    height:2px;
    border-top:3px dotted #de7f67;
    margin-top:40px;
    position:relative;
}

.connector::after{

    content:"";
    width:12px;
    height:12px;
    background:#de7f67;
    border-radius:50%;
    position:absolute;
    right:-2px;
    top:-7px;

}



/* Floating animation */

.circle{

    animation:float 3s ease-in-out infinite;
}

@keyframes float{

    0%,100%{

        transform:translateY(0px);
    }

    50%{

        transform:translateY(-10px);
    }
}

/* Hover */

.step:hover{

    transform:translateY(-15px);
}

.step:hover .circle{

    
    border-color:#1b1b4b;
}



.step:hover h3{

    color:#1b1b4b;
}

/* Responsive */

@media(max-width:991px){

.timeline{

flex-direction:column;
align-items:center;
}

.connector{

width:2px;
height:70px;
border-top:none;
border-left:3px dotted #EA866A;
margin:15px 0;
}

.connector::after{

top:auto;
bottom:-5px;
left:-7px;
right:auto;

animation:moveDown 2s linear infinite;
}

@keyframes moveDown{

from{

bottom:100%;
}

to{

bottom:-5px;
}

}

}

/* =========================================
                Why Choose US
============================================ */

#choose-us {
    background: url("../img/wcu/bg.webp") no-repeat fixed center;
    background-size: cover;
}

#choose-us .content-box-md {
    background: rgba(174, 94, 73, 0.80);
   
}

#choose-us .why-heading {
    margin-bottom: 50px;
}

#choose-us .why-heading h1 {
    color: #fff;
    font-size: 60px;
}
#choose-us .why-heading p {
    color: #fff;
    font-size: 17px;
}


.choose-item {
    background: rgba(222, 127, 103, 0.85);
    border-radius: 8px;
    margin: 5px 0;
    min-height: 80px;
    padding: 3px 50px;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.choose-item i {
    font-size: 40px;
    color: #fff;
    margin: 0 0 6px 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.choose-item h4 {
    font-size: 26px;
    color: #fff;
    margin: 5px 0 5px 0;
}

.choose-item p {
    color: #fff;
    margin: 0;
}

.choose-item:hover {
    background: #1b1b4b;
}

.choose-item:hover i {
    color: #fff;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}


/* =============================
       Contact
   ============================= */
/*#contact {
    padding-top: 100px;
    background-color: #000;
    background: url("../img/contact/contact-bg.jpg");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 100%;
    min-height: 100%;
}
/* =========================================
                Contact
============================================ */


/* Contact Left */
.contact-heading h1 {
    color: #1b1b4b;
    font-size: 60px;
}
.contact-heading p {
    margin: 10px 0 20px 0;
    font-size: 17px;
}


.office p{
   color: 1b1b4b;
   font-size: 20px;
}
.item img{
    width: 45px;
    height: 45px;
    
    padding-right: 15px;
}



/* Contact Right */



#contact-right {
padding-top: 0;
}

/* =============================
          Footer
   ============================= */

   footer{
    background-color: #1b1b4b;
    padding: 20px;
    }
    .social-list{

    margin-top:35px;
    display:flex;
    gap:18px;
}
    .social-list a{

    width:32px;
    height:32px;

    
    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    text-decoration:none;

    transition:.35s;
}
.social-list a:hover{

    
    transform:translateY(-5px);
}


footer h4 {
    color: #de7f67;
    font-size: 20px;
}
.links ul{

    list-style:none;
}

.links ul li{

    margin-bottom:15px;
    color:#fff;
    font-size:15px;
    line-height:1.5;
}

.links ul li a{

    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.links ul li a:hover{

    color:#de7f67;
    padding-left:8px;
}

.links ul li:hover{

    color:#de7f67;
}

.contact-info p{
    font-size: 17px;
    color: #fff;

}
    footer p{
        
    color: #fff;
    font-size: 17px;
    line-height: 20px;
   
    }
    footer p span{
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
        color: #de7f67;
    }
    footer p span:hover,
    footer p span:focus{
        font-size: 20px;
        color: #fff;
    }
    .footlink a {
         font-family: "Cormorant Garamond", sans-serif;
         color: #fff;
         font-size: 13px;
         font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
}
    
    .footlink a:hover,
    .footlink a:focus {

            color: #de7f67;
            background: none;

    }



/* Footer */





/* =========================================
                Navigation
============================================ */

.navbar {
    padding: 25px 100px 10px 100px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    background-color: #fff;
}



ul.navbar-nav>li>a {
    font-family: "Cormorant Garamond", sans-serif;
    color: #1b1b4b;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul.navbar-nav>li>a:hover,
ul.navbar-nav>li>a:focus {
    background: none;
    color: #de7f67;
}


/* White Navigation */

.white-nav-top {
    background: #fff;
    padding: 15px 100px;
    -webkit-box-shadow: 0 8px 6px -9px #999;
    box-shadow: 0 8px 6px -9px #999;
    z-index: 2;
}

.white-nav-top ul.navbar-nav>li>a {
    color: #1b1b4b;
}

.white-nav-top ul.navbar-nav>li>a:hover,
.white-nav-top ul.navbar-nav>li>a:focus {
    color: #de7f67;
}


/* Scroll spy active state */

.white-nav-top ul.navbar-nav>li>a.active {
    color: #de7f67;
    font-weight: 500;
}


/* =============================
         Animation
   ============================= */
   #home-heading-1,
   #home-heading-2,
   #home-text,
   #home-btn,
   #arrow-down i {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
   }

   #home-heading-1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
   }
   #home-heading-2 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
   }
   #home-text {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
   }
   #home-btn {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
   }
   #arrow-down i {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
   }

   /* =========================================
                Testimonials
============================================ */

#testimonials {
    background: #f4f4f4;
    padding-bottom: 45px;
    overflow: visible;
}
#testimonials hr {
    background-color: #000;
    width:  400px;
    height: 3px;
    display: inline-block;
    
    position: relative;
    margin: 0 auto;
    border: none;
    top: -10px;
    
    
}

#testimonials h2 {
    color: #000;
    font-size: 45px;

    text-transform: uppercase;
    margin: 0 0 0 5px;


}




#testimonial-slider {
    background: #F39220;
    top: 50px;
    border-radius: 8px;
}
#testimonial-slider-2 {
    background: #F39220;
    top: 50px;
    border-radius: 8px;
}


.testimonial .row {
    margin-bottom: 25px;
}

.testimonial {
    padding: 20px 45px 0 45px;
    color: #fff;
}

.testimonial h3 {
    font-size: 32px;
    line-height: 35px;
}



.testimonial p {
    line-height: normal;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 20px;
}

.author .author-name-des {
    width: 106px;
    margin-top: 25px;
    text-align: left;
}

.author .author-name-des p {
    margin: 0;
}




   /* =========================================
                Privacy
============================================ */
#privacy{
    background-color: #fff;
     
   
}
#privacy-heading hr {
    background-color: #000;
    width:  400px;
    height: 3px;
    display: inline-block;
    
    position: relative;
    margin: 0 auto;
    border: none;
    top: -10px;
    
    
}

#privacy-heading h2 {
    color: #000;
    font-size: 45px;

    text-transform: uppercase;
    margin: 0 0 0 5px;


}
.sub-head{
    padding-top: 50px;
}


.p-item {
    background: #fff;
    margin: 20px;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.p-item h4 {
    line-height: 50px;
    margin: 0;
    color: #064E9D;
}

.p-item>p {
    line-height: 24px;
    margin: 10px 0 0 0 ;
    font-weight: 300;
}

