* {
    padding: 0;
    margin: 0;
    color: #FFF;
    font-style: normal;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.main {
    background: url(../images/bg.jpg) center center/cover no-repeat;
    position: relative;
    padding: 30px 0 180px;
}

.main::after,
.main::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(0deg, rgba(18, 24, 5, 0.00) 0%, #121805 100%);
    height: 354px;
}

.main::after {
    height: 806px;
    top: auto;
    background: linear-gradient(180deg, rgba(18, 24, 5, 0.00) 0%, #121805 100%);
    bottom: 0;
}

.container {
    max-width: 1760px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.header-text {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

.contacts-socials,
.contacts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.contacts {
    justify-content: flex-end;
}

.contacts-socials {
    gap: 10px;
}

.contacts-social {
    width: 30px;
    transition: all .3s;
    height: 30px;
}

.contacts-social:hover {
    cursor: pointer;
    opacity: 0.8;
}

.contacts-link {
    font-size: 20px;
    line-height: 24px;
}

.contacts-link:hover {
    text-decoration: underline;
}

.section-main {
    margin: 287px auto 0;
    text-align: center;
    max-width: 1016px;
}

.title {
    text-shadow: 6px 6px 10px #000;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.text {
    text-shadow: 6px 6px 10px #242E0A;
    font-size: 20px;
    line-height: 24px;
}

.section-main__text {
    font-size: 24px;
    margin-top: 20px;
    line-height: 28px;
}

.text span {
    color: inherit;
    text-shadow: inherit;
    font: inherit;
    font-weight: 700;
}

.btn {
    border-radius: 100px;
    background: #6D9700;
    margin: 40px auto 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: flex;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    transition: all .3s;
}

.btn:hover {
    cursor: pointer;
    opacity: 0.8;
}

.section-main__items {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 50px;
    flex-wrap: wrap;
}

.section-main__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 192px;
    gap: 10px;
}

.section-main__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.section-main__item-icon img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 991px) {
    .main {
        padding-bottom: 130px;
        background-image: url(../images/mobile-bg.jpg);
    }

    .header {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .section-main {
        margin: 100px auto 0;
        text-align: left;
    }

    .title {
        font-size: 32px;
    }

    .text {
        font-size: 20px;
        line-height: 26px;
    }

    .text span {
        display: block;
    }

    .btn {
        margin: 20px 0 0;
        font-size: 16px;
        line-height: 20px;
    }

    .section-main__items {
        gap: 20px 30px;
        margin-top: 40px;
    }

    .section-main__item {
        max-width: 170px;
    }

    .section-main__item:first-child {
        max-width: 130px;
    }

    .section-main__item-text {
        font-size: 18px;
        line-height: 22px;
    }
}