:root {
    --box-shadow-03: 0 .5rem 1.5rem rgba(236, 236, 236, 0.3);
    --box-shadow-04: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(240, 240, 240, 0.19);
    --box-shadow-02: 1px 1px 2px rgb(159, 159, 159), 0 0 25px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255);
}

* {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 0.8rem;
}

html::-webkit-scrollbar-track {
    background: #c89666;
}

html::-webkit-scrollbar-thumb {
    background: #2d545e;
}



body {
    background: #e1b382;
}

.container {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(200, 150, 102, .7);
    backdrop-filter: blur(.5rem);
    max-width: 1500px;
    margin: 6.5rem auto;
    box-shadow: 0 .3rem 1.5rem rgba(200, 150, 102, 1);
}

section {
    padding: 2rem 9%;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #e1b382;
    color: #2d545e;
    border-radius: .5rem;
    font-size: 1.7rem;
    text-transform: capitalize;
    margin-top: 1rem;
    border: .1rem solid #c89666;
}

.btn:hover {
    background: #F4D7C9;
    color: #453444;
}



.message {
    position: sticky;
    top: 0;
    max-width: 1500px;
    margin: 0 auto;
    z-index: 1100;
    background-color: #2d545e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
}

.message span {
    font-size: 2rem;
    color: #e1b382;
}

.message i {
    color: #e1b382;
    cursor: pointer;
    font-size: 2.5rem;
}

.message i:hover {
    transform: rotate(90deg);
}






.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 6%;
    background: rgba(45, 84, 94, 1);
    box-shadow: 0 0.5rem 1rem #12343b;
}



.header .logo {
    color: #e1b382;
    font-size: 1.7rem;
}

.header .logo img {
    height: 3.5rem;
    vertical-align: middle;
}

.header .logo span {
    color: #F4D7C9;
    font-weight: bold;
}

.header .navbar a {
    font-size: 1.9rem;
    color: #e1b382;
    margin-left: 2rem;
}

.header .navbar a:hover {
    color: #F4D7C9;
}






#menu-btn {
    font-size: 1.8rem;
    color: #e1b382;
    cursor: pointer;
    display: none;

    transition: .3s linear;
}

/* #menu-btn.fa-times {
    transform: rotate(180deg);
}
 */








.slider {
    height: 80vh;
    margin-top: 0 auto;
    padding: 20px 0;
    position: relative;
    /* background: #e1b382; */

    /* box-shadow: 1px 1px 2px rgb(159, 159, 159), 0 0 25px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255); */
}

.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, #2d545e 10%, transparent);
}

.slider .list .item .content {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}

.slider .list .item .content p:nth-child(1) {
    text-transform: uppercase;
    color: #F0E9D7;
    letter-spacing: 10px;
    font-size: 25px;
}

.slider .list .item .content h2 {
    font-size: 60px;
    margin: 0;
    color: #e1b382;
}

.slider .list .item .content p {
    font-size: 20px;
    color: #F0E9D7;
}

.slider .list .item.active {
    opacity: 1;
    z-index: 10;

}

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }

}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
    animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3) {
    animation-duration: 1.3s;
}

.thumbnail {
    position: absolute;
    bottom: -100px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    overflow: auto;
    justify-content: center;

}

.thumbnail::-webkit-scrollbar {
    width: 0;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .7);
    border-radius: 10px;

}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail .item.active {
    filter: brightness(1.5);
    border: .1rem solid #2d545e;
    border-radius: 10px;


}





.scroll-slide {
    margin-top: 110px;
    background-color: #c89666;
    white-space: nowrap;
    box-shadow: 0 .3rem 1.5rem rgb(167, 123, 83);
}

.scroll-slide .row {
    overflow: hidden;
}

.scroll-slide .row .col {
    display: inline-block;
    animation: slide 30s linear infinite;
}

.scroll-slide .row .col p {
    display: inline-block;
    font-size: 2rem;
    color: #F4E1DA;
}

.scroll-slide .row .col p:hover {
    color: #2d545e;
}

.scroll-slide .row .col i {
    font-size: 2rem;
    margin: 0 1.5rem;
    color: #ffaf2c;
}

.scroll-slide .row .col img {
    height: 3rem;
    vertical-align: middle;
    filter: drop-shadow(var(--box-shadow));
}

