@import "common.css";

/**********
*** SECTION STORY START ***
**********/
.wrapper {
    background: var(--white-400) url(../img/about_us/about_us-min.jpg) center top no-repeat;
    background-size: cover;
}

.story {
    padding: 100px 0 320px;
    position: relative;
    background-image: url(../img/about_us/vector_05.svg);
    background-repeat: no-repeat;
    background-position: 102% 190%;
}

@media screen and (max-width: 1200px) {
    .story {
        padding: 70px 0 2px;
    }
}

@media screen and (max-width: 992px) {
    .story {
        padding-bottom: 10px;
        background-image: none;
    }
}

.story::after {
    position: absolute;
    content: url(../img/about_us/story_bg.png);
    top: 7%;
    left: 50%;
    transform: translateX(-48%);
}

@media screen and (max-width: 1200px) {
    .story::after {
        position: static;
        transform: none;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 992px) {
    .story::after {
        display: none;
    }
}

.story_mob {
    display: none;
}

@media screen and (max-width: 992px) {
    .story_mob {
        display: block;
        margin: 0 auto;
    }
}

.story::before {
    position: absolute;
    content: '';
    height: 422px;
    background: linear-gradient(180deg, rgba(251, 250, 255, 0) 0%, #FBFAFF 100%);
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

@media screen and (max-width: 992px) {
    .story::before {
        display: none;
    }
}

.story__wrap {
  position: relative;
}

.story__wrapper {
    position: relative;
} 

.story__wrapper::before {
    position: absolute;
    content: url(../img/about_us/features_02.svg);
    top: 27%;
    left: -12%;
    animation: bounce;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 1400px) {
    .story__wrapper::before {
        left: 0%;
    }
}

.story__wrapper::after {
    position: absolute;
    content: url(../img/about_us/features_02.svg);
    top: -10%;
    right: -11%;
    animation: tada;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 1400px) {
    .story__wrapper::after {
        right: 0%;
    }
}

.story__title-box {
    display: flex;
    justify-content: space-around;
    padding: 65px 0 44px;
}

@media screen and (max-width: 1200px) {
    .story__title-box {
        justify-content: center;
        padding: 0;
    }
}

@media screen and (max-width: 992px) {
    .story__title-box {
        margin-bottom: 20px;
    }

    .story__box::after,
    .story__wrapper::before,
    .story__wrapper::after {
        display: none;
    }
}

.story__title {
    text-transform: capitalize;
    color: var(--black-100);
    font-weight: 500;
    font-size: 80px;
    line-height: 96px;
    margin: 0;
}


@media screen and (max-width: 992px) {
    .story__title {
        font-size: 30px;
        line-height: 36px;
    }
}

.story__title:nth-child(1) {
    margin-right: 55px;
}

.story__title:nth-child(2) {
    margin-left: 55px;
}

@media screen and (max-width: 1200px) {
    .story__title:nth-child(n) {
        margin: 0;
    }

    .story__title:nth-child(1) {
        margin-right: 8px;
    }
}

.story__box {
    max-width: 278px;
    width: 100%;
    margin-left: 105px;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .story__box {
        text-align: center;
        margin: 0 auto;
        max-width: 555px;
    }
}

.story__box::after {
    position: absolute;
    content: url(../img/about_us/features_06.svg);
    bottom: -40%;
    left: 0;
    animation: shake;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

.story__slogan {
    font-size: 22px;
    line-height: 30px;
    color: var(--grey-200);
    margin: 0;
}

@media screen and (max-width: 992px) {
    .story__slogan {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
}
/**********
*** SECTION STORY END ***
**********/

/**********
*** SECTION TODAY START ***
**********/
.today {
    padding: 133px 0 197px 0;
    background-color: var(--black-100);
    background-image:
        url(../img/about_us/vector_04.svg), 
        url(../img/about_us/today_group.png),
        url(../img/about_us/today_group_r.png),
        url(../img/about_us/union_06.svg),
        url(../img/about_us/vector_02.svg),
        url(../img/about_us/union_05.svg);
    background-position: 100% 33%, -3% 0%, 100% -3%, 73% 8%, 20% 0%, 28% 100%;
    background-repeat: no-repeat;
    position: relative;
}

@media screen and (max-width: 992px) {
    .today {
        padding: 70px 0;
        background-image:
        url(../img/about_us/vector_04.svg), 
        url(../img/about_us/today_group.png);
        background-position: 100% 87%, center 268%;
    }
}

.today__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.today__wrapper-img {
    position: absolute;
    top: 27%;
    right: 19%;
    animation: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 992px) {
    .today__wrapper-img {
        display: none;
    }
}

.today__tag {
    background-color: var(--black-200);
    color: var(--white);
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    margin-bottom: 35px;
}

@media screen and (max-width: 992px) {
    .today__tag {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
    }
}

.today__title {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 60px;
    line-height: 72px;
    margin: 0 0 34px;
}

@media screen and (max-width: 992px) {
    .today__title {
        font-size: 30px;
        line-height: 36px;
    }
}

.today__slogan {
    max-width: 515px;
    width: 100%;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: var(--grey-900);
    margin: 0 0 27px;
}

@media screen and (max-width: 992px) {
    .today__slogan {
        font-size: 14px;
        line-height: 20px;
    }
}

.today__box {
    margin-bottom: 15px;
    padding: 15px;
}

.today__img:nth-child(2) {
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
}
/**********
*** SECTION TODAY END ***
**********/

/**********
*** SECTION SERVICES START ***
**********/
.services {
    padding: 147px 0 50px;
    overflow-x: hidden;
}

@media screen and (max-width: 992px) {
    .services {
        padding: 70px 0 50px;
    }
}

.services__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 150px;
    position: relative;
}

@media screen and (max-width: 992px) {
    .services__wrapper {
        padding-bottom: 70px;
    }
}

.services__wrapper::after {
    position: absolute;
    content: url(../img/dotes.png);
    bottom: -7%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    z-index: -1;
}

.services__title {
    color: var(--black-100);
    font-weight: 500;
    font-size: 60px;
    line-height: 72px;
    text-transform: capitalize;
    margin: 0 auto 33px;
}

@media screen and (max-width: 992px) {
    .services__title {
        font-size: 30px;
        line-height: 36px;
    }
}

.services__slogan {
    max-width: 650px;
    width: 100%;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: var(--grey-200);
    margin: 0 auto 50px;
}

@media screen and (max-width: 992px) {
    .services__slogan {
        font-size: 14px;
        line-height: 20px;
    }
}

.services__block {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 992px) {
    .services__block {
        flex-direction: column;
    }
}

.services__item {
    background-color: var(--white-100);
    padding: 20px 30px 20px 25px;
    width: 230px;
    text-align: left;
}

.services__item:not(:last-child) {
    margin-right: 20px;
}

@media screen and (max-width: 992px) {
    .services__item:not(:last-child) {
        margin: 0 0 20px;
    }
}

.services__item-numbers {
    color: var(--black-200);
    font-weight: 500;
    font-size: 60px;
    line-height: 72px;
    text-transform: capitalize;
}

.services__item-text {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: var(--grey-200);
}

.services__link {
    padding: 0 30px;
}

.services__wrap {
    background-image: url(../img/about_us/services_bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 640px;
    padding: 83px 0;
}

@media screen and (max-width: 992px) { 
    .services__wrap {
        min-height: 340px;
        padding: 43px 0;
        background-size: cover;
    }
}

.services__wrap-box {
    display: flex;
    flex-direction: column;
    padding: 50px 100px 50px 150px;
}

@media screen and (max-width: 992px) { 
    .services__wrap-box {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) { 
    .services__wrap-box {
        display: none;
    }
}

.services__wrapicon {
    text-align: center;
    padding: 60px 0 0;
}

@media screen and (max-width: 768px) { 
    .services__wrapicon {
        padding-top: 160px;
    }
}

.services__wrap-item {
    background-color: var(--white);
    padding: 20px;
    position: relative;
    filter: drop-shadow(-30px 60px 70px rgba(26, 6, 69, 0.07));
}

.services__wrap-item:nth-child(2) {
    max-width: 280px;
    width: 100%;
    align-self: flex-end;
}

.services__wrap-item:nth-child(1) {
    max-width: 233px;
    width: 100%;
    text-align: center;
}

.services__wrap-item:nth-child(1)::after {
    position: absolute;
    content: url(../img/about_us/triangle.svg);
    bottom: -8px;
    right: -15px;
}

.services__wrap-item:nth-child(2)::before {
  position: absolute;
  content: url(../img/about_us/triangle.svg);
  transform: rotate(270deg);
  bottom: -6px;
  left: -11px;
}

.services__wrap-text {
    color: var(--black-100);
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
}

/**********
*** SECTION SERVICES END ***
**********/

/**********
*** SECTION SUPPORT START ***
**********/
.support {
    padding: 101px 0 140px;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 992px) {
    .support {
        padding: 30px 0 70px;
    }
}

.support::before {
    content: url(../img/about_us/features_02.svg);
    position: absolute;
    right: 21%;
    top: 35%;
    animation: bounce;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.support::after {
    content: url(../img/about_us/features_06.svg);
    position: absolute;
    left: 13%;
    bottom: 25%;
    animation: swing;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 992px) {
    .support::before,
    .support::after {
        display: none;
    }
}

.support__wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.support__wrapper::after {
    content: url(../img/about_us/features_02.svg);
    position: absolute;
    left: -21%;
    top: 6%;
    animation: jello;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 992px) {
    .support__wrapper::after {
        display: none;
    }
}

.support__tag {
    background-color: var(--grey-100);
    padding: 0 10px;
    max-width: 220px;
    width: 100%;
    color: var(--grey-200);
    height: 45px;
    line-height: 45px;
    text-transform: capitalize;
    margin-bottom: 36px;
}

@media screen and (max-width: 992px) {
    .support__tag {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
    }
}

.support__title {
    font-weight: 500;
    font-size: 60px;
    line-height: 75px;
    text-transform: capitalize;
    color: var(--black-100);
    margin: 0 auto 22px;
}

@media screen and (max-width: 992px) {
    .support__title {
        font-size: 30px;
        line-height: 36px;
    }
}

.support__slogan {
    max-width: 574px;
    width: 100%;
    text-align: center;
    font-size: 22px;
    line-height: 30px;
    color: var(--grey-200);
    margin: 0 auto 42px;
}

@media screen and (max-width: 992px) {
    .support__slogan {
        font-size: 14px;
        line-height: 20px;
    }
}

.support__row {
    width: 100%;
    margin-bottom: 10px;
}

.support__link {
    width: 100%;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.support__row-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .support__row-box {
        display: block;
    }
}

.support__row-link {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--black-100);
    width: 100%;
    line-height: 19px;
    font-weight: 500;
    padding: 10px 30px;
    background-color: var(--white);
    border: 1px solid var(--grey-900);
    width: calc(50% - 5px);
    height: 60px;
    line-height: 60px;
}

@media screen and (max-width: 992px) {
    .support__row-link {
        width: 100%;
    }

    .support__row-link:not(:last-child) {
        margin: 0 0 20px;
    }
}

.support__row-img {
    display: inline-block;
    margin: auto 10px;
}
/**********
*** SECTION SUPPORT END ***
**********/