/* font family */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #EEEEEE;
}

::-webkit-scrollbar-thumb {
    background-color: #075936;
}

html {
    scroll-behavior: smooth;
}

/* header section css */

.nav__bar {
    padding: 20px 10vw;
    display: flex;
    justify-content: space-between;
}

.nav__items {
    gap: 30px;
    margin-top: 30px;
    display: flex;
    align-items: end;
    flex-direction: column;
}

.social__icons {
    gap: 5px;
    display: flex;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 0;
    font-size: 20px;
    color: #fff;
    background-color: #157815;
}

.contact__links {
    gap: 25px;
    display: flex;
}

.contact__link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact__link .link {
    display: flex;
    flex-direction: column;
}

.contact__link i {
    font-size: 36px;
    color: #075936;
}

.contact__link .dark {
    font-family: 'lato';
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.light {
    font-size: 16px;
    font-family: 'lato';
    font-weight: 400;
    color: #999999;
}


/* Nav Bar css */

.nav {
    display: flex;
    background-color: #075936;
    padding: 10px 10vw;
    gap: 20px;
}

.nav li {
    list-style: none;
}

.nav li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Maven Pro';
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
}

.nav li a:hover {
    color: #157815;
}

/* hero section */

.hero {
    background: url('../images/hero__background.png');
    height: 96vh;
    mix-blend-mode: screen;
    opacity: 0.8;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero__content {
    padding: 16vw 10vw;
}

.sub__title {
    margin-left: 1vw;
    border-left: #075936 2px solid;
}

.sub__title span {
    padding-left: 5px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height, or 120% */

    display: flex;
    align-items: center;
    color: #fff;
}

.title h1 {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 72px;
    /* or 120% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

.desc p {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */

    display: flex;
    align-items: center;

    color: #FFFFFF;
}

.btn {
    margin-top: 5vw;
    width: fit-content;
}

.btn a {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */

    display: flex;
    align-items: center;
    text-align: center;
    text-decoration-line: underline;

    color: #FFFFFF;
    padding: 10px 25px;
    background-color: #157815;
    border-radius: 3px;

}

/* facilities section  */
.facilities {
    gap: 50px;
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0vw;
    justify-content: center;
}

.facility {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facility h2 {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    /* or 120% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #333333;
}

.facility p {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #666666;
}


/* about section css */

.about__us {
    background-color: #EEEEEE;
}

.about {
    padding: 100px 10vw;
    display: flex;
    align-items: center;
}


.content .sub__title {
    margin-left: 0;
    margin-bottom: 5px;
}


.content .sub__title span {
    color: #000;
}

.content h1 {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
    /* or 120% */

    margin-bottom: 20px;

    display: flex;
    align-items: center;

    color: #333333;
}

.content p {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */

    display: flex;
    align-items: center;

    color: #666666;
}

.about__img img {
    margin-left: 15px;
    width: 500px;
}


/* services css */

.service {
    padding: 60px 10vw;
}

.cards {
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
}



.center {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}





/* footer css */

footer {
    background-color: #212831;
    padding: 80px 10vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section p {
    margin-top: 30px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */

    display: flex;
    align-items: center;

    color: #F6F6F6;

}

.icons {
    display: flex;
    margin: 20px 40px;
    gap: 10px;
}

.icons i {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    /* identical to box height, or 100% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #157815;


}

.section .title {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 600;
    padding-bottom: 40px;
    font-size: 24px;
    line-height: 29px;
    /* or 120% */

    display: flex;
    align-items: center;
    position: relative;
    color: #FFFFFF;
}


.section .title::after {
    content: '';
    position: absolute;
    width: 40px;
    bottom: 0px;
    height: 2px;
    background-color: #075936;
}

.web__links {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.web__links .link {
    gap: 10px;
    display: flex;
    margin-left: -5px;
    align-items: center;
}

.web__links .link i {
    color: #157815;
    font-size: 20px;
}

.web__links .link span {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */

    display: flex;
    align-items: center;
    transition: 0.5s;
    color: #FFFFFF;

}

.web__links .link span:hover {
    color: #157815;
    transform: translateX(10px);
}

.web__links a{
    text-decoration: none;
}



/* copy section css */

.copy {
    background: #157815;
    position: static;
    bottom: 0px;
    width: 100%;
}


.copy span {
    /* padding  */
    padding: 15px 10vw;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;

    display: flex;
    align-items: center;

    color: #FFFFFF;
}


@media screen and (max-width:785px) {
    .about__img{
        display: none;
    }
}