/* ###ROOT### */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-white: #ffffff;
    --bg-black: #000000;
    --bg-dark-green: #004E4A;
    --bg-light-green: #007D76;
    --bg-light-yellow: #FFF9E3;
    --bg-btn-dull-yellow: #F9E7A1;
    --bg-btn-yellow-dark: #e8cf76;
    --bg-btn-red: #C8271C;
    --bg-btn-red-dark: #8b1108;
    --border-bright-yellow: #FFD21D;
    --parchi-bg-black: #1D1D1D;
    --parchi-text-black: #414141;
    --parchi-dull-white: #F9F9F9;
    --parchi-bg-grey: #C8C8C8;
    --web-nav-yellow: #FFAE00;
}

.btn-yellow-web {
    color: var(--bg-dark-green);
    background-color: var(--border-bright-yellow);
}

.web-nav {
    width: 100%;
    padding: 1.5rem;
}

.web-nav-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.web-nav-options a {
    font-weight: 600;
    color: var(--bg-dark-green);
    position: relative;
    cursor: pointer;
    transition: color .2s ease;
}

.web-nav-options a::after {
    content: '';
    background-color: var(--web-nav-yellow);
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.web-nav-options a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.web-main {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow-x: unset;
}

.web-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
    object-fit: contain;
    object-position: top;
}

.web-container {
    padding: 1rem 4rem;
}

.web-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80dvh;
}

.web-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0 4rem;
    min-height: 100dvh;
    margin-bottom: 10rem;
}

.web-hero-title h1 {
    font-family: "Noto Serif", serif;
    font-weight: 700;
    color: var(--bg-dark-green);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.web-hero-title h4 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--bg-dark-green);
}

.web-hero-data {
    width: 50%;
    color: var(--bg-dark-green);
    font-weight: 500;
}

.service-title h1 {
    color: var(--bg-white);
    margin-bottom: 10rem;
}

.service-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    color: var(--bg-white);
}

.services {
    width: 30%;
    text-align: start;
}

.services-head h5 {
    font-family: "Noto Serif", serif;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-body {
    width: 80%;
    border-top: 1px solid var(--bg-white);
    padding: 1rem 0 0;
}

.services-body h6 {
    font-size: 1.2rem;
    margin-bottom: .8rem;
}

.services-body p {
    font-weight: 400;
}

.stats-conatiner {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5rem 1rem;
    width: 100%;
}

.stats-card {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--border-bright-yellow);
    /* font-family: "Noto Serif", serif; */
    text-align: center;
    flex-direction: column;
    gap: 1rem;
}

.stats-card-head h5 {
    font-size: 4rem;
    font-weight: 700;
}

.stats-card-data span {
    font-size: 2rem;
    font-weight: 600;
}

.quality-conatiner {
    min-height: 100dvh;
    width: 100%;
    background-color: var(--bg-dark-green);
    padding: 10rem 4rem;
    color: var(--bg-white);
}

.quality-head h1 {
    font-family: "Noto Serif", serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 6rem;
    text-align: center;
}

.quality-data {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2rem 1rem;
    flex-wrap: wrap;
}

.quality-card {
    width: 20%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    min-height: 25rem;
}

.quality-card-image img {
    height: 10rem;
    width: 10rem;
    object-fit: contain;
}

