main {
    margin-top: 0;
}

section {
    flex-direction: column;
}

.about-company__main-layout {
    width: 100vw;
    height: 100vh;
}

.about-company__dark-background {
    width: 100vw;
    height: 48%;
    display: flex;
    justify-content: center;
    background-color: #29282E;
}

.about-company__fullscreen-image {
    width: 100vw;
    height: 52%;
    overflow: hidden;
    background-color: #dddddd;
}

.about-company__fullscreen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-company__main-content {
    padding-top: 200px;
    height: 100%;
    width: 1240px;
    display: flex;
    align-items: flex-start;
}

.about-company__main-content__title {
    display: flex;
}

.about-company__main-content h1 {
    white-space: nowrap;
    /* border: 1px solid red; */
    margin-left: 30px;
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-size: 40px;
    line-height: 51px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.about-company__main-content p {
    padding-right: 20px;
    flex: 1;
    margin-left: 30px;
    /* border: 1px solid red; */
    font-family: 'Circe';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #8C8C8C;
}

.about-company__main-content__logo {
    /* border: 1px solid red; */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-company__main-content__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateX(-10px);
}

@media (max-width: 1280px) {
    .about-company__main-content {
        padding-top: 200px;
        height: 100%;
        width: 94vw;
        display: flex;
        align-items: flex-start;
    }
}

@media (max-width: 1070px) {
    .about-company__main-content {
        padding-top: 150px;
        flex-direction: column;
    }

    .about-company__main-content p {
        margin-left: 0px;
        margin-top: 30px;
        font-size: 15px;
        line-height: 22px;
    }

    .about-company__dark-background {
        width: 100vw;
        height: 60%;
        display: flex;
        justify-content: center;
        background-color: #29282E;
    }
    
    .about-company__fullscreen-image {
        width: 100vw;
        height: 40%;
        overflow: hidden;
        background-color: #dddddd;
    }
}

@media (max-width: 600px) {
    .about-company__main-content {
        padding-top: 100px;
        flex-direction: column;
    }

    .about-company__main-content__logo {
        width: 40px;
        height: 40px;
    }

    .about-company__main-content__logo {
        transform: translateX(5px);
    }

    .about-company__main-content h1 {
        margin-left: 10px;
        font-size: 30px;
        line-height: 40px;
    }

    .about-company__main-content p {
        margin-top: 20px;
    }
    
}

.company-mission {
    width: 100%;
    display: flex;
}

.company-mission__title {
    flex: 3
}

.company-mission__title h1 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 45px;
    text-transform: uppercase;
    color: #34333B;
}

.company-mission__content {
    flex: 4;
}

.company-mission__content p {
    font-family: 'Circe';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #8C8C8C;
    margin-bottom: 20px;
}

