body {
    /* font-family: "Playfair Display", serif; */
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

* {
    padding: 0;
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --green: #365140;
    --primary-color: #fcfbf8;
    --secondary-color: #ebe7e0;
    --complementory-color: #d55437;
}

.mb-5 {
    margin-bottom: 5em;
}

.mb-4 {
    margin-bottom: 4em;
}

.mb-3 {
    margin-bottom: 3em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mt-5 {
    margin-top: 5vh;
}

.mt-4 {
    margin-top: 4vh;
}

.mt-3 {
    margin-top: 3vh;
}

.mt-2 {
    margin-top: 2vh;
}

ul li {
    list-style: none;
}

h1 {
    font-size: 60px;
    line-height: 1.15em;
    font-weight: 500;
}

h2 {
    font-size: 47px;
    line-height: 1.21em;
    font-weight: 400;
}

h3 {
    font-size: 40px;
    line-height: 1.325em;
    font-weight: 400;
}

h4 {
    font-size: 30px;
    line-height: 1.35em;
}

h5 {
    font-size: 24px;
    line-height: 1.5em;
    font-weight: 400;
}

h6 {
    font-size: 18px;
    line-height: 1.5em;
}

p {
    font-size: 18px;
    line-height: 1.75em;
    font-weight: 400;
}

.scalimg {
    transition: 0.4s ease;
}

.scalimg:hover {
    scale: 1.05;
}

/******************************header part***************************************/

header {
    height: 100px;
    width: 100%;
    display: flex;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    padding: 0 3vw;
    position: fixed;
}

header a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

header p {
    color: white;
    font-size: 18px;
}

nav ul {
    display: flex;
    justify-content: flex-start;
}

/* for squeeze transition */

.nav {
    scale: 0.95;
    transition: 0.35s linear;

    a {
        color: black;
    }

    .dropdown-content a {
        color: white;
    }

    p {
        color: black;
    }
}

.head {
    background-color: rgb(254, 254, 255);
    z-index: 3;
    box-shadow: 0px 0px 0px 0.1px rgb(99, 97, 97);
}

nav ul li a,
.contact>* {
    margin-right: 3vw;
}

.contact {
    display: flex;
    align-items: center;
}

.show {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    display: none;
    padding-top: 10px;
    height: auto;
    width: max-content;
    line-height: 50px;
    transition: 0.5s ease;
}

.dropdown-content li {
    padding-left: 5px;
    background-color: rgba(0, 0, 0, 0.5);

}

.dropdown:hover .dropdown-content {
    display: block;
    color: white;
}



#toggle {
    display: none;
}

#toggle #close {
    display: none;
}

footer {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    text-align: center;
    color: white;
    align-content: center;
    transform: translateY(200px);
    transition: 1s ease;
}
.sun{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4vw;
    height: 4vw;
    animation: sun 8s linear;
}
@keyframes sun{
    0%{
        transform: rotate(0deg) translate(0, 0) rotate(0deg);
    }
    100%{
        transform: rotate(90deg) translate(100vw, 0) rotate(180deg);
    }
}


footer>* {
    margin-top: 15px;
}

footer .logo,
footer .tagline,
footer .social {
    transform: translateY(50px);
    transition: 0.7s ease;
}

footer .social {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

footer div::after {
    content: "";
    width: 100vw;
    height: 100vw;
    background-color: var(--green);
    position: absolute;
    border-radius: 100%;
    top: 0%;
    left: 0;
    z-index: -2;
}
.footer a{
    color: white;
}

.container {
    width: 100%;
    height: 100vh;
}

.link {
    text-decoration: none;
    color: black;
}

/* **************************************Mobile Layout**************************************** */

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.5em;
        line-height: 1.21em;
    }

    h2 {
        font-size: 2em;
        line-height: 1.21em;
    }

    h3 {
        font-size: 1.5em;
    }

    #toggle {
        display: block;
    }

    header {
        width: 100%;
        position: relative;
        background-color: #fcfbf8;
        z-index: 10;
    }

    .contact {
        display: none;
    }

    nav ul {
        left: 0;
        display: block;
        position: absolute;
        top: -400%;
        width: 100%;
        transition: 0.75s ease;
        z-index: -1;
        line-height: 2.5em;
        padding: 1vw;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .dropdown-content {
        top: 0;
        left: 80px;
        padding-top: 0;
        z-index: 10;
    }

    .dropdown-content li {
        background-color: transparent;
    }

    footer div::after {
        border-radius: 0%;
        height: 100%;
    }

    .m-mb-1 {
        margin-bottom: 1em;
    }

    .m-mb-2 {
        margin-bottom: 2em;
    }

    .m-mb-3 {
        margin-bottom: 3ch;
    }

    .m-mb-4 {
        margin-bottom: 4em;
    }

    .m-mb-5 {
        margin-bottom: 5em;
    }
}
