@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap);

:root {
    --header-height: 3rem;
    --section-space: 3.4rem;
    --first-color:#289965;
    --second-color: #eefbf7;
    --body-color: #fff;
    --title-color: #201e1e;
    --subtitle-color: rgba(32, 30, 30, .6);
    --text-color: #828282;
    --text-hover-color: #505050;
    --body-font: Montserrat-Light, Montserrat
}

@media screen and (min-width:768px) {
    :root {
        --header-height: 95px;
        --section-space: 4.8rem
    }
}

@media screen and (min-width:1140px) {
    :root {
        --header-height: 95px;
        --section-space: 6.4rem
    }
}

@media screen and (min-width:1580px) {
    :root {
        --header-height: 125px;
        --section-space: 8.75rem
    }
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body-font) !important;
    background-color: var(--body-color);
    line-height: 1.4;
    min-height: 100vh;
    overflow: scroll-y
}

ul {
    list-style: none
}

a {
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 90%
}

@media screen and (min-width:1140px) {
    .container {
        width: 80%
    }
}

@media screen and (min-width:1580px) {
    .container {
        width: 1400px
    }
}

.app-header {
    height: var(--header-height);
    background: #a0e3c4;
    color: #fff;
}

.nav__logo {
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: #a0e3c4;
}

.nav__logo img {
    height: 60%
}

.nav__logo span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--title-color);
    margin-left: .5rem
}

.nav__menu {
    display: none
}

.nav__item a {
    color: #000;
    font-weight: 500;

}

.nav__item a:hover {
  
    color: #063723;
     border-bottom: 3px solid #0c6e46;
}
.active-link{
    color: #063723;
     border-bottom: 3px solid #0c6e46;
}

@media screen and (min-width:768px) {
    .nav__logo img {
        height: 48px;
        width: 48px
    }

    .nav__logo span {
        font-size: 1.5rem
    }

    .nav__menu {
        display: block
    }

    .app-header>.container {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .nav__list {
        display: flex;
        gap: 30px
    }
}

@media screen and (min-width:1140px) {
    .nav__list {
        gap: 45px
    }

    .nav__item a {
        font-size: 1.15rem
    }
}

@media screen and (min-width:1580px) {
    .nav__logo img {
        width: 50px;
        height: 50px
    }

    .nav__logo span {
        font-size: 2rem;
        margin-left: 1.4rem
    }

    .nav__list {
        gap: 60px
    }

    .nav__item a {
        font-size: 1.25rem
    }
}

.app-footer {
    padding: var(--section-space) 0;
    background-color: var(--first-color)
}

.footer-title {
    display: flex;
    align-items: center
}

.footer-title-image {
    width: 28px;
    height: 28px
}

.footer-title-value {
    font-size: 1rem;
    font-weight: 500;
    margin-left: .5rem;
    text-transform: uppercase
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0
}

.footer-links a {
    color: var(--text-color);
    font-size: .975rem;
    text-decoration: underline;
    margin-right: 1.5rem;
    margin-bottom: 1rem;

}

.footer-links a:hover {
    color: var(--text-hover-color)
}

.footer-company {
    margin: 2rem 0
}

.footer-company-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: .2rem
}

.footer-company-description {
    font-size: 1.1rem;
    color: var(--title-color)
}

.footer-contact-item {
    color: var(--text-color);
    font-size: .975rem;
    margin-bottom: .5rem
}

.copyright {
    font-size: .975rem;
    color: var(--text-color);
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #afafaf;
    padding-top: 1rem
}

@media screen and (min-width:1140px) {
    .footer-title-image {
        width: 45px;
        height: 45px
    }

    .footer-title-value {
        font-size: 1.6rem;
        margin-left: 1rem;
        font-weight: 700
    }

    .footer-company-title {
        font-size: 1.5rem
    }

    .footer-company-description {
        font-size: 1.2rem
    }

    .footer-links a {
        font-size: 1.2rem;
        margin-right: 120px
    }

    .footer-contact-item {
        font-size: 1.2rem
    }

    .app-footer {
        padding-top: 5rem;
        padding-bottom: 2rem
    }
}

@media screen and (min-width:1580px) {
    .footer-title-image {
        width: 50px;
        height: 50px
    }

    .footer-links a {
        font-size: 1.25rem;
        margin-right: 200px
    }
}