.scroll-slide:hover .row .col {
    animation-play-state: paused;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}



.about {
    /* background: #e9ecef; */

    position: relative;
    /* max-width: 1500px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
}

.about .card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 100px 0;
    z-index: 15;
}

@media only screen and (max-width:62.5em) {
    .about .card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 350px;
        margin: 25px;
    }
}

.about .card:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media only screen and (max-width:62.5em) {
    .about .card:nth-child(odd) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about .card:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    text-align: right;
}

@media only screen and (max-width:62.5em) {
    .about .card:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about .card:nth-child(even) .imgbox {
    left: -25px;
}

@media only screen and (max-width:62.5em) {
    .about .card:nth-child(even) .imgbox {
        left: 0;
    }
}

.about .card:nth-child(even) .contentbox {
    right: -25px;
    padding: 20px 100px 20px 60px;
}

@media only screen and (max-width:62.5em) {
    .about .card:nth-child(even) .contentbox {
        right: 0;
        padding: 30px;
    }
}

.about .card .imgbox {
    position: relative;
    height: 400px;
    width: 500px;
    left: 25px;
    z-index: 1;
}

@media only screen and (max-width:62.5em) {
    .about .card .imgbox {
        width: 100%;
        height: 250px;
        left: 0;
    }
}

.about .card .imgbox img {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about .card .contentbox {
    position: relative;
    right: 25px;
    width: 500px;
    height: 400px;
    background: #e1b382;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 60px 20px 100px;
}

@media only screen and (max-width:62.5em) {
    .about .card .contentbox {
        width: 100%;
        height: auto;
        right: 0;
        padding: 30px;
        text-align: center;
    }
}

.about .card .contentbox::before {
    content: '';
    position: absolute;
    top: -50px;
    bottom: -50px;
    left: 0;
    right: 0;
    background: #e1b382;
    z-index: -1;
    box-shadow: 0 .3rem 1.5rem rgb(167, 123, 83);
}

@media only screen and (max-width:62.5em) {
    .about .card .contentbox::before {
        top: 0;
        bottom: 0;
    }
}

.about .card .contentbox h2 {
    font-size: 30px;
    color: #12343b;
    text-transform: capitalize;
}

.about .card .contentbox p {
    margin-top: 10px;
    color: #2d545e;
    font-size: 18px;
    line-height: 1.5;
}

.about .card .contentbox a {
    display: inline-block;
    margin-top: 15px;
    color: #343a40;
    text-decoration: none;
    padding: 10px;
    border: 1px solid gainsboro;
}



.gallery {
    background: #e1b382;
    box-shadow: 0 0.5rem 1rem #c89666;

}

.gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.gallery .box-container .box {
    position: relative;
    border-radius: 1rem;
    height: 25rem;
    cursor: pointer;
    background: #c89666;
    overflow: hidden;
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    transform-origin: center;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.gallery .box-container .box img {
    height: 90%;
    width: 90%;
    object-fit: cover;
}

.gallery .box-container .box:hover {
    transform: scale(1.02) rotate(2deg);
    z-index: 1;
}





.blogs {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs .slide {
    text-align: center;
    padding: 2rem 0;
}

.blogs .slide:hover .image img {
    transform: scale(1.1);
}

.blogs .slide .image {
    height: 25rem;
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: -3rem;
}

.blogs .slide .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.2s linear;
}

.blogs .slide .content {
    padding: 2rem;
    padding-top: 5rem;
    background: #e1b382;
    box-shadow: 0 .3rem 1.5rem rgb(167, 123, 83);
}

.blogs .slide .content h3 {
    font-size: 2rem;
    color: #12343b;
    text-transform: capitalize;
}

.blogs .slide .content p {
    padding: 1rem 0;
    font-size: 1.5rem;
    color: #2d545e;
    line-height: 1.5;
}









.vehicles {
    padding: 0;
}


.vehicles .vehicle-slider {
    background: #e1b382;
    padding-top: 3rem;
    padding-bottom: 3rem;
    /* box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5); */
    box-shadow: 0 .3rem 1.5rem rgba(200, 150, 102, 1);


}

.vehicles .vehicle-slider .box {
    text-align: center;
}

.vehicles .vehicle-slider .box img {
    height: 10rem;
    /* width: 100%; */
    opacity: .5;
    transform: scale(.8);
    transition: transform 2s ease;

}

