@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

p,
h1,
h2,
h3,
li,
a,
div {
    font-family: "Roboto", sans-serif;
    color: #555;
}

a {
    text-decoration: none;
}

.container {
    margin: 0 auto;
    min-width: 320px;
    padding: 0 10px;
}

.flex-sb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-sa {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;

}


/* top */
.top-menu {
    background-color: #111;
    padding: 10px 0px;
}

.top-menu p {
    color: #ccc;
    font-size: 13px;
}

.adres-link {
    width: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.top-menu i {
    color: #95C11E;
    padding: 0 10px;
    font-size: 16px;
}

.mail-top {
    display: none;
}

/* main-menu */
.main-menu {
    /* background-color: #111111c4; */
    height: 50px;
    z-index: 9999;
}

.logo {
    width: 250px;
}

.main-menu-list {
    display: none;
}

/* mobile menu */

.link-momile i {
    color: #ccc;
    padding: 10px;
    font-size: 30px;
}

.mobile-btn {
    align-self: center;
}

.mobile-menu {
    display: none;
    position: absolute;
    z-index: 99999;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 20px 10px 20px 20px;
    background-color: #181818ef;
}

.active {
    display: block;
}

.mobile-menu li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    padding: 10px 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
}

/* header */
.main-baner {
    position: relative;
    height: calc(100vh - 160px);
}

.main-header {
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    height: calc(100vh - 110px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.01)), url(../img/header.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #834b4b;
    z-index: -1;
}

.header-info {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 110px);
    /* background-color: #96c11e59; */
    align-items: center;
}

.main-header-text {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    padding-top: 25vh;
    padding-bottom: 25px;
}

.main-header-subtext {
    color: #fff;
    width: 80vw;
    font-weight: 500;
    text-align: center;
    padding-bottom: 25px;
}

.main-header-btn {
    padding: 10px 15px;
    border: 1px solid #555;
    background-color: #95C11E;
    border-radius: 5px;
    color: #fff;
    align-self: center;
}

/* page text formats */

.section-header {
    font-weight: 800;
    font-size: 25px;
    text-align: center;
    color: #3c3c3b;
    padding-bottom: 40px;
    position: relative;
}

.section-header::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #95C11E;
    left: 0;
    top: 50%;
    position: absolute;
}

.section-text {
    font-size: 16px;
    padding: 5px 0;
    text-align: center;
}

.sub-header {
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    color: #4f680c;
    padding: 20px 0;
}

.sub-header-page {
    font-weight: 800;
    font-size: 22px;
    color: #4f680c;
    text-transform: uppercase;
    padding: 20px 0;
}

.text-list {
    font-size: 16px;
    padding: 3px 0;
    text-align: justify;
}

.text-list::before {
    content: ">";
    color: #4f680c;
    padding-right: 5px;
    font-weight: 800;
}

strong {
    font-weight: 700;
}


/* footer */

footer {
    background-color: #333;
}

@media (min-width: 520px) {
    .container {
        width: 720px;
        padding: 0 10px;
    }
}

@media (min-width: 720px) {
    .container {
        width: 720px;
        padding: 0 10px;
    }
}

@media (min-width: 980px) {
    .container {
        width: 980px;
        padding: 0 20px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
        padding: 0 20px;
    }
    .mm-container {
        display: none;
    }

    .mail-top {
        display: flex;

    }

    .main-menu-list {
        display: block;
    }

    .mobile-btn {
        display: none;
    }

    .adres-link {
        width: auto;
        padding-right: 20px;
    }

    .top-contact {
        display: flex;
        flex-direction: row;
    }

    nav {
        align-self: center;
    }
    .main-menu-list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .main-mеnu-item {
        padding: 0 20px;
    }

    .main-menu-link {
        color: #fff;
    }

    .main-menu-link:hover {
        color: #95C11E;
    }

    .logo {
        width: 350px;
    }


}