.quality-card-title span {
    font-family: "Noto Serif", serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-container {
    min-height: 100dvh;
    width: 100%;
    background-color: var(--bg-white);
    padding: 10rem 4rem 5rem;
    color: var(--bg-dark-green);
}

.about-container h1 {
    font-family: "Noto Serif", serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 6rem;
    text-align: center;
}

.about-body {
    overflow: hidden;
    display: flex;
    align-items: start;
    gap: 1rem;
    height: 80dvh;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 48%;
    font-weight: 600;
    text-align: justify;
}

.about-image {
    display: flex;
    width: 48%;
    align-items: start;
    gap: 1rem;
    height: 100%;
}

.img-big {
    width: 48%;
}

.img-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img {
    display: flex;
    flex-direction: column;
    width: 48%;
    height: 100%;
    gap: 1rem;
}

.about-img img {
    object-fit: cover;
    width: 100%;
    height: 48%;
    flex-grow: 1;
}

.contact-form-container {
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-container form input,
.contact-form-container form textarea {
    background: transparent;
    border: 1px solid var(--bg-white);
    padding: .5rem 1rem;
    border-radius: 20px;
    resize: none;
    width: 80%;
    margin: auto;
    color: var(--bg-white);
}

.contact-form-container form input::placeholder,
.contact-form-container form textarea::placeholder {
    color: var(--bg-white);
}

.contact-form-container form button {
    width: fit-content;
    margin: auto;
}

.footer-container {
    border-block: dashed 1px var(--bg-white);
    padding: 2rem 4rem;
    background-color: var(--bg-dark-green);
    display: flex;
    justify-content: space-between;
    align-items: start;
    overflow: hidden;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 40%;
}

.foot-logo img {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
}

.foot-info h4,
.footer-contact h4 {
    font-family: "Noto Serif", serif;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.foot-info p {
    font-size: .9rem;
    color: var(--bg-white);
}

.footer-contact {
    width: 40%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: var(--bg-white);
}

.info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
}

.info span a {
    color: var(--bg-white);
}

.info span:first-child {
    width: 10%;
}

.foot-bottom {
    background-color: var(--bg-dark-green);
    color: var(--bg-white);
    display: flex;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}


@media only screen and (max-width: 767px) and (min-width: 280px){

    .web-nav-options {
        justify-content: space-between;
        width: fit-content;
        gap: 1.5rem;
        margin: auto;
    }

    .web-nav-options a {
        font-size: .8rem;
    }

    .web-hero-section {
        margin-top: 2rem;
    }

    .web-bg {
        object-fit: cover;
        height: 50%;
    }

    .web-hero-container {
        padding: 0 1rem;
    }

    .web-hero-logo img {
        height: 5rem;
        width: 5rem;
        object-fit: contain;
    }

    .web-hero-title h1,
    .quality-head h1,
    .about-head h1 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .web-hero-title h4 {
        font-size: 1rem;
    }

    .web-hero-data,
    .web-hero-cta,
    .services-body,
    .services,
    .stats-card,
    .quality-card,
    .about-info,
    .about-image,
    .contact-form-container,
    .contact-form-container form input,
    .contact-form-container form textarea,
    .contact-form-container form button,
    .footer-brand,
    .footer-contact {
        width: 100%;
    }

    .service-container {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-card-head h5 {
        font-size: 3rem;
    }

    .stats-card-data span {
        font-size: 1.5rem;
    }

    .quality-conatiner,
    .about-container,
    .footer-container {
        padding: 2.5rem 1rem;
    }

    .quality-data {
        flex-direction: column;
    }

    .about-body {
        flex-direction: column;
        height: fit-content;
    }

    .about-image {
        height: 20rem;
    }

    .footer-container{
        flex-direction: column;
    }

    .info span:first-child {
        width: 15%;
    }

    .foot-bottom span {
        font-size: .6rem;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .web-bg {
        height: 50%;
        object-fit: cover;
    }

    .web-hero-data,
    .contact-form-container {
        width: 80%;
    }

    .web-hero-container {
        margin-bottom: 0;
    }

    .quality-card {
        width: 48%;
    }

    .about-info,
    .about-image,
    .footer-brand,
    .footer-contact {
        width: 100%;
    }

    .about-body {
        flex-direction: column;
        height: fit-content;
    }

    .about-image {
        height: 20rem;
    }

    .quality-conatiner,
    .about-container {
        padding: 4rem;
    }

    .footer-container{
        flex-direction: column;
        gap: 3rem;
    }

    .foot-bottom span {
        font-size: .8rem;
    }
}