.vehicles .vehicle-slider .swiper-slide-active img {
    opacity: 1;
    transform: scale(1);
    transition: transform 2s ease;
}






















.contact {
    margin: 0 auto;
    background: #e1b382;
}


.contact form {
    margin: 0 auto;
    max-width: 60rem;
    text-align: center;
    padding: 2rem;
    background: #2d545e;
    /* box-shadow: 0 0.5rem 1.5rem rgba(18, 52, 59, 1); */
    /* box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .7); */
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);


}

.contact form h3 {
    font-size: 3rem;
    color: #e1b382;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.contact form .box {
    width: 100%;
    padding: 1.2rem 1.2rem;
    border-radius: 0.5rem;
    border: none;
    background: #e1b382;
    text-transform: none;
    color: #453444;
    font-size: 1.8rem;
    margin: 0.7rem 0;
}

.contact form .box:focus {
    background: #F4D7C9;
}

.contact form textarea {
    height: 15rem;
    resize: none;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
    opacity: 0.6;
    color: #453444;
}



.footer .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: .1rem solid #2d545e;
    margin: 0 auto;
}

.footer .flex .box:last-child {
    text-align: right;
}

.footer .flex .box:nth-child(2) {
    text-align: center;
}

.footer .flex .box {
    flex: 1 1 20rem;
}

.footer .flex .box h3 {
    font-size: 2rem;
    color: #12343b;
    margin-bottom: 1rem;
}

.footer .flex .box .link {
    padding: 1rem 0;
    font-size: 1.6rem;
    color: #2d545e;
    display: block;
}

.footer .flex .box .link:hover {
    color: #F4D7C9;
}

.footer .flex .box p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #2d545e;
    padding: 1rem 0;
}

.footer .flex .box .share-links {
    margin-top: 1rem;
}

.footer .flex .box .share-links a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: 50%;
    font-size: 2rem;
    background-color: #2d545e;
    color: #F4E1DA;
    margin: 0 .5rem;
}

.footer .flex .box .share-links a:hover {
    color: #453444;
    background-color: #F4D7C9;
}

.footer .foot {
    background: rgba(45, 84, 94, 1);
    box-shadow: 0 -0.5rem 1rem #12343b;
    /* border-top: .1rem solid #2d545e; */
}

.footer .credit {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 1.8rem;
    color: #e1b382;
    align-items: center;
}

.footer .credit span {
    color: #F4D7C9;
    font-weight: bold;
}

.footer .credit img {
    height: 3.5rem;
    vertical-align: middle;
}






@media (max-width:1200px) {

    .container {
        margin: 6.5rem 5rem;
    }
}


@media (max-width:991px) {

    html {
        font-size: 55%;
    }

    .container {
        margin: 6.5rem 5rem;
    }
}


@media (max-width:768px) {

    #menu-btn {
        display: initial;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: .1rem solid #12343b;
        background: #12343b;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .3s ease;

    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .fa-times {
        transform: rotate(180deg);
    }

    .header .navbar a {
        display: flex;
        border-radius: .5rem;
        padding: 1.3rem;
        margin: 1.3rem;
        font-size: 2rem;
    }


    .footer .credit {
        justify-content: center;
        text-align: center;
    }

    .thumbnail {
        justify-content: start;
    }

    .slider .list .item .content p:nth-child(1) {
        letter-spacing: 10px;
        font-size: 20px;
    }

    .slider .list .item .content h2 {
        font-size: 40px;
    }

    .slider .list .item .content p {
        font-size: 20px;
    }



    .gallery .box-container .box {
        flex-flow: column;
        width: 100%;
    }

    .gallery .box-container .box:nth-child(even) {
        flex-flow: column;
    }

    .gallery .box-container .box .image {
        width: 100%;
    }








}


@media (max-width:450px) {

    html {
        font-size: 50%;
    }

    .container {
        margin: 6.5rem 2rem;
    }


    .slider .list .item .content p:nth-child(1) {
        letter-spacing: 10px;
        font-size: 20px;
    }

    .slider .list .item .content h2 {
        font-size: 40px;
        margin: 0;
    }

    .slider .list .item .content p {
        font-size: 20px;
    }

    .about .card .contentbox .content h2 {
        font-size: 2.2rem;
    }


    .footer .foot .credit {
        justify-content: center;
        text-align: center;
    }






}