.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-white {
    color: #05224F;
    background-color: #FFFFFF;
}

.btn-blue {
    color: #fff;
    background-color: #2D8CE4;
}

.header__burger {
    display: none;
    overflow: hidden;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header.active {
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.header .container,
.footer .container {
    max-width: 1230px;
}

.header__body {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-block;
}

.header__menu {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-wrapper {
    flex: auto;
    display: flex;
    align-items: center;
}

.menu__list {
    display: flex;
    align-items: center;
}

.menu__list li a {
    font-weight: normal;
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    color: #05224F;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.menu__list li:not(:last-of-type) a {
    margin-right: 60px;
}

.menu__list li a:after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #05224F;
    transition: all .3s ease;
}

.menu__list li a:hover:after {
    bottom: 0;
}

.header__buttons {
    display: flex;
    align-items: center;
}

.header__buttons a:not(:last-of-type) {
    margin-right: 10px;
}

.custom-select {
    position: relative;
    width: 100%;
    z-index: 900;
}

.boxes-select {
    width: 100%;
    padding: 0 20px 0 0;
    user-select: none;
    color: #989898;
    font-size: 15px;
    position: relative;
    text-align: inherit;
    display: flex;
    align-items: center;
}

.boxes-select img {
    margin-right: 10px;
}

.boxes-select::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.boxes-select:focus {
    outline: none;
}

.custom-select.active .boxes-select::after {
    transform: translateY(-50%) rotate(180deg);
}

.select_pag {
    width: 150px;
    display: none;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    max-height: 10rem;
    overflow-y: auto;
    border-radius: 0.3125rem;
    background-color: #2d8ce4;
    max-height: 200px;
    overflow: auto;
}

.select-img {
    flex: 0 0 20px;
    max-width: 20px;
    overflow: hidden;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 3px;
    margin-right: 10px;
}

.select_pag.active {
    display: block;
}

.select_pag {
    padding: 5px 0;
}

.select_pag li.selected {
    background-color: var(--yellow-light);
}

.select_pag li a {
    display: flex;
    align-items: center;
    padding: 7px 5px;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #fff;
}

.select_pag li a:hover {
    background-color: #f5f5f5;
    color: #2d8ce4;
}

.header__lang {
    flex: 0 0 130px;
    margin-right: 20px;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

.offer {
    padding-top: 100px;
    padding-bottom: 400px;
    background-color: #F4FAFF;
    position: relative;
}

.simple-page {
    margin-top: 1.5em;
}

.elipse {
    position: absolute;
    width: 41px;
    height: 41px;
    background-image: url(../img/Ellipse.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

.elipse-1 {
    left: 79px;
    top: 130px;
}

.elipse-2 {
    left: 286px;
    top: 285px;
}

.elipse-3 {
    left: -20px;
    bottom: 114px;
}

.elipse-4 {
    right: 57px;
    top: 155px;
}

.elipse-5 {
    right: 365px;
    top: 285px;
}

.elipse-6 {
    right: 133px;
    bottom: 155px;
}

.elipse-7 {
    left: 120px;
    top: 134px;
}

.elipse-8 {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.figure {
    position: absolute;
    width: 420px;
    height: 480px;
    background-image: url(../img/figure.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.figure-1 {
    top: 99px;
    left: -174px;
    width: 348px;
    height: 400px;
    animation: rotate 60s ease infinite;
}

.figure-2 {
    width: 265px;
    height: 181px;
    background-image: url(../img/figure-2.svg);
    bottom: 0;
    left: 30px;
    animation: bounce 3s ease-in-out infinite;
}

.figure-3 {
    width: 422px;
    height: 485px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -36px;
}

.figure-4 {
    right: 55px;
    bottom: 69px;
    animation: rotate 60s ease infinite;
}

.figure-5 {
    height: 500px;
    width: 575px;
    left: -301px;
    top: 48px;
    animation: rotate 60s ease infinite;
}

.figure-6 {
    height: 437px;
    width: 380px;
    right: -248px;
    bottom: 49px;
    animation: rotate 60s ease infinite;
}

.offer__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
}

.offer__vodeo {
    position: absolute;
    width: 100%;
    left: 0;
    top: 355px;
}

.page-title {
    font-style: normal;
    font-weight: bold;
    font-size: 65px;
    line-height: 72px;
    text-transform: capitalize;
    color: #05224F;
    text-align: center;
    margin-bottom: 10px;
    max-width: 517px;
}

.section-subtitle {
    text-align: center;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #686E78;
    margin-top: 10px;
}

.offer .btn-blue {
    margin-top: 48px;
    min-width: 220px;
    padding: 18px;
    box-shadow: 0px 18px 22px rgba(16, 97, 167, 0.15), 0px 5.42647px 6.63236px rgba(16, 97, 167, 0.0977383), 0px 2.25388px 2.75474px rgba(16, 97, 167, 0.075), 0px 0.815184px 0.996336px rgba(16, 97, 167, 0.0522617);
}

.founders {
    padding: 300px 0 99px;
}

.founders__body {
    max-width: 955px;
    margin: 0 auto;
}

.section-title {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 80px;
    text-transform: capitalize;
    color: #05224F;
    text-align: center;
}

.founders__list {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
}

.founders__item {
    flex: 0 1 33.333%;
    padding: 0 15px;
    margin-top: 122px;
}

.founders__wrapper {
    background-color: #FFFFFF;
    border: 0.5px solid #DBE9F4;
    box-sizing: border-box;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    position: relative;
    height: 100%;
}

.founders__img {
    position: absolute;
    width: 145px;
    height: 145px;
    overflow: hidden;
    top: -72px;
    left: 50%;
    transform: translateX(-50%);
}

.founders__text {
    padding: 80px 20px 20px 20px;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #686E78;
}

.founders__text h4 {
    max-width: 113px;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 28px;
    text-transform: capitalize;
    color: #05224F;
}

.privileges {
    padding: 70px 0;
    background-color: #FBFBFB;
    position: relative;
}

.privileges__body {
    position: relative;
    z-index: 5;
}

.privileges__content {
    display: flex;
    margin-top: 50px;
}

.privileges__img {
    flex: 0 0 50%;
    padding-right: 20px;
}

.privileges__list {
    flex: 0 0 50%;
    padding-left: 60px;
}

.privileges__item:not(:last-of-type) {
    margin-bottom: 40px;
}

.privileges__list-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.privileges__list-img {
    flex: 0 0 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    margin-right: 15px;
}

.privileges__title {
    font-style: normal;
    font-weight: normal;
    font-size: 21px;
    text-transform: capitalize;
    color: #05224F;
}

.privileges__text {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #686E78;
}

.pricing {
    padding: 70px 0;
}

.pricing__body {
    max-width: 955px;
    margin: 0 auto;
}

.pricing__head {
    display: flex;
    align-items: center;
}

.pricing__title-wrapp {
    flex: auto;
}

.pricing__title-wrapp .section-title {
    text-align: start;
}

.pricing__title-wrapp .section-subtitle {
    text-align: start;
}

.pricing__filter-block {
    border: 3px solid transparent;
    width: 205px;
    background: #FBFBFB;
    border-radius: 65px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pricing__filter-block a {
    flex: 0 0 50%;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #05224F;
    padding: 7px;
    border-radius: 65px;
}

.pricing__filter-block a.active {
    color: white;
    background-color: #05224F;
}

.pricing__filter-sale {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #05224F;
    position: relative;
    text-align: center;
}

.pricing__filter-sale span {
    font-weight: 500;
}

.pricing__filter-sale:after {
    content: "";
    width: 95px;
    height: 63px;
    position: absolute;
    right: -68px;
    bottom: 12px;
    background-image: url(../img/back-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.pricing__counter {
    margin-top: 74px;
}

.irs--flat .irs-line {
    height: 6px;
    background-color: #F4FAFF;
    border-radius: 20px;
}

.irs--flat .irs-bar {
    background-color: #05224F;
    height: 6px;
    border-radius: 20px;
}

.irs--flat .irs-handle {
    top: 21px;
    width: 14px;
    height: 14px;
    background-color: #05224F;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    cursor: pointer;
}

.irs--flat .irs-single {
    background-color: #05224F;
    border-radius: 33px;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
    color: #FFFFFF;
    padding: 0 10px;
    top: -25px;
    cursor: pointer;
}

.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child {
    background-color: #05224F;
}

.irs--flat .irs-handle>i:first-child {
    background-color: #05224F;
}

.irs--flat .irs-single:before {
    display: none;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
    display: none;
}

.pricing__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    margin-right: -15px;
    margin-left: -15px;
}

.pricing__col {
    flex: 0 1 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.pricing__col .card {
    height: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: all .3s ease;
}

.card-inner {
    background-color: #FBFBFB;
}

.card:hover {
    background-color: #FBFBFB;
}

.card__title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: capitalize;
    color: #05224F;
    margin-bottom: 15px;
}

.card__prise-wrapper {
    display: flex;
    align-items: flex-start;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    color: #B9C0CC;
}

.card__prise {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    color: #05224F;
}

.card__month {
    display: inline-block;
    margin-left: 12px;
    line-height: 38px;
}

.card__list {
    flex: auto;
    margin-top: 30px;
}

.card__list-item {
    display: flex;
    align-items: center;
}

.card__list-item:not(:last-child) {
    margin-bottom: 25px;
}

.card__list-icon {
    flex: 0 0 20px;
    margin-right: 15px;
}

.card .btn-blue {
    padding: 15px 10px;
    margin-top: 45px;
    max-width: none;
}

.access {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    max-width: fit-content;
    background: #FBFBFB;
    border-radius: 29px;
    margin: 0 auto 0;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #05224F;

    width: intrinsic;           /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;    /* Firefox/Gecko */
    width: -webkit-max-content; /* Chrome */
}

.access span {
    font-weight: 500;
}

.access img {
    margin-right: 10px;
}

.footer {
    background-color: #1D1D1D;
}

.footer__body {
    display: flex;
    align-items: center;
    padding: 32px 0;
}

.footer__menu {
    flex: auto;
    display: flex;
    justify-content: center;
}

.footer__menu .menu__list li a {
    color: white;
}

.footer__menu .menu__list li a::after {
    background-color: white;
}

.social__item {
    display: inline-block;
    transition: all 0.3s ease;
}

.social__item:hover {
    transform: scale(1.2);
}

.social__item:not(:last-of-type) {
    margin-right: 28px;
}

.fooret__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #292B2D;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    color: #7A7A7A;
    padding: 30px 15px;
}

.wizard-block {
    padding: 30px 0 0;
}

.wizard {
    display: flex;
    align-items: center;
    max-width: 955px;
    margin: 0 auto;
}

.wizard__wrapper {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-page {
    padding-top: 65px;
}

.wizard__progress {
    width: 290px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wizard__item {
    position: relative;
    width: 14px;
    height: 14px;
    background-color: #F4FAFF;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    cursor: pointer;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #B9C0CC;
}

.wizard__item:first-child::before {
    display: none;
}

.wizard__item:before {
    content: "";
    display: block;
    width: 133px;
    height: 6px;
    position: absolute;
    background: #F4FAFF;
    border-radius: 20px;
    top: 50%;
    right: 6px;
    z-index: -1;
    transform: translateY(-50%);
}

.wizard__item span {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.wizard__item.active::before {
    background-color: #05224F;
}

.wizard__item.active {
    background-color: #05224F;
    color: #05224F;
}

.header-inner .header {
    border-bottom: 1px solid #F3F3F3;
}

.form-section {
    padding: 70px 0;
}

.form-section__body {
    max-width: 955px;
    margin: 0 auto;
}

.personal-info-plan-info {
    margin-top: 30px;
}

.form__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -17px;
    margin-left: -17px;
}

.form__col {
    flex: 0 0 50%;
    padding: 0 17px;
}

.form__item .section-title {
    text-align: start;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-wrap label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #05224F;
    margin-bottom: 8px;
}

.input {
    padding: 10px 12px;
    border: 1px solid #E9E9E9;
    border-radius: 3px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #686E78;
}

.input-group {
    display: flex;
    justify-content: space-between;
}

.input-group .input-wrap {
    flex: 0 0 48%;
}

.personal-info-plan-info .subscr_info {
    margin-bottom: 10px;
}

.form-section__body .tab-item-wrap {
    margin-top: 25px;
}

.form-section__body .personal-info-plan-info .editor_btn {
    width: auto;
    display: inline-block;
}

.form-section__body .tab-billing {
    display: flex;
}

.form-section__body .tab-billing .input-group .input-wrap {
    margin-left: 25px;
}

.form-section__body .input-wrap label {
    white-space: nowrap;
}

.hr {
    width: 100%;
    height: 1px;
    background-color: #F3F3F3;
}

.form-section .hr {
    margin: 25px 0 40px;
}

.plyr__control--overlaid {
    background: rgba(0, 0, 0, 0.5);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(7px);
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 400;
    opacity: 30%;
}

.overlay.active {
    display: block;
}

.tabs-nav {
    display: flex;
}

.tabs-nav li a {
    padding: 10px;
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #05224F;
    background-color: transparent;
}

.tabs-nav li a.active {
    color: white;
    background-color: #2D8CE4;
    border-radius: 3px;
}

.tab-item-wrap {
    margin-top: 43px;
}

.tab-item-wrap p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #686E78;
    margin-top: 10px;
    margin-bottom: 23px;
}

.card__title span {
    font-size: 14px;
    display: block;
    font-weight: normal;
}

.projects {
    padding: 70px 0;
}

.projects__list {
    counter-reset: items;
    /* margin-top: 30px; */
}

.projects__list .projects__item+.projects__item {
    margin-top: 15px;
}

.projects__item {
    display: flex;
    align-items: center;
}

.projects__item .project:before {
    /* counter-increment: items;
    content: '#'counter(items);
    position: absolute;
    font-size: 28px;
    font-weight: bold;
    color: #05224F;
    left: -50px;
    top: 50%;
    transform: translateY(-50%); */
    counter-increment: items;
    content: '#'counter(items);
    position: absolute;
    font-size: 82px;
    font-weight: 900;
    color: #f3f3f3;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-115%);
    letter-spacing: -5px;
    z-index: -1;
    font-family: 'Roboto Slab', serif;
}

.project {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #FFFFFF;
    /* border: 0.5px solid #DBE9F4;     */
    box-shadow: 0px 2px 8px rgb(0 0 0 / 8%), 0px 0px 2px rgb(0 0 0 / 6%), 0px 0px 1px rgb(0 0 0 / 4%);
    border-radius: 5px;
    position: relative;
    width: 100%;
    margin-left: 50px;
}

.project__img {
    width: 100px;
    height: 100px;
    background-color: white;
    border: 1px solid #DBE9F4;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 4%), 0px 0px 2px rgb(0 0 0 / 6%), 0px 0px 1px rgb(0 0 0 / 4%);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 20px;
}

.project__img img {
    height: 100%;
}

.project__title {
    flex: auto;
    color: #686E78;
    font-size: 18px;
    font-weight: 300;
}

.project__prise {
    padding: 0 15px;
}

.project__buttons {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.project__buttons .btn+.btn {
    margin-top: 10px;
}

.project__buttons .btn {
    max-width: initial;
}

.btn:hover {
    opacity: 0.7;
}

.btn.btn-red {
    color: #fff;
    background: #fa4d4d;
}

.btn.btn-brand {
    color: #fff;
    background: #05224f;
}

.project .card__prise {
    font-size: 32px;
}

.project_imgs_wrpr {
    display: flex;
    align-items: center;
}