/********** Template CSS **********/



.fraunces{
    font-family : "Fraunces", serif ;
    font-size: 67px;
    font-weight: 600;
}
.fraunces40{
    font-family : "Fraunces", serif ;
    font-size: 40px;
    font-weight: 600;
}
.fraunces32{
    font-family : "Fraunces", serif ;
    font-size: 32px;
    font-weight: 600;
}

:root {
    --primary: #34A1DC;
    --secondary: #f5578b;
    --light: #EFF5F9;
    --dark: #1D2A4D;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.bg-blue{
    background: var(--primary);
    color: #FFF;
}

.dropOpen{
 
        -webkit-animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
                animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}


 @-webkit-keyframes scale-up-ver-top {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
      -webkit-transform-origin: 100% 0%;
              transform-origin: 100% 0%;
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
      -webkit-transform-origin: 100% 0%;
              transform-origin: 100% 0%;
    }
  }
  @keyframes scale-up-ver-top {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
      -webkit-transform-origin: 100% 0%;
              transform-origin: 100% 0%;
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
      -webkit-transform-origin: 100% 0%;
              transform-origin: 100% 0%;
    }
  }
  

.btn-blue {
    background-color:  #34A1DC;
    color: #FFF;
    border: 1px solid #34A1DC;
    font-weight: 700;
    transition: .5s;
}


