:root {
    --accent-color: #a7c957;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: black;
}

ul,
li {
    list-style: none;
    display: inline-block;
}

a {
    text-decoration: none;
    display: inline-block;
    color: black;
    font-size: 1.6rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.872rem;
}

h4 {
    font-size: 1.6rem;
}

p {
    font-size: 1.6rem;
}

button {
    cursor: pointer;
    transition-duration: 300ms;
    color: black;
}

a {
    cursor: pointer;
    transition-duration: 300ms;
}

section {
    margin: 80px auto;
}


/* CONTAINER */
.container {
    width: 80%;
    margin-inline: auto;
}

@media screen and (max-width: 992px) {
    .container {
        width: 90%;
    }
}

/* CONTAINER */

/* HEADER */
header {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.277), rgba(0, 0, 0, 0.284)), url(./assets/images/header-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navbar .menu {
    display: flex;
    gap: 40px;
}

.navbar .menu>h1,
.navbar .menu>h3 {
    display: none;
}

.navbar .menu li i {
    display: none;
}

.navbar .menu li a {
    color: rgba(255, 255, 255, 0.832);
    transition-duration: 300ms;
}

.navbar .menu li a:hover {
    color: white;
}

.navbar .our-app-btn {
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.507);
    color: white;
    font-weight: bold;
    border-radius: 100px;
    position: relative;
}

.navbar .our-app-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.202);
    border-radius: 100px;
    filter: blur(1px);
}

.navbar .our-app-btn:hover::before {
    background-color: rgba(172, 255, 47, 0.219);
}

.navbar .hamburger {
    display: none;
}

.navbar .hamburger-inner,
.navbar .hamburger-inner::before,
.navbar .hamburger-inner::after {
    background-color: white;
}

.navbar .hamburger.is-active .hamburger-inner,
.navbar .hamburger.is-active .hamburger-inner::before,
.navbar .hamburger.is-active .hamburger-inner::after {
    background-color: white;
}

.hero {
    margin-top: 100px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    max-width: 400px;
    margin-bottom: 20px;
    line-height: 2;
}

.hero button {
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.507);
    color: white;
    font-weight: bold;
    border-radius: 100px;
    position: relative;
}

.hero button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.202);
    border-radius: 100px;
    filter: blur(1px);
}

.hero button:hover::before {
    background-color: rgba(172, 255, 47, 0.219);
}


@media screen and (max-width: 992px) {
    .navbar .menu {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .navbar .menu {
        position: absolute;
        top: 0;
        left: -100%;
        flex-direction: column;
        width: 250px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.705);
        opacity: 0;
        backdrop-filter: blur(20px);
        transition: all .5s ease;
        ;
    }

    .navbar .menu.menu-active {
        left: 0;
        opacity: 1;
    }

    .navbar .menu li a {
        color: black;
    }

    .navbar .menu>h1 {
        display: block;
        color: black;
        border-bottom: 1px solid rgba(0, 0, 0, 0.192);
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .navbar .menu>h3 {
        display: block;
        color: gray;
        padding-left: 10px;
    }

    .navbar .menu li i {
        display: inline-block;
        color: gray;
        font-size: 24px;
        width: 50px;
        text-align: right;
        margin-right: 10px;
        /* padding-left: 10px; */
    }

    .navbar .hamburger {
        display: inline-block;
        /* padding: 0; */
    }

    .navbar .our-app {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar .menu li a:hover {
        color: gray;
    }
}

@media screen and (max-width: 475px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        padding-right: 50px;
    }
}

/* HEADER */

/* Our House */
.our-house {
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
    color: black;
    display: flex;
    align-items: center;
}

.our-house .container>h1,
.our-house .container>p {
    text-align: center;
}

.our-house .container>h1 {
    font-weight: 700;
    margin-bottom: 5px;
}

.our-house .swiper {
    margin-top: 50px;
    padding-bottom: 50px;
}

.our-house .swiper .swiper-slide:hover {
    cursor: grab;
}

.our-house .swiper .swiper-slide:hover:active {
    cursor: grabbing;
}


.our-house .swiper .swiper-slide img {
    width: 100%;
    height: 200px;
    /* border: 1px solid rgba(0, 0, 0, 0.301); */
    border-radius: 10px;
}

.our-house .swiper .house-desc {
    margin-top: 10px;
}

.our-house .swiper .house-desc p {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.627);
    margin-bottom: 5px;
}

.our-house .swiper .house-desc h4 {
    color: rgba(0, 0, 0, 0.808);
}

.our-house .swiper .swiper-slide h2 {
    font-size: 2rem;
}

.btn-our-house {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    padding: 10px 30px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.514);
    background-color: #a7c957;
    transition-duration: 300ms;
}

.btn-secondary:hover {
    background-color: #bcdb73;
}

/* Our House */

/* About Us */
.about {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.about-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.about-box .box img {
    width: 100%;
    border-radius: 20px;
    max-width: 800px;
}

.about-box .box:nth-child(1) {
    position: relative;
}

.about-box .box:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #a7c957;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    transform: translate(20px, 20px);
    opacity: 50%;
}

