/********** Template CSS **********/
:root {
    --primary: #058789;
    --light: #F3F6F8;
    --dark: #0E2E50;
    --theme-sheet-width-xl: 1140px;
    --theme-sheet-width-lg: 940px;
    --theme-sheet-width-md: 720px;
    --theme-sheet-width-sm: 540px;
    --theme-sheet-width-xs: 340px;
}


/*** Spinner ***/
#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;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    width: 120px;
    object-fit: cover;
    transition: .5s;
    height: 80px;
}
.navbar .navbar-brand img.logo {
    display: none;
}

.navbar .navbar-brand img.dark-logo {
   display: block;
}

.sticky-top.navbar .navbar-brand img {
    width: 100px;
    height: 65px;
    object-fit: cover;
}

.sticky-top.navbar .navbar-brand img.logo {
    display: block;
}
.sticky-top.navbar .navbar-brand img.dark-logo {
    display: none;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #FFFFFF;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    /* margin-bottom: 6rem; */
    padding: 12rem 0 9rem 0;
    background: url(../img/shape-bottom.png) no-repeat;
    /* background: url(../img/shape-bottom.png) no-repeat; */
    background-size: cover;
}

.page-header {
    margin-bottom: 3rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
}

.team-item::before{
    height: 25%;
}

.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item p {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover p {
    color: #FFFFFF;
}

.team-item img {
    padding: 15px;
    border: 1px solid var(--primary);
}

.team-item .team-desc{
    display: none;
} 

.team-item:hover .team-desc{
    display: block;
} 



/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*Custom Styles */

@media (min-width: 1200px){
    h1, .h1 {
        font-size: 2.3rem;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .team-item::after{
        height: 100%;
    }
    .team-item::before {
        height: 40%;
    }
    .w-75{
        width: 100% !important;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (orientation: landscape){
    /* .team-item::after{
        height: 100%;
    }
    .team-item::before {
        height: 40%;
    } */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /* .team-item::after{
        height: 100%;
    }
    .team-item::before {
        height: 40%;
    } */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
}


[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after{
  font-size: 40px;
}

/* Contact us page*/
/* .u-section-1 .u-sheet-1 {
    min-height: 771px;
  }
  
  .u-section-1 .u-shape-1 {
    width: 927px;
    height: 548px;
    margin: 60px auto 0 9px;
  }
  
  .u-section-1 .u-shape-2 {
    width: 861px;
    height: 511px;
    margin: -418px 20px 0 auto;
  }
  
  .u-section-1 .u-layout-wrap-1 {
    width: 945px;
    margin: -537px 69px 140px auto;
  }
  
  .u-section-1 .u-layout-cell-1 {
    min-height: 457px;
    background-image: none;
  }
  
  .u-section-1 .u-container-layout-1 {
    padding: 30px;
  }
  
  .u-section-1 .u-text-1 {
    text-transform: none;
    font-size: 2.25rem;
    margin: 55px 0 0;
  }
  
  .u-section-1 .u-text-2 {
    font-size: 1.25rem;
    line-height: 2;
    margin: 28px 0 0;
  }
  
  .u-section-1 .u-btn-1 {
    font-weight: 700;
    padding: 0;
  }
  
  .u-section-1 .u-social-icons-1 {
    white-space: nowrap;
    height: 26px;
    min-height: 16px;
    width: 162px;
    min-width: 124px;
    margin: 20px auto 0 0;
  }
  
  .u-section-1 .u-icon-1 {
    height: 100%;
  }
  
  .u-section-1 .u-icon-2 {
    height: 100%;
  }
  
  .u-section-1 .u-icon-3 {
    height: 100%;
  }
  
  .u-section-1 .u-icon-4 {
    height: 100%;
  }
  
  .u-section-1 .u-layout-cell-2 {
    min-height: 457px;
    background-image: none;
  }
  
  .u-section-1 .u-container-layout-2 {
    padding: 15px 20px;
  }
  
  .u-section-1 .u-form-1 {
    height: 347px;
    margin: 1px auto 0 0;
  }
  
  .u-section-1 .u-form-group-1 {
    width: 100%;
  }
  
  .u-section-1 .u-input-1 {
    font-size: 1.125rem;
    text-transform: none;
  }
  
  .u-section-1 .u-form-group-2 {
    width: 100%;
  }
  
  .u-section-1 .u-input-2 {
    font-size: 1.125rem;
    text-transform: none;
  }
  
  .u-section-1 .u-form-group-3 {
    width: 100%;
  }
  
  .u-section-1 .u-input-3 {
    font-size: 1.125rem;
    text-transform: none;
  }
  
  .u-section-1 .u-form-group-4 {
    width: 100%;
  }
  
  .u-section-1 .u-btn-2 {
    border-style: none;
    letter-spacing: 1px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    background-image: none;
  }
  
  @media (max-width: 1199px) {
    .u-section-1 .u-sheet-1 {
      min-height: 768px;
    }
  
    .u-section-1 .u-shape-1 {
      width: 946px;
      height: 519px;
      margin-left: -26px;
    }
  
    .u-section-1 .u-shape-2 {
      width: 894px;
      margin-right: -13px;
    }
  
    .u-section-1 .u-layout-wrap-1 {
      width: 862px;
      margin-right: auto;
    }
  
    .u-section-1 .u-layout-cell-1 {
      min-height: 454px;
    }
  
    .u-section-1 .u-layout-cell-2 {
      min-height: 454px;
    }
  
    .u-section-1 .u-form-1 {
      margin-right: initial;
      margin-left: initial;
    }
  }
  
  @media (max-width: 991px) {
    .u-section-1 .u-sheet-1 {
      min-height: 708px;
    }
  
    .u-section-1 .u-shape-1 {
      width: 760px;
      height: 525px;
      margin-top: 67px;
      margin-right: -40px;
      margin-left: auto;
    }
  
    .u-section-1 .u-shape-2 {
      width: 757px;
      height: 490px;
      margin-right: auto;
      margin-left: -37px;
    }
  
    .u-section-1 .u-layout-wrap-1 {
      width: 720px;
      margin-bottom: 60px;
    }
  
    .u-section-1 .u-layout-cell-1 {
      min-height: 100px;
    }
  
    .u-section-1 .u-layout-cell-2 {
      min-height: 100px;
    }
  }
  
  @media (max-width: 767px) {
    .u-section-1 .u-sheet-1 {
      min-height: 1160px;
    }
  
    .u-section-1 .u-shape-1 {
      height: 553px;
      width: 469px;
      margin-top: 50px;
      margin-right: 0;
    }
  
    .u-section-1 .u-shape-2 {
      height: 572px;
      width: 511px;
      margin-top: -64px;
      margin-left: -26px;
    }
  
    .u-section-1 .u-layout-wrap-1 {
      width: 459px;
      margin-top: -891px;
      margin-bottom: 104px;
    }
  
    .u-section-1 .u-layout-cell-1 {
      min-height: 388px;
    }
  
    .u-section-1 .u-text-1 {
      font-size: 3rem;
    }
  
    .u-section-1 .u-layout-cell-2 {
      min-height: 435px;
    }
  
    .u-section-1 .u-container-layout-2 {
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  
  @media (max-width: 575px) {
    .u-section-1 .u-sheet-1 {
      min-height: 1124px;
    }
  
    .u-section-1 .u-shape-1 {
      width: 369px;
      margin-right: -29px;
    }
  
    .u-section-1 .u-shape-2 {
      height: 513px;
      width: 348px;
      margin-left: -38px;
    }
  
    .u-section-1 .u-layout-wrap-1 {
      width: 340px;
    }
  
    .u-section-1 .u-layout-cell-1 {
      min-height: 100px;
    }
  
    .u-section-1 .u-container-layout-1 {
      padding-left: 25px;
      padding-right: 25px;
    }
  
    .u-section-1 .u-text-1 {
      font-size: 2.25rem;
    }
  
    .u-section-1 .u-layout-cell-2 {
      min-height: 100px;
    }
  } */