html {
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*overflow-x: hidden;
    overflow-y: auto;*/
}

header {
    width: 100%;
    height: 100vh;
    background-color: #202020;
}

header .nav {
    width: inherit;
    height: 86px;
    background-color: #202020;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

header .nav .logo-wrapper {
    width: 197px;
    height: 23px;
    padding-left: 84px;
    cursor: pointer;
}

header .nav .logo-wrapper img {
    max-width: 100%
}

header .nav .menu-wrapper {
    display: flex;
    align-items: center;
    padding-right: 84px;
}

header .nav .menu-wrapper a {
    margin-right: 50px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
}

header .nav .menu-wrapper .lang-switch {
    margin-right: 65px;
    display: flex;
}

header .nav .menu-wrapper .lang-switch a {
    margin-right: 0;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    display: block;
}

header .nav .menu-wrapper .lang-switch a:first-child {
    margin-right: 15px;
}

header .nav .menu-wrapper .lang-switch .active-lang {
    background-image: linear-gradient(45deg, #42DCEB 18%, #9AC6F1 52%, #EDC3F7 77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

header .nav .menu-wrapper .menu-icon-container {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .nav .menu-wrapper .menu-icon-container .icon-circle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 11;
}

header .nav .menu-wrapper .menu-icon-container .icon-circle .icon-line {
    width: 21px;
    height: 1px;
    background-color: #202020;
}

header .nav .menu-wrapper .menu-icon-container .icon-circle .icon-line:nth-child(2) {
    margin: 5px 0;
    width: 14px;
    align-self: flex-end;
}

header .nav .menu-wrapper div.circle {
    border-radius: 50%;
    width: 0px;
    height: 0px;
    position: absolute;
    top: 35px;
    right: 107px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all 300ms cubic-bezier(0, 0.995, 0.99, 1);
    -moz-transition: all 300ms cubic-bezier(0, 0.995, 0.99, 1);
    -ms-transition: all 300ms cubic-bezier(0, 0.995, 0.99, 1);
    -o-transition: all 300ms cubic-bezier(0, 0.995, 0.99, 1);
    transition: all 300ms cubic-bezier(0, 0.995, 0.99, 1);
    z-index: -1;
}

header .nav .menu-wrapper div.circle.expand {
    width: 179vw;
    height: 284vh;
    top: -560px;
    right: -565px;
    -webkit-transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
    -moz-transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
    -ms-transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
    -o-transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
    transition: all 400ms cubic-bezier(0, 0.995, 0.99, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: context-menu;
    z-index: 1;
}

header .nav .menu-wrapper .mobile-nav-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0;
    z-index: 10;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
}

header .nav .menu-wrapper .mobile-nav-wrapper .nav-content {
    width: 80%;
    max-width: 1022px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

header .nav .menu-wrapper .mobile-nav-wrapper .nav-content .nav-list ul {
    list-style-type: none;
    padding-left: 0;
}

header .nav .menu-wrapper .mobile-nav-wrapper .nav-content .nav-list ul li {
    display: block;
}

header .nav .menu-wrapper .mobile-nav-wrapper .nav-content .nav-list ul li a {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 88px;
    background-image: linear-gradient(45deg, #42DCEB 18%, #9AC6F1 52%, #EDC3F7 77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    display: block;
}

header .nav .menu-wrapper .mobile-nav-wrapper .nav-contacts {
    position: absolute;
    right: 0;
    bottom: 0;
}

header .nav .menu-wrapper .mobile-nav-wrapper .mn-text {
    color: #202020;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    line-height: 31px;
}

header .nav .menu-wrapper .mobile-nav-wrapper .mn-email {
    margin-bottom: 60px;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-image: linear-gradient(45deg, #42DCEB 18%, #9AC6F1 52%, #EDC3F7 77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid #42DCEB;
    cursor: pointer;
    display: block;
}

header .nav .menu-wrapper .mobile-nav-wrapper .wd-email {
    width: 78%
}

header .nav .menu-wrapper .mobile-nav-wrapper .wd-email-ua {
    width: 67%
}

header .nav .menu-wrapper .mobile-nav-wrapper .mn-links {
    display: flex;
}

header .nav .menu-wrapper .mobile-nav-wrapper .mn-links a {
    margin-right: 47px;
}

header .nav .menu-wrapper .mobile-nav-wrapper .mn-links a .mn-link-container {
    opacity: 1;
}

header .nav .menu-wrapper .mobile-nav-wrapper .mn-links a .mn-link-container .fcb-img {
    width: 11px;
    height: auto;
}

header .nav .menu-wrapper .mobile-nav-wrapper .mn-links a .mn-link-container:hover {
    opacity: .7;
}

header .nav .menu-wrapper .mobile-nav-wrapper.show-nav {
    -webkit-animation: fadebottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation-delay: .4s;
    display: flex;
}

@-webkit-keyframes fade-bottom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

header .header-section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

header .header-section .title-wrapper {
    width: 54%;
    margin: 0 auto;
}

header .header-section .title-wrapper .welcome-title {
    margin-top: 71px;
    margin-bottom: 65px;
    margin-left: -27px;
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    font-family: 'Rubik', sans-serif;
    letter-spacing: 5px;
    background-image: linear-gradient(45deg, #27b3c7 17%, #8a6297 46%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .header-section .title-wrapper .header-title {
    width: 870px;
    margin: 0 0 73px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 78px;
    font-weight: 500;
    animation-delay: 0.1s;
}

header .header-section .title-wrapper .sub-title {
    width: 354px;
    margin: 0 0 63px;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 300;
    animation-delay: 0.1s;
}

header .header-section .services-scroll-container {
    display: flex;
    align-items: center;
    position: relative;
}

header .header-section .services-scroll-container .animation-circle {
    width: 42px;
    height: 42px;
    background-image: linear-gradient(89deg, #2EE2EB 9%, #EAACF3 76%);
    opacity: .6;
    border-radius: 50%
}

header .header-section .services-scroll-container .animation-circle.hovered {
    -webkit-animation: pulsate-bck 1s ease-in-out infinite both;
    animation: pulsate-bck 1s ease-in-out infinite both;
    transition: 5s;
}

header .header-section .services-scroll-container .animation-circle.animated {
    -moz-animation: pulsate-bck 1s;
    -webkit-animation: pulsate-bck 1s;
    animation: pulsate-bck 1s;
}

@-webkit-keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }
}

@keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }
}

header .header-section .services-scroll-container .services-item {
    color: #fff;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    left: 18px;
}

header .header-section .scroll-guide {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 59px;
    bottom: 59px;
}

header .header-section .scroll-guide .scroll-text {
    color: #fff;
    font-weight: 300;
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    transform: rotate(90deg) translate(-28px, -28px);
    text-transform: uppercase;
}

header .header-section .scroll-guide .scroll-text-ua {
    transform: rotate(90deg) translate(-34px, -47px);
}

header .header-section .scroll-guide .scroll-line {
    width: 1px;
    height: 54px;
    background: #fff;
}

.fade-in-bottom {
    -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    50% {
        opacity: .1;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    50% {
        opacity: .1;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-left {
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 1s;
}

@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.show-up {
    -webkit-animation: show-up 0.5s;
    animation: show-up 0.5s;
}

@-webkit-keyframes show-up {
    0% {
        opacity: 0;
    }

    99% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes show-up {
    0% {
        opacity: 0;
    }

    99% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.calendly-btn{
    display: flex;
    align-items: center;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.calendly-btn .animation-circle {
    width: 42px;
    height: 42px;
    background-image: linear-gradient(89deg, #2EE2EB 9%, #EAACF3 76%);
    opacity: .6;
    border-radius: 50%;
}
.calendly-btn:hover .animation-circle{
    -webkit-animation: pulsate-bck 1s ease-in-out infinite both;
            animation: pulsate-bck 1s ease-in-out infinite both;
    transition: 5s;
}
.calendly-btn span{
    color: #fff;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: -25px;
}
header .calendly-btn{
    margin-right: 35px;
}

@media screen and (max-width: 1151px) {
    header .header-section .title-wrapper {
        width: 77%
    }

    header .header-section .title-wrapper .header-title {
        width: auto;
        font-size: 36px;
    }

    header .header-section .title-wrapper .welcome-title {
        margin-left: 0;
        font-size: 18px;
    }

    header .header-section .title-wrapper .sub-title {
        line-height: 21px;
        font-size: 14px;
    }

    header .header-section .scroll-guide {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    header .nav .menu-wrapper a {
        display: none;
    }
}

@media screen and (max-width: 621px) {
    header .nav .menu-wrapper {
        padding-right: 18px;
    }

    header .nav .menu-wrapper .mn-links a {
        display: flex;
    }

    header .nav .logo-wrapper {
        width: 136px;
        padding-left: 18px;
    }

    header .header-section .title-wrapper {
        width: 94%
    }

    header .header-section .title-wrapper .welcome-title {
        margin-bottom: 40px;
    }

    header .header-section .title-wrapper .header-title {
        margin: 0 0 36px;
    }

    header .header-section .title-wrapper .sub-title {
        margin: 0 0 41px;
        width: auto;
    }
}

@media screen and (max-width: 895px) {
    header .nav .menu-wrapper .mobile-nav-wrapper .nav-content .nav-list ul li a {
        font-size: 70px;
    }

    header .nav .menu-wrapper div.circle.expand {
        width: 190vw;
        height: 191vh;
        top: -288px;
        right: -332px;
    }
}

@media screen and (max-width: 778px) {
    header .calendly-btn{
        margin-right: 20px;
    }

    header .nav .menu-wrapper .lang-switch{
        margin-right: 20px;
    }

    header .nav .menu-wrapper .mobile-nav-wrapper .nav-content .nav-list ul li a {
        font-size: 65px;
    }

    header .nav .menu-wrapper .mobile-nav-wrapper .nav-content-ua {
        width: 88%
    }
}

@media screen and (max-width: 668px) {
    header .nav .menu-wrapper div.circle.expand {
        width: 220vw;
    }
}

@media screen and (max-width: 640px) {
    header .nav .menu-wrapper div.circle.expand {
        right: -268px;
    }

    header .nav .menu-wrapper div.circle {
        right: 40px;
    }
}

@media screen and (max-width: 553px) {
    header .calendly-btn{
        display: none;
    }
    header .nav .menu-wrapper div.circle.expand {
        width: 249vw;
    }

    header .nav .menu-wrapper .mobile-nav-wrapper .mn-email {
        margin-bottom: 16px;
    }

    header .header-section .title-wrapper {
        width: 88%
    }
}

@media screen and (max-width: 431px) {
    header .nav .menu-wrapper div.circle.expand {
        width: 313vw;
    }

    header .nav .menu-wrapper .mobile-nav-wrapper .nav-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header .nav .menu-wrapper .mobile-nav-wrapper .nav-content .nav-list {
        margin-right: 44px;
    }

    header .nav .menu-wrapper .mobile-nav-wrapper .nav-content .nav-list ul li a {
        font-size: 44px;
    }

    header .nav .menu-wrapper .mobile-nav-wrapper .nav-contacts {
        position: relative;
    }
}

@media screen and (max-width: 395px) {
    header .nav .menu-wrapper div.circle.expand {
        right: -186px;
        width: 351vw;
    }
}

@media screen and (max-width: 330px) {
    header {
        height: auto;
    }

    header .nav .menu-wrapper .lang-switch {
        margin-right: 34px;
    }

    header .header-section {
        height: auto;
    }

    header .header-section .title-wrapper {
        margin-top: 60px;
        margin-bottom: 70px;
    }
}

@media only screen and (min-device-width: 800px) and (max-device-width: 1024px) {
    header .nav .menu-wrapper div.circle.expand {
        width: 189vw;
    }
}

.marketing-section {
    width: 100%;
    margin: 87px auto 40px;
    background-color: #ffffff;
    height: 774px;
}

.marketing-section .fixed-section {
    padding-top: 7%;
    margin-bottom: 300px;
    display: flex;
    justify-content: center;
}

.marketing-section .marketing-section-title {
    font-family: Rubik, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 78px;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.marketing-section .marketing-section-title .marketing-section-text {
    width: 449px;
}

.marketing-section .marketing-section-title-ua {
    font-size: 70px;
    justify-content: center;
}

.marketing-section .marketing-list {
    width: 50%;
    position: relative;
}

.marketing-section .marketing-list .list-item {
    display: flex;
    align-items: baseline;
}

.marketing-section .marketing-list .list-item .item-bullet {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.marketing-section .marketing-list .list-item #line-wrapper {
    width: 1px;
    height: 0;
    background: #000;
    margin: 0 auto;
    position: absolute;
    left: 9px;
}

.marketing-section .marketing-list .list-item #line-wrapper.height-d-desktop {
    -webkit-animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

@-webkit-keyframes height-d-desktop {
    0% {
        height: 0;
    }

    100% {
        height: 374px;
    }
}

@keyframes height-d-desktop {
    0% {
        height: 0;
    }

    100% {
        height: 374px;
    }
}

.marketing-section .marketing-list .list-item #line-wrapper.height-up-desktop {
    -webkit-animation: height-up-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    animation: height-up-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

@-webkit-keyframes height-up-desktop {
    0% {
        height: 374px;
    }

    100% {
        height: 0;
    }
}

@keyframes height-up-desktop {
    0% {
        height: 374px;
    }

    100% {
        height: 0;
    }
}

.marketing-section .marketing-list .list-item .item-wrapper {
    margin-bottom: 20px;
    margin-left: 68px;
}

.marketing-section .marketing-list .list-item .item-wrapper .item-wrapper-title {
    margin: 0;
    font-family: Rubik, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 36px;
}

.marketing-section .marketing-list .list-item .item-wrapper #item-wrapper-title {
    margin: 0;
    font-family: Rubik, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 36px;
}

.marketing-section .marketing-list .list-item .item-wrapper #item-wrapper-title.scale-up {
    -webkit-animation: scale-up-center .5s;
    animation: scale-up-center .5s;
}

@-webkit-keyframes scale-up-center {
    0% {
        font-size: 36px;
    }

    100% {
        font-size: 44px;
    }

    0% {
        font-size: 36px;
    }
}

@keyframes scale-up-center {
    0% {
        font-size: 36px;
    }

    100% {
        font-size: 44px;
    }

    0% {
        font-size: 36px;
    }
}

.marketing-section .marketing-list .list-item .item-wrapper #item-wrapper-title.scale-down {
    -webkit-animation: scale-down-center 1s;
    animation: scale-down-center 1s;
}

@-webkit-keyframes scale-down-center {
    0% {
        font-size: 36px;
    }

    100% {
        font-size: 37px;
    }

    0% {
        font-size: 36px;
    }
}

@keyframes scale-down-center {
    0% {
        font-size: 36px;
    }

    100% {
        font-size: 37px;
    }

    0% {
        font-size: 36px;
    }
}

.marketing-section .marketing-list .list-item .item-wrapper .sub-text {
    width: 352px;
    font-family: Rubik, sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 14px;
    opacity: 0;
    line-height: 21px;
    margin-top: 9px;
    margin-bottom: 9px;
    letter-spacing: -0.1px;
}

.marketing-section .marketing-list .list-item .item-wrapper .sub-text.text-opacity {
    -webkit-animation: text-opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    animation: text-opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

@-webkit-keyframes text-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes text-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.marketing-section .marketing-list .list-item .item-wrapper .sub-text.text-opacity-none {
    -webkit-animation: text-opacity-none 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    animation: text-opacity-none 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

@-webkit-keyframes text-opacity-none {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes text-opacity-none {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.marketing-section .marketing-list .list-item .item-wrapper-ua {
    margin-bottom: 13px;
}

.marketing-section .marketing-list #circle-container {
    position: absolute;
    top: -77px;
    left: -90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketing-section .marketing-list #circle-container #circle-wrapper-o {
    width: 200px;
    height: 200px;
}

.marketing-section .marketing-list #circle-container #circle-wrapper-o #outer-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(80deg, #73EFFF 0%, #EDC8FF 100%);
    opacity: 0.12;
    border-radius: 50%;
    transform: scale(1.2);
}

.marketing-section .marketing-list #circle-container #circle-wrapper-m {
    width: 114px;
    height: 114px;
    position: absolute;
}

.marketing-section .marketing-list #circle-container #circle-wrapper-m #middle-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(80deg, #73EFFF 0%, #EDC8FF 100%);
    opacity: 0.4;
    border-radius: 50%;
    position: absolute;
    transform: scale(1.2);
}

.marketing-section .marketing-list #circle-container #circle-wrapper-i {
    width: 50px;
    height: 50px;
    position: absolute;
}

.marketing-section .marketing-list #circle-container #circle-wrapper-i #inner-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(80deg, #73EFFF 0%, #EDC8FF 100%);
    opacity: 0.9;
    border-radius: 50%;
    position: absolute;
    transform: scale(1.2);
}

.marketing-section .marketing-list #circle-container.scroll-b-desktop {
    -webkit-animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

@-webkit-keyframes scroll-b-desktop {
    0% {
        top: -77px;
    }

    100% {
        top: 289px;
    }
}

@keyframes scroll-b-desktop {
    0% {
        top: -77px;
    }

    100% {
        top: 289px;
    }
}

.marketing-section .marketing-list #circle-container.scroll-t-desktop {
    -webkit-animation: scroll-t-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    animation: scroll-t-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

@-webkit-keyframes scroll-t-desktop {
    0% {
        top: 289px;
    }

    100% {
        top: -77px;
    }
}

@keyframes scroll-t-desktop {
    0% {
        top: 289px;
    }

    100% {
        top: -77px;
    }
}

.fixed-section.sticky {
    width: 96%;
    position: sticky;
    top: 0;
    margin: 0 auto;
}

.fixed-section.sticky-ua {
    width: 100%;
    position: sticky;
    top: 0;
    margin: 0 auto;
}

@media screen and (max-width: 895px) {
    .marketing-section .fixed-section {
        width: 96%;
        margin: 0 auto;
        padding-top: 0;
        flex-direction: column;
        align-items: center;
        justify-content: unset;
    }

    .marketing-section .marketing-section-title {
        display: block;
        width: 86%;
        margin-bottom: 40px;
        font-size: 46px;
    }

    .marketing-section .marketing-section-title .marketing-section-text {
        width: auto;
        margin: 0;
    }

    .marketing-section .marketing-list {
        width: 86%
    }

    .marketing-section .marketing-list #circle-container #circle-wrapper-o #outer-circle {
        display: none;
    }

    .marketing-section .marketing-list #circle-container #circle-wrapper-m #middle-circle {
        transform: scale(1.1);
    }

    .marketing-section .marketing-list .list-item .item-wrapper .sub-text {
        width: auto;
    }
}

@media screen and (max-width: 840px) {
    .marketing-section .marketing-list #line-wrapper.height-d-desktop {
        -webkit-animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 315px;
        }
    }

    @keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 315px;
        }
    }

    .marketing-section #circle-container.scroll-b-desktop {
        -webkit-animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 229px;
        }
    }

    @keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 229px;
        }
    }
}