.btnSide:hover{
    border-radius: 15px;
    -webkit-animation: shadow-drop-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: shadow-drop-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.btnTouch:hover{
    -webkit-animation: shadow-drop-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: shadow-drop-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes shadow-drop-center {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
              box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
  }
  @keyframes shadow-drop-center {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
              box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
  }
  

.btn-blue:hover {
    background-color:  #34A1DC;
    color: #FFF;
    border: 1px solid #34A1DC;
    font-weight: 700;

    -webkit-animation: shadow-inset-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: shadow-inset-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


.btn-white {
    background-color:  #FFF;
    color: #34A1DC;
    border: 1px solid #FFF;
    font-weight: 700;
    transition: .5s;
}

.btn-white:hover {
    background-color:  #34A1DC;
    color: #FFF;
    border: 1px solid #34A1DC;
    font-weight: 700;
    -webkit-animation: shadow-inset-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: shadow-inset-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


 /* ----------------------------------------------
 * Generated by Animista on 2024-5-21 15:53:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation shadow-inset-center
 * ----------------------------------------
 */
@-webkit-keyframes shadow-inset-center {
    0% {
      -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
              box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
    }
  }
  @keyframes shadow-inset-center {
    0% {
      -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
              box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
    }
  }
  

/*
.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}*/

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: "Poppins",sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav  .router-link-active.nav-link {
    color: #f5578b;
}
.link_service{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; 
    text-overflow: ellipsis;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
}
.links{
    height: 68px;
}
.link_service:hover{
    color: #f5578b;
}
/* Logo Mon code Css */
.logo{ 
    width: 350px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img.normal{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.logo img.mobile{
    display: none;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.search{
    cursor: pointer;
}
.search .input_search{
    position: absolute;
    top: 87px;
    left: 50px;
    width: 100%;
    height: 0;
    min-height: 0;
    background: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all .4s ease;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
.search:hover .input_search{
    padding: 20px 60px;
    height: 400px;
    min-height: 400px;
}
.input_search .inputs{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20%;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
}
.input_search .inputs input{
    width: 95%;
    height: 100%;
    border: none;
    padding: 10px;
    outline: none;
    border-bottom: 3px solid #f5578b;
    background: transparent;
}
.input_search .inputs i{
    width: 5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.input_search .search{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    overflow-y: scroll;
}
.input_search .search .info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 10px;
}
.input_search .search .info span{
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; 
    text-overflow: ellipsis;
}
.input_search .search .info:hover{
    background: #f1f1f1;
}
.dropdown:hover>.dropdown-menu {
  display: block;
  width: 450px;
  border-radius: 0;
  padding: 20px;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}
.career{
    background: linear-gradient(to right , rgba(0, 0, 0, .9 ) 20%, rgba(0, 0, 0, .7) 40%, rgba(0, 0, 0, .4 ) 70%, rgba(0, 0, 0, 0 ) 100%), url('../images/careers.jpg') no-repeat ;
    background-size: cover;
    background-position: top center;
    border-bottom: 5px solid #f5578b;
}
.assess{
    background: linear-gradient(to right , rgba(0, 0, 0, .9 ) 20%, rgba(0, 0, 0, .7) 40%, rgba(0, 0, 0, .4 ) 70%, rgba(0, 0, 0, 0 ) 100%), url('../images/image-noir2.jpg') no-repeat ;
    background-size: cover;
    background-position: top -150px center;
    border-bottom: 5px solid #f5578b;
    height: 300px;
}
.jobx{
    background: linear-gradient(to right , rgba(0, 0, 0, .9 ) 20%, rgba(0, 0, 0, .7) 40%, rgba(0, 0, 0, .4 ) 70%, rgba(0, 0, 0, 0 ) 100%), url('../images/image-noir4-.jpg') no-repeat ;
    background-size: cover;
    background-position: top -200px center;
    border-bottom: 5px solid #f5578b;
    height: 300px;
}
.jobs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
  }
  .jobs .job{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ededed;
    border-radius: 10px;
  }
  .job .cat_city{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .job .cat_city .cat{
    font-size: 20px;
    font-weight: 600;
    transition: all .5s ease;
  }
  .job .cat_city .cat:hover{
    border-bottom: 2px solid #f5578b;
  }
  .job .cat_city .city{
    font-size: 18px;
    font-weight: bold;
  }
  .job .type_btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .job .type_btn .type{
    font-size: 18px;
  }
.imageP{
    max-height: 267px; 
    object-fit: cover; 
    min-height: 267px; 
    object-position: top;
}
.tilteP{
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; 
    text-overflow: ellipsis;
    max-height: 68px;
}
.tilteS{
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; 
    text-overflow: ellipsis;
    max-height: 68px;
}
.BDesP{
    height: 120px;
}
.page-link{
    cursor: pointer;
}
.book{
    padding: 20px;
}
.contact{
    padding: 20px;
}
.carree_title{
    text-align: justify center;
}
.carree_text{
    text-align: justify center;
    font-size: 17px;
    width: 100%;
    height: 128px;
}
@media screen and (max-width: 768px){




    .logo{
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img.normal{
        display: none;
    }
    .logo img.mobile{
        display: block;
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        width: 100%;
      
    }
    .search .input_search{
        left: 0;
        width: 100%;
    }
    .search:hover .input_search{
        padding: 20px 20px;
    }
    .dropdown:hover>.dropdown-menu {
        width: 100%;
    }
    .career{
        background-position: top ;
    }
    .book{
        padding: 10px;
    }
    .contact{
        margin: 0 15px;
    }
    .carree_title{
        font-family: "Poppins",sans-serif;
        font-size: 18px;
    }
    .carree_text{
        font-size: 14px;
    }
    .assess{
        background-position: top center;
    }
    .jobx{
        background-position: top center;
    }
    .fraunces{
        font-family : "Fraunces", serif ;
        font-size: 37px;
        font-weight: 600;
    }
    .fraunces40{
        font-family : "Fraunces", serif ;
        font-size: 30px;
        font-weight: 600;
        text-align: center;
    }
    .fraunces32{
        font-family : "Fraunces", serif ;
        font-size: 28px;
        font-weight: 600;
        text-align: center;
    }
    
    
}
@media screen and (min-width: 769px) and (max-width: 1024px){
    .search .input_search{
        top: 97px;
        left: 0;
        width: 100%;
    }
    .search:hover .input_search{
        padding: 20px 20px;
    }
    .career{
        background-position: top ;
    }

   
}



@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: #f5578b;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .router-link-active.nav-link.active::before {
        width: 100%;
        left: 0;
    }

    
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.hero-header {
    background-image: linear-gradient(to right , rgba(0, 0, 0, 1 ) 20%, rgba(0, 0, 0, .7) 40%, rgba(0, 0, 0, .4 ) 70%, rgba(0, 0, 0, 0 ) 100%)
   /* transition: 5s;
    animation-name: animateHero;
    animation-direction: alternate-reverse;
    animation-play-state: running;
    animation-timing-function: ease-in-out;
    animation-duration: 30s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;*/
}

.bossHero{
    background-image: url(../images/careers.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 5s;
    animation-name: animateHero;
    animation-direction: alternate-reverse;
    animation-play-state: running;
    animation-timing-function: ease-in-out;
    animation-duration: 30s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

.appointmentHero{
    background-image: url(../images/image-noir5.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.appointmentBg{
    background-image: linear-gradient(to right , rgba(52, 161, 220, 1 ) 20%, rgba(52, 161, 220, .7) 60%, rgba(52, 161, 220, .4 ) 70%, rgba(52, 161, 220, 0 ) 100%)
}




@keyframes animateHero {
    0%,20%{
     
        background-image: url(../images/image-noir4.jpg) ;

    }
    
    40%,80%{
        background-image: url(../images/image-noir3.jpg) ;
        
    }
   
    100%{
        background-image: url(../images/careers.jpg) ;
    }
}

.service-item {
    position: relative;
    height: 350px;
    padding: 30px 30px;
    transition: .5s;
}

.service-item .service-icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.service-item .service-icon i {
    transform: rotate(15deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: #fff;
    border-radius: 8px 8px 50px 50px;
    z-index: -1;
}
@media screen and (max-width: 768px){
    .price-carousel::after {
        background: #fff;
    }
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.team-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}
