:root {

    --primary-color: #fec601;
}

body {
    font-family: "Red Hat Display", serif;
    color: #000;
    overflow-x: hidden;
    background-color: #fff;
}

a {
    text-decoration: none;
}

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
}

p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.navbar {
    position: fixed;
    width: 100%;
    background: linear-gradient(to bottom, #fff, transparent);
    z-index: 5;
    padding: 10px 0 30px 0;
    transition: .5s;
}

.scroll-navbar {
    padding: 10px 0;
    background: #fff;
    /* Change to your desired color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional shadow for effect */
    transition: all .5s ease;
    /* Smooth transition */
}

.navbar .nav-link {

    font-size: 16px;
    color: #000;
    font-weight: 500;
    transition: .5s;
}

.navbar.scroll-navbar .nav-link {
    color: #000;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .navbar-brand img {
    width: 160px;
    transition: .5s;
}




.ml-auto {
    margin-left: auto;
}

.btn-fill,
.btn-fill:hover {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    background-color: var(--primary-color);
    border-radius: 0;
    border: 1.5px solid var(--primary-color);
    padding: 10px 15px;
    transition: .5s;
    text-transform: uppercase;
}

.btn-black,
.btn-black:hover {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    background-color: #000;
    border-radius: 0;
    border: 1.5px solid #000;
    padding: 10px 15px;
    transition: .5s;
    text-transform: uppercase;
    width: auto;
}

.btn-yellow,
.btn-yellow:hover {

    font-size: 16px;
    color: #fff;
    font-weight: 500;

    background-color: var(--secondary-color);
    border-radius: 20px;
    border: 1.5px solid var(--secondary-color);
    padding: 5px 12px;
    transition: .5s;
}

.btn-submit,
.btn-submit:hover {

    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 0;
    border: 1.5px solid #000;
    padding: 12px 10px;
    transition: .5s;
    width: 100%;
}

.btn-fill:hover {
    background: #fff;
    color: #000;
}

.btn-submit:hover {
    background: #fff;
    color: #000;
}



.btn-white-border,
.btn-white-border:hover {

    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 0;
    border: 1.5px solid #fff;
    padding: 10px 15px;

    transition: .5s;

}

.btn-white-border:hover {
    color: #000;
    background-color: #fff;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

h5.section-title {
    color: #000;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 0;
    line-height: 44px;
    text-transform: uppercase;
}


.hero,
#heroSplide {
    position: relative;
}

.splide__arrow {
    background: #fff !important;
}

.hero img {
    width: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    transform: translateY(-50%, -50%);
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px 100px;
}

.hero-content h1 {
    font-size: 50px;
    color: #000;
    line-height: 53px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    padding: 0;
}

.hero-content h5 a,
.hero-content h5 {
    font-size: 20px;
    color: #000;
    line-height: 25px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    padding: 0;
    margin-top: 10px;
}

.hero-content p {
    color: #000;
    padding: 0;
    font-size: 17px;
    margin-bottom: 10px;
}

.booking-section {
    padding: 50px 0;
}

.booking-section h6 {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 0;
    line-height: 44px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-top: 20px;
    position: relative;
}

.booking-section h4 a,
.booking-section h4 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    padding: 0;
    line-height: 22px;
}

.service {
    padding: 50px 0;
}

.service-img {
    position: relative;
    margin-bottom: 10px;
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-img h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    background: linear-gradient(to right, var(--primary-color), transparent);
    padding: 5px 10px;
}

.diver-permit {
    padding: 50px;
    background: linear-gradient(to right, #00000060, #00000060), url(../img/permit-bg.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
    border-radius: 30px;
}

.diver-permit img {

    object-fit: cover;
    height: 300px !important;
}

.booking-form {
    background-color: var(--primary-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
}







.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3) 10%, transparent);
    content: "";
    left: 0;
    top: 0;
}

.overlay:before {
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(24, 182, 69, .5);
    content: "";
    left: 0;
    bottom: 0;
    transition: .5s;
}

.partners-item:hover .overlay:before {
    height: 100%;
}

.partners-item:hover h5.destination-title {
    margin-bottom: 50px;
}


h5.destination-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 18px;

    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    transition: .5s;
}

.about {
    padding: 50px 0;
}





.fleet-des {
    margin-bottom: 10px;

}

.fleet-des h5.price {
    font-size: 18px;

}

.fleet-des h5.price span {
    font-size: 12px;
    color: #555;

}

.fleet-des h5.title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    padding: 0;
    text-transform: uppercase;
}

.fleet-des h5.type {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid #000;
    display: inline-block;
    padding: 1px 2px;
}

.vision-item {
    padding: 0 30px 10px 0;

}