@media only screen and (min-device-width: 710px) and (max-device-width: 770px) {
    .marketing-section {
        height: 597px;
    }
}

@media screen and (max-width: 768px) {
    .marketing-section .fixed-section {
        width: 81%
    }

    .marketing-section .marketing-list .list-item .item-wrapper-ua {
        margin-bottom: 20px;
    }

    .marketing-section .marketing-list .list-item .item-wrapper {
        margin-left: 28px;
    }

    .marketing-section .marketing-list .list-item .item-wrapper .sub-text {
        opacity: 1;
    }

    .marketing-section .marketing-list .list-item #line-wrapper.height-d-desktop {
        -webkit-animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 335px;
        }
    }

    @keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 335px;
        }
    }

    .marketing-section .marketing-list #circle-container.scroll-b-desktop {
        -webkit-animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 249px;
        }
    }

    @keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 249px;
        }
    }
}

@media screen and (max-width: 595px) {
    .marketing-section {
        height: 668px;
    }

    .marketing-section .marketing-list .list-item .item-wrapper .sub-text {
        font-size: 12px;
        opacity: 1;
    }

    .marketing-section .marketing-list .list-item #line-wrapper.height-d-desktop {
        -webkit-animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 394px;
        }
    }

    @keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 394px;
        }
    }

    .marketing-section .marketing-list #circle-container.scroll-b-desktop {
        -webkit-animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 310px;
        }
    }

    @keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 310px;
        }
    }

    .marketing-section .marketing-section-title {
        font-size: 36px;
    }

    .fixed-section.sticky {
        position: relative;
    }
}

