

@font-face {
  font-family: 'Abel';
  src: url('/assets/fonts/Abel-Regular.woff2') format('woff2'),
       url('/assets/fonts/Abel-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

*{
    font-family: 'Abel', sans-serif;
}
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.service-content-icon img{
    font-size: 20px;
    width: 60px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1, h2, h3{
    font-family: 'Abel', sans-serif;
    font-weight: 900;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-family: 'Abel', sans-serif;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


hr{
    width: 90%;
    justify-self: center;
    color: rgb(221, 221, 221);
}
/*** Button Start ***/
.btn.btn-primary {
    color: #fff !important;
    border: 0;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/
.breadcrumb-item a{
    color: #ffffffb2 !important;
}
.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}
.hero-container{
    padding: 0px;
}
.copyright{
    background-color: #416d78;
}
.col-md-12.text-center.mb-3.mb-md-0{
    color: #fff !important;
}
.banner-area{
    align-self: center;
    padding: 0;
    margin: 0;
    max-width: 100%;
}
.banner-content {
    position: relative;
    z-index: 2;
    display: inline-block;
    border-radius: 15px;
    width: 100%;
    margin: 0;
    padding: 40px;
    color: #fff;
}
.deals{
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 97%;
    justify-self: center;
    border-radius: 11px;
}
.offer-overlay{
    background: #5076a170;
    backdrop-filter: blur(3px);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 10px;
    z-index: -2;
}
.light-bg{
    position: absolute;
    top: 0;
    border-radius: 30px;
    z-index: -3;
    width: 100%;
    height: 100%;
}

/* logo */
.logo{
    max-width: 200px;
    width: 100%;
    margin-bottom: 0 !important;
}
/*** Navbar Start ***/
.nav-bar {
    background: #eef8fa; /* light semi-transparent white */
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    width: auto;
    border-radius: 0px;
    color: white;
    position: sticky;
    max-height: 87px;
    top: 0;
    z-index: 8;
    backdrop-filter: blur(22px);
    display: flex;
    align-items: center;
}

.navbar-nav{
    background: white;
    padding: 8px;
    border-radius: 30px;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Abel', sans-serif;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .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;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}
/*** Navbar End ***/


/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** Events End ***/


/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}


.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: #416d78 !important;
}
.service-item:hover .service-content-icon h4 {
    color: #fff !important;
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}


.service .row > div:nth-child(1) .service-content-icon img {
  content: url("../img/Icons/1x/1.png");
  transition: 0.5s;
}.service .row > div:nth-child(1):hover .service-content-icon img {
  content: url("../img/Icons/1x/12.png");
}

.service .row > div:nth-child(2) .service-content-icon img {
  content: url("../img/Icons/1x/2.png");
  transition: 0.5s;
}.service .row > div:nth-child(2):hover .service-content-icon img {
  content: url("../img/Icons/1x/21.png");
}

.service .row > div:nth-child(3) .service-content-icon img {
  content: url("../img/Icons/1x/3.png");
  transition: 0.5s;
}.service .row > div:nth-child(3):hover .service-content-icon img {
  content: url("../img/Icons/1x/31.png");
}

.service .row > div:nth-child(4) .service-content-icon img {
  content: url("../img/Icons/1x/4.png");
  transition: 0.5s;
}.service .row > div:nth-child(4):hover .service-content-icon img {
  content: url("../img/Icons/1x/41.png");
}

.service .row > div:nth-child(5) .service-content-icon img {
  content: url("../img/Icons/1x/5.png");
  transition: 0.5s;
}.service .row > div:nth-child(5):hover .service-content-icon img {
  content: url("../img/Icons/1x/51.png");
}

.service .row > div:nth-child(6) .service-content-icon img {
  content: url("../img/Icons/1x/6.png");
  transition: 0.5s;
}.service .row > div:nth-child(6):hover .service-content-icon img {
  content: url("../img/Icons/1x/61.png");
}

.service .row > div:nth-child(7) .service-content-icon img {
  content: url("../img/Icons/1x/7.png");
  transition: 0.5s;
}.service .row > div:nth-child(7):hover .service-content-icon img {
  content: url("../img/Icons/1x/71.png");
}

.service .row > div:nth-child(8) .service-content-icon img {
  content: url("../img/Icons/1x/8.png");
  transition: 0.5s;
}.service .row > div:nth-child(8):hover .service-content-icon img {
  content: url("../img/Icons/1x/81.png");
}
/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Youtube Video start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/fact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/


/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}
/*** Team End ***/

.fa-quote-right{
    top: 25px !important;
    right: 20px !important;
    color: #83838338;
    font-size: 20px;
}
/*** testimonial Start ***/
.testimonial-item {
    padding: 20px 20px;
    background-color: #fff !important;
    margin: 10px 0;
    padding: 10px;
    box-shadow: 
    inset -2px 2px hwb(0 100% 0%),
    -3px 1px 9px hsla(0, 0%, 0%, 0.13);
}

.testimonial-carousel .owl-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}
.footer .container{
    top: 42px;
    position: relative;
}

.footer-icon a{
    position: relative;
    z-index: 9;
}
.overlaycard{
    background: #5076a170;
    backdrop-filter: blur(0px);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 0px;
    z-index: 1;
}

.hero2 {
    width: 100%;
    max-height: 113px;
    position: relative !important;
    display: flex;
    align-items: center;
    height: 75px;
    top: 0px;
    z-index: 2;
}
.hero3{
    width: 100%;
    min-height: 113px;
    position: relative !important;
    display: flex;
    align-items: center;
    height: 100px;
    top: 24px !important;
    /* transform: rotateZ(180deg); */
}
.animated-loop {
    display: block;
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}


.hero2 .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero2 .hero-waves {
    width: 100%;
    height: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.hero2 .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: #4f8694;
    opacity: 0.6;
}

.hero2 .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: #75c1d4;
    opacity: 0.4;
}

