@import url("https://fonts.googleapis.com/css?family=Manrope:500,600");

body {
    font-family: Manrope;
}

.breadscrumb {
    margin-top: 20px;
    margin-bottom: 20px;
}

.breadscrumb__list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.breadscrumb__list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 5px;
}

.breadscrumb__list li:first-child a {
    color: #999999;
}

.breadscrumb__list li:last-child a {
    color: #191E1D;
}

.breadscrumb__list img {
    margin-right: 5px;
}

.elipsis {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D9D9D9;
    margin-right: 5px;
}

.about__third .second__block {
    height: 342px;
}

.about__first {
    margin-top: 80px;
}

.about__first__block__bg {
    background-image: url('/assets/img/about-first-bg.png');
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    height: 560px;
    position: relative;
}

.about__first__block__bg::before {
    position: absolute;
    content: '';
    right: 0%;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #279760;
    border-left: none;
    border-bottom: none;
    z-index: 2;
}

.about__first__block__title {
    font-family: Manrope;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    color: #191E1D;
    margin-bottom: 40px;
}

.about__first__block__descr {
    font-family: Manrope;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #191E1D;
    margin-bottom: 40px;
}

.about__first__block__btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about__first__block__btns__primary {
    background: #279760;
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 60px;
    padding: 24px;
    text-decoration: none;
}

.about__first__block__btns__default {
    border: 1px solid #E8E8E8;
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191E1D;
    border-radius: 60px;
    padding: 24px;
    text-decoration: none;
}

.about__second {
    background: #F8F8F8;
    padding-top: 160px;
    padding-bottom: 120px;
}

.about__second__title {
    font-family: Manrope;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
    width: 75%;
    margin: 0 auto;
    padding-bottom: 40px;
}

.about__second__block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 480px;
    padding: 30px;
    position: relative;
}

.about__second__block::before {
    position: absolute;
    content: '';
    right: 0%;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #279760;
    border-left: none;
    border-bottom: none;
    z-index: 2;
}

.about__second__block__first {
    background: #FFFFFF;
}

.about__second__block__second {
    background: #DBF1D6;
}

.about__second__block__third {
    background: #F1EBD6;
}

.about__second__block__title {
    font-family: Manrope;
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
}

.about__second__block__img {
    height: 235px;
}

.about__second__block__descr {
    font-family: Manrope;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #191E1D;
}

.about__second__subtitle {
    position: relative;
    font-family: Manrope;
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    text-align: center;
    width: 874px;
    height: 96px;
    margin-top: 45px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}

.about__second__subtitle::before {
    position: absolute;
    content: '';
    left: 0%;
    top: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #279760;
    border-right: none;
    border-bottom: none;
    z-index: 2;
}

.about__second__subtitle::after {
    position: absolute;
    content: '';
    right: 0%;
    bottom: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #279760;
    border-left: none;
    border-top: none;
    z-index: 2;
}

.about-us__stats__grid {
    margin-top: 120px;
    margin-bottom: 120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #E8E8E8;
    border: 1px solid #E8E8E8;
    grid-template-areas:
        "header header item1 item2"
        "item3  item4  footer footer";
}

.about-us__stats__grid > div {
    background: #fff;
}

.about-us__stats__grid > .about-us__stats__header {
    background: #191E1D;
    color: #fff;
}

.about-us__stats__header {
    padding: 30px;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about-us__stats__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    height: 270px;
}

.about-us__stats__item p {
    margin: 0;
    font-family: Manrope;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.about-us__stats__number {
    font-family: Manrope;
    font-weight: 500;
    font-size: 52px;
    line-height: 100%;
    color: #191E1D;
}

.about-us__stats__header {
    grid-area: header;
}

.item1 {
    grid-area: item1;
}

.item2 {
    grid-area: item2;
}

.item3 {
    grid-area: item3;
}

.item4 {
    grid-area: item4;
}

.footer__about {
    grid-area: footer;
}

.about__sixth__block {
    background: #E2E8F0;
    background-image: url('/assets/img/sixth_bg.png');
}

.about__sixth__block__text {
    width: 900px;
    margin: 0 auto;
}

.about__sixth__block__title {
    padding-top: 80px;
    text-align: center;
    color: #191E1D;
    font-family: Manrope;
    font-weight: 500;
    font-size: 52px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.about__sixth__block__descr {
    font-family: Manrope;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #191E1D;
}

.about__sixth__block__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 84px;
}

.about__sixth__block__btns__primary {
    background: #279760;
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 60px;
    padding: 24px;
    text-decoration: none;
}

.about__sixth__block__btns__default {
    border: 1px solid #E8E8E8;
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191E1D;
    border-radius: 60px;
    padding: 24px;
    text-decoration: none;
    background: #fff;
}

@media screen and (max-width: 1200px) {
    .about__second__block {
        height: 580px;
    }
}

@media screen and (max-width: 1024px) {
    .about__second__wrap {
        gap: 20px;
    }
    .about__first__block__bg {
        height: 490px;
        background-size: contain;
    }
    .about__first__block__title {
        font-size: 26px;
    }
    .about__first__block__descr {
        font-size: 14px;
    }
    .about__first__block__btns {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .about__first__block__btns__primary, .about__first__block__btns__default {
        width: 100%;
    }

    .about__second {
        padding-top: 100px;
    }

    .about__second__title {
        font-size: 24px;
    }

    .about__second__block__title {
        font-size: 20px;
    }

    .about__second__block {
        height: 400px;
    }

    .about__second__subtitle {
        width: 100%;
        font-size: 16px;
        height: 100px;
    }

    .about__third .second__block {
        height: auto;
    }

    .fourth__title {
        width: 100%
    }

    .about__sixth__block__text {
        width: 100%;
    }

    .about__sixth__block__title {
        font-size: 30px;
    }

    .about__sixth__block__btns {
        flex-direction: column;
    }

    .about__sixth__block__btns__primary,
    .about__sixth__block__btns__default {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .about-us__stats__grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .about-us__stats__grid > div {
        grid-area: auto;
    }
}