@media screen and (max-width: 416px) {
    .marketing-section .marketing-list #line-wrapper.height-d-desktop {
        -webkit-animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 394px;
        }
    }

    @keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 394px;
        }
    }

    .marketing-section #circle-container.scroll-b-desktop {
        -webkit-animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 310px;
        }
    }

    @keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 310px;
        }
    }

    .marketing-section .list-item .item-wrapper {
        margin-bottom: 27px;
    }

    .marketing-section .list-item .item-wrapper-ua {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 411px) {
    .marketing-section .marketing-list .list-item .item-wrapper {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 360px) {
    .marketing-section .marketing-list .list-item .item-wrapper-ua {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 330px) {
    .marketing-section.fixed-section {
        padding-top: 0;
    }

    .marketing-section {
        height: 753px;
    }

    .marketing-section .marketing-list #line-wrapper.height-d-desktop {
        -webkit-animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: height-d-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 434px;
        }
    }

    @keyframes height-d-desktop {
        0% {
            height: 0;
        }

        100% {
            height: 434px;
        }
    }

    .marketing-section .marketing-list #circle-container.scroll-b-desktop {
        -webkit-animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation: scroll-b-desktop 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    @-webkit-keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 353px;
        }
    }

    @keyframes scroll-b-desktop {
        0% {
            top: -77px;
        }

        100% {
            top: 353px;
        }
    }

    .marketing-section .marketing-list #circle-container #circle-wrapper-m #middle-circle {
        transform: scale(0.9);
    }

    .marketing-section .marketing-list #circle-container #circle-wrapper-i #inner-circle {
        transform: scale(1);
    }

    .marketing-section .marketing-list .list-item .item-wrapper-ua {
        margin-bottom: 13px;
    }
}

@media only screen and (min-device-width: 800px) and (max-device-width: 1024px) {
    .marketing-section {
        height: 561px;
        margin: 120px auto 40px;
    }

    .marketing-section .marketing-list .list-item .item-wrapper-ua {
        margin-bottom: 13px;
    }

    .marketing-section .fixed-section {
        padding-top: 0;
    }
}

@media only screen and (min-device-width: 924px) and (max-device-width: 1138px) and (orientation: landscape) {
    .marketing-section {
        height: 596px;
        margin: 120px auto 100px;
    }
}

.about-us-section {
    width: 100%;
    height: 100vh;
    max-height: 1000px;
    background-color: #202020;
    display: flex;
    justify-content: center;
}

.about-us-section .about-us-wrapper {
    width: 54%;
    margin-top: 91px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-us-section .about-us-wrapper .header-title {
    margin-left: -27px;
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    font-family: 'Rubik', sans-serif;
    letter-spacing: 5px;
    background-image: linear-gradient(45deg, #27b3c7 4%, #8a6297 23%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-section .about-us-wrapper .section-title {
    max-width: 767px;
    margin: 0;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 50px;
    font-weight: 500;
    animation-delay: 0.1s;
    visibility: hidden;
}

.about-us-section .about-us-wrapper .section-title-ua-mob {
    display: none;
}

.about-us-section .about-us-wrapper .awards-redirect-container {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    bottom: 24vh;
}

.about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect {
    display: flex;
    align-items: center;
    position: relative;
}

.about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .animation-circle {
    width: 42px;
    height: 42px;
    background-image: linear-gradient(89deg, #2EE2EB 9%, #EAACF3 76%);
    opacity: .6;
    border-radius: 50%
}

.about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .animation-circle.hovered {
    -webkit-animation: pulsate-bck 1s ease-in-out infinite both;
    animation: pulsate-bck 1s ease-in-out infinite both;
    transition: 5s;
}

.about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .animation-circle.animated {
    -moz-animation: pulsate-bck 1s;
    -webkit-animation: pulsate-bck 1s;
    animation: pulsate-bck 1s;
}

@-webkit-keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }
}

@keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .6;
    }
}

.about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .awards-item {
    width: 16vh;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    left: 18px;
}

.about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .awards-item-ua {
    width: 30vh;
}

.about-us-section .about-us-wrapper .awards-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 82px;
    width: 100%
}

.about-us-section .about-us-wrapper .awards-container .awards-item {
    width: 121px;
    opacity: 0;
}

.about-us-section .about-us-wrapper .awards-container .awards-item img {
    max-width: 100%
}

.about-us-section .about-us-wrapper .awards-container .awards-item.fadeIn {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.about-us-section .about-us-wrapper .awards-container .awards-item.fadeOut {
    -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }
}

.about-us-section .about-us-wrapper .awards-container #p-google {
    animation-delay: 0s;
}

.about-us-section .about-us-wrapper .awards-container #p-google.p-google {
    animation-delay: .1s;
}

.about-us-section .about-us-wrapper .awards-container #goodfilms {
    animation-delay: 0s;
}

.about-us-section .about-us-wrapper .awards-container #goodfilms.goodfilms {
    animation-delay: .2s;
}

.about-us-section .about-us-wrapper .awards-container #marketing {
    animation-delay: 0s;
}

.about-us-section .about-us-wrapper .awards-container #marketing.marketing {
    animation-delay: .3s;
}

.about-us-section .about-us-wrapper .awards-container #adrolll {
    animation-delay: 0s;
}

.about-us-section .about-us-wrapper .awards-container #adrolll.adrolll {
    animation-delay: .4s;
}

.section-title p {
    margin-bottom: 0;
    margin-top: 0;
    font-family: "Rubik", sans-serif;
    white-space: nowrap;
    overflow: hidden;
}

