/********** Template CSS **********/
:root {
    --primary: #28cdd1;
    --secondary: #ff8c5d;
    --light: #EEF9FF;
    --dark: #091E3E;
}



h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.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;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #8febed;
    transform: skew(40deg);
}
.logo{
    width: 200px;
}
.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(9, 30, 62, .85);*/
    background: rgb(9 25 49 / 75%);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}
@media (max-width: 700px) {
 .section-title   h5{
    font-size: 1.01em;
}

}
.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}
.team-item h4{
    font-size: 1.2rem;
}

.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-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: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}
/*=======About
=========================================*/
.border-radius-20{
    border-radius:20px;
}
.about-image-text{
    position: absolute;
    content: "";
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    /*height: inherit;*/
    border-radius: 20px;
}
.about-image-text .about-icon-box-icon{ 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink:  0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*========================================*/
.specialities_area {
 background: rgb(247 249 253 / 70%);
 position: relative;
}
.specialities_area:before {
     position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
  background-image: url(../img/spec-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
    z-index: -1;
    opacity: 0.25;
}

.specialities_area .dept_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .specialities_area .dept_thumb img {
    max-width: 100%;
  }
}
.li-before li{
    position: relative;
    padding-left: 25px;
    text-align: left;
    list-style: none;
    padding-bottom: 10px;
}
.li-before li:before{
    position: absolute ;
    content: "\F270";
    left: 0;
    font-family: bootstrap-icons !important ;
    color: var(--secondary);

}
.specialities_tab-ul{
    gap: 20px;
}
@media (max-width: 767px) {
.specialities_tab-ul{
    gap: 0px;
}

}
.specialities_area .specialities_tab .nav li {
  /*-webkit-box-flex: 14.4%;
  -ms-flex: 14.4% 0 0px;
  flex: 14.4% 0 0;*/
  /*margin-bottom: 30px;*/
}


.specialities_area .specialities_tab .nav li button {
  background: #fff;
  margin-bottom: 30px;
  border: 1px solid #fddacc;
  padding: 0;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .specialities_area .specialities_tab .nav li button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
}


.specialities_area .specialities_tab .nav li button  img {
      margin-bottom: 15px;
    width: 55px;

}

@media (max-width: 767px) {
 
.specialities_area .specialities_tab .nav li button  img {
    margin-bottom: 5px;
    width: 35px;
  }
}
.specialities_area .specialities_tab .nav li button   h4 {
  font-size: 20px;
  font-weight: 500;
  color: #296ea4;
  margin-bottom: 0;
}

@media (max-width: 767px) { 
.specialities_area .specialities_tab .nav li button  h4 {
    margin-bottom: 0;
    font-size: 18px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .specialities_area .specialities_tab .nav li button  h4 {
    font-size: 18px;
  }
}

.specialities_area .specialities_tab .nav button.active {
  background-image: -moz-linear-gradient(42deg, #00d0d4  0%, #ff8c5d 100%);
  background-image: -webkit-linear-gradient(42deg, #00d0d4  0%, #ff8c5d 100%);
  background-image: -ms-linear-gradient(42deg, #00d0d4  0%, #ff8c5d 100%);
  color: #fff;
}

.specialities_area .specialities_tab .nav button.active img {
     filter: brightness(0) invert(1);
}

.specialities_area .specialities_tab .nav button.active h4 {
  color: #fff;
}

.specialities_area .specialities_tab .nav  li:last-child {
  margin-right: 0;
}

.cs_spinner_img {
    animation: spinAnimaiton 6s linear infinite;
}
 .cs_cta_shape {
    right: 2%;
    top: 1%;
}

.position-absolute {
    position: absolute !important;
}
@keyframes spinAnimaiton {
    0% {
        transform: rotateX(-20deg) rotateY(0deg)
    }

    75% {
        transform: rotateX(-20deg) rotateY(1turn)
    }

    to {
        transform: rotateX(-20deg) rotateY(1turn)
    }
}
/*=========================*/
.why-item{
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        background: #fff;
        border-radius: 20px;
}
.why-item:before {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}
.why-item:hover:before{
    opacity: 1;
}
.why-item-inner{

        overflow: hidden;
}
.why-icon{
        width: 70px;
    height: 70px;
    position: relative;
    border-radius: 50%;
    border: 2px solid #f3d8cc;
    padding: 10px;
    margin-bottom: 20px;
}
.why-count{
   color: #fff;
    /* -webkit-text-stroke: 1px var(--primary); */
    font-size: 2.1rem;
    font-weight: 900;
    position: absolute;
    right: -24px;
    top: -28px;
    background: #fde3cb;
    border-radius: 50%;
    padding: 16px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.form-input{
    background: transparent;
    border-radius: 20px;
    border: 1px solid #FFFFFF;
    color: #fff;
}
.form-input::placeholder{
    color: #FFFFFF;
}
.form-input::selection {
    color: #FFFFFF;
}
@media (max-width: 700px) {
 
.why-item-inner h4{
    width: 80%;
}
}
/*===================================*/
.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}
/*==================================================*/
.sticky-left{
    position: sticky;
    top:7rem;
}
@media (max-width: 767px) { 
.sticky-left{
    position: relative;
    top:unset;
}
}
.specialities-box:before{
    position: absolute;
    content: "";
    width: 100px;
    height: 5px;
    bottom: 0px;
    left: 50px;
    background: var(--secondary);
}
.specialities-count{
    color: #fff;
    /* -webkit-text-stroke: 1px var(--primary); */
    font-size: 2.1rem;
    font-weight: 900;
    position: absolute;
    right: -24px;
    top: -28px;
    background: #fde3cb;
    border-radius: 50%;
    padding: 16px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.spel-why li{
    position: relative;
    padding-left: 40px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.spel-why li img{
    position: absolute;
    content: "";
    left: 0;
    width: 25px;
}

.why-accordion .accordion-item {
    background-color: #fff;
    border: 1px solid #c3c3c3 !important;
}