@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.title {
    font-family: "Poppins", serif;
}

.car {
    border-radius: 5%;
    padding: 0.5em;
    text-align: center;
    width: 100%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.car:hover {
    transform: scale(1.02);
    transition: all 300ms;
    box-shadow: 5px 5px;
}

.car-booking {
    border-radius: 25px;
    padding: 1em 0.1em;
    text-decoration: none;
    display: block;
    color: white;
    transition: all 200ms ease-in;
    background-color: #007bff;
    font-weight: bold;
}

.car-booking:hover {
    color: white;
    background-color: blue;
}

.banner {
    background: linear-gradient(90deg, hsla(221, 45%, 73%, 1) 0%, hsla(220, 78%, 29%, 1) 100%);
    color: #e3f2fd;
}

.text-end {
    text-align: end;
}

.car-picture {
    max-width: 100%;
    max-height: 15em;
}

.toggler {
    cursor: pointer;
    user-select: none;
}

.toggler img {
    transition: all 300ms ease-in;
}

.toggler-rotated {
    transform: rotate(180deg);
}

.bold {
    font-weight: bold;
}

@media(max-width: 767px) {
    section.computer-navbar-container {
        display: none;
    }

    .car-experience-description img {
        width: 100px;
    }

    .more-info {
        margin-top: 50%;
    }

    .social-network-link {
        margin: 0.5em;
    }
}

@media (min-width: 768px) {
    section.phone-navbar-container {
        display: none;
    }

    .description-box {
        font-size: 1.5em;
    }

    .car-experience-description img {
        width: 200px;
    }

    .more-info {
        margin-top: 10%;
    }

    .social-network-link-container {
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .social-network-link {
        margin: 1em;
    }
}

.navbar-element {
    font-family: Roboto, serif;
    font-size: 1.2em;
    margin: 0 1em;
    color: black !important;
    text-decoration: none !important;
    display: inline-block;
    font-weight: bold;
}

.video-container {
    position: relative;
}

.video-container video {
    position: relative;
    z-index: 0;
}

.car-experience-description {
    color: white;
    position: absolute;
    top: 5%;
    z-index: 1;
    width: 99%;
    margin-top: 5%;
    text-align: center;
}

.description-box {
    max-width: 75%;
    display: inline-block;
    padding: 1em;
}

.more-info {
    border-radius: 10px;
    display: inline-block;
    padding: 2em 1em;
    cursor: pointer;
    font-weight: bold;
}

.more-info img {
    width: 50px;
    height: 60px;
    color: white;
    filter: invert(100%);
    fill: white;
    transform: rotate(-90deg);
}

.social-network-link {
    text-decoration: none;
    color: black;
    display: inline-block;
}

body {
    background-color: white;
}