.section-title.visible-text p:nth-child(1) {
    width: 16.3em;
    -webkit-animation: type 2s steps(40, end);
    animation: type 2s steps(40, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    visibility: visible;
}

.section-title-ua.visible-text p:nth-child(1) {
    width: 18.3em;
}

.section-title.visible-text p:nth-child(2) {
    width: 16em;
    opacity: 0;
    -webkit-animation: type2 2s steps(40, end);
    animation: type2 2s steps(40, end);
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    visibility: visible;
}

.section-title-ua.visible-text p:nth-child(2) {
    width: 18.3em;
}

.section-title.visible-text p:nth-child(3) {
    width: 5.3em;
    opacity: 0;
    -webkit-animation: type3 1s steps(10, end);
    animation: type3 1s steps(10, end);
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    visibility: visible;
}

.section-title-ua.visible-text p:nth-child(3) {
    width: 10.3em;
    -webkit-animation: type3 2s steps(30, end);
    animation: type3 2s steps(30, end);
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    visibility: visible;
}

.section-title.visible-text p:nth-child(4) {
    width: 9.3em;
    opacity: 0;
    -webkit-animation: type4 2s steps(40, end);
    animation: type3 2s steps(40, end);
    -webkit-animation-delay: 6.5s;
    animation-delay: 6.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    visibility: visible;
}

.section-title.visible-text p:nth-child(5) {
    width: 8.3em;
    opacity: 0;
    -webkit-animation: type5 2s steps(40, end);
    animation: type5 2s steps(40, end);
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    visibility: visible;
}

@keyframes type {
    0% {
        width: 0;
    }

    100% {
        border: none;
    }
}

@-webkit-keyframes type {
    0% {
        width: 0;
    }

    100% {
        border: none;
    }
}

@keyframes type2 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        border: none;
    }
}

