body, html {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

.container {
    max-width: 1080px;
    width: 95%;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

p, h1, h2, h3, h4, h5, h6 {
    padding: 5px 0px;
    margin: 5px 0px;
}

body {
    line-height: 1.2;
}

p, li {
    font-size: 16px;
}

a.button {
    padding: 5px 15px;
    background: rgb(255, 195, 0);
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    height: 25px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease 0s;
    box-shadow: rgb(0, 0, 0) 2px 2px 6px;
    color: rgb(0, 0, 0) !important;
}

a.button:hover {
    background: rgb(255, 250, 240);
    box-shadow: rgb(0, 0, 0) 2px 2px 0px 3px;
    color: rgb(0, 0, 0) !important;
}

nav {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgb(37, 34, 35);
    color: white;
    box-shadow: rgb(0, 0, 0) 0px 0px 10px;
    transition: all 0.2s ease 0s;
}

nav .brand {
    font-size: 1.5rem;
    width: 100%;
}

nav .brand a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
}

nav .brand a img {
    height: 80px;
}

nav .menu {
    display: flex;
    list-style: none;
    padding: 0px;
    align-items: center;
}

nav .menu li {
    margin-left: 1rem;
    display: flex;
    justify-content: center;
}

nav .menu a {
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
}

nav .menu {
    transition: transform 0.3s ease-in-out 0s;
}

header {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    overflow: hidden;
}

header img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    filter: brightness(0.3);
}

header h1 {
    font-size: 2rem;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
}

header a {
    color: rgb(255, 195, 0);
    font-weight: 700;
}

header a:hover {
    color: rgb(255, 220, 103);
}

header p {
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
}

.slogan {
    font-size: 25px;
    font-weight: 500;
    border-bottom: 2px solid rgb(255, 195, 0);
    width: fit-content;
}

section {
    padding: 2rem;
    max-width: 920px;
    width: 920px;
    margin-left: 50%;
    transform: translateX(-50%);
}

#background-div {
    color: rgb(255, 255, 255);
    background-color: rgb(37, 34, 35) !important;
}

#background-div ul {
    padding: 0px;
    text-align: justify;
}

#background-div strong {
    font-weight: 800;
    color: rgb(255, 195, 0);
}

.about, .features {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about img {
    max-width: 50%;
    margin-right: 1rem;
    box-shadow: rgb(0, 0, 0) 5px 5px 10px;
}

.features img {
    max-width: 50%;
    margin-left: 1rem;
    box-shadow: rgb(0, 0, 0) 5px 5px 10px;
}

.about .content, .features .content {
    max-width: 50%;
    font-size: 14px;
    text-align: left;
}

.about p {
    text-align: justify;
}

.services {
    transition: all 0.2s ease 0s;
    text-align: center;
    background: rgb(229, 229, 229);
    box-shadow: rgb(0, 0, 0) 0px 0px 10px;
}

.services .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services .card {
    flex: 1 1 30%;
    margin: 1rem;
    padding: 1rem;
    border-radius: 4px;
    transition: all 0.2s ease 0s;
    box-shadow: rgb(0, 0, 0) 5px 5px 10px;
}

.services .card:hover {
    transition: all 0.2s ease 0s;
    background: rgb(37, 34, 35);
    color: rgb(255, 255, 255);
}

.gallery-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0px 0px 20px;
    color: rgb(34, 34, 34);
    text-align: center;
}

.gallery-section {
    padding: 64px 0px;
    display: flex;
    justify-content: center;
}

.lp-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0px auto;
}

.lp-gallery a {
    width: 43.5vw;
    height: 43.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.lp-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media (min-width: 981px) {
    .lp-gallery a {
        width: calc(28.3333vw);
        max-width: 350px;
        height: calc(28.3333vw);
        max-height: 350px;
    }
}

.testimonials-background {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0px;
    overflow: hidden;
    text-align: center;
}

.testimonial .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
}

.slide p {
    text-align: center;
    padding: 0px 160px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255, 255, 255);
}

.slide .quote-icon {
    font-size: 30px;
    color: rgb(197, 212, 255);
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details .name {
    font-size: 14px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease 0s;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after, .nav-btn::before {
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: rgb(64, 112, 244);
}

@media screen and (max-width: 768px) {
}

.contact {
    display: flex;
    align-items: center;
    flex-flow: column wrap;
    box-shadow: rgb(0, 0, 0) 0px 0px 10px;
    background: rgb(229, 229, 229);
}

.contact p {
    text-align: justify;
}

footer {
    background-color: rgb(37, 34, 35);
    color: white;
    text-align: center;
    width: 100%;
    padding-block: 1rem; }

@media (max-width: 1024px) {
    nav .brand {
        width: 85%;
    }

    .services .card {
        flex: 1 1 45%;
    }

    section {
        padding: 2rem;
        max-width: 1080px;
        width: auto;
        margin-left: 0px;
        transform: none;
    }
}

@media (max-width: 450.9px) {
    nav {
        padding: 30px 10px !important;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px;
    }

    .hamburger {
        display: block;
        width: 15%;
        z-index: 10;
    }

    .menu .hamburger {
        width: 0px;
        position: absolute;
        bottom: 50px;
    }

    nav {
        position: fixed;
        width: 100vw;
        padding: 30px 20px;
        top: 0px;
        flex-direction: column;
        height: 60px;
        z-index: 999;
        justify-content: center;
    }

    nav > div {
        width: 100%;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        align-items: center;
    }

    nav .menu {
        flex-direction: column;
        display: flex;
        width: 100vw;
        height: 100vh;
        background-color: rgb(37, 34, 35);
        position: absolute;
        top: -1rem;
        left: 100%;
        z-index: 0;
        transition: all 1s ease 0s;
        place-content: center;
    }

    nav .menu.active {
        top: -1rem;
        left: 0px;
    }

    nav .menu li {
        margin: 0px;
        text-align: center;
        padding: 1rem 0px;
    }

    header {
        margin-top: 40px;
        max-height: 550px;
    }

    .about {
        flex-direction: column-reverse;
    }

    .features {
        flex-direction: column;
    }

    .about img, .features img {
        max-width: 100%;
        margin-right: 0px;
        margin-bottom: 1rem;
    }

    .about .content, .features .content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .features img {
        margin-top: 20px;
    }

    .services .card {
        flex: 1 1 100%;
        margin: 10px 0px;
    }

    .testimonial {
        width: 100%;
    }

    .slide p {
        padding: 0px 20px;
    }

    .nav-btn {
        display: none !important;
    }
}

@media (min-width: 810px) {
    nav .brand a {
        text-wrap: nowrap;
    }
}

.contact h2 {
    text-align: center;
}

#callnowbutton {
    display: none;
}

@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999;
        cursor: pointer;
        bottom: 10px;
        display: inline-block;
        background-color: rgb(129, 215, 66);
        color: rgb(255, 255, 255);
        border-radius: 4px;
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
    }

    #callnowbutton a img {
        height: 2em;
    }
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    background: rgb(255, 195, 0);
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s ease 0s;
    margin: 0px 10px;
}

.socials a:hover {
    background: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.socials a img {
    width: 20px;
    height: auto;
}

.socials a:hover i {
    color: rgb(255, 255, 255);
}
