/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    -webkit-tap-highlight-color: transparent;
    text-decoration-skip: objects;
    text-rendering: optimizeLegibility;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --font_family: "Inter", sans-serif;
    --font_family2: "IBM Plex Serif", serif;
}


html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


body
{
    color: #fff;
    font: 17px var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    background: #0054F1;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: clip;
    flex-direction: column;

    height: 100%;
}


.cont
{
    position: relative;

    width: 100%;
    max-width: 1114px;
    margin: 0 auto;
    padding: 0 20px;
}


._flex
{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.lock-sector{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #D1D1D1;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

._lock .lock-sector{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lock-sector__img{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.lock-sector__img img{
    width: 200px;
    display: block;
}

.lock-sector__img img.anim{
    transform: rotate(-90deg);
    transition: transform .5s linear;
}

.lock-sector__title{
    color: #020616;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}

.lock-sector__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}



/*------------
    Header
------------*/
.header
{
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;

    top: 60px;
    width: 100%;
    z-index: 90;
    --color_header: #fff;
    transition: opacity .3s linear;
}

.header._hide{
    opacity: 0;
    pointer-events: none;
}

.header._dark{
    --color_header: #020616;
}

.header .cont{
    justify-content: space-between;
}

.header__logo{
    display: block;
}

.header__logo svg{
    display: block;
    fill: var(--color_header);
    transition: fill .3s linear;
}

.header__link{
    color: var(--color_header);
    font-family: var(--font_family2);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.27px;
    text-decoration: none;
    transition: color .3s linear;
}



/*------------------------
	Slider controls
------------------------*/
.swiper
{
    position: relative;

    margin-right: 0;
    margin-left: 0;
}

.swiper-wrapper
{
    height: 100%;
}

.page-slider
{
    width: 100%;
    flex: 1 0 auto;
    height: 100%;
}

.main-slide{
    display: flex;
    flex-direction: column;
    padding-top: 123px;
    background: url(../images/bg.jpg) 50%/cover no-repeat;
}

.main-slide__top{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main-slide__title{
    text-align: center;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.1;
}

.main-slide__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.main-slide__bot img{
    display: block;
    width: 100%;
}

.help-you{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 100px 0 91px;
    background: url(../images/bg-2.jpg) 50%/cover no-repeat;
}

.help-you__top{
    width: 100%;
}

.help-you__top img{
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.help-you__bot{
    margin-top: 75px;
}

.help-you__box{
    max-width: 688px;
    margin: 0 auto;
}

.help-you__title{
    color: #fff;
    font-size: 46px;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
}

.help-you__title b{
    font-style: italic;
    font-weight: 500;
    font-family: var(--font_family2);
}

.help-you__desc{
    color: #fff;
    text-align: justify;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    margin-top: 12px;
}

.help-you__desc b{
    font-style: italic;
    font-weight: 600;
    font-family: var(--font_family2);
}

.envelope{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
    background: url(../images/bg-3.jpg) 50%/cover no-repeat;
}

.envelope img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 938px;
    object-fit: contain;
    object-position: 50% 100%;
}


.main-about{
    display: flex;
    flex-direction: column;
    padding-top: 123px;
    background: url(../images/bg.jpg) 50%/cover no-repeat;
}

.main-about__top{
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main-about__box{
    max-width: 777px;
    width: 100%;
}

.main-about__title{
    text-align: justify;
    font-size: 90px;
    font-weight: 400;
    line-height: 1.1;
}

.main-about__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.main-about__desc{
    margin-top: 35px;
    text-align: justify;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
}

.main-about__desc b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.main-about__bot{
    width: 100%;
}

.main-about__bot img{
    display: block;
    width: 100%;
}


.main-info{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 100px 0;
    background: url(../images/bg-5.jpg) 50%/cover no-repeat;
}

.main-info_bg{
    background-image: url(../images/bg-6.jpg);
}

.main-info__box{
    padding: 72px 82px 70px;

    border-radius: 44px;
    border: 1px solid #F2F2F3;
    width: 100%;
    max-width: 829px;
}

.main-info__top{
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.main-info__title{
    color: #fff;
    font-size: 76px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.14px;
}

.main-info__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.main-info__icon{
    width: 189px;
    height: 189px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-left: 20px;
}

.main-info__icon img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.main-info__desc{
    margin-top: 65px;
    font-size: 22px;
    line-height: normal;
    text-align: justify;
}

.main-info__desc b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.advantages{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 298px 0 50px;
    background: #020616 url(../images/bg-7.png) 50% 0/908px auto no-repeat;
}

.advantages__box{
    max-width: 989px;
}

.advantages__title{
    color: #fff;
    text-align: center;
    font-size: 75px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.125px;
}

.advantages__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.advantages__items{
    margin-top: 20px;
    justify-content: center;
}

.advantages__item{
    margin-top: 20px;
    border: 1px solid #fff;

    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 63px;
    padding: 0 25px;
    border-radius: 50px;
}

.advantages__item b{
    font-family: var(--font_family2);
    font-style: italic;
}

.advantages-info{
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: url(../images/bg-8.jpg) 50%/cover no-repeat;
}

.advantages-info__cols{
    justify-content: space-between;
}

.advantages-info__col{
    width: calc(50% - 15px);
    max-width: 512px;
}

.advantages-info__col._small{
    max-width: 444px;
}

.advantages-info__item + .advantages-info__item{
    margin-top: 25px;
}

.advantages-info__title{
    line-height: 46px;
    border: 1px solid #F2F2F3;
    border-radius: 50px;
    padding: 0 20px;
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
}

.advantages-info__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 500;
}

.advantages-info__desc{
    text-align: justify;
    font-size: 17px;
    line-height: normal;

    margin-top: 12px;
}


.before-quiz{
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: url(../images/bg-9.jpg) 50%/cover no-repeat;
}

.before-quiz__title{
    color: #fff;
    text-align: center;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.1;
}

.before-quiz__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 500;
}

.quiz-slider{
    height: 100%;
}

.section-quiz{
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: url(../images/bg-5.jpg) 50%/cover no-repeat;
}

.section-quiz__box{
    margin: 0 auto;
    max-width: 829px;
    width: 100%;
    border: 1px solid #F2F2F3;
    border-radius: 44px;
    padding: 64px 28px;
}

.section-quiz__box._pad{
    padding-top: 55px;
    padding-bottom: 55px;
}

.section-quiz__title{
    text-align: center;
    font-size: 50px;
}

.section-quiz__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 500;
}

.section-quiz__items{
    max-width: 496px;
    margin: 77px auto 0;
}

.section-quiz__items._big{
    max-width: 657px;
}

.section-quiz__items._marg{
    margin-top: 56px;
}

.section-quiz__item{
    border-radius: 50px;
    border: 1px solid #000;

    background: #FFF;

    color: #000110;
    font-size: 21px;
    line-height: 1.1;
    flex-wrap: nowrap;
    min-height: 64px;
    padding: 5px 17px;
    text-align: left;
    width: 100%;
}

.section-quiz__item b{
    font-weight: 600;
}

.section-quiz__item + .section-quiz__item{
    margin-top: 20px;
}

.section-quiz__item-icon{
    font-size: 38px;
    width: 55px;
    margin-right: 14px;
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.section-quiz__item-text{
    align-self: center;
    display: block;
}


.test-results{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background-color: #D1D1D1;
}

.test-results__box{
    max-width: 766px;
    margin: 0 auto;
}

.test-results__title{
    color: #020616;
    text-align: center;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 40px;
    padding-left: 15px;
}

.test-results__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.test-results__sector{
    display: none;
}

.test-results__sector._active{
    display: block;
}

.test-results__name{
    position: relative;
    padding: 0 72px;

    color: #0054F1;
    font-family: var(--font_family2);
    font-size: 48px;
    font-style: italic;
    font-weight: 600;
    line-height: 87px;
    text-align: center;
}

.test-results__name span{
    display: block;
    border-top: 1px solid #0054F1;
    border-bottom: 1px solid #0054F1;
    padding-left: 9px;
}

.test-results__name-img{
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 184px;
    margin-top: 1px;
    transform: translateY(-50%);
}

.test-results__name-img2{
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 184px;
    margin-top: 1px;
    transform: translateY(-50%);
}

.test-results__desc{
    color: #020616;
    text-align: justify;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.66px;
    margin: 53px auto 0;
    max-width: 634px;
    padding-left: 14px;
}


.interesting-facts{
    padding: 114px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: url(../images/bg-10.jpg) 50%/cover no-repeat;
}

.interesting-facts__box{
    max-width: 1973px;
    margin: 0 auto;
}

.interesting-facts__title{
    color: #FFF;
    text-align: center;
    font-size: 50px;
    line-height: .9;
}

.interesting-facts__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 500;
}

.interesting-facts__subtitle{
    margin-top: 35px;

    color: #FFF;
    text-align: center;
    font-size: 22px;
    line-height: 1.1;
}

.interesting-facts__cols{
    align-items: stretch;
    align-content: stretch;
    justify-content: space-between;
    margin-top: 47px;
}

.interesting-facts__coll{
    width: calc(47.2% - 10px);
}

.interesting-facts__colr{
    display: flex;
    flex-direction: column;
    width: 52.8%;
}

.interesting-facts__bord{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-grow: 1;
    border: 1px solid #F2F2F3;
    padding: 34px 35px;
    border-radius: 30px;
    margin-top: 10px;
}

.interesting-facts__text{
    color: #FFF;
    font-size: 22px;
    letter-spacing: -0.44px;
}

.interesting-facts__coll .interesting-facts__text{
    line-height: 1;
}

.interesting-facts__text b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
    letter-spacing: normal;
}

.career-opportunities{
    padding: 122px 0 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: #D1D1D1;
}

.career-opportunities__box{
    margin: 0 auto;
    max-width: 687px
}

.career-opportunities__title{
    color: #004BEC;
    font-size: 50px;
    font-weight: 400;
    line-height: .9;
    text-align: center;
}

.career-opportunities__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 500;
}

.career-opportunities__bord{
    position: relative;
    border: 1px solid #020616;
    border-radius: 30px 30px 0 0;
    margin-top: 59px;
    padding: 45px 52px 61px;
}

.career-opportunities__img{
    position: absolute;
    left: -86px;
    bottom: -71px;
    width: 179px;
}

.career-opportunities__img2{
    position: absolute;
    right: -69px;
    bottom: -71px;
    width: 179px;
}

.career-opportunities__text{
    color: #020616;
    text-align: justify;
    font-size: 22px;
    line-height: 1.1;
}

.career-opportunities__info{
    margin-top: 43px;

    color: #004BEC;
    font-family: var(--font_family2);
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding: 0 50px;
}

.last-slide{
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: url(../images/bg-11.jpg) 50%/cover no-repeat;
}

.last-slide__box{
    max-width: 670px;
    margin: 0 auto;
}

.last-slide__title{
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.last-slide__title b{
    font-family: var(--font_family2);
    font-style: italic;
}

.last-slide__desc{
    text-align: justify;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    max-width: 648px;
    margin: 40px auto 0;
}

.last-slide__desc b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.last-slide__info{
    text-align: center;
    margin-top: 40px;
}

.last-slide__info span{
    display: inline-block;
    vertical-align: top;

    font-size: 28px;
    font-weight: 500;
    line-height: 45px;
    padding: 0 17px;
    border-radius: 50px;
    background: #0054F1;
}

.last-slide__action {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }
  
  .last-slide__restart-btn {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 40px;
    background-color: #00010F;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 84, 241, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .last-slide__restart-btn:hover {
    background-color: #0e1685;
    transform: translateY(-2px);
  }
  

.after-interview{
    padding: 130px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    background: #020616;
}

.after-interview__box{
    max-width: 1038px;
    margin: 0 auto;
}

.after-interview__title{
    text-align: center;
    font-size: 50px;
    line-height: 1;
}

.after-interview__title b{
    font-style: italic;
    font-weight: 500;
    font-family: var(--font_family2);
}

.after-interview__items{
    margin: 28px 0 0 -20px;
}

.after-interview__item{
    margin: 42px 0 0 20px;
    width: calc(50% - 20px);
    flex-grow: 1;
    border: 1px solid #F2F2F3;
    border-radius: 18px;
    padding: 35px 16px 20px;
    position: relative;
}

.after-interview__item-title{
    position: absolute;
    left: 26px;
    top: -22px;
}

.after-interview__item-title span{
    padding: 0 17px;
    border-radius: 25px;
    background: #0054F1;

    font-family: var(--font_family2);
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 40px;
    display: inline-block;
}

.after-interview__list{
    font-size: 22px;
    font-weight: 500;
    list-style: none;
}

.after-interview__list li{
    display: block;
    padding-left: 30px;
    position: relative;
}

.after-interview__list li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    border: 5px solid #020616;
    border-radius: 2px;
    background: #D9D9D9;
}

.after-interview__list li span{
    font-family: var(--font_family2);
    font-style: italic;
}

.real-stories{
    padding-top: 172px;
    background: url(../images/bg-12.jpg) 50%/cover no-repeat;
}

.real-stories__title{
    color: #FFF;
    text-align: center;
    font-size: 50px;
    line-height: 1;
}

.real-stories__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 500;
}

.tabs-container{
    max-width: 1073px;
    margin: 48px auto 0;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.tabs{
    width: 42.13%;
    padding-right: 92px;
}

.tabs__btn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    border-radius: 33px;
    border: 1px solid #F2F2F3;
    padding: 6px;
    text-align: left;
    width: 100%;
    transition: background .2s linear;
    position: relative;
}

.tabs__btn::after{
    content: '';
    position: absolute;
    right: -93px;
    top: 50%;
    width: 64px;
    height: 8px;
    margin-top: -4px;
    background: url(../images/aroow1.svg) 50% no-repeat;
    opacity: 0;
    transition: opacity .2s linear;
}

.tabs__btn._active{
    background: #0054F1;
}

.tabs__btn._active::after{
    opacity: 1;
}

.tabs__btn + .tabs__btn{
    margin-top: 30px;
}

.tabs__btn-photo{
    display: block;
    width: 54px;
    height: 54px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
}

.tabs__btn-photo img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tabs__btn-name{
    display: block;
    font-family: var(--font_family2);
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
}

.tabs__btn-position{
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

.tabs-container__wrap{
    width: calc(57.87% - 27px);
}

.tab-content{
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity .2s linear, visibility .2s linear;
}

.tab-content._active{
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
}

.real-stories__text{
    color: #FFF;
    text-align: justify;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: -0.28px;
    min-height: 448px;
    padding: 40px 0 34px;
}

.real-stories__text._big{
    padding: 0;   
}


.many-people{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 100px 0;
    background: #D1D1D1;
}

.many-people__flex{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.many-people__title{
    color: #020616;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    max-width: 320px;
    width: calc(35% - 30px);
}

.many-people__title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.many-people__colr{
    width: 65%;
    max-width: 560px;
    border: 1px solid #000110;
    border-radius: 30px;

    padding: 38px 0;

    align-items: flex-end;
    align-content: flex-end;
    justify-content: center;
}

.many-people__items{
    align-items: flex-end;
    align-content: flex-end;
    justify-content: center;
    position: relative;
    width: 100%;
}

.many-people__items::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 48px;
    width: 100%;
    height: 1px;
    background: #000;
}

.many-people__item{
    width: 131px;
    margin: 0 32px;
    position: relative;
}

.many-people__number{
    color: #000110;
    font-family: var(--font_family2);
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
}

.many-people__employees{
    color: #000110;
    font-size: 22px;
    margin-bottom: 21px;
}

.many-people__progress{
    height: 336px;
    border: 1px solid #fff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}

.many-people__progress._small{
    height: 59px;
}

.many-people__progress img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
}

.many-people__time{
    margin-top: 19px;
    color: #000110;
    font-family: var(--font_family2);
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    line-height: 29px;
}


.team-listening{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    padding: 100px 0;
    background: #0054F1 url(../images/bg-13.png) 50% 100%/100% auto no-repeat;
}

.main-title{
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

.main-title b{
    font-family: var(--font_family2);
    font-style: italic;
    font-weight: 600;
}

.team-listening__wrap{
    max-width: 580px;
    margin: 0 auto;
}

.team-listening__items{
    margin: 32px 0 0 -20px;
    align-items: stretch;
    align-content: stretch;
}

.team-listening__item{
    width: calc(100%/3 - 20px);
    margin: 20px 0 0 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
    align-content: stretch;
    background: #fff;
}

.song__listener{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 10px 12px 8px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.00) 100.28%);
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.song__listener-photo{
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 6px;
    position: relative;
}

.song__listener-photo img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.song__listener-name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 7px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    font-family: var(--font_family2);
}

.song__listener-position{
    font-size: 7px;
    font-weight: 400;
    line-height: normal;
}

.song__img{
    padding-bottom: 78.335%;
    display: block;
    position: relative;
    border-radius: 8px;
}

.song__img img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song__bot{
    padding: 8px 12px;
}

.song__name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #000110;
    font-size: 11px;
    font-weight: 800;
    line-height: 13px;
}

