html, body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

img {
    width: 100%;
}

.container {
    max-width: 1000px;
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}

.title {
    font-size: 30px;
    color: #365723;
}

.text_center {
    text-align: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
    overflow: hidden;
}

.header {
    border-bottom: 2px solid #385723;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 240px;
}

.logo-img {
    margin-left: -10px;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 17px;
    margin-bottom: 4px;
}

.info__item.info__item-location img {
    margin-left: -4px;
    margin-right: 14px;
}

.info__item-icon {
    position: relative;
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.info__item-link {
    color: black;
    text-decoration: none;
}

.about {
    background-color: #e2f0d9;
    position: relative;
    display: flex;
    flex: 1;
}

.about__dots {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 300px;
    width: auto;
}

.about__description {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    line-height: 25px;
    font-size: 18px;
    font-weight: 400;
}

.about::before {
    content: '';
    background-color: white;
    left: 0;
    bottom: 0;
    top: 0;
    width: 80%;
    position: absolute;
    display: block;
}

.about__pane {
    display: flex;
    height: auto;
    align-items: center;
    margin: -60px 0 -40px;
}

.about__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 75%;
    flex-shrink: 0;
    padding: 0;
}

.about__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 34px;
}

.about__item:nth-child(2n) {
    padding-left: 10px;
}

.about__item-img {
    height: 64px;
    width: 64px;
    position: relative;
    object-fit: fill;
    display: flex;
    flex-shrink: 0;
}

.about__item-text {
    display: flex;
    line-height: 22px;
    font-weight: 500;
    margin: 0 20px;
}

.about__app-icon {
    position: relative;
    left: -7%;
    min-height: 600px;
}

.footer {
    background-color: #e2f0d9;
}

.footer__inner {
    display: flex;
    flex-direction: column;
}

.apps__pane {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0;
}

.apps__item {
    width: 170px;
    height: 42px;
}

.apps__item img {
    height: 100%;
    width: 100%;
}

.apps__item:first-child {
    margin-right: 15px;
}

@media (max-width: 700px) {

    .logo-img {
        margin: 0;
    }

    .about::before {
        background-color: transparent;
    }

    .header__inner {
        justify-content: center;
    }

    .header__inner .info {
        display: none;
    }

    .about__description {
        font-size: 16px;
    }

    .about__pane {
        flex-direction: column-reverse;
        margin: -30px auto;
    }

    .about__app-icon {
        max-width: 500px;
        min-height: 300px;
        width: 100%;
        left: 0;
    }

    .about__items {
        width: 100%;
        flex-direction: column;
        max-width: 340px;
        align-items: center;
        margin-top: 30px;
    }

    .about__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 0px!important;
        width: 80%;
    }

    .about__item-img {
        margin: 0;
        width: 80px;
        margin-bottom: 10px;
    }

    .about__item-text {
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }

    .footer {
        background-color: white;
        border-top: 2px solid #385723;
    }
}


@media (max-width: 400px) {
    .apps__pane {
        flex-direction: row;
        gap: 10px;
    }

    .apps__item {
        width: 150px;
        margin: 0!important;
        padding: 0;
    }
}