@-webkit-keyframes type2 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes type3 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes type3 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes type4 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes type4 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes type5 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes type5 {
    0% {
        width: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 1295px) {
    .about-us-section .about-us-wrapper {
        width: 77%
    }
}

@media screen and (max-width: 1151px) {
    .about-us-section .about-us-wrapper .header-title {
        margin-left: 0;
        font-size: 18px;
        top: 10vh;
    }

    .about-us-section .about-us-wrapper .section-title {
        font-size: 33px;
        top: 21vh;
    }

    .about-us-section .about-us-wrapper .awards-redirect-container {
        right: unset;
        left: 0;
        bottom: 37vh;
    }

    .about-us-section .about-us-wrapper .awards-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeIn {
        margin: 0 50px 36px 0;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeOut {
        margin: 0 50px 36px 0;
    }

    .section-title.visible-text p:nth-child(1),
    .section-title.visible-text p:nth-child(2) {
        width: 19.3em;
    }
}

@media only screen and (min-device-width: 710px) and (max-device-width: 830px) {
    .about-us-section {
        height: 74vh;
    }

    .about-us-section .about-us-wrapper .awards-container {
        bottom: 65px;
    }
}

@media screen and (max-width: 712px) {

    .section-title.visible-text p: nth-child(1),
    .section-title.visible-text p:nth-child(2) {
        width: 19em;
    }
}

@media screen and (max-width: 621px) {
    .about-us-section .about-us-wrapper {
        width: 95%
    }

    .about-us-section .about-us-wrapper .awards-container {
        bottom: 37px;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeOut {
        width: 150px;
    }
}

@media screen and (max-width: 534px) {
    .about-us-section .about-us-wrapper {
        width: 86%
    }

    .about-us-section .about-us-wrapper .awards-redirect-container {
        bottom: 32vh;
    }

    .about-us-section .about-us-wrapper .awards-container {
        bottom: 0;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeOut {
        margin-bottom: 10px;
        margin-right: 19px;
    }

    .about-us-section .about-us-wrapper .section-title {
        width: 100%
    }

    .section-title.visible-text p:nth-child(1),
    .section-title.visible-text p:nth-child(2) {
        width: 15.7em;
    }
}

@media screen and (max-width: 475px) {
    .about-us-section {
        height: 618px;
    }

    .about-us-section .about-us-wrapper .awards-redirect-container {
        position: relative;
        bottom: 0;
        justify-content: flex-start;
        margin-top: 40px;
    }

    .about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .awards-item {
        width: 17vh;
    }

    .about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .awards-item-ua {
        width: 29vh;
    }

    .about-us-section .about-us-wrapper .awards-container {
        margin: 40px 0;
        justify-content: space-between;
        position: relative;
    }

    .about-us-section .about-us-wrapper .awards-container #p-google {
        animation-delay: 2s;
    }

    .about-us-section .about-us-wrapper .awards-container #goodfilms {
        display: none;
    }

    .about-us-section .about-us-wrapper .awards-container #marketing {
        animation-delay: 2s;
    }

    .about-us-section .about-us-wrapper .awards-container #adrolll {
        animation-delay: 2s;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeIn {
        margin: 0 0 40px;
        animation-delay: 2s;
    }

    .about-us-section .about-us-wrapper .section-title {
        font-size: 22px;
    }

    .about-us-section .about-us-wrapper .section-title-ua {
        display: none;
    }

    .about-us-section .about-us-wrapper .section-title-ua-mob {
        font-size: 20px;
        line-height: 30px;
        display: block;
    }

    .about-us-section .about-us-wrapper-ua {
        width: 83%
    }

    .section-title-ua-mob.visible-text p:nth-child(3) {
        width: 11em;
        opacity: 0;
        -webkit-animation: type3 2s steps(30, end);
        animation: type3 2s steps(30, end);
        -webkit-animation-delay: 4.5s;
        animation-delay: 4.5s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        visibility: visible;
    }
}

@media screen and (max-width: 360px) {

    .section-title.visible-text p: nth-child(1),
    .section-title.visible-text p:nth-child(2) {
        width: 15.2em;
    }
}

@media screen and (max-width: 330px) {
    .about-us-section .about-us-wrapper {
        width: 92%
    }

    .about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .awards-item {
        width: 31vh;
    }

    .about-us-section .about-us-wrapper .section-title {
        font-size: 20px;
    }

    .about-us-section .about-us-wrapper-ua {
        width: 92%
    }

    .section-title.visible-text p:nth-child(1) {
        width: 15.3em;
    }

    .section-title.visible-text p:nth-child(2) {
        width: 15.3em;
    }
}

@media only screen and (min-device-width: 668px) and (max-device-width: 1366px) and (orientation: landscape) {
    .about-us-section {
        min-height: 691px;
        height: 691px;
    }

    .about-us-section .about-us-wrapper .awards-redirect-container {
        position: relative;
        bottom: 0;
        justify-content: flex-start;
        margin-top: 40px;
    }

    .about-us-section .about-us-wrapper .awards-container {
        bottom: 30px;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeIn {
        margin: 0 34px 36px 0;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeOut {
        margin: 0 34px 36px 0;
    }
}

@media only screen and (min-device-width: 668px) and (max-device-width: 1024px) and (orientation: portrait) {
    .about-us-section {
        min-height: 691px;
        height: 691px;
    }

    .about-us-section .about-us-wrapper .awards-container {
        bottom: 43px;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeIn {
        margin: 0 34px 36px 0;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeOut {
        margin: 0 34px 36px 0;
    }

    .about-us-section .about-us-wrapper .awards-redirect-container {
        position: relative;
        bottom: 0;
        justify-content: flex-start;
        margin-top: 40px;
    }

    .about-us-section .about-us-wrapper .awards-redirect-container .awards-redirect .awards-item-ua {
        width: 21vh;
    }

    .section-title-ua.visible-text p:nth-child(2) {
        width: 19.3em;
    }
}

@media only screen and (min-device-width: 612px) and (max-device-width: 853px) and (orientation: portrait) {
    .about-us-section .about-us-wrapper .awards-container {
        width: 93%;
        align-self: center;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeIn {
        margin: 0 34px 36px 0;
    }

    .about-us-section .about-us-wrapper .awards-container .awards-item.fadeOut {
        margin: 0 34px 36px 0;
    }
}

.services-section-container {
    width: 100%;
    height: 100vh;
    min-height: 737px;
    max-height: 1000px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-section-container .s-title {
    width: 982px;
    margin: 160px auto 70px;
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 80px;
    line-height: 74%;
    letter-spacing: 0.015em;
    color: #202020;
    align-self: self-end;
}

.services-section-container .s-link-container {
    width: 982px;
    position: relative;
}

.services-section-container .s-link-container #s-list {
    position: relative;
}

.services-section-container .s-link-container #s-list .s-list-item {
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #202020;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item {
    display: flex;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper {
    width: 700px;
    color: black;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container {
    width: 501px;
    height: 328px;
    padding: 32px 51px 32px 32px;
    background: #FFFFFF;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    display: block;
    z-index: 2;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button {
    display: none;
    align-items: center;
    font-size: 24px;
    margin-top: 30px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button .back-text {
    margin-top: 0;
    margin-left: 12px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button .back-button-container {
    margin-bottom: 1px;
    width: 25px;
    height: 25px;
    position: relative;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button .back-button-container .back-line {
    width: 25px;
    height: 1px;
    background-color: #000000;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button .back-button-container .bl-one {
    transform: rotate(45deg) translate(0px, 0px);
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button .back-button-container .bl-two {
    transform: rotate(-45deg) translate(1px, 0px);
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button-ua {
    font-size: 20px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-title {
    margin: 0;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: 0.015em;
    color: #202020;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-subtitle {
    margin: 10px 0;
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #202020;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info {
    width: 418px;
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 21px;
    color: #202020;
    position: absolute;
    bottom: 30px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info-ua {
    margin-bottom: 0;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 70px;
    display: none;
    justify-content: space-between;
    left: 0;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container .s-prev-arrow {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #202020;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container .s-prev-arrow img {
    width: 24px;
    margin-right: 5px;
    margin-left: 10px;
    transform: rotate(-180deg);
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container .s-next-arrow {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    display: flex;
    align-items: flex-start;
    color: #202020;
    cursor: pointer;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container .s-next-arrow img {
    width: 24px;
    margin-left: 5px;
    margin-right: 10px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .m-bottom {
    bottom: 81px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .num-container {
    display: block;
    z-index: 1;
    height: 300px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .num-container .s-num {
    background: linear-gradient(180deg, #6DE7F5 30%, #E7C4F8 72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    font-size: 9rem;
    margin-top: -77px;
    margin-left: -40px;
    height: 115px;
    display: block;
    padding-top: 53px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper.show-item {
    display: flex;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title {
    width: 100%;
    padding: 10px;
    cursor: pointer;
    margin: 0;
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #202020;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title p {
    margin: 0px 35px 0 0;
    width: 389px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title .s-line {
    z-index: 1;
    visibility: hidden;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title .s-line .item-line {
    width: 43px;
    height: 1px;
    background-color: #000000;
    z-index: 1;
    position: absolute;
    right: 4px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title .s-line .s-bubble {
    width: 17px;
    height: 17px;
    margin-top: -8px;
    border-radius: 50%;
    background: linear-gradient(92.95deg, #6DE7F5 -.57%, #E7C4F8 112.91%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -1px;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title .s-line .s-bubble .inner-bubble {
    width: 7px;
    height: 7px;
    background: black;
    border-radius: 50%
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title .s-line.show-line {
    visibility: visible;
}

.services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title.change-color p {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 1px;
    background-image: linear-gradient(89deg, #6DE7F5 69%, #E7C4F8 103%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 0.4px;
}

.services-section-container .s-link-container .service-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: -15px;
    right: 0;
}

.services-section-container .s-link-container .service-bar .s-bar-line {
    width: 1px;
    height: 306px;
    background: black;
}

.services-section-container .s-link-container .service-bar .s-prev-arrow {
    cursor: pointer;
}

.services-section-container .s-link-container .service-bar .s-prev-arrow img {
    width: 13px;
    transform: rotate(-90deg);
}

.services-section-container .s-link-container .service-bar .s-next-arrow {
    cursor: pointer;
}

.services-section-container .s-link-container .service-bar .s-next-arrow img {
    width: 13px;
    transform: rotate(90deg);
}

@media screen and (max-width: 1012px) {
    .services-section-container .s-link-container {
        width: 97vw;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title {
        width: 100vw;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title p {
        width: 372px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title.change-color {
        font-size: 19px;
        line-height: 30px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper {
        width: 466px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container {
        width: 466px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info {
        width: auto;
        margin-right: 20px;
        font-size: 14px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info-ua {
        bottom: 16px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-title {
        font-size: 28px;
        line-height: 31px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .m-bottom {
        bottom: 118px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container-ua {
        height: 340px;
        padding: 32px 51px 32px 21px;
    }

    .services-section-container .s-title {
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .services-section-container {
        height: 65vh;
        min-height: 616px;
    }

    .services-section-container .s-title {
        margin: 90px auto 70px;
        font-size: 60px;
    }
}

@media screen and (max-width: 475px) {
    .services-section-container {
        width: 93%
    }

    .services-section-container .s-link-container #s-list .s-list-item {
        width: 100%
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container {
        height: 100vh;
        padding: 24px 32px;
        /*overflow-x: scroll;*/
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button {
        display: flex;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-title {
        margin-top: 20px;
        font-size: 36px;
        line-height: 41px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info {
        height: 72vh;
        font-size: 18px;
        position: relative;
        bottom: 0;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container {
        display: flex;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-subtitle {
        margin: 21px 0 30px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .num-container {
        display: none;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper.test {
        display: none;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title {
        font-size: 20px;
        width: 100%;
        padding: 10px 0;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title p {
        width: 100vw;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title .s-line .item-line {
        width: 27px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title.change-color p {
        font-size: 36px;
        line-height: 44px;
    }

    .services-section-container .s-link-container .service-bar {
        top: -39px;
    }

    .services-section-container .s-link-container .service-bar .s-bar-line {
        height: 343px;
    }

    .services-section-container .s-title {
        margin: 102px auto 70px;
        font-size: 36px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 330px) {
    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container {
        padding: 24px 21px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container {
        bottom: 0;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container .s-next-arrow,
    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .arrows-container .s-prev-arrow {
        font-size: 18px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info {
        margin-right: 0;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-title {
        margin-top: 10px;
        font-size: 22px;
        line-height: 35px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-subtitle {
        margin: 10px 0 15px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .back-button {
        margin-top: 15px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title.change-color p {
        font-size: 34px;
        line-height: 34px;
    }
}

@media only screen and (min-device-width: 612px) and (max-device-width: 1194px) {
    .services-section-container {
        height: 51vh;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title p {
        width: 285px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .s-item-title.change-color p {
        font-size: 28px;
        line-height: 34px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container {
        padding: 32px 4px 32px 21px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info {
        position: relative;
        bottom: 0;
        margin-top: 15px;
        margin-right: 20px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-title {
        font-size: 20px;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container-ua {
        height: 340px;
        padding: 32px 4px 32px 21px;
    }

    .services-section-container .s-title {
        margin: 110px auto 70px;
        padding-left: 40px;
    }
}

@media only screen and (min-device-width: 612px) and (max-device-width: 1194px) and (orientation: portrait) {
    .services-section-container .s-link-container {
        width: 93vw;
    }
}

@media only screen and (min-device-width: 830px) and (max-device-width: 1366px) and (orientation: landscape) {
    .services-section-container {
        height: 810px;
    }

    .services-section-container .s-link-container {
        width: 93vw;
    }

    .services-section-container .s-link-container #s-list .s-list-item .s-item .wrapper .s-data-container .s-data-info {
        position: relative;
        bottom: 0;
        margin-top: 15px;
    }

    .services-section-container .s-title {
        margin: 110px auto 70px;
        padding-left: 40px;
    }
}

.slider-wrapper {
    width: 54%;
    margin: 0 auto;
    background: #fff;
}
@media screen and (max-width: 1920px){
    .slider-wrapper {
        width: 75%;
    }
}
.slider-inner {
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
    height: 100%
}

.dp-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
}

.item {
    display: block;
    position: absolute;
    border-radius: 10px;
    transition: transform 1.2s;
    box-shadow: 10px 10px 42px rgba(32, 32, 32, 0.3);
}

#slider .dp_item:first-child {
    z-index: 10 !important;
    transform: rotateY(0deg) translateX(0) !important;
}

.item[data-position="1"] {
    z-index: 9;
    opacity: 0;
    transform: rotateY(0deg) translateX(0) scale(0.8);
}

.item[data-position="2"] {
    z-index: 9;
    transform: rotateY(0deg) translateX(0) scale(0.9);
}

.item[data-position="3"] {
    z-index: 8;
    transform: rotateY(0deg) translateX(9.6%) scale(0.8);
}

.item[data-position="4"] {
    z-index: 7;
    transform: rotateY(0deg) translateX(18.6%) scale(0.7);
}

.item[data-position="5"] {
    z-index: 7;
    opacity: 0;
    transform: rotateY(0deg) translateX(18.6%) scale(0.6);
}
.item[data-position="6"] {
    z-index: 7;
    opacity: 0;
    transform: rotateY(0deg) translateX(18.6%) scale(0.6);
}
.item[data-position="7"] {
    z-index: 7;
    opacity: 0;
    transform: rotateY(0deg) translateX(18.6%) scale(0.6);
}

.slider-bar {
    position: absolute;
    bottom: 0;
    right: 5%;
    display: flex;
    justify-content: center;
    width: 81px;
    height: 67px;
    z-index: 9;
}

#counter-wrapper {
    font-family: Rubik, sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #202020;
}

.arrow-wrapper {
    width: 80px;
    height: 42px;
    background: linear-gradient(270deg, rgba(234, 172, 243, 0.42) 0%, rgba(46, 226, 235, 0.42) 100%);
    border-radius: 23px;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dp-next,
#dp-prev {
    position: absolute;
    right: 15px;
    height: 15px;
    width: 15px;
    z-index: 10;
    cursor: pointer;
}

#dp-prev {
    left: 15px;
    transform: rotate(180deg);
}

.item {
    width: 100%;
    max-width: 1200px;
}

.dp-content,
.dp-img {
    text-align: left;
}

.item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.dp-content {
    padding: 0;
    display: inline-block;
    width: 100%;
    height: 598px;
}

.dp-content-ua {
    height: 670px;
}

.dp-content .site-btn {
    margin-top: 15px;
    font-size: 13px;
    padding: 19px 40px;
}

#slider {
    margin: 0;
    padding: 0;
    height: 770px;
}

#slider .dp_item:hover:not(:first-child) {
    cursor: pointer;
}

.cases-title {
    margin-bottom: 30px;
    color: #000;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 80px;
}

.cases-card {
    width: 100%;
    float: left;
    height: inherit;
    position: relative;
    padding: 0 0 0 350px;
}

.cases-card .img-side {
    /*flex: 1;*/
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 352px;
    height: 100%;
    display: block;
    overflow: hidden;
}

.cases-card .img-side video {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cases-card .img-side .img-text {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 60px;
    color: #ffffff;
    transform: rotate(-90deg);
    position: absolute;
    bottom: 138px;
    right: -146px;
    margin: 0;
}

.cases-card .img-side .img-text-ua {
    bottom: 133px;
    right: -144px;
}

.cases-card .img-side .r-img-text {
    bottom: 123px;
    right: -134px;
}

.cases-card .img-side .ec-img-text {
    bottom: 149px;
    right: -158px;
}

.cases-card .img-side .r-img-text-ua {
    bottom: 147px;
    right: -156px;
}

.cases-card .img-side .e-img-text {
    bottom: 149px;
    right: -158px;
}

.cases-card .img-side .e-img-text-ua {
    bottom: 31px;
    right: -49px;
}

.cases-card .img-side .b-img-text {
    bottom: 147px;
    right: -158px;
}

.cases-card .img-side .ev-img-text {
    bottom: 34px;
    right: -45px;
}

.cases-card .img-side .ev-img-text-ua {
    bottom: 34px;
    right: -45px;
}

.cases-card .img-side img {
    max-width: 100%
}

/*.cases-card .estate-img {
    background-image: url(/images/estate.affe24c572ae7efc794b.jpg);
}
.cases-card .events-img {
    background-image: url(/images/events.601b3cfe1b8da5753acd.jpg);
}
.cases-card .b2b-img {
    background-image: url(/images/b2b.618b7b478335564cde73.jpg);
}
.cases-card .project-img {
    background-image: url(/images/project.8ff33139aba4603a167a.jpg);
}
.cases-card .e-commerce-img {
    background-image: url(/images/ecomerce.b5857f8d81a3d4f4fa27.png);
    background-position: center;
}*/
.cases-card .info-side {
    padding: 30px;
    width: 100%;
    /*flex: 1.4;*/
}

.cases-card .info-side .info-title {
    margin: 0;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #000;
}

.mb-50{
    margin-bottom: 50px!important;
}

.cases-card .info-side .info-text,
.cases-card .info-side .d-text {
    font-family: Rubik, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #000;
    line-height: 21px;
    margin: 5px 0;
}

.cases-card .info-side .d-text-ua {
    margin-right: 5px;
}

.cases-card .info-side .info-options .info-section {
    display: flex;
}

.cases-card .info-side .info-options .info-section .info-subtitle {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    flex: 1;
    margin: 5px 0;
}

.cases-card .info-side .info-options .info-section .info-text {
    flex: 5;
    margin: 5px 0;
}

.cases-card .info-side .info-options .info-section .info-data {
    display: flex;
    flex: 5;
}

.cases-card .info-side .info-options .info-section .info-data .w-wrapper {
    width: 500px;
    display: flex;
    justify-content: space-between;
}

.cases-card .info-side .info-options .info-section .info-data .d-wrapper {
    display: flex;
    flex-direction: column;
}

.cases-card .info-side .info-options .info-section .info-data .d-wrapper:first-child {
    margin-right: 40px;
}

.cases-card .info-side .info-options .info-section .info-data .d-wrapper .d-item .d-statistics {
    margin: 0;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #000;
}

.cases-card .info-side .info-options .info-section .info-data .d-wrapper-ua:first-child {
    margin-right: 0;
}

.cases-card .info-side .info-options .info-section .info-data .line {
    width: 430px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cases-card .info-side .info-options .info-section .info-data-ua .line {
    width: 395px;
}

.cases-card .cases-redirect-container {
    margin-top: 20px;
    position: relative;
}

.cases-card .cases-redirect-container .cases-circle {
    width: 42px;
    height: 42px;
    background-image: linear-gradient(to right, #27b3c7, #8a6297);
    opacity: .6;
    border-radius: 50%
}

.cases-card .cases-redirect-container .cases-item {
    letter-spacing: 2.5px;
    font-weight: 500;
    font-size: 12px;
    font-family: Rubik, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    position: absolute;
    top: 15px;
    left: 18px;
}

.cases-card .cases-redirect-container-ua {
    width: 50%;
    position: absolute;
    bottom: 50px;
}

.cases-card .m-top {
    margin-top: 110px;
}

.cases-card .r-top {
    margin-top: 53px;
}

.cases-card .ec-top {
    margin-top: 40px;
}

/*@media screen and (min-width: 1700px) {
    .slider-bar {
    right: 23%}
}*/

@media screen and (max-width: 1295px) {
    .slider-wrapper {
        width: 90%
    }
}

@media screen and (max-width: 1152px) {
    .slider-wrapper {
        width: 100%
    }

    .cases-card .info-side .info-options .info-section .info-data .w-wrapper{
        width: 420px;
    }
    
    .cases-card .info-side .info-options .info-section .info-data.info-data-ua .line{
        width: 315px;
    }

    .cases-card .info-side .info-options .info-section .info-data .line{
        width: 350px;
    }

    /*.slider-bar {
    right: 10px;
    bottom: 198px;
    z-index: 9;
}*/
}

@media screen and (max-width: 1024px) {
    .item {
        width: 90%;
    }

    .cases-card{
        padding: 0;
    }

    .cases-card .img-side {
        display: none;
    }

    .slider-wrapper {
        width: 90%
    }
}

@media screen and (max-width: 800px) {
    .item{
        width: 100%;
    }

    .item[data-position="3"] {
        transform: rotateY(0deg) translateX(0%) scale(0.8);
    }

    .item[data-position="4"] {
        transform: rotateY(0deg) translateX(0%) scale(0.7);
    }

    #slider{
        height: 810px;
    }
    .dp-content,
    .dp-content-ua{
        height: 720px;
    }

    .slider-bar{
        bottom: 160px;
        right: 9%;
    }

    .cases-title {
        font-size: 60px;
    }
}

@media screen and (max-width: 715px) {
    /*.slider-bar {
    right: 79px;
}*/
}

@media screen and (max-width: 645px) {
    /*.item {
        width: auto;
    }*/

    /*.slider-bar {
    right: 42px;
}*/

    #slider{
        height: 840px;
    }

    .dp-content, .dp-content-ua{
        height: 750px;
    }
}

@media screen and (max-width: 593px) {
    #slider{
        height: 1060px;
    }
    .dp-content, .dp-content-ua{
        height: 970px;
    }
    .slider-wrapper {
        width: 100%
    }

    .cases-title {
        margin: 35px 0 0 35px;
    }

    .cases-card .info-side {
        padding: 30px 20px;
    }

    .cases-card .info-side .info-text,
    .cases-card .info-side .d-text {
        margin: -2px 0 0 0;
        font-size: 16px;
        line-height: 25px;
    }

    .cases-card .info-side .info-options .info-section .info-data .w-wrapper {
        width: 100%;
        display: block;
    }

    .cases-card .info-side .info-options .info-section .info-data.info-data-ua .line{
        width: 100%;
        display: block;
    }

    .cases-card .info-side .info-options .info-section .info-data .w-wrapper .d-wrapper .d-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cases-card .info-side .info-options .info-section .info-data .w-wrapper .d-wrapper .d-item .d-statistics {
        margin-top: 12px;
        font-size: 16px;
    }

    .cases-card .info-side .info-options .info-section .info-data .w-wrapper .d-wrapper:first-child {
        margin-right: 0;
    }

    .cases-card .info-side .info-options .info-section .info-data .line {
        flex-direction: column;
    }

    .cases-card .info-side .info-options .info-section .info-data .line .d-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cases-card .info-side .info-options .info-section .info-data .line .d-item .d-statistics {
        margin-top: 12px;
        font-size: 16px;
    }

    .cases-card .m-top {
        margin-top: 77px;
    }
}

@media screen and (max-width: 451px) {
    .item[data-position="2"] {
        transform: rotateY(0deg) translateX(0) scale(1);
    }

    .cases-card .info-side {
        padding: 30px 26px;
    }

    .cases-card .info-side .info-options .info-section {
        display: block;
    }

    .cases-card .info-side .info-options .info-section .info-data .w-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .cases-card .info-side .info-options .info-section .info-data .d-wrapper:first-child {
        margin-right: 0;
    }

    .cases-card .info-side .info-options .info-section .info-subtitle {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .cases-card .cases-redirect-container {
        position: absolute;
        bottom: 44px;
        width: 59%
    }

    .cases-card .cases-redirect-container-ua {
        bottom: 29px;
    }

    .cases-title {
        font-size: 36px;
        margin: 35px 0 29px 16px;
    }

    #slider{
        height: 1130px;
    }

    .dp-content, .dp-content-ua{
        height: 1030px;
    }

    .slider-bar{
        bottom: 125px;
        right: 25px;
    }

    /*.slider-bar {
    bottom: 113px;
}*/
    /*.slider-bar-ua {
    bottom: 28px;
    right: 32px;
}*/
}

@media screen and (max-width: 420px) {
    #slider{
        height: 1250px;
    }

    .dp-content, .dp-content-ua{
        height: 1150px;
    }
}

@media screen and (max-width: 370px) {
    #slider{
        height: 1340px;
    }

    .dp-content, .dp-content-ua{
        height: 1240px;
    }
}

@media screen and (max-width: 330px) {
    #slider{
        height: 1140px;
    }
    .dp-content, .dp-content-ua{
        height: 1040px;
    }

    .cases-card .info-side {
        padding: 30px 20px;
    }

    .cases-card .info-side .info-text,
    .cases-card .info-side .d-text {
        font-size: 14px;
        line-height: 21px;
    }

    .cases-card .info-side .info-options .info-section .info-data .w-wrapper {
        width: 280px;
    }

    .cases-card .cases-redirect-container {
        bottom: 21px;
    }

    .cases-card .cases-redirect-container {
        bottom: 38px;
        width: 71%
    }

    /*.dp-content.dp-content-ua {
        height: 691px;
    }

    .dp-content {
        height: 595px;
    }*/

    /*.slider-bar {
    bottom: 44px;
}
.slider-bar-ua {
    bottom: 84px;
    right: 10px;
}*/
    .cases-title {
        font-size: 48px;
    }

    /*#slider {
        height: 620px;
    }

    #slider.slider-ua {
        height: 737px;
    }*/
}

@media only screen and (min-device-width: 830px) and (max-device-width: 1366px) and (orientation: landscape) {
    .slider-wrapper {
        width: 96%
    }

    /*.slider-bar {
    right: 0;
}*/
   /* .dp-img img {
        height: 667px;
    }

    .dp-img img {
        height: 697px;
    }*/

    /*.slider-bar {
    bottom: 121px;
}*/
    .slider-wrapper {
        padding-left: 40px;
    }

    .cases-card .cases-redirect-container {
        position: absolute;
        width: 212px;
        bottom: 24px;
    }

    .cases-title {
        padding-left: 40px;
    }
}

@media only screen and (min-device-width: 830px) and (max-device-width: 1024px) and (orientation: portrait) {
    .slider-wrapper {
        padding-left: 40px;
    }
}

@media only screen and (max-device-width: 1138px) and (orientation: portrait) {

    /*#slider,
    .dp-img img {
        height: 597px;
    }

    #slider.slider-ua,
    .dp-img img {
        height: 697px;
    }*/

    /*.slider-bar {
    bottom: 47px;
}
.slider-bar-ua {
    bottom: 97px;
}*/
    .cases-card .cases-redirect-container {
        position: absolute;
        width: 212px;
        bottom: 24px;
    }
}

.clients-container {
    width: 100%;
    /*height: 113vh;*/
    margin-bottom: 100px;
}

.clients-container .clients-wrapper {
    width: 63%;
    /*height: 100vh;*/
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clients-container .clients-wrapper .cl-title {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 80px;
    color: #202020;
    margin-bottom: 58px;
}

.clients-container .clients-wrapper .logo-container {
    display: flex;
    flex-wrap: wrap;
}

.clients-container .clients-wrapper .logo-container>div {
    width: 20%;
    padding: 39px 107px 38px 0;
    display: flex;
}

.clients-container .clients-wrapper .logo-container>div:nth-child(5n) {
    padding: 39px 0 38px 0;
}

.clients-container .clients-wrapper .logo-container .img-container {
    width: 141px;
    height: 77px;
    float: left;
    position: relative;
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.clients-container .clients-wrapper .logo-container .img-container:hover {
    filter: grayscale(0);
}

.clients-container .clients-wrapper .logo-container .img-container img {
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.clients-container .clients-wrapper .logo-container .i-padding {
    padding: 0;
    display: flex;
    align-items: center;
}

.clients-tabs-container {
    width: 100%;
    position: relative;
}

.clients-tabs-navs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-left: -16px;
}

.clients-tabs-nav {
    display: block;
    font-family: Rubik, sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 30px;
    color: #000;
    background: #eaeaea;
    padding: 5px 19px 4px;
    margin: 0 9px 9px 0;
    border-radius: 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clients-tabs-nav::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: -120%;
    top: 0;
    border-radius: 25px;
    background: rgb(229, 197, 248);
    background: linear-gradient(270deg, rgba(229, 197, 248, 1) 15%, rgba(168, 240, 249, 1) 80%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.clients-tabs-nav span {
    position: relative;
    z-index: 2;
    letter-spacing: 0.1px;
}

.clients-tabs-nav:hover::before,
.clients-tabs-nav.active::before {
    left: 0;
}

.clients-tabs-content {
    visibility: hidden;
    position: absolute;
    top: 0;
    opacity: 0;
    /*-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;*/
}

.clients-tabs-content.active {
    visibility: visible;
    position: relative;
    top: 0;
    opacity: 1;
}

@media screen and (max-width: 1600px) {
    .clients-tabs-nav {
        font-size: 17px;
        line-height: 26px;
    }

    .clients-tabs-nav span {}
}

@media screen and (max-width: 1376px) {
    .clients-container {
        /*height: 114vh;*/
    }

    .clients-container .clients-wrapper {
        width: 1025px;
    }
}

@media screen and (max-width: 1194px) {
    .clients-tabs-container {
        padding-left: 40px;
    }

    .clients-container .clients-wrapper .logo-container>div,
    .clients-container .clients-wrapper .logo-container>div:nth-child(5n) {
        width: 25%;
        padding: 39px 107px 38px 0;
    }

    .clients-container .clients-wrapper .logo-container>div:nth-child(4n) {
        padding: 39px 0 38px 0;
    }
}

@media screen and (max-width: 1051px) {
    .clients-container {
        height: auto;
    }

    .clients-container .clients-wrapper {
        width: auto;
        height: auto;
    }

}

@media screen and (max-width: 895px) {
    .clients-container .clients-wrapper .logo-container .img-container {
        margin: 3px 0 17px 1px;
    }

    .clients-container .clients-wrapper .logo-container>div {
        padding: 10px 38px 17px 0;
    }

    .clients-container .clients-wrapper .cl-title {
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .clients-container .clients-wrapper .logo-container>div,
    .clients-container .clients-wrapper .logo-container>div:nth-child(4n),
    .clients-container .clients-wrapper .logo-container>div:nth-child(5n) {
        width: 33.33%;
        padding: 39px 0 38px 0;
    }

    .clients-container .clients-wrapper .logo-container>div:nth-child(3n) {
        padding: 39px 0 38px 0;
    }
}

@media screen and (max-width: 800px) {
    .clients-container .clients-wrapper .cl-title {
        font-size: 60px;
    }

    .clients-tabs-nav {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 575px) {
    .clients-container {
        width: 92%;
        margin: 0 auto 70px;
    }

    .clients-container .clients-wrapper {
        margin-left: 0;
    }

    .clients-tabs-navs {
        margin-bottom: 20px;
        margin-left: 0;
    }

    .clients-container .clients-wrapper .logo-container {
        justify-content: space-between;
    }

    .clients-container .clients-wrapper .logo-container .img-container {
        padding: 0;
    }

    .clients-container .clients-wrapper .cl-title {
        padding-left: 0;
    }

    .clients-tabs-container {
        padding-left: 0;
    }

    .clients-container .clients-wrapper .logo-container>div,
    .clients-container .clients-wrapper .logo-container>div:nth-child(4n),
    .clients-container .clients-wrapper .logo-container>div:nth-child(5n) {
        width: 50%;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 456px) {

    .clients-container .clients-wrapper .logo-container>div,
    .clients-container .clients-wrapper .logo-container>div:nth-child(4n),
    .clients-container .clients-wrapper .logo-container>div:nth-child(5n) {
        width: 100%;
        padding: 30px 0 15px 0;
    }

    .clients-container .clients-wrapper .logo-container .img-container {
        float: none;
        margin: 3px auto 17px;
    }
}

@media screen and (max-width: 414px) {
    .clients-container .clients-wrapper .cl-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 377px) {
    .clients-container {
        width: 95%
    }

    .clients-container .clients-wrapper {
        margin-left: 0;
    }

    .clients-container .clients-wrapper .cl-title {
        margin-left: 15px;
    }

    .clients-tabs-navs {
        padding-left: 15px;
    }
}

@media screen and (max-width: 365px) {
    .clients-container {
        width: 100%
    }
}

@media only screen and (min-device-width: 889px) and (max-device-width: 1024px) {
    .clients-container {
        height: auto;
        min-height: 881px;
    }
}

@media only screen and (min-device-width: 612px) and (max-device-width: 1024px) and (orientation: portrait) {
    .clients-container .clients-wrapper .cl-title {
        padding-left: 40px;
    }
}

@media only screen and (min-device-width: 612px) and (max-device-width: 924px) and (orientation: portrait) {
    .clients-container .clients-wrapper .logo-container>div {
        padding: 30px 0 17px 30px;
    }
}

@media only screen and (min-device-width: 924px) and (max-device-width: 1024px) and (orientation: portrait) {
    .clients-container .clients-wrapper .cl-title {
        padding-left: 70px;
    }
}

@media only screen and (min-device-width: 924px) and (max-device-width: 1194px) and (orientation: landscape) {
    .clients-container {
        height: auto;
        min-height: 120vh;
    }

    .clients-container .clients-wrapper .cl-title {
        padding-left: 40px;
    }
}

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

.carousel-container {
    width: 100%;
    height: auto;
    background-color: #202020;
}

.carousel-container .carousel-wrapper {
    width: 63%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.carousel-container .carousel-wrapper .c-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-family: Rubik;
    font-weight: 500;
    font-size: 80px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 58vh;
    margin: 0 auto;
}

.carousel-content {
    position: relative;
    overflow: hidden;
    transition: width .4s;
    height: inherit;
}

.slide {
    height: 100%;
    background-color: #202020;
    position: absolute;
    z-index: 1;
    transition: left 0.4s cubic-bezier(0.47, 0.13, 0.15, 0.89);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    max-width: 100%
}

.chevron-container {
    width: 100px;
    height: 37px;
    margin: 0 auto;
    background: rgba(40, 40, 40, 0.4);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.navv {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
}

.nav-left {
    left: 0;
}

.nav-left:hover {
    opacity: .7;
}

.nav-right {
    right: 0;
}

.nav-right:hover {
    opacity: .7;
}

#counter {
    font-family: 'Rubik', sans-serif;
    color: #fff;
}

@media screen and (min-width: 1395px) {
    .carousel {
        height: 78vh;
    }
}

@media screen and (max-width: 1395px) {
    .carousel {
        height: 62vh;
    }
}

@media screen and (max-width: 1151px) {
    .carousel {
        height: 50vh;
    }

    .carousel-container .carousel-wrapper .c-title-ua {
        font-size: 50px;
    }
}

@media screen and (max-width: 895px) {
    .carousel-container .carousel-wrapper .c-title {
        font-size: 60px;
    }

    .carousel-container .carousel-wrapper {
        width: 80%
    }

    .carousel {
        height: 43vh;
    }
}

@media screen and (max-width: 799px) {
    .carousel-container {
        display: none;
    }
}

@media screen and (max-width: 756px) {
    .carousel {
        height: 37vh;
    }
}

.mobile-slide {
    display: none;
}

@media only screen and (min-device-width: 968px) and (max-device-width: 1024px) {
    .carousel {
        min-height: 314px;
    }
}

footer {
    width: 100%;
    height: 100vh;
    background-color: #202020;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .calendly-btn{
    margin: 30px 0 0;
}

footer .footer-container {
    width: 60%
}

footer .footer-container .t-section {
    display: flex;
}

footer .footer-container .t-section .quote-container {
    width: 50%
}

footer .footer-container .t-section .quote-container .quote {
    max-width: 275px;
    line-height: 29px;
    font-family: Rubik, sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 21px;
    margin-top: 10px;
}

footer .footer-container .t-section .quote-container .quote .bold {
    font-weight: 600;
}

footer .footer-container .t-section .f-emails-container {
    width: 50%
}

footer .footer-container .t-section .f-emails-container .f-title {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

footer .footer-container .t-section .f-emails-container .e-container {
    display: flex;
    justify-content: space-between;
}

footer .footer-container .t-section .f-emails-container .e-container .e-section .p-title {
    font-family: Rubik, sans-serif;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 3px;
    font-size: 16px;
}

footer .footer-container .t-section .f-emails-container .e-container .e-section .e-email {
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-image: linear-gradient(45deg, #27b3c7 4%, #8a6297 91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid #27b3c7;
    cursor: pointer;
    text-decoration: none;
}

footer .footer-container .b-section {
    margin-top: 79px;
    display: flex;
}

footer .footer-container .b-section .f-contacts-container {
    width: 50%
}

footer .footer-container .b-section .f-contacts-container .f-title {
    margin-bottom: 38px;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

footer .footer-container .b-section .f-contacts-container .f-links {
    display: flex;
}

footer .footer-container .b-section .f-contacts-container .f-links .link-container {
    margin-right: 40px;
    cursor: pointer;
}

footer .footer-container .b-section .nav-links-container {
    width: 50%
}

footer .footer-container .b-section .nav-links-container .f-title {
    margin-bottom: 38px;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

footer .footer-container .b-section .nav-links-container .nav-links {
    display: flex;
}

footer .footer-container .b-section .nav-links-container .nav-links .nav-link {
    margin-right: 30px;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

footer .footer-container .b-section .nav-links-container .address {
    font-family: Rubik, sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    opacity: .5;
    letter-spacing: 1px;
    line-height: 33px;
}

@media screen and (max-width: 1295px) {
    footer .footer-container {
        width: 84%
    }

    footer .footer-container .t-section .f-emails-container .e-container .e-section {
        margin-right: 20px;
    }
}

@media screen and (max-width: 895px) {
    footer {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    footer .footer-container .t-section {
        display: block;
    }

    footer .footer-container .t-section .f-emails-container {
        margin-top: 57px;
    }

    footer .footer-container .b-section {
        margin-top: 57px;
        display: block;
    }

    footer .footer-container .b-section .nav-links-container {
        margin-top: 57px;
    }
}

@media screen and (max-width: 621px) {
    footer .footer-container .t-section .quote-container {
        width: 98%
    }

    footer .footer-container .t-section .f-emails-container .e-container {
        flex-direction: column;
    }

    footer .footer-container .t-section .f-emails-container .e-container .e-section:first-child {
        margin-bottom: 20px;
    }

    footer .footer-container .t-section .f-emails-container {
        width: 96%
    }

    footer .footer-container .b-section .f-contacts-container,
    footer .footer-container .b-section .nav-links-container {
        width: 98%
    }

    footer .footer-container .b-section .f-contacts-container .nav-links,
    footer .footer-container .b-section .nav-links-container .nav-links {
        flex-wrap: wrap;
    }

    footer .footer-container .b-section .f-contacts-container .nav-links .nav-link,
    footer .footer-container .b-section .nav-links-container .nav-links .nav-link {
        margin-bottom: 20px;
    }
}

@media only screen and (min-device-width: 800px) and (max-device-width: 1024px) {
    footer {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    footer .footer-container .b-section .nav-links-container {
        width: 50%
    }
}

@media only screen and (min-device-width: 668px) and (max-device-width: 864px) and (orientation: portrait) {
    footer .footer-container .b-section .nav-links-container {
        width: 70%
    }
}

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

.m-carousel-container {
    width: 100%;
    height: auto;
    background-color: #202020;
}

.m-carousel-container .m-carousel-wrapper {
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.m-carousel-container .m-carousel-wrapper .m-c-title {
    margin-top: 0;
    color: #fff;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 80px;
}

.m-carousel-container .m-carousel-wrapper .m-c-title-ua {
    font-size: 50px;
}

.m-carousel {
    position: relative;
    width: 100%;
    height: 50vh;
    margin: 0 auto;
}

.m-carousel-content {
    position: relative;
    overflow: hidden;
    transition: width .4s;
    height: inherit;
}

.m-slide {
    height: 100%;
    background-color: #202020;
    position: absolute;
    z-index: 1;
    transition: left 0.4s cubic-bezier(0.47, 0.13, 0.15, 0.89);
}

.m-slide img {
    max-width: 100%
}

.m-chevron-container {
    width: 100px;
    height: 37px;
    margin: 0 auto;
    background: rgba(40, 40, 40, 0.4);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.m-navv {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
}

.m-nav-left {
    left: 0;
}

.m-nav-left:hover {
    opacity: .7;
}

.m-nav-right {
    right: 0;
}

.m-nav-right:hover {
    opacity: .7;
}

#m-counter {
    font-family: 'Rubik', sans-serif;
    color: #fff;
}

@media screen and (min-width: 800px) {
    .m-carousel-container {
        display: none;
    }

    .m-carousel {
        height: 102vh;
    }
}

@media screen and (max-width: 800px) {
    .m-carousel-container .m-carousel-wrapper .m-c-title {
        font-size: 60px;
    }

    .m-carousel {
        height: 94vh;
    }
}

@media screen and (max-width: 768px) {
    .m-carousel {
        height: 72vh;
    }
}

@media screen and (max-width: 736px) {
    .m-carousel {
        height: 86vh;
    }
}

@media screen and (max-width: 712px) {
    .m-carousel {
        height: 64vh;
    }
}

@media screen and (max-width: 576px) {
    .m-carousel-container .m-carousel-wrapper {
        width: 86%
    }

    .m-carousel-container .m-carousel-wrapper .m-c-title {
        font-size: 30px;
    }

    .m-carousel {
        height: 67vh;
    }
}

@media screen and (max-width: 506px) {
    .m-carousel {
        height: 59vh;
    }
}

@media screen and (max-width: 450px) {
    .m-carousel {
        height: 414px;
    }
}

@media screen and (max-width: 330px) {
    .m-carousel-container .m-carousel-wrapper .m-c-title-ua {
        font-size: 26px;
    }

    .m-carousel {
        height: 350px;
    }
}