@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

body {
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: "Roboto", serif;
}


*::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 20px;
    border: 3px solid black;
}

#img {
    max-width: 100%;
    height: auto;
}

main {
    flex: 1;
}

.hotline {
    text-align: right;
    padding-left: 25px;
    padding-right: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: "Roboto", serif;
    background-color: black;
    color: white;
}

#faq-button {
    margin-left: 20px;
}

#faq-button:hover {
    background-color: transparent;
}

.navbar {
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: 80px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-weight: 400;
    font-style: normal;
    background-color: #009980;
}

.navbar-brand {
    padding-left: 25px;
    padding-right: 50px;
}

.nav-link {
    font-size: 27px;
    position: relative;
    font-family: "Bebas Neue", serif;
    font-optical-sizing: auto;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}



.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1.4px;
    background-color: #ff004d;
    border-radius: 2px;
    opacity: 0.85;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: rgb(224, 223, 223);
}


.nav-link-button {
    background-color: #ff004d;
    border-radius: 40px;
    margin-left: 10px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    color: #fff !important;
    font-size: 23px;

}

.nav-link-button span {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.nav-link-button:hover {
    background-color: #e60045;
    color: #fff;
}

.nav-link-button::after {
    display: none;
}




.carousel-inner {
    height: auto;
    position: relative;
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    max-height: 650px;
    height: 100%;
}

#carouselExample {
    position: relative;
    overflow: visible;
}

.calculator-widget {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50%;
    min-height: 200px;
    transform: translateX(-50%);
    z-index: 2;
}


.headline {
    padding-top: 50px;
}



.copyright {
    background-color: #009980;
    color: #ffffff;
    padding: 15px 0;
    font-size: 14px;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.copyright a {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}


.copyright a:hover {
    text-decoration: underline;
}

.footer-info {
    margin-top: 50px;
    padding: 15px 0px 15px 0px;
    text-align: center;
    display: flex;
    background-color: black;
}

.footer {
    background-color: #009980 !important;
}

.socialmedia {
    padding: 30px 0px 30px 0px;
    text-transform: uppercase;
    color: white;
}


.socialmedia a {
    color: white;
}


.destination-box {
    padding-top: 50px;
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
}

.country-flag {
    width: 30px;
    height: auto;
}

.flag {
    height: 13px;
    vertical-align: middle;
}


#iframe-loading {
    position: absolute;
    inset: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-family: sans-serif;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #e60045;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .copyright .order-2 {
        margin-bottom: 10px;
    }


    .socialmedia {
        padding: 20px 0px 20px 0px !important;
        text-transform: uppercase;
    }


    .hotline {
        display: none;
    }

    .calculator-widget {
        display: none;
    }


    .carousel-inner {
        height: auto;
        position: relative;
        z-index: 1;
    }

    .carousel-item img {
        object-fit: cover;
        width: 100%;
        max-height: 500px;
        height: 100%;
    }

    .navbar-brand {
        padding-left: 0px;
        padding-right: 0px;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }


    .nav-link-button {
        margin-left: 0px !important;
        width: max-content !important;
    }

    .nav-link-button span {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .distance {
        margin-top: 40px !important;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .main-container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #c24pp-rentalcar-iframe {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%);
    }
}