@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
}

:root {
    --accent-color: #f1ede8;
    --text-color: #000;
    --bg-color: #fff;
    --accent2-color: #493620;
    --accent3-color: #896a4e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -15%;
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.padd-x {
    padding-left: 8vw !important;
    padding-right: 8vw !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.logo {
    font-size: 2vw;
    margin-bottom: 0;
}

.logo span {
    background-color: var(--accent2-color);
    padding: 0 5px;
    color: var(--bg-color);
}

.bx-menu-alt-right {
    display: none !important;
}



.menu {
    margin-bottom: 0;
}

.menu li {
    display: inline-block;
    list-style-type: none;
}

.menu li a {
    margin: 0 20px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
}

.herosection {
    margin-top: 3vw;
    margin-bottom: 12vw;
}

.herosection h1 {
    font-size: 4vw;
    font-weight: 600;
    line-height: 5.2vw;
}

.herosection .button {
    padding: 12px 30px;
    color: var(--bg-color);
    background-color: var(--accent3-color);
    text-decoration: none;
}

.herosection .img1 {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.herosection .img2 {
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.herosection .img3 {
    border-top-left-radius: 70%;
}

.herosection .img4 {
    width: 80%;
    border-bottom-right-radius: 50%;
}

.button.btn2 {
    background: none;
    border: 1px solid var(--accent3-color);
    color: var(--accent3-color);
}

.herosection .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-color);
    position: absolute;
    right: 21%;
    top: 5%;
}

.herosection .circle::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 25px;
    height: 25px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.heading {
    text-align: center;
    margin-bottom: 80px;
}

.heading h2 {
    font-weight: bold;
    color: var(--accent2-color);
    position: relative;
}

.heading h2::after {
    content: "";
    width: 100px;
    height: 2px;
    border-radius: 20px;
    background-color: var(--accent2-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}


.services {
    display: flex;
    margin: 15px 0;
    width: 80%;
    padding: 20px;
    transition: all .5s ease;
}

.services:hover {
    background-color: var(--bg-color);
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

.services.active {
    background-color: var(--bg-color);
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

.services .icon {
    width: 9%;
    margin-right: 20px;
    height: 9%;
}

form {
    display: flex;
    align-items: start;
    flex-direction: column;
}

form input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    color: var(--text-color);
    font-size: 1rem;
    margin: 3px 0;
}

form input::placeholder {
    font-family: "Merriweather", serif;

}

form textarea {
    border: none;
    outline: none;
    background: none;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    color: var(--text-color);
    font-size: 1rem;
}

form button {
    border: none;
    outline: none;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: var(--accent3-color);
    color: var(--bg-color);
}

footer {
    background-color: var(--accent-color);
    height: 100%;
    /* padding-top: 50px;
    padding-bottom: 50px; */
}

footer a {
    text-decoration: none;
    color: var(--text-color);
}

footer ul li {
    list-style: none;
    padding: 10px 0;
    font-size: 1.2rem;
}

footer ul li a {
    position: relative;
}

footer ul li a::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent2-color);
    bottom: 0;
    left: 0;
}

footer a:hover {
    color: var(--accent2-color);
}

footer a i {
    font-size: 1.5rem;
}

footer a p {
    font: 1.4rem;
    letter-spacing: .5px;
    word-spacing: 2px;
}



@media (max-width: 999px) {
    .bx-menu-alt-right {
        font-size: 2rem;
        font-weight: 200 !important;
        cursor: pointer;
        display: block !important;
        z-index: 9999;
    }

    body::before {
        width: 50vw;
        height: 50vw;
    }

    .logo {
        font-size: 2rem;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 9999;
        height: 0;
        width: 0;
        background-color: var(--accent-color);
        opacity: 0;
        pointer-events: none;
    }

    .menu.active{
        opacity: 1;
        pointer-events: auto;
        height: 100vh;
        width: 100%;
    }

    .menu li {
        display: block;
        padding: 10px 0;
    }

    .menu li a {
        font-size: 2.5rem;
    }

}

@media (max-width: 768px) {
    .herosection h1 {
        font-size: 2.8rem;
        line-height: 3rem;
    }

    .herosection .content {
        margin: 80px 0;
    }

    .services {
        width: 100%;
    }

    body::before {
        top: -2%;
    }
}

@media (max-width: 499px) {
    .herosection .circle {
        right: 13%;
        top: -3%;
    }
    body::before {
        top: -2.5%;
        width: 70vw;
        height: 70vw;
    }
    .herosection .content {
        margin: 50px 0;
    }

    .herosection h1 {
        font-size: 10vw;
        line-height: 10vw;
    }

    .padd-x {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}