.about-box .box h1 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-box .box p {
    margin-bottom: 10px;
    line-height: 2;
}

@media screen and (max-width: 1200px) {
    .about-box .box h1 {
        font-size: 4rem;
    }

    .about-box .box p {
        font-size: 1.4rem
    }

    .about-box .box:nth-child(1)::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-color: #a7c957;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        z-index: -1;
        transform: translate(20px, 20px);
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .about-box {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .about-box .box img {
        width: 100%;
    }

    .about-box .box h1 {
        font-size: 3.3rem;
    }

    .about-box .box p {
        line-height: 1.5;
    }
}

@media screen and (max-width: 475px) {
    .about-box {
        grid-template-columns: 1fr;
    }

    .about-box .box h1 {
        font-size: 3rem;
        line-height: 1.5;
    }

    .about-box .box p {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .about-box .box img {
        width: 100%;
    }

    .about-box .box:nth-child(1)::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-color: #a7c957;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        z-index: -1;
        transform: translate(20px, 20px);
        opacity: 0;
    }
}

/* About Us */

/* Services */
.services {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
    min-height: 120vh;
    display: flex;
    align-items: center;
    background: url(./assets/images/about-bg.jpeg);
    background-position: center;
    background-size: cover;
}

.services .container>h1,
.services .container>p {
    text-align: center;
    color: white;
}

.services-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.services-box .box {
    text-align: center;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.216);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.205);
    background-color: rgba(255, 255, 255, 0.812)
}


.services-box .box i {
    margin-bottom: 30px;
    font-size: 3rem;
}

.services-box .box h3 {
    margin-bottom: 10px;
}

.services-box .box p {
    line-height: 1.8;
}

@media screen and (max-width: 992px) {
    .services-box {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .services-box {
        grid-template-columns: 1fr;
    }
}

/* Services */

/* Apps */
.app {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.app-box {
    width: 100%;
    height: 40vh;
    background-image: url(./assets/images/recover-img.jpg);
    background-repeat: no-repeat;
    background-position: -400px -400px;
    position: relative;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.503);
    border-radius: 20px;
}

.app-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #a7c957;
    border-radius: 20px;
    opacity: 50%;
    z-index: -1;
    transform: translate(20px, 20px);
}

.app-box .box {
    position: absolute;
    z-index: 1;
    color: white;
    text-align: center;
    padding-inline: 20px;
}

.app .box div img {
    width: 50px;
}

.app-box .box h1,
p {
    margin-bottom: 10px;
}

.app-box .box div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

/* Apps */

/* Feedback */
.feedback {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
}

.feedback .container>h1,
.feedback .container>p {
    text-align: center;
}

.feedback .container>h1 {
    line-height: 1.3;
    margin-bottom: 10px;
}

.feedback-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.feedback-box .box {
    display: none;
}

.feedback-box .box:nth-child(1),
.feedback-box .box:nth-child(2),
.feedback-box .box:nth-child(3) {
    display: inline-block;
}

.feedback-box .box>p {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.212);
    line-height: 2;
}

.feedback-box .box .people {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.feedback-box .box .people .people-desc p {
    font-weight: 600;
    color: grey;
}

.feedback-box .box .people img {
    width: 70px;
    border-radius: 100%;
}

.feedback .load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.feedback .load-more .load-more-btn {
    padding: 10px 30px;
    border-radius: 100px;
    background-color: var(--accent-color);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.feedback .load-more .load-more-btn:hover {
    background-color: white;
    color: var(--accent-color);
}

.feedback .load-more .load-more-btn i {
    margin-left: 10px;
}

/* Feedback */

/* Footer */
.footer {
    width: 100%;
    min-height: 50vh;
    padding-top: 150px;
}

.footer-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-box .box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* align-items: center; */
}

.footer-box .box .footer-icon {
    display: flex;
    gap: 10px;
}

.footer-box .box .footer-icon i {
    cursor: pointer;
    transition-duration: 200ms;
    font-size: 2.4rem;
}

.footer-box .box .footer-icon i:hover {
    color: var(--accent-color);
    scale: 1.1;
}

.footer-box .box a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-box .box p {
    font-size: 1.4rem;
    line-height: 2;
}

.footer-box .box i {
    margin-right: 5px;
}

.footer-box .box:nth-child(2) {
    padding-left: 50px;
}

@media screen and (max-width: 975px) {
    .footer-box .box:nth-child(2) {
        padding-left: 80px;
    }

    .footer-box .box:nth-child(3) {
        padding-left: 50px;
    }
}

@media screen and (max-width: 768px) {
    .footer-box {
        row-gap: 40px;
    }

    .footer-box .box:nth-child(2) {
        padding-left: 0;
    }

    .footer-box .box:nth-child(3) {
        padding-left: 0;
    }
}

/* Footer */

/* Copyrgiht */
.copyright {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.copyright p {
    line-height: 2;
    font-size: 1.4rem;
    padding: 0 20px;
}

.copyright p span {
    font-weight: bold;
}

/* Copyrgiht */