.hero2 .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: #b0dce775;
}

@keyframes move-forever1 {
    0% { transform: translate(85px, 0%); }
    100% { transform: translate(-90px, 0%); }
}

@keyframes move-forever2 {
    0% { transform: translate(-90px, 0%); }
    100% { transform: translate(85px, 0%); }
}

@keyframes move-forever3 {
    0% { transform: translate(-90px, 0%); }
    100% { transform: translate(85px, 0%); }
}

@keyframes up-down {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}


/*** Footer End ***/
/* Moblie */
@media (max-width: 575.98px) {
    .hero{
        height: 90vh !important;
        margin-bottom: 0 !important;
    }
    .nav-bar{
        max-height: max-content;
    }
    .img-area{
        margin: 0;
    }
    .hero2{
        top: 0 !important;
    }
    
    .footer-item{
        margin-bottom: 20px !important;
    }
    .hero img{
        visibility: visible;
        width: 80%;
        animation-delay: 0.1s;
        animation-name: float;
        justify-self: anchor-center;
    }

}

@media (max-width: 767.98px) {
    .hero{
        height: 90vh !important;
        margin-bottom: 0 !important;
    }
    .nav-bar{
        max-height: max-content;
    }
    .img-area{
        margin: 0;
    }
    .hero2{
        top: 0 !important;
    }
    
    .footer-item{
        margin-bottom: 20px !important;
    }
    .hero img{
        visibility: visible;
        width: 80%;
        animation-delay: 0.1s;
        animation-name: float;
        justify-self: anchor-center;
    }

}


@media screen and (width: 1366px) and (height: 768px) {
    .hero{
        height: 85vh !important;
        margin-bottom: 0 !important;
    }
}



@media (max-width: 991.98px) {
    .hero{
        height: 90vh !important;
        margin-bottom: 0 !important;
    }
    .nav-bar{
        max-height: max-content;
    }
    .img-area{
        margin: 0;
    }
    .hero2{
        top: 0 !important;
    }
    
    .footer-item{
        margin-bottom: 20px !important;
    }
    .hero img{
        visibility: visible;
        width: 80%;
        animation-delay: 0.1s;
        animation-name: float;
        justify-self: anchor-center;
    }

}

@media (max-width: 1199.98px) {
    .hero{
        height: 90vh !important;
        margin-bottom: 0 !important;
    }
    .nav-bar{
        max-height: max-content;
    }
    .img-area{
        margin: 0;
    }
    .hero2{
        top: 0 !important;
    }
    
    .footer-item{
        margin-bottom: 20px !important;
    }
    .hero img{
        visibility: visible;
        width: 80%;
        animation-delay: 0.1s;
        animation-name: float;
        justify-self: anchor-center;
    }

}

@media (max-width: 780px) {
    .hero{
        height: 90vh !important;
        margin-bottom: 0 !important;
    }
    .nav-bar{
        max-height: max-content;
    }
    .img-area{
        margin: 0;
    }
    .hero2{
        top: 0 !important;
    }
    
    .footer-item{
        margin-bottom: 20px !important;
    }
    .hero img{
        visibility: visible;
        width: 80%;
        animation-delay: 0.1s;
        animation-name: float;
        justify-self: anchor-center;
    }
}



