/* *{
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
} */
body{
    font-family: Poppins;
    padding: 0;
    margin: 0;
    color: #fff;
    background-color: #2a1a14;
}
html{
    scroll-behavior: smooth;
}
.fade-in-section {
    opacity: 0;
    transform: translateY(100px);
    visibility: hidden;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, visibility;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.starting-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* Fallback background color */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.background-video {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    /* object-fit: cover; */
    /* z-index: -1; */
}

.main-content {
    display: none; /* Initially hide the main content */
}

/*------Navbar------*/

header{
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    transition: background-color 1s ease;
    z-index: 1000;
}
.container-navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.nav-links{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.nav-links li{
    margin: 0 20px;
}
.nav-links li a{
    text-decoration: none;
    letter-spacing: 3px;
    color: white;
    transition: color 0.5s;
}
.nav-links li a:hover{
    color: darkgoldenrod;
}
.scrolled{
    background-color: #2a1a14;
}
.scrolled .nav-links li a{
    color: #fff;
}
.scrolled .nav-links li a:hover{
    color: darkgoldenrod;
}
header .fa-solid{
    display: none;
}
.logo a{
    font-size: 18px;
    letter-spacing: 3.5px;
    font-weight: 500;
    color: rgb(218, 160, 14);
    opacity: 0;
    transition: opacity 0.5s;
    text-decoration: none;
}
.scrolled .logo a{
    opacity: 1;
}

/*------Hero------*/

.hero{
    width: auto;
    height: 100vh;
    background-image: url('img/maintenance.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .container{
    position: absolute;
    top: 25%;
    display: flex;
    flex-direction: column;
    align-items: center ;
    justify-content: center;
}
.hero .container h1{
    position: relative;
    font-size: 60px;
    top: -40px;
    letter-spacing: 3.5px;
    padding: 0px 10px;
    font-family: Montserrat;
    color: darkgoldenrod;
}
.hero .container h3{
    position: relative;
    top: -100px;
    font-size: 32px;
    font-weight: 400;
    color: white;
    letter-spacing: 5px;
}

/*------About------*/
#about{
    background-color: #2a1a14;
}
#about .container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 100px;
}
.carousel {
    position: relative;
    width: 576px;
    height: 324px;
    border-radius: 15px;
    transition: 0.5s transform;
    flex-shrink: 0;
}
.carousel:hover{
    transform: scale(1.05);
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-item.active {
    opacity: 1;
}
.img-about img{
    width: 576px;
    height: 324px;
    border-radius: 15px;
    transition: transform 0.5s;
}
.vid-about video{
    width: 576px;
    height: 324px;
    border-radius: 15px;
}
.about-text{
    margin-left: 50px;
}
.about-text .hr{
    background-color: darkgoldenrod;
    width: 100%;
    height: 2px;
}
.about-title{
    font-size: 38px;
    font-weight: 400;
    margin: 10px 0;
    letter-spacing: 5px;
    color: #fff;
}
.about-desc{
    text-align: justify;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
}
.about-high {
    height: auto;
    padding: 20px;
    margin: 20px 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Space between the squares */
}
.about-highL {
    width: 260px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Text color */
    background-color: #5D3E30; /* Background color */
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent; /* Initial transparent border */
}
.about-highL:hover {
    transform: translateY(-10px); /* Moves the box up */
    border: 2px solid #D3831C; /* Colored border on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}
.about-highL .fa-solid {
    width: 50px;
    height: 50px;
    color: #5D3E30; /* Background color */
    font-size: 36px;
    border-radius: 50%;
    background-color: #D3831C; /* Accent/secondary color */
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-highL p {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 3px;
}

/*------Service------*/

#service{
    background-color: #2a1a14;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#service .service-title{
    font-size: 52px;
    font-weight: 400;
    margin: 10px 0;
    margin-top: 3%;
    letter-spacing: 5px;
    color: #fff;
}
#service .service-title-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}
#service .main-container{
    display: flex;
    flex-direction: column;
    padding: 50px 100px;
}
.service-title1,.service-title2{
    font-size: 30px;
    font-weight: 400;
    margin: 10px 0;
    color: #fff;
}
.service-subtitle{
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 3.5px;
    padding: 0px 5px;
}
#service .hr{
    background-color: darkgoldenrod;
    width: 25%;
    height: 2px;
}
#service .hr2{
    background-color: darkgoldenrod;
    width: 100%;
    height: 2px;
}
#service .container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 100px;
}
.img-service{
    position: relative;
}
.img-service::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #e3800e; /* Solid color background */
    transform: translate(0px, 0px); /* Initial position and slight rotation */
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0; /* Initially hidden */
}
.img-service img{
    width: 576px;
    height: 324px;
    border-radius: 15px;
    transition: transform 0.5s;
}
.img-service:hover::before {
    opacity: 1; /* Show the background box */
    transform: translate(-10px, 10px); /* Slide into place */
}
.img-service:hover img{
    transform: translate(10px, -10px);
}
.img-service2{
    position: relative;
}
.img-service2::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #e3800e; /* Solid color background */
    transform: translate(0px, 0px); /* Initial position and slight rotation */
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0; /* Initially hidden */
}
.img-service2 img{
    width: 576px;
    height: 324px;
    border-radius: 15px;
    transition: transform 0.5s;
}
.img-service2:hover::before {
    opacity: 1; /* Show the background box */
    transform: translate(10px, 10px); /* Slide into place */
}
.img-service2:hover img{
    transform: translate(-10px, -10px);
}
.service-text1{
    margin-left: 50px;
}
.service-text2{
    margin-right: 50px;
}
.service-text .hr{
    background-color: darkgoldenrod;
    width: 100%;
    height: 2px;
}
.service-title{
    font-size: 38px;
    margin: 10px 0;
}
.service-title2{
    font-size: 32px;
    letter-spacing: 5px;
    margin: 10px 0;
}
.service-desc{
    text-align: justify;
    font-weight: 200;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 24px;
}