.contact {
    padding: 50px 0;
    background: linear-gradient(to right, #2596BE95, #00000060), url(../img/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    color: #fff;
    text-align: center;
    position: relative;

}

.contact a {
    color: #fff;
}

.contact h4,
.reservations h4,
.clients h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0;

}



.contact h5 {
    font-size: 24px;
    font-weight: 600;
}

.contact-items {
    display: flex;
    justify-content: center;
}

.contact-item {
    margin-right: 20px;
}

.home-contacts {
    padding: 20px;
    background: linear-gradient(to right, #00000060, transparent);
    border-radius: 10px;
    border: 3px solid #ffffff80;
    border-top: none;
    border-bottom: none;

}

.reservations {
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.car-right {
    position: absolute;
    right: -50px;
    bottom: 10%;
    width: 750px;
    transform: rotate(180deg) rotateX(180deg);
    object-fit: cover;

}

.car-left {
    position: absolute;
    bottom: 50px;
    left: -300px;
    opacity: 0.3;
    width: 100%;
    z-index: -1;
}

.red-car {
    position: absolute;
    width: 700px;
    left: -200px;
    top: 0;

}

.reservations span,
.clients span {
    color: var(--primary-color);
}

.reservations-form {
    text-align: left;
    position: relative;
}

.reservations-form h4 {

    color: #fff;
    background-color: #000;
    padding: 10px;
    text-align: center;
}

.reservations-form label {
    font-size: 16px;
    font-weight: 500;
}


.booking-form input,
.booking-form textarea,
.booking-form select {
    background-color: #fff;
    border-radius: 0;
    padding: 10px 15px;
    border: none;
    color: #222;
    font-size: 16px;
    width: 100%;

}

.input-group-text {
    padding: 10px;
    font-weight: 700;
    color: #000;
    background-color: fff;
    border-radius: 0;
    border: 0;

    font-size: 14px;
    text-transform: uppercase;
    width: 120px;
}

.input-group-text i {
    margin-right: 5px;
}

.input-group {
    flex-wrap: nowrap;
    background-color: #fff;
    border: 1px solid #000;
    margin-bottom: 10px;

}

.bg-yellow-cl {
    padding: 30px;
    margin: 20px;
    background: #7fd0ed;

}

.location-map iframe {
    height: 400px;
    width: 100%;
}

.partner-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.partner-card a:hover {
    color: #000;
}

.partner-card a {
    margin-top: 15px;
    transition: .5s;
}

.partner-card img {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 1px 1px #00000020;
    transition: 1s;
}

.partner-card:hover img {
    transform: scale(1.02);
}

.popup-content .reservations-form label {
    font-size: 14px;
    font-weight: 400;
}

.popup-content .reservations-form input,
.popup-content .reservations-form select {
    background-color: #fff;
    border-radius: 6px;
    padding: 7px 12px;
    border: 1px solid #000;
    color: #222;
}

.note {
    font-size: 12px;
    color: #ff0000;
    text-align: left;
    font-weight: 400 !important;
    margin-top: 10px;
    line-height: 1.2 !important;
}

.clients {
    padding: 0 0 40px 0;
    text-align: center;
}

.clients-item {
    padding: 20px;
    text-align: left;
    border-radius: 15px;
}

.clients-item p {
    font-size: 14px;
    color: #555;
}

.clients-profile {
    display: flex;
    align-items: center;
}

.clients-profile img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.profile h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.profile h4 {
    font-size: 10px;
    font-weight: 500;
    color: #555;
}


.time {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 20px;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0;
}


.relative {
    position: relative !important;
}

.duration li {
    height: 45px;
    width: 45px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    text-align: center;
    text-align: center;
    list-style: none;
}





.time h5 {
    font-size: 12px;
    color: #fff;

    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.time li {
    list-style: none;
}

.time li:first-child {
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1.5px solid #fff;
}




.splide__arrow {
    width: 45px;
    height: 45px;
    background: transparent;
    opacity: 1;
}


.splide__arrow:over {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 1);
    opacity: 1;
}

.splide__arrow:hover:not(:disabled) {
    opacity: 1 !important;
}

footer {

    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 0 0;
}

.footer-about h5 {
    color: #fff;
    font-size: 28px;

    font-weight: 500;
    text-transform: uppercase;
}

.footer-about p {
    color: #fff;
    padding: 0;
    margin: 0;
}

h5.footer-title {
    color: #fff;
    font-size: 22px;

    font-weight: 500;
    text-transform: uppercase;
}

footer .footer-links,
footer .contact-links {
    margin-top: 20px;
}

footer .footer-links li {
    list-style: none;
    padding-left: 10px;
    position: relative;
    margin-bottom: 5px;
}



footer ul li {
    margin-bottom: 10px;
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

footer p {
    color: #fff;
}

footer .worldwide li {
    margin-bottom: 10px;
}

footer ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 0;
    margin: 0;
}

footer h5 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

footer .contact-links li a {
    font-size: 18px;
    font-weight: 500;

    color: #fff;
    line-height: 18px;
    padding: 0;
    margin: 0;

}

footer .contact-links li {
    font-size: 18px;
    font-weight: 500;

    color: #fff;
    line-height: 18px;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

footer .contact-links li:last-child {
    border-bottom: none;
}

footer .contact-links li {
    list-style: none;
}

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content .social-links {
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 14px;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background: transparent;
    position: relative;
    transition: .5s;
}

.hero-content .social-links a {
    color: #000;
    font-size: 16px;
    width: 35px;
    height: 35px;
    margin-right: 8px;
    border: 1px solid #000;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    background: transparent;
    position: relative;
    transition: .5s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
}

.hero-content .social-links a:hover {
    background: #000;
    color: #fff;
}

.copyright {
    padding: 15px 0;
    background: #000;
    margin-top: 20px;
    border-top: 1px solid #fff;
    text-align: center;
}

.copyright p,
.copyright a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 0;
    margin: 0;
    transition: .5s;
}

.copyright ul {
    display: flex;
    justify-content: end;
    margin-bottom: 0;

}

.copyright ul li {
    font-size: 14px;
    font-weight: 400;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #fff;
    margin-bottom: 0;
}

.copyright ul li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
    z-index: 10;

    top: 23px;
    right: 20px;
}

.navbar-toggler-icon.close {
    width: 1.3em;
    height: 1.3em;
    z-index: 10;
    position: absolute;
    top: 23px;
    right: 20px;
}

.page-hero {
    padding: 150px 0 100px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}

.page-hero:before {
    background: linear-gradient(70deg, #2596BE 40%, #2596BE20 40%);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.page-hero h5 {
    font-size: 35px;
    color: #fff;
    font-weight: 600;
    position: relative;
}





.contact-form input,
.contact-form textarea {
    width: 100%;
    bottom: none;


    margin-bottom: 15px;
    font-size: 16px;
}



.contact-form h5 {
    font-size: 32px;
    color: #000;
    font-weight: 500;
    padding-left: 0 !important;
    margin-bottom: 20px;
    padding: 0;

}

.contact-form h5::before {
    display: none;
}


.contact-form {
    padding: 30px 20px;

}




.page-content {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.fleet {
    padding: 50px 0;
}

.fleet-item {
    background-color: #f1f1f1;
    padding: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.fleet-item img {
    width: 100%;
}

.franchising h5,
.faqs h5 {
    font-size: 24px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.faqs h5 {
    font-size: 17px;
    padding-left: 45px;
    display: flex;
    align-items: center;
}

.franchising h5:before {
    content: '';
    background: var(--secondary-color);
    height: 100%;
    width: 4px;
    top: 0;
    left: 10px;
    position: absolute;
}

.faqs h5:before {
    content: 'Q.';
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 600;
    left: 10px;
    position: absolute;
}

.franchising .unique li {
    display: block;
}

.franchising span,
.franchising a {
    color: var(--primary-color);
    font-weight: 500;
}

.franchising ul li {
    padding-left: 25px;
    position: relative;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.faqs ul {
    margin-bottom: 0;
}

.faqs ul li {
    padding-left: 25px;
    position: relative;
    align-items: start;
    margin-bottom: 5px;
    display: flex;
    line-height: 20px;

}

.faqs ul li:last-child {
    margin-bottom: 0;
}

.faqs ul li:before {
    position: absolute;
    content: '\F633';
    position: absolute;
    font-family: 'bootstrap-icons';
    color: var(--primary-color);
    left: 0;
    font-size: 22px;
    font-weight: 500;
}



.faq-item {

    margin-bottom: 15px;

}


.faq-question {

    cursor: pointer;

    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;

    padding: 10px;

    border-radius: 5px;

}


.faq-question h5 {

    margin: 0;

}


.faq-answer {
    display: none;
    padding: 20px 15px;
    border-left: 2px solid var(--primary-color);
    border-radius: 0 0 5px 5px;

}

.franchising ul li:before {
    position: absolute;
    content: '\F138';
    position: absolute;
    font-family: 'bootstrap-icons';
    color: var(--primary-color);
    left: 0;
    font-size: 22px;
    font-weight: 500;
}

.location-item {
    width: 100%;
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 15px;
}

.location-item iframe {
    width: 100%;
    height: 300px;
    position: relative;
}

.location-details {
    background-color: #fff;
    padding: 15px;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: 10px;
    position: absolute;
}

.location-details li,
.location-details h5 {
    padding-left: 0 !important;
}

.location-details li::before,
.location-details h5::before {
    display: none;
}

.country-list {
    display: flex;
    justify-content: space-between;
}

.country-list ul {
    margin-bottom: 0;
}

.whyus {
    display: flex;
    justify-content: end;
    align-items: baseline;
}

.whyus-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-right: 20px;
}

.whyus-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: block;
    padding: 5px;
    margin-bottom: 20px;
}

.whyus-item h5 {
    font-size: 16px;
    font-weight: 500;
}

.whyus-item p {
    font-size: 12px;
    color: #555;
    font-weight: 400;
}

.contact-details h5::before {
    display: none;
}

.contact-details h5 {
    padding-left: 0;
}

.contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 10px;


}

.contact-phone i {
    color: #000;
    font-size: 20px;
    margin-right: 10px;
}

.contact-phone a {
    color: #000;
    font-weight: 500;
    font-size: 17px;
}

.open-time {
    display: flex;
    justify-content: center;
}


.open-time ul li {
    margin: 0;
    padding: 0;
    text-align: left;
}

.open-time ul li:first-child {
    margin-right: 5px;
    padding-right: 5px;
}

.open-time ul li::before {
    display: none;
}

.open-time ul li::before {
    content: ':';
    color: #000;
    right: 0;

}

.splide__pagination {
    bottom: -20px;
}

.splide__pagination__page,
.splide__pagination__page.is-active {
    background: #000;
}

@media(min-width:990px) {
    .text-lg-left {
        text-align: left;
    }

    .reservations p {
        line-height: 2;
        font-weight: 600;
        font-style: italic;

    }
}

@media(max-width:990px) {
    .car-right {
        position: relative;
        right: -50px;
        width: 100%;
        overflow: hidden;

    }

    .car-left {
        display: none;
    }

    .red-car {
        position: relative;
        width: 100%;
        left: -100px;
    }

    .whyus,
    .contact-items {
        flex-direction: column;
    }

    .contact-item {
        text-align: center;
    }

    .country-list {
        flex-direction: column;
    }

    .location-item {
        height: auto;
        border-radius: 0;
    }

    .location-details {
        position: relative;
        margin-top: -50px;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 20px 0;
    }

    .franchising h5 {
        font-size: 22px;
    }

    .faqs h5 {
        font-size: 18px;
    }

    .faqs h5::before {
        font-size: 20px;
    }

    .page-hero:before {
        background: #2596BE95;
    }

    footer {
        text-align: center;
    }

    .copyright ul {
        justify-content: center;
        margin-bottom: 20px;
    }

    footer ul li,
    footer .worldwide li {
        margin-bottom: 5px;
    }

    footer h5 {
        margin-top: 20px;
    }

    .page-hero h5 {
        font-size: 25px;
        text-align: center;
    }




    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:active,
    .navbar-toggler:focus {
        box-shadow: none;
    }


    .navbar-nav {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: fixed !important;
        top: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.97);
        transition: transform 0.3s ease-in-out;
        z-index: -1;
    }



    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
        background-image: url('../img/menu.svg') !important;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {

        background-image: url('../img/close.svg') !important;
    }

    .navbar .nav-link,
    .navbar.scroll-navbar .nav-link {
        color: #000;
    }

    .navbar .nav-link {
        border-bottom: 1px solid #000;
    }

    .navbar {
        background: #fff;
        padding: 10px 0;
    }

    .navbar .navbar-brand img {
        filter: none;
    }
}

@media(max-width:768px) {
    .input-group-text {
        padding: 5px;
        font-size: 12px;
    }

    .booking-form input {
        padding: 5px 10px;
    }

    .social-links {
        justify-content: center;
    }

    .booking-section {
        text-align: center;
    }

    .booking-form {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 37px;
    }

    .hero-content {
        padding: 20px;
    }

    .diver-permit {
        padding: 20px;
        text-align: center;
    }

    h5.section-title {
        font-size: 32px;
        line-height: 34px;
    }

    .input-group {
        flex-wrap: wrap;


    }

    .about {
        text-align: center;
    }

    .whyus-item {
        text-align: center;
        align-items: center;
    }

    .home-contacts {
        border: none;
        border-radius: 0;
        background: linear-gradient(to bottom, #00000060, transparent);
    }

    .contact h4,
    .reservations h4,
    .clients h4 {
        font-size: 25px;
    }

    .bg-yellow-cl {
        margin: 0;
        padding: 10px;
    }

    .page-hero {
        padding: 150px 0 80px 0;
    }



}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .95), rgba(255, 255, 255, 1), rgba(255, 255, 255, .95));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader-image {
    opacity: 0;
    animation: fadeInOut 2s infinite ease-in-out;
    width: 170px;
}


@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}