.company-mission__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 920px) {
    .company-mission__title h1 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .company-mission {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

.before-footer__fullscreen-dark__container {
    overflow: hidden;
    width: 100vw;
    background-color: #29282E;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-team {
    overflow: hidden;
    user-select: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 440px;
    background-color: #fff;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}

.our-team__large-image {
    width: 440px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-team__large-image__inner-container {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    background-color: #f1f1f1;
    position: relative;
}

.our-team__large-image__inner-container__logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    width: 90px;
    height: 90px;
}

.our-team__large-image__inner-container__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our-team__large-image__inner-container__personal {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.our-team__large-image__inner-container__personal img {
    position: absolute;
    width: 100%;
    height: calc(100% + 20px);
    object-fit: contain;
    bottom: 0px;
    display: none;
}

.our-team__large-image__inner-container__white-line {
    width: 100%;
    position: absolute;
    bottom: -30px;
    height: 30px;
    background-color: #fff;
    z-index: 99;
}

.our-team__active__image-slide {
    display: block !important;
    animation: show_image_slide .8s;
}

@keyframes show_image_slide {
    from {
        /* opacity: 0; */
        transform: translateY(40px) scale(0.98);
    }
    to {
        /* opacity: 1; */
        transform: translateY(0px) scale(1);
    }
}

.our-team__middle-content {
    position: relative;
    padding: 30px 20px;
    width: calc(100% - 600px);
}

.our-team__content-slide {
    display: none;
}

.our-team__content-slide__active {
    display: block;
    opacity: 1;
    animation: show_content_slide .5s;
}

@keyframes show_content_slide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.our-team__middle-content span {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #8C8C8C;
}

.our-team__middle-content h2 {
    margin-top: 15px;
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    text-transform: uppercase;
    color: #34333B;
}

.our-team__middle-content .our-team__middle-content__subtitle {
    margin-top: 20px;
    font-family: 'Circe';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    height: 75px;
    color: #8C8C8C;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.our-team__other-slides {
    width: 160px;
}

.our-team__middle-content__table-info {
    margin-top: 35px;
    width: 80%;
    display: flex;
}

.our-team__middle-content__table-info__item {
    flex: 1;
}

.our-team__middle-content__table-info__item h4 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: #34333B;
}

.our-team__middle-content__table-info__item p {
    margin-top: 0px;
    width: 90%;
    font-family: 'Circe';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #8C8C8C;
}

.our-team__scrollbar_n_slider__container {
    margin-top: 50px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
}

.our-team__scrollbar {
    display: flex;
    align-items: center;
}

#total_slides_container, #current_slide_container {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    width: 30px;
    text-transform: uppercase;
    color: #34333B;
}

.our-team__scrollbar__line {
    margin: 0 20px;
    width: 200px;
    height: 4px;
    background-color: #EEEEEE;
}

.our-team__scrollbar__line__inner {
    transition: .4s;
    width: 0%;
    height: 4px;
    background-color: #22bca2;
}

.our-team__slider-controls {
    display: flex;
    align-items: center;
    margin-left: 50px;
    width: 120px;
    justify-content: space-between;
}

.our-team__slider-controls div {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: .2s;
}

.our-team__slider-controls div img {
    width: 14px;
}

.our-team__slider-controls div:hover {
    opacity: .6;
}

.our-team__other-slides__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-team__other-slides__item div {
    width: calc(100% - 50px);
    height: calc(100% - 40px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background-color: #f1f1f1;
}

.our-team__other-slides__item div img {
    width: 90%;
    position: absolute;
    bottom: 0
}


@media (max-width: 1125px) {
    .our-team__scrollbar__line {
        width: 100px;
    }
}

@media (max-width: 1050px) {
    .our-team__middle-content h2 {
        font-size: 28px;
    }

    .our-team__large-image {
        width: 400px;
    }

    .our-team__middle-content {
        position: relative;
        padding: 30px 20px;
        width: calc(100% - 560px);
    }

    .our-team__middle-content__table-info {
        width: 100%;
    }

    .our-team__slider-controls {
        margin-left: 20px;
        width: 100px;
    }

    .our-team__large-image__inner-container__personal img {
        bottom: -20px;
    }
}

@media (max-width: 940px) {
    .our-team__other-slides {
        opacity: 0;
        position: absolute !important;
        right: 0;
        top: 0;
        width: 0 !important;
        height: 700px;
        z-index: -999;
    }

    .our-team__middle-content {
        position: relative;
        padding: 30px 0px;
        padding-right: 20px;
        width: calc(100% - 400px);
    }
}

@media (max-width: 800px) {
    .our-team__large-image__inner-container__white-line {
        width: 100%;
        position: absolute;
        bottom: -20px;
        height: 20px;
        background-color: #fff;
        z-index: 99;
    }

    .our-team__large-image__inner-container__personal img {
        bottom: 0px;
    }

    .our-team__middle-content h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .our-team__middle-content__subtitle {
        margin-top: 10px;
    }

    .our-team {
        overflow: hidden;
        user-select: none;
        width: 100%;
        height: 700px;
        background-color: #fff;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }
    
    .our-team__large-image {
        width: 94vw;
        height: 94vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .our-team__middle-content {
        position: relative;
        padding: 0px 20px;
        width: 100%;
        padding-bottom: 100px;
    }

    .our-team__large-image__inner-container {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        background-color: #f1f1f1;
        position: relative;
    }

    @keyframes show_image_slide {
        from {
            /* opacity: 0; */
            transform: translateY(20px) scale(0.98);
        }
        to {
            /* opacity: 1; */
            transform: translateY(0px) scale(1);
        }
    }
}

/* REVIEWS  */

.reviews-container {
    user-select: none;
    overflow: hidden;
    width: 100vw;
    height: 440px;
}

.reviews-container__item {
    padding: 30px;
    height: 100%;
    background-color: #34333B;
}

.reviwes__slider-controls {
    user-select: none;
    margin-top: 30px;
    display: flex;
    align-items: center;
    width: 120px;
    justify-content: space-between;
}

.reviwes__slider-controls div {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: .2s;
}

.reviwes__slider-controls div img {
    width: 14px;
}

.reviwes__slider-controls div:hover {
    opacity: .6;
}

.reviews-container__item__owner {
    display: flex;
    align-items: flex-end;
}

.reviews-container__item__owner h1 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 32px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.reviews-container__item__owner span {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #8C8C8C;
    margin-left: 20px;
}

.reviews-container__item p {
    margin: 20px 0;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    height: (25px * 5);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    color: #8C8C8C;
}

.reviews-container__item__images {
    display: flex;
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    height: 140px;
}

.reviews-container__item__images img {
    margin-right: 10px;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .reviews-container {
        width: 120vw;
    }
}

@media (max-width: 900px) {
    .reviews-container {
        width: 140vw;
    }
}

@media (max-width: 700px) {
    .reviews-container {
        width: 140vw;
        height: 455px;
    }

    .reviews-container__item {
        padding: 20px;
        height: 100%;
        background-color: #34333B;
    }

    .reviews-container__item__owner {
        display: flex;
        align-items: unset;
        flex-direction: column;
    }
    
    .reviews-container__item__owner h1 {
        order: 2;
        font-size: 22px;
        margin-top: 5px;
        line-height: 26px;
    }
    
    .reviews-container__item__owner span {
        order: 1;
        margin-top: 10px;
        font-size: 15px;
        margin-left: 0px;
    }

    .reviwes__slider-controls {
        user-select: none;
        margin-top: 20px;
        display: flex;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        width: 120px;
        justify-content: space-between;
    }
    
}

@media (max-width: 650px) {
    .reviews-container {
        width: 180vw;
    }
}