/*------Contact------*/

#contact{
    background-color: #2a1a14;
    background-image: url('img/Lbackground.jpg');
    background-size: cover;
}
#contact .container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 100px;
}
.contact-map{
    width: 800px;
    height: 450px;
}
.map{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.contact-text{
    margin-left: 100px;
}
.contact-text .hr{
    background-color: darkgoldenrod;
    width: 100%;
    height: 2px;
}
.contact-title{
    font-size: 38px;
    font-weight: 400;
    margin: 10px 0;
    letter-spacing: 5px;
    color: #fff;
}
.contact-subtitle{
    font-size: 24px;
    font-weight: 400;
    color: darkgoldenrod;
    margin-bottom: 0px;
}
.contact-desc{
    text-align: justify;
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-top: 0px;
}
.email-div{
    display: flex;
}
.email-div a i{
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    margin-left: 12px;
}
.whatsapp-div{
    width: 55%;
    padding: 6px 7px;
    border-color: #e3800e;
    border-width: 1px;
    border-style: solid;
    background-color: transparent;
    border-radius: 20px;
    transition: 0.5s;
}
.whatsapp-div:hover{
    background-color: #e3800e;
}
.whatsapp-div a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
}
.whatsapp-div a p{
    margin: 0px;
}
.whatsapp-div a i{
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    margin-left: 12px;
}

/*Contact*/

.footer {
    background-color: #1b110d; /* Dark brown color */
    color: #fff; /* White text color for contrast */
    text-align: center;
    padding: 10px 5px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 3px;
}

@media only screen and (max-width: 320px){
    .hero{
        background-image: url('img/maintenance-M.jpg');
        background-size: 120%;
    }
    .hero .container{
        top: 20%;
    }
    .hero .container h1{
        top: 0px;
        text-align: center;
        font-size: 24px;
    }
    .hero .container h3{
        position: relative;
        top: -20px;
        font-size: 10.5px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }
    nav .nav-links{
        background: #2a1a14;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        display: flex;
        flex-direction: column;
    }
    nav .nav-links li{
        margin: 15px 25px;
        position: relative;
        top: 5%;
    }
    .nav-links li a{
        color: darkgoldenrod;
    }
    nav .nav-links .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
    }
    #about .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
    }
    .carousel {
        width: 288px;
        height: 162px;
        margin-bottom: 10px;
    }
    .img-about img{
        width: 288px;
        height: 162px;
    }
    .vid-about video{
        width: 288px;
        height: 162px;
    }
    .about-text{
        margin-left: 0px;
        text-align: center;
    }
    .about-desc{
        text-align: justify;
        font-size: 14px;
    }
    .about-high {
        height: auto;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-highL {
        width: 200px;
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }
    .about-highL .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-highL p {
        margin: 0;
        font-size: 14px;
    }
    #service .main-container{
        padding: 50px 0px;
    }
    .img-service img{
        width: 259px;
        height: 146px;
    }
    .img-service2 img{
        width: 259px;
        height: 146px;
    }
    #service .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
    }
    #service .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #service .service-title{
        font-size: 32px;
        margin: 10px 0;
        margin-top: 3%;
        text-align: center;
    }
    .service-title2{
        font-size: 16px;
        margin: 10px 0;
        text-align: center;
    }
    .service-subtitle{
        font-size: 12px;
        text-align: center;
    }
    .service-text1{
        margin-left: 0px;
    }
    .service-text2{
        margin-right: 0px;
    }
    .service-desc{
        text-align: center;
        font-size: 13px;
    }
    #contact .container{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .contact-map{
        width: 260px;
        height: 320px;
        margin-top: 20px;
    }
    .contact-text{
        margin-left: 0px;
    }
    .contact-desc{
        text-align: left;
    }
    #contact .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .footer p {
        font-size: 7px;
    }
}
@media only screen and (max-device-width: 375px) and (min-width: 321px){
    .hero{
        background-image: url('img/maintenance-M.jpg');
        background-size: 120%;
    }
    .hero .container{
        top: 20%;
    }
    .hero .container h1{
        top: 0px;
        text-align: center;
        font-size: 24px;
    }
    .hero .container h3{
        position: relative;
        top: -20px;
        font-size: 11px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }
    nav .nav-links{
        background: #2a1a14;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        display: flex;
        flex-direction: column;
    }
    nav .nav-links li{
        margin: 15px 25px;
        position: relative;
        top: 5%;
    }
    .nav-links li a{
        color: darkgoldenrod;
    }
    nav .nav-links .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
    }
    #about .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
    }
    .carousel {
        width: 302px;
        height: 170px;
        margin-bottom: 10px;
    }
    .img-about img{
        width: 302px;
        height: 170px;
    }
    .vid-about video{
        width: 302px;
        height: 170px;
    }
    .about-text{
        margin-left: 0px;
        text-align: center;
    }
    .about-desc{
        text-align: justify;
        font-size: 14.5px;
    }
    .about-high {
        height: auto;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-highL {
        width: 220px;
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }
    .about-highL .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-highL p {
        margin: 0;
        font-size: 14.5px;
    }
    #service .main-container{
        padding: 50px 0px;
    }
    .img-service img{
        width: 272px;
        height: 153px;
    }
    .img-service2 img{
        width: 272px;
        height: 153px;
    }
    #service .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
    }
    #service .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #service .service-title{
        font-size: 32px;
        margin: 10px 0;
        margin-top: 3%;
        text-align: center;
    }
    .service-title2{
        font-size: 16px;
        margin: 10px 0;
        text-align: center;
    }
    .service-subtitle{
        font-size: 12px;
        text-align: center;
    }
    .service-text1{
        margin-left: 0px;
    }
    .service-text2{
        margin-right: 0px;
    }
    .service-desc{
        text-align: center;
        font-size: 13.5px;
    }
    #contact .container{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .contact-map{
        width: 260px;
        height: 320px;
        margin-top: 20px;
    }
    .contact-text{
        margin-left: 0px;
    }
    .contact-desc{
        text-align: left;
    }
    #contact .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .footer p {
        font-size: 9.5px;
    }
}
@media only screen and (max-device-width: 425px) and (min-width:376px){
    .hero{
        background-image: url('img/maintenance-M.jpg');
        background-size: 120%;
    }
    .hero .container{
        top: 20%;
    }
    .hero .container h1{
        top: 0px;
        text-align: center;
        font-size: 24px;
    }
    .hero .container h3{
        position: relative;
        top: -20px;
        font-size: 12px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }
    nav .nav-links{
        background: #2a1a14;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        display: flex;
        flex-direction: column;
    }
    nav .nav-links li{
        margin: 15px 25px;
        position: relative;
        top: 5%;
    }
    .nav-links li a{
        color: darkgoldenrod;
    }
    nav .nav-links .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
    }
    #about .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
    }
    .carousel {
        width: 332px;
        height: 187px;
        margin-bottom: 10px;
    }
    .img-about img{
        width: 332px;
        height: 187px;
    }
    .vid-about video{
        width: 332px;
        height: 187px;
    }
    .about-text{
        margin-left: 0px;
        text-align: center;
    }
    .about-desc{
        text-align: justify;
        font-size: 14.5px;
    }
    .about-high {
        height: auto;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-highL {
        width: 260px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }
    .about-highL .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-highL p {
        margin: 0;
        font-size: 16px;
    }
    #service .main-container{
        padding: 50px 0px;
    }
    .img-service img{
        width: 315px;
        height: 178px;
    }
    .img-service2 img{
        width: 315px;
        height: 178px;
    }
    #service .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
    }
    #service .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #service .service-title{
        font-size: 32px;
        margin: 10px 0;
        margin-top: 3%;
        text-align: center;
    }
    .service-title2{
        font-size: 17px;
        margin: 10px 0;
        text-align: center;
    }
    .service-subtitle{
        font-size: 13px;
        text-align: center;
    }
    .service-text1{
        margin-left: 0px;
    }
    .service-text2{
        margin-right: 0px;
    }
    .service-desc{
        text-align: center;
        font-size: 14.5px;
    }
    #contact .container{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .contact-map{
        width: 320px;
        height: 320px;
        margin-top: 20px;
    }
    .contact-text{
        margin-left: 0px;
    }
    .contact-desc{
        text-align: left;
    }
    #contact .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .footer p {
        font-size: 11.5px;
    }
}
@media only screen and (max-device-width: 430px) and (min-width:426px){
    .hero{
        background-image: url('img/maintenance-M.jpg');
        background-size: 120%;
    }
    .hero .container{
        top: 20%;
    }
    .hero .container h1{
        top: 0px;
        text-align: center;
        font-size: 24px;
    }
    .hero .container h3{
        position: relative;
        top: -20px;
        font-size: 12px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }
    nav .nav-links{
        background: #2a1a14;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        display: flex;
        flex-direction: column;
    }
    nav .nav-links li{
        margin: 15px 25px;
        position: relative;
        top: 5%;
    }
    .nav-links li a{
        color: darkgoldenrod;
    }
    nav .nav-links .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
    }
    #about .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
    }
    .carousel {
        width: 332px;
        height: 187px;
        margin-bottom: 10px;
    }
    .img-about img{
        width: 332px;
        height: 187px;
    }
    .vid-about video{
        width: 332px;
        height: 187px;
    }
    .about-text{
        margin-left: 0px;
        text-align: center;
    }
    .about-desc{
        text-align: justify;
        font-size: 14.5px;
    }
    .about-high {
        height: auto;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-highL {
        width: 260px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }
    .about-highL .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-highL p {
        margin: 0;
        font-size: 16px;
    }
    #service .main-container{
        padding: 50px 0px;
    }
    .img-service img{
        width: 315px;
        height: 178px;
    }
    .img-service2 img{
        width: 315px;
        height: 178px;
    }
    #service .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
    }
    #service .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #service .service-title{
        font-size: 32px;
        margin: 10px 0;
        margin-top: 3%;
        text-align: center;
    }
    .service-title2{
        font-size: 17px;
        margin: 10px 0;
        text-align: center;
    }
    .service-subtitle{
        font-size: 13px;
        text-align: center;
    }
    .service-text1{
        margin-left: 0px;
    }
    .service-text2{
        margin-right: 0px;
    }
    .service-desc{
        text-align: center;
        font-size: 14.5px;
    }
    #contact .container{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .contact-map{
        width: 320px;
        height: 320px;
        margin-top: 20px;
    }
    .contact-text{
        margin-left: 0px;
    }
    .contact-desc{
        text-align: left;
    }
    #contact .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .footer p {
        font-size: 11.5px;
    }
}
@media only screen and (max-device-width: 768px) and (min-width: 431px){
    .hero .container{
        top: 20%;
    }
    .hero .container h1{
        top: 0px;
        text-align: center;
        font-size: 26px;
    }
    .hero .container h3{
        position: relative;
        top: -20px;
        font-size: 15px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }
    nav .nav-links{
        background: #2a1a14;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        display: flex;
        flex-direction: column;
    }
    nav .nav-links li{
        margin: 15px 25px;
        position: relative;
        top: 5%;
    }
    .nav-links li a{
        color: darkgoldenrod;
    }
    nav .nav-links .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
    }
    #about .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
    }
    .carousel {
        width: 498px;
        height: 281px;
        margin-bottom: 10px;
    }
    .img-about img{
        width: 498px;
        height: 281px;
    }
    .vid-about video{
        width: 498px;
        height: 281px;
    }
    .about-text{
        margin-left: 0px;
        text-align: center;
    }
    .about-desc{
        text-align: justify;
        font-size: 15px;
    }
    .about-high {
        height: auto;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-highL {
        width: 260px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }
    .about-highL .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-highL p {
        margin: 0;
        font-size: 14px;
    }
    #service .main-container{
        padding: 50px 0px;
    }
    .img-service img{
        width: 473px;
        height: 267px;
    }
    .img-service2 img{
        width: 473px;
        height: 267px;
    }
    #service .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
    }
    #service .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #service .service-title{
        font-size: 32px;
        margin: 10px 0;
        margin-top: 3%;
        text-align: center;
    }
    .service-title2{
        font-size: 18.5px;
        margin: 10px 0;
        text-align: center;
    }
    .service-subtitle{
        font-size: 14.5px;
        text-align: center;
    }
    .service-text1{
        margin-left: 0px;
    }
    .service-text2{
        margin-right: 0px;
    }
    .service-desc{
        text-align: center;
        font-size: 15px;
    }
    #contact .container{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .contact-map{
        width: 600px;
        height: 350px;
        margin-top: 20px;
    }
    .contact-text{
        margin-left: 0px;
    }
    .contact-desc{
        text-align: left;
    }
    #contact .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .footer p {
        font-size: 11.5px;
    }
}
@media only screen and (max-device-width: 820px) and (min-width: 769px){
    .hero .container{
        top: 20%;
    }
    .hero .container h1{
        top: 0px;
        text-align: center;
        font-size: 26px;
    }
    .hero .container h3{
        position: relative;
        top: -20px;
        font-size: 15px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }
    nav .nav-links{
        background: #2a1a14;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        display: flex;
        flex-direction: column;
    }
    nav .nav-links li{
        margin: 15px 25px;
        position: relative;
        top: 5%;
    }
    .nav-links li a{
        color: darkgoldenrod;
    }
    nav .nav-links .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
    }
    #about .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
    }
    .carousel {
        width: 498px;
        height: 281px;
        margin-bottom: 10px;
    }
    .img-about img{
        width: 498px;
        height: 281px;
    }
    .vid-about video{
        width: 498px;
        height: 281px;
    }
    .about-text{
        margin-left: 0px;
        text-align: center;
    }
    .about-desc{
        text-align: justify;
        font-size: 15px;
    }
    .about-high {
        height: auto;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-highL {
        width: 260px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }
    .about-highL .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-highL p {
        margin: 0;
        font-size: 14px;
    }
    #service .main-container{
        padding: 50px 0px;
    }
    .img-service img{
        width: 473px;
        height: 267px;
    }
    .img-service2 img{
        width: 473px;
        height: 267px;
    }
    #service .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
    }
    #service .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #service .service-title{
        font-size: 32px;
        margin: 10px 0;
        margin-top: 3%;
        text-align: center;
    }
    .service-title2{
        font-size: 18.5px;
        margin: 10px 0;
        text-align: center;
    }
    .service-subtitle{
        font-size: 14.5px;
        text-align: center;
    }
    .service-text1{
        margin-left: 0px;
    }
    .service-text2{
        margin-right: 0px;
    }
    .service-desc{
        text-align: center;
        font-size: 15px;
    }
    #contact .container{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .contact-map{
        width: 600px;
        height: 350px;
        margin-top: 20px;
    }
    .contact-text{
        margin-left: 0px;
    }
    .contact-desc{
        text-align: left;
    }
    #contact .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .footer p {
        font-size: 11.5px;
    }
}
@media only screen and (max-device-width: 1024px) and (min-width: 821px){
    .hero .container{
        top: 20%;
    }
    .hero .container h1{
        top: 0px;
        text-align: center;
        font-size: 26px;
    }
    .hero .container h3{
        position: relative;
        top: -20px;
        font-size: 15px;
    }
    nav .fa-solid {
        display: block;
        font-size: 25px;
    }
    nav .nav-links{
        background: #2a1a14;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        display: flex;
        flex-direction: column;
    }
    nav .nav-links li{
        margin: 15px 25px;
        position: relative;
        top: 5%;
    }
    .nav-links li a{
        color: darkgoldenrod;
    }
    nav .nav-links .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
    }
    #about .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 30px;
    }
    .carousel {
        width: 498px;
        height: 281px;
        margin-bottom: 10px;
    }
    .img-about img{
        width: 498px;
        height: 281px;
    }
    .vid-about video{
        width: 498px;
        height: 281px;
    }
    .about-text{
        margin-left: 0px;
        text-align: center;
    }
    .about-desc{
        text-align: justify;
        font-size: 15px;
    }
    .about-high {
        height: auto;
        padding: 20px;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-highL {
        width: 260px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }
    .about-highL .fa-solid {
        width: 50px;
        height: 50px;
        font-size: 26px;
        border-radius: 50%;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-highL p {
        margin: 0;
        font-size: 14px;
    }
    #service .main-container{
        padding: 50px 0px;
    }
    .img-service img{
        width: 473px;
        height: 267px;
    }
    .img-service2 img{
        width: 473px;
        height: 267px;
    }
    #service .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
    }
    #service .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #service .service-title{
        font-size: 32px;
        margin: 10px 0;
        margin-top: 3%;
        text-align: center;
    }
    .service-title2{
        font-size: 18.5px;
        margin: 10px 0;
        text-align: center;
    }
    .service-subtitle{
        font-size: 14.5px;
        text-align: center;
    }
    .service-text1{
        margin-left: 0px;
    }
    .service-text2{
        margin-right: 0px;
    }
    .service-desc{
        text-align: center;
        font-size: 15px;
    }
    #contact .container{
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
    }
    .contact-map{
        width: 600px;
        height: 350px;
        margin-top: 20px;
    }
    .contact-text{
        margin-left: 0px;
    }
    .contact-desc{
        text-align: left;
    }
    #contact .rev{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .footer p {
        font-size: 11.5px;
    }
}