about-ecosystem.scss 1.79 KB
@import "../../vars";
@import "../../mixins";

// шапка
.about-page-top {
    max-height: 271px;
    height: 100%;
    position: relative;
}

.about-page-top-bg {
    position: absolute;
    content: "";
    background-image: url("../img/about/about-bg-min.png");
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-page-top-links {
    position: relative;
    padding-top: 50px;
}

// экосистема
.ecosystem {
    padding-top: 117px;
}

.ecosystem-top {
    display: flex;

    &__title {
        font-weight: 600;
        font-size: 24px;
        line-height: 29px;
        text-transform: uppercase;
        max-width: 33%;
        width: 100%;
        color: $vmainGrey;
    }
}

.ecosystem-top-text {
        max-width: 875px;
        width: 100%;
        height: 220px;
    

    > p {
        font-size: 16px;
        line-height: 22px;
    }

    > :not(:first-child) {
       margin-top: 12px; 
    }
}

.ecosystem-bottom {
   padding-top: 159px;
   display: flex;
    align-items: flex-start;

   &__title {
        font-weight: 700;
        font-size: 48px;
        line-height: 100%;
        color: $vmainGrey;
        max-width: 33%;
        width: 100%;
        margin-right: 20px;
   } 
}

.ecosystem-bottom-blocks {
    display: flex;

    > :not(:last-child) {
        margin-right: 24px;
    }
}

.ecosystem-bottom-column {
    max-width: 49%;
    width: 100%;
}

.ecosystem-column-top {
    margin-bottom: 65px;

    &__title {
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
        color: $vmainGrey;
    }

    &__text {
        font-size: 16px;
        line-height: 22px;
        margin-top: 25px;

        > a {
          text-decoration: underline;  
        }
    }
}