.song__singer{
    color: #000110;
    font-size: 8px;
    font-weight: 400;
    line-height: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-listening__code{
    background: transparent;
    border-radius: 0;
}

.team-listening__code img{
    display: block;
    width: 100%;
}

.team-listening__playlist-img{
    display: block;
    position: relative;
    padding-bottom: 100%;
    min-height: 100%;
}

.team-listening__playlist-img img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-listening__playlist-title{
    color: #020616;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 8px;
    background: #fff;
    padding: 7px 12px;
}


.our-team{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    padding: 100px 0 60px;
    background: #020616;
}

.our-team__cols{
    justify-content: space-between;
}

.our-team__coll{
    width: 57%;
    position: relative;
}

.our-team__smiles{
    position: absolute;
    left: 3px;
    bottom: 50px;
    line-height: 55px;
    font-size: 50px;
    background: #fff;
    border-radius: 50px;
    padding: 0 16px;
    transform: rotate(-5.07deg);
}

.our-team__flex{
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 30px;
}

.our-team .main-title{
    text-align: left;
    padding-top: 18px;
    padding-bottom: 140px;
    font-weight: 500;
}

.our-team__photo1{
    display: block;
    height: 183px;
}

.our-team__photo1 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.our-team__photo2{
    display: block;
    height: 362px;
    width: 340px;
    flex-shrink: 0;
    margin-left: 20px;
}

.our-team__photo2 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.our-team__colr{
    width: calc(43% - 30px);
    position: relative;
}

.our-team__photo3{
    display: block;
    height: 270px;
}

.our-team__photo3 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.our-team__photo4{
    display: block;
    height: 275px;
    margin-top: 30px;
}

.our-team__photo4 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.teambuildings{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    padding: 100px 0 60px;
    background: #020616;
}

.teambuildings__cols{
    justify-content: space-between;
}

.teambuildings__coll{
    width: 43%;
    position: relative;
}

.teambuildings__smiles{
    position: absolute;
    right: -74px;
    top: 124px;
    line-height: 55px;
    font-size: 50px;
    background: #fff;
    border-radius: 50px;
    padding: 0 20px;
    transform: rotate(-5.07deg);
    z-index: 1;
}

.teambuildings .main-title{
    text-align: left;
    font-weight: 500;
}

.teambuildings__photo1{
    display: block;
    height: 414px;
    margin-top: 61px;
}

.teambuildings__photo1 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.teambuildings__colr{
    width: calc(57% - 30px);
    position: relative;
}

.teambuildings__photo2{
    display: block;
    height: 277px;
}

.teambuildings__photo2 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.teambuildings__photo3{
    display: block;
    height: 268px;
    margin-top: 30px;
}

.teambuildings__photo3 img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}