/*global*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 22px;
    color: #363636;
    background: #008BC8;
}

.wrapper {
    overflow-x: hidden;
}

button {
    cursor: pointer;
}

button, input, textarea {
    color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
}

a, a:visited, a:focus {
    color: inherit;
    text-decoration: none;
}

address {
    font-style: normal;
}

.d-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.visually_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

img, svg {
    max-width: 100%;
    display: block;
}

/*global*/
/*header*/
.header {
    padding: 18px 60px;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.nav {
    -ms-align-items: center;
    align-items: center;
    list-style: none;
    font-size: 16px;
}

.nav a {
    margin-left: 60px;
    font-weight: 500;
    display: block;
    position: relative;
}

.nav a:after {
    content: '';
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #363636;
    transition: 0.5s;
    display: block;
    position: absolute;
}

.nav a:hover:after {
    width: 100%;
}

.nav a.login:after {
    display: none;

}

.login-border {
    transition: 0.5s;
}

.nav a.login:hover .login-border {
    stroke: #4470B2
}

.nav a.login svg {
    pointer-events: none
}

.nav .profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.nav_toggler {
    display: none;
}

/*header*/
/*offer*/
.fp-tableCell {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    /*padding-top: 80px;*/
}

.offer_content {
    max-width: 100%;
}

.offer {
    background: #008BC8;
    /*padding-top: 169px;*/
    /*padding-bottom: 60px;*/
    color: #fff;
    transition: 0.5s;
    /*min-height: 100vh;*/
}

.offer_slider {
    margin-bottom: 30px;
}

.offer_slider-inner {
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: flex !important;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    max-width: 1050px;
    margin: 0 auto;
}

.offer_slider-content {
    max-width: 520px;
}

.offer_slider-type {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.offer_slider-name {
    font-weight: 500;
    font-size: 60px;
    letter-spacing: -0.02em;
    margin-bottom: 33px;
}

.offer_slider-text {
    font-weight: 300;
    font-size: 18px;
    line-height: 169.7%;
    margin-bottom: 45px;
}

.btn {
    display: inline-block;
    padding: 12px 39px 13px;
    letter-spacing: -0.0241176em;
    font-size: 18px;
    line-height: 1.22;
    transition: 0.5s;
    border-radius: 10px;
}

.btn-bordered {
    border: 1px solid #FFFFFF;
    background: transparent;
}

.btn-bordered:hover {
    background: rgba(255, 255, 255, 0.5);
}

.btn-bordered:active {
    background: #fff;
    color: #006FBB;
}

.btn-bordered-blue {
    border: 1px solid #0071BB;
    color: #0071BB;
    background: transparent;
}

.btn-bordered-blue:hover {
    border: 1px solid #004776;
    color: #004776;
}

.btn-bordered-blue:active {
    border: 1px solid #003354;
    color: #003354;
}

.btn-blue {
    background: #0071BB;
    color: #fff;
    border: 1px solid transparent;
}

.btn-blue:hover {
    background: #004776;
}

.btn-blue:active {
    background: #003354;
}

.offer_dots_wrap .slick-dots {
    list-style: none;
    -ms-align-items: center;
    align-items: center;
    margin: 0 15px;
}

.offer_dots_wrap .slick-dots button {
    display: block;
    border: none;
    font-size: 1px;
    color: transparent;
    overflow: hidden;
    background: #B8BEC0;
    margin: 0 5px;
    width: 57px;
    height: 4px;
}

.offer_dots_wrap .slick-dots button:hover {
    opacity: 0.5;
}

.offer_dots_wrap .slick-dots .slick-active button {
    background: #fff;
}

.offer_slider-controls {
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.offer_slider-number {
    font-weight: bold;
    font-size: 24px;
}

.offer_slider-arrow {
    background: none;
    border: none;
    display: block;
}

.offer_slider-prev {
    margin-left: 140px;
}

.offer_slider-next {
    margin-left: 110px;
}

.offer .offer_slider-content,
.offer_slider-controls {
    animation: slideUp 1s ease-in-out forwards;
    animation-delay: 0.2s;
}

/*.offer_slider-img {
    animation: slideLeft 1s ease-in-out forwards;
    animation-delay: 0.2s;
    position: relative;
}*/
.slick-current .offer_slider-img {
    animation: slideCur 2s ease-in-out forwards;
    right: -300px;
}

@keyframes slideUp {
    0% {
        position: relative;
        top: 100px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
        position: relative;

    }
}

@keyframes slideLeft {
    0% {
        position: relative;
        right: -200px;
        opacity: 0;
    }
    100% {
        right: 0%;
        opacity: 1;
        position: relative;

    }
}

@keyframes slideCur {
    0% {
        position: relative;
        right: -300px;
        opacity: 0;
    }
    100% {
        right: 0%;
        opacity: 1;
        position: relative;

    }
}

/*offer*/
/*animation*/
.animation {
    position: relative;
    overflow: hidden;
    /*min-height: 100vh;*/
    transition: 0.5s;
    background: #008BC8 url(../img/balls.png) calc(95%) calc(95%) no-repeat;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    z-index: 3;
}

.animation_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    transition: 0.5s;
}

.animation_start {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background: linear-gradient(90deg, #4470B2 0%, #CAEFFD 50%, #4470B2 100%);
    background-position: center left;
    background-size: 200%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 5;
    border: none;
    transition: 0.3s;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    opacity: 1;
    transition: 0.3s
}

.animation_start svg {
    pointer-events: none;
}

.animation_start:hover {
    background-position: center right;
}


.animation_content .fp-tableCell {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-left: 10%;
    padding-right: 5%;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    color: #fff;
    opacity: 1;
    overflow: hidden;
    background: #008BC8 url(../img/balls.png) calc(95%) calc(82%) no-repeat;
    /*min-height: 100vh;*/
    z-index: 3;
    position: relative;
}

.animation_content > * {
    opacity: 0;
}

.animation_content .offer_slider-content {
    transform: translate(0, 30px);
    transition: 0.5s;
    transition-timing-function: ease-in-out;
}

.animation_content-img {
    max-width: 440px;
    transform: translate(100px, 0px);
    transition: 1.5s;
    transition-timing-function: ease-in-out;
    margin-left: auto;
}

.animation_content-img:last-of-type {
    transform: translate(150vw, 0px);
    transition: 2s;
    margin-left: 0;
}

.animation_content.active > * {
    opacity: 1;
}

.animation_content.active .offer_slider-content {
    transform: translate(0, 0);
}

.animation_content.active .animation_content-img,
.animation_content.active .animation_content-img:last-of-type {
    transform: translate(0, 0);
}

.sliding_text {
    background: #008BC8;
    position: relative;
    width: 100%;
    z-index: 2;
    transition: 0.3s;
    font-weight: 700;
    font-size: 100px;
    text-transform: uppercase;
    text-align: left;
}

.sliding_text-black {
    background: #333;
    z-index: 1;
    color: #fff;
}

.sliding_text .animation_text {
    z-index: 2;
    position: absolute;
    transition: 2.5s;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.sliding_text .animation_text:first-of-type {
    top: 40%;
    left: -50%;
}

.sliding_text .animation_text:last-of-type {
    top: 60%;
    left: 150%
}

.sliding_text.active .animation_text:first-of-type {
    left: 50%;
}

.sliding_text.active .animation_text:last-of-type {
    left: 50%;
}

.floatToAnother .animation_text:first-of-type {
    left: 150%;
}

.floatToAnother .animation_text:last-of-type {
    left: -50%;

}

.sliding_text-blue {
    background: #333;
    color: #fff;
}

.video-section {
    position: relative;
}

.video {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    object-fit: cover;
}

/*animation*/
/*headphones*/
.headphones {
    padding: 0px 0 0px 212px;
    background: url(/images/denn/twsone/dennbeats_functions_bg.png) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

/*headphones*/
/*emotions*/
.emotions {
    font-size: 38px;
    color: #828282;
    line-height: 1.5;
    font-weight: 700;
    background: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.emotions_content {
    max-width: 1322px;
    margin: 0 auto;
}

.emotions_heading {
    color: #333;
}

.emotions_wrap {
    background-color: #fff;
}

/*emotions*/
/*sales*/
.sales_wrap {
    background-color: #333;
}

.sales_wrap .fp-tableCell {
    padding-top: 0;
}

.sales {
    height: 100%;
    width: 100%;
}

.sales_item {
    position: relative;
    padding: 90px 54px 63px;
    width: 34%;
    transition: 0.5s;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 5;
}

.sales_item:hover {
    width: 50%;
}

.sales_item {
    color: #f2f2f2;
}

.sales_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    z-index: -1;
}

.sales_name {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
}

/*sales*/
/*application*/
.application_wrap {
    background: #fff;
    width: 100%;
    height: 100%;
    -ms-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.application {
    margin: 0 auto;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    max-width: 1500px;
}

.application_content {
    margin-right: 176px;
    max-width: 622px;

}

.application_heading {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 38px;
}

.application_text {
    margin-bottom: 24px;
}

.application_links_wrap {
    -ms-align-items: center;
    align-items: center;
}

.application_links_wrap a {
    margin-right: 10px;
}

.application_links_wrap a:hover {
    opacity: 0.8;
}

/*application*/
/*footer*/
.footer_section .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.footer {
    background: #333;
    padding: 30px;
    position: relative;
    width: 100%;
}

.nav-footer {
    color: #fff;
}

.nav-footer a:after {
    background: #fff;
}

.social_list {
    margin-left: auto;
    list-style: none;
    margin-right: 10px;
}

.social_list a {
    margin-left: 15px;
    display: block;
}

.social_list a path {
    transition: 0.5s;
}

.social_list a:hover path {
    fill: #008BC8;
}

.developer {
    position: absolute;
    bottom: 20px;
    font-size: 14px;
    right: 55px;
    color: #fff !important;
    font-weight: 500;
}

/*footer*/
/*cabinet*/
.inner_page {
    background: #fff;
}

.cabinet {
    padding-top: 150px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    min-height: 100vh;
}

.cabinet_nav {
    width: 0;
    min-width: 280px;
}

.cabinet_avatar {
    /*width: 85px;*/
    /*height: 85px;*/
    border-radius: 50%;
    margin-bottom: 12px;
}

.cabinet_avatar img {
    margin: 0 auto;
}

.cabinet_name {
    font-weight: bold;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.cabinet_list_heading {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cabinet_list {
    list-style: none
}

.cabinet_list li a {
    display: block;
    width: 100%;
    background-color: #E0EBEE;
    border-radius: 8px;
    letter-spacing: -0.0241176em;
    color: #0071BB;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 15px 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.27445 0L0.00012963 1.23157L5.44968 6.49999L0 11.7684L1.27432 13L8 6.49994L1.27445 0Z' fill='%230071BB'/%3E%3C/svg%3E%0A");
    background-position: calc(100% - 20px) center;
    background-repeat: no-repeat;
}

.cabinet_list li a:hover {
    background-color: #caeffd;
}

.cabinet_list li.active a {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.27445 0L0.00012963 1.23157L5.44968 6.49999L0 11.7684L1.27432 13L8 6.49994L1.27445 0Z' fill='%23fff'/%3E%3C/svg%3E%0A");
    background-color: #0071BB;
    color: #fff;
}

.cabinet_heading {
    font-weight: 500;
    margin-bottom: 12px;
}

.main {
    width: 100%;
    margin-left: 20px;
}

/*cabinet*/
/*device*/
.cabinet_content {
    justify-content: space-between;
    width: 100%;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.add_device {
    margin-left: 20px;
    width: 0;
    min-width: 126px;
    display: block;
    height: 209px;
    background: #fff;
    font-size: 18px;
    color: #4470B2;
    font-weight: 500;
    border: 3px solid #4470B2;
    border-radius: 10px;
}

.add_device .plus {
    display: block;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
}

.devices_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 206px;
    grid-auto-rows: 206px;
    grid-gap: 20px;
    width: 100%;
}

.device_item {
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 11px;
    color: #fff;
    padding: 25px 20px;
}

.device_img {
    position: absolute;
    top: 20px;
    right: 20px;
    object-fit: cover;
    z-index: 1;
    border-radius: 10px;
}

.device_item-name {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.0145455em;
}

.device_item-model {
    font-size: 17px;
    letter-spacing: -0.0241176em;
}

.device_item-serial {
    color: #000;
    position: absolute;
    left: 20px;
    bottom: 25px;
    font-size: 12px;
}

.new_device-form {
    border: 2px solid #909090;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 11px;
    padding: 25px 20px;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    display: none;
}

.new_device-form-active {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.input_block-label {
    letter-spacing: 0.00636364em;
    color: #909090;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.input {
    background: #FFFFFF;
    border: 1px solid #909090;
    border-radius: 8px;
    width: 100%;
    padding: 10px 14px;
    letter-spacing: -0.00615385em;
    color: #333333;
    font-size: 14px;
}

.input:focus {
    border-color: #0071BB
}

.new_device-form .btn {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*device*/
/*profile_form*/
.profile_form {
    width: 100%;
}

.profile_form .fieldset {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.input[disabled] {
    background: #E0EBEE;
    border-color: #E0EBEE;

}

.profile_form .editing_btns {
    display: block;
}

.profile_form #edit {
    display: none;
}

.profile_form[disabled] .editing_btns {
    display: none;
}

.profile_form[disabled] #edit {
    display: block;
}

.profile_form[disabled] .input_block-code {
    opacity: 0;
}

/*profile_form*/
/*myair*/
.myair_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    grid-template-rows: 300px;
    grid-gap: 20px;
    width: 100%;
}

.myair_item {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 11px;
    overflow: hidden;
    position: relative;
}

.myair_item img {
    width: 100%;
    z-index: 1;
    position: relative;
}

.myair-text {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 105px;
    /* display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex; */
    display: block;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    justify-content: center;
    background: #fff;
    z-index: 2;
    overflow-x: auto;
    
}

.myair-text::-webkit-scrollbar {
    width: 3px;
  }
  
  /* Track */
.myair-text::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
.myair-text::-webkit-scrollbar-thumb {
    background: #b7b7b7; 
  }
  
  /* Handle on hover */
.myair-text::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

/*myair*/
/*modals*/
.overlay:after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 99;
}

.modal {
    display: block;
    position: fixed;
    top: -250vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 377px;
    padding: 55px 47px;
    max-height: 100vh;
    overflow: auto;
    z-index: 99999999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal-open {
    top: 50%;
}

.close_modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
}

.close_modal svg {
    pointer-events: none;
}

.close_modal path {
    transition: 0.5s;
}

.close_modal:hover path {
    fill: #008BC8;
}

.modal .logo {
    margin-bottom: 22px;
    display: block;
}

.modal_name {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #363636;
    margin-bottom: 36px;
}

.modal .input_block:not(:last-of-type) {
    margin-bottom: 22px;
    display: block;
}

#registration.modal .input_block {
    margin-bottom: 22px !important;
    display: block;
}

.restore_pass {
    letter-spacing: 0.00636364em;
    text-decoration-line: underline;
    color: #909090;
    font-size: 12px;
    display: block;
    line-height: 1;
    margin: 9px 0 38px;

}

.modal .btn {
    width: 100%;
}

.modal .btn:not(:last-of-type) {
    margin-bottom: 12px;
}

/*modals*/
/*animations*/
.animated_section {
    opacity: 0;
    transition: 1s;
}

.animated_section.active {
    opacity: 1;
}

.headphones_wrap {
    background: #333;
    z-index: 2 !important;
    position: relative;
}

.sliding_text__wrap {
    overflow: hidden;
    background: linear-gradient(to bottom, #333 50%, #008BC8 50%)
}

.sliding_text .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

/*animations*/

/*airfit_offer*/
.airfit_offer {
    position: relative;
    overflow: hidden;
}

.airfit_offer .fp-tableCell {
    justify-content: flex-start;
    padding-left: 197px;
    background: #4470B4;
}

.airfit_offer:before {
    content: '';
    display: block;
    position: absolute;
    width: 1460px;
    height: 1460px;
    border-radius: 50%;
    background-color: #F3F3F3;
    top: 50%;
    right: 47%;
    transform: translate(0, -50%);
}

.decor_circle {
    display: block;
    width: 700px;
    height: 700px;
    border: 24px solid rgba(0, 0, 0, 0.18);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 99;
}

.decor_circle:nth-of-type(2) {
    width: 1000px;
    height: 1000px;
}

.decor_circle:nth-of-type(3) {
    width: 350px;
    height: 350px;
}

.airbeat_offer {
    position: relative;
    overflow: hidden;
}

.airbeat_offer .decor_circle {
    top: unset;
    bottom: 0px !important;
    right: 0;
    transform: translate(50%, 50%);
    z-index: -1;
}

.airfit_offer-content {
    z-index: 5;
}

.airfit_offer-text {
    font-size: 55px;
    font-weight: 300;
    position: relative;
    margin-bottom: 184px;
    margin-left: -8%;

}

.airfit_offer-text:before {
    content: '';
    display: block;
    width: 500px;
    height: 232px;
    background: url(/img/offer_dots.png) center no-repeat;
    position: absolute;
    left: -125px;
    top: -47px;
    z-index: -1;
}

.airfit_offer-text strong {
    font-weight: 700;
}

.airfit_offer-text span {
    color: #4470B4;
}

.features_list {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    grid-gap: 35px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    list-style: none;
    margin-left: -60px;
}

.airbeat_offer .features_list {
    grid-template-columns: repeat(3, 160px);
}

.features_list .features_list-icon {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 auto 10px;
}

.features_list .features_list-text {
    padding: 0 2px;
}

.airfit-offer_img {
    z-index: 100;
    right: -300px;
    opacity: 0;
    -ms-align-self: flex-end;
    align-self: flex-end;
    margin-bottom: 14%;
    max-width: 440px;
    margin-left: -9%;
}

.airfit-offer_img:first-of-type {
    z-index: 102;
    /* margin-bottom: 5%; */
    margin-bottom: 14%;
    margin-left: 1%;
}

.airbeat_offer .airfit-offer_img {
    max-width: 550px;
}

/*.airbeat_offer .airfit-offer_img:first-of-type {
    -ms-align-self: flex-end;
    align-self: flex-end;
    margin-bottom: 50px;
}*/
.airbeat_offer .airfit-offer_img {
    margin-left: 0 !important;
}

.features_list li {
    opacity: 0;
}

.active .features_list li {
    animation: slideUp .7s ease-in-out forwards;
}

.features_list li:nth-of-type(1) {
    animation-delay: 0.20s;
}

.features_list li:nth-of-type(2) {
    animation-delay: 0.4s;
}

.features_list li:nth-of-type(3) {
    animation-delay: 0.6s;
}

.features_list li:nth-of-type(4) {
    animation-delay: 0.8s;
}

.features_list li:nth-of-type(5) {
    animation-delay: 1s;
}

.features_list li:nth-of-type(6) {
    animation-delay: 1.2s;
}

.features_list li:nth-of-type(7) {
    animation-delay: 1.4s;
}

.features_list li:nth-of-type(8) {
    animation-delay: 1.6s;
}

.features_list li:nth-of-type(9) {
    animation-delay: 1.8s;
}

.active .airfit_offer-text {
    animation: slideUp .7s ease-in-out forwards;
}

.active .airfit-offer_img {
    animation: slideCur .7s ease-in-out forwards;
    animation-delay: 2s;

}

.airfit-offer_img:last-of-type {
    /* margin-left: -80px; */
    animation-delay: 2.2s;
}

/*airfit_offer*/

/*airfit_connection*/
.airfit_connection {
    background: url(/img/connection_dots.png) 30px 60% no-repeat;
    background-color: #fff;
}

.airfit_connection .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding-left: 330px;
    padding-right: 275px;
}

.airfit_connection-content {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.airfit_connection-content > img {
    margin: 0 20px;
    opacity: 0;
}

.section_heading {
    font-weight: 300;
    font-size: 60px;
    letter-spacing: -0.02em;
    color: #3E3E3D;
    margin-bottom: 38px;
    opacity: 0;
}

.airfit_connection-list_wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation-delay: 1.3s !important;

}

.airfit_connection-list_wrap img {
    margin-bottom: 38px;
    position: relative;

}

.airfit_connection-content > img:nth-of-type(1) {
    animation-delay: 0.7s !important;
}

.airfit_connection-content > img:nth-of-type(2) {
    animation-delay: .9s !important
}

.airfit_connection-content > img:nth-of-type(3) {
    animation-delay: 1.1s !important
}

.airfit_connection-list_wrap:before {
    content: '';
    display: block;
    width: 470px;
    height: 230px;
    background: url(/img/waves.png) center no-repeat;
    position: absolute !important;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 0);
}

.airfit_connection-list {
    list-style: none;
    font-size: 22px;
    line-height: 1.37;
}

.airfit_connection-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    opacity: 0;
}

.active .airfit_connection-list li {
    animation: slideLeft .7s ease-in-out forwards;
}

.airfit_connection-list li:nth-of-type(1) {
    animation-delay: 1.3s;
}

.airfit_connection-list li:nth-of-type(2) {
    animation-delay: 1.5s;
}

.airfit_connection-list li:nth-of-type(3) {
    animation-delay: 1.7s;
}

.airfit_connection-list li:before {
    content: '';
    display: block;
    background: #323232;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.accent_text {
    color: #00A6EF;
    font-size: 16px;
    line-height: 1.46;
    opacity: 0;
}

.active.airfit_connection .accent_text {
    animation: slideLeft .7s ease-in-out forwards;
}

.airfit_connection.active .section_heading {
    animation: slideUp .7s ease-in-out forwards;
}

.active .airfit_connection-content > img {
    animation: slideLeft .7s ease-in-out forwards;
}

.active .airfit_connection-list_wrap {
    animation: slideUp .7s ease-in-out forwards;
}

.airfit_connection .accent_text {
    animation-delay: 1.9s !important;
}

.airfit_connection-list_wrap-eco:before {
    display: none;
}

.airfit_connection-list_wrap-eco img {
    opacity: 0;
    animation-delay: 2.1s !important;
    align-self: flex-start;
    margin-top: 15px;
}

.airfit_connection-eco {
    background: url(../img/eco-dots.png) calc(100% - 130px) 110px no-repeat;
    background-color: #F9F9F9;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.airfit_connection-eco .decor_circle {
    top: unset;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
    z-index: -1;
    border-color: rgba(0, 113, 187, 0.15);;
}

.active .airfit_connection-list_wrap-eco img {
    animation: slideLeft .7s ease-in-out forwards;
}

/*airfit_connection*/

/*airfit_app*/
.airfit_app {
    background: #212121;
}

.airfit_app .section_heading {
    color: #fff;
    animation-delay: 0.2s;
    margin-left: 300px;
    margin-bottom: 0px;
}

.airfit_app.active .section_heading {
    animation: slideUp .7s ease-in-out forwards;
}

.airfit_app .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding-left: 200px;
    padding-right: 200px;
}

.airfit_app-images,
.airfit_app-screenshoots,
.airfit_app-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.dennfit_app-images {
    /* z-index: 999999; */
}

.airfit_app-images {
    position: relative;
    perspective: 300px;
    max-width: 440px;
}

.airfit_app-images img:first-of-type {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) scale(1.5) rotate(15deg);
    transition: 0.7s;
    transition-delay: 1.5s;
    opacity: 0;
}

.active .airfit_app-images img:first-of-type {
    right: -90px;
    top: -81px;
    opacity: 0.4;
    transform: translate(0%, 0%) scale(1) rotate(
15deg
);
}

.airfit_app-images img:nth-of-type(2) {
    z-index: 5;
    position: relative;
    opacity: 0;
    transition: .7s;
    transition-delay: 1.7s;
}

.active .airfit_app-images img:nth-of-type(2) {
    opacity: 1;
}

.airfit_app-screenshoots {
    -ms-align-items: flex-end;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 5;
    min-width: 502px;
    min-height: 605px;
    padding-bottom: 98px;
}

.airfit_app-screenshoots:before {
    content: '';
    display: block;
    width: 728px;
    height: 728px;
    border-radius: 50%;
    border: 1px solid #C4C4C4;
    border-bottom: none;
    border-left: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.4;
}

.airfit_app-screenshoots img {
    margin: 0 16px;
    opacity: 0;
}

.active .airfit_app-screenshoots img {
    animation: slideUp .7s ease-in-out forwards;
}

.active .airfit_app-screenshoots img:nth-of-type(1) {
    animation-delay: 2.5s;
}

.active .airfit_app-screenshoots img:nth-of-type(2) {
    animation-delay: 3s;
}

.airfit_app-list {
    color: #fff;
    list-style: none;
}

.airfit_app-list li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 54px;
    opacity: 0;
}

.airfit_app-list li:before {
    display: block;
    content: '';
    width: 14px;
    height: 14px;
    background: #2CB1EB;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}

.active .airfit_app-list li {
    animation: slideLeft .7s ease-in-out forwards;
}

.airfit_app-list li:nth-of-type(1) {
    margin-left: 16px;
    animation-delay: 3.5s
}
.airfit_app-list li:nth-of-type(2) {
    margin-left: 59px;
    animation-delay: 3.75s;
}
.airfit_app-list li:nth-of-type(3) {
    margin-left: 80px;
    animation-delay: 4s;
}

.last-app-list li:nth-of-type(1) {
    margin-left: 39px;
    animation-delay: 3.5s
}
.last-app-list li:nth-of-type(2) {
    margin-left: 85px;
    animation-delay: 3.75s;
}
.last-app-list li:nth-of-type(3) {
    margin-left: 107px;
    animation-delay: 4s;
}
.last-app-list li:nth-of-type(4) {
    animation-delay: 4.25s;
}

.airfit_app-list_wrap p,
.airfit_app-list_wrap a {
    margin-left: 158px;
    display: block;
}

.active .airfit_app-list_wrap .accent_text {
    animation: slideLeft .7s ease-in-out forwards;

}

.airfit_app-list_wrap .accent_text {
    animation-delay: 4.25s !important;
}

.airfit_app-list_wrap a {
    opacity: 0;
}

.active .airfit_app-list_wrap a {
    animation: slideUp .7s ease-in-out forwards;
}

.airfit_app-list_wrap a:nth-of-type(1) {
    animation-delay: 4.5s;
}

.airfit_app-list_wrap a:nth-of-type(2) {
    animation-delay: 4.75s;
}

/*airfit_app*/

/*airfit_band*/
.airfit_band {
    background: url(../img/eco-dots.png) 30px 250px no-repeat #fff;
}

.airfit_band .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
}

.airfit_band .footer {
    padding: 25px 55px 40px;
    margin-top: auto;
}

.airfit_band.active .section_heading {
    animation: slideLeft .7s ease-in-out forwards;
}

.airfit_band .section_heading {
    margin-bottom: 50px;
    -ms-align-self: flex-start;
    align-self: flex-start;
    padding-left: 15%;
    animation-delay: .7s !important;
    opacity: 0;
    margin-top: 10px;
}

.active .lock_circle {
    animation: slideUp .7s ease-in-out forwards;
}

.lock_circle {
    position: relative;
    border-radius: 100%; /* сделать "резиновый" круг */
    margin: 2% auto 2%;
    width: 170px;
    height: 170px;
    -ms-align-self: flex-start;
    align-self: flex-start;
    opacity: 0;
    animation-delay: 0.9s !important;
    z-index: 5;
}

.lock_circle span {
    position: absolute;
    left: 50%; /* все буквы собрать в одну точку по середине */
}

.lock_circle span {
    top: 50%;
    transform-origin: 50% 0;
    padding-top: 50%;
    font-size: 22px;
    font-weight: 400;
}

.lock_circle span:nth-of-type(1) {
    transform: rotate(120deg);
}

.lock_circle span:nth-of-type(2) {
    transform: rotate(110deg);
}

.lock_circle span:nth-of-type(3) {
    transform: rotate(100deg);
}

.lock_circle span:nth-of-type(4) {
    transform: rotate(90deg);
}

.lock_circle span:nth-of-type(5) {
    transform: rotate(80deg);
}

.lock_circle span:nth-of-type(6) {
    transform: rotate(70deg);
}

.lock_circle span:nth-of-type(7) {
    transform: rotate(60deg);
}

.lock_circle span:nth-of-type(8) {
    transform: rotate(50deg);
}

.lock_circle span:nth-of-type(9) {
    transform: rotate(40deg);
}

.lock_circle span:nth-of-type(10) {
    transform: rotate(30deg);
}

.lock_circle span:nth-of-type(11) {
    transform: rotate(20deg);
}

.lock_circle span:nth-of-type(12) {
    transform: rotate(10deg);
}

.lock_circle span:nth-of-type(13) {
    transform: rotate(0deg);
}

.lock_circle span:nth-of-type(14) {
    transform: rotate(-10deg);
}

.lock_circle span:nth-of-type(15) {
    transform: rotate(-20deg);
}

.lock_circle span:nth-of-type(16) {
    transform: rotate(-30deg);
}

.lock_circle span:nth-of-type(17) {
    transform: rotate(-40deg);
}

.lock_circle span:nth-of-type(18) {
    transform: rotate(-50deg);
}

.lock_circle span:nth-of-type(19) {
    transform: rotate(-60deg);
}

.lock_circle span:nth-of-type(20) {
    transform: rotate(-70deg);
}

.lock_circle span:nth-of-type(21) {
    transform: rotate(-80deg);
}

.lock_circle span:nth-of-type(22) {
    transform: rotate(-90deg);
}

.lock_circle span:nth-of-type(23) {
    transform: rotate(-100deg);
}

.lock_circle span:nth-of-type(24) {
    transform: rotate(-110deg);
}

.lock_circle span:nth-of-type(25) {
    transform: rotate(-120deg);
}

.lock_circle span:nth-of-type(26) {
    transform: rotate(-130deg);
}

.lock_circle span:nth-of-type(27) {
    transform: rotate(-140deg);
}

.lock_circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 5px;
    transform: translate(-50%, -50%);
}

.airfit_band-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.active .airfit_band-img_wrap {
    animation: slideUp .7s ease-in-out forwards;
}

.airfit_band-img_wrap {
    position: relative;
    border-radius: 100%; /* сделать "резиновый" круг */
    max-width: 500px;
    height: 500px;
    width: 100vw;
    opacity: 0;
    margin-right: 150px;
    animation-delay: 1.1s !important;;
}

.app_content_last_block .airfit_band-img_wrap {
    max-width: 440px;
}

.airfit_band-img_wrap-slider {
    max-width: 500px;
    /*max-height: 500px;*/
    width: 100%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.airfit_band-img_wrap-slider img {
    max-width: 100% !important;
    border-radius: 100%;
}

.airfit_band-img_wrap:before {
    content: '';
    display: block;
    width: 760px;
    height: 760px;
    border-right: 1px solid #C5C5C5;
    border-bottom: 1px solid #C5C5C5;
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.active .colors_circle {
    animation: slideUp .7s ease-in-out forwards;
}

.colors_circle {
    position: relative;
    border-radius: 100%; /* сделать "резиновый" круг */
    margin: 10% auto;
    width: 310px;
    height: 310px;
    opacity: 0;
    animation-delay: 1.3s !important;
}

.colors_circle span {
    position: absolute;
    left: 50%; /* все буквы собрать в одну точку по середине */
}

.colors_circle span {
    top: 50%;
    transform-origin: 50% 0;
    padding-top: 50%;
    font-size: 22px;
    font-weight: 400;
}

.colors_circle span:nth-of-type(1) {
    transform: rotate(60deg);
}

.colors_circle span:nth-of-type(2) {
    transform: rotate(54deg);
}

.colors_circle span:nth-of-type(3) {
    transform: rotate(48deg);
}

.colors_circle span:nth-of-type(4) {
    transform: rotate(42deg);
}

.colors_circle span:nth-of-type(5) {
    transform: rotate(36deg);
}

.colors_circle span:nth-of-type(6) {
    transform: rotate(30deg);
}

.colors_circle span:nth-of-type(7) {
    transform: rotate(24deg);
}

.colors_circle span:nth-of-type(8) {
    transform: rotate(18deg);
}

.colors_circle span:nth-of-type(9) {
    transform: rotate(12deg);
}

.colors_circle span:nth-of-type(10) {
    transform: rotate(6deg);
}

.colors_circle span:nth-of-type(11) {
    transform: rotate(0deg);
}

.colors_circle span:nth-of-type(12) {
    transform: rotate(-6deg);
}

.colors_circle span:nth-of-type(13) {
    transform: rotate(-12deg);
}

.colors_circle span:nth-of-type(14) {
    transform: rotate(-18deg);
}

.colors_circle span:nth-of-type(15) {
    transform: rotate(-24deg);
}

.colors_circle span:nth-of-type(16) {
    transform: rotate(-30deg);
}

.colors_circle span:nth-of-type(17) {
    transform: rotate(-36deg);
}

.colors_circle span:nth-of-type(18) {
    transform: rotate(-42deg);
}

.colors_circle span:nth-of-type(19) {
    transform: rotate(-48deg);
}

.colors_circle span:nth-of-type(20) {
    transform: rotate(-54deg);
}

.colors_circle span:nth-of-type(21) {
    transform: rotate(-60deg);
}

.colors_circle span:nth-of-type(22) {
    transform: rotate(-66deg);
}

.colors_circle span:nth-of-type(23) {
    transform: rotate(-72deg);
}

.colors_circle span:nth-of-type(24) {
    transform: rotate(-78deg);
}

.colors_circle span:nth-of-type(25) {
    transform: rotate(-84deg);
}

.colors_circle span:nth-of-type(26) {
    transform: rotate(-90deg);
}

.colors_circle span:nth-of-type(27) {
    transform: rotate(-96deg);
}

.colors_circle span:nth-of-type(28) {
    transform: rotate(-102deg);
}

.colors_circle span:nth-of-type(29) {
    transform: rotate(-108deg);
}

.colors_circle span:nth-of-type(30) {
    transform: rotate(-114deg);
}

.colors_circle span:nth-of-type(31) {
    transform: rotate(-120deg);
}

.colors_circle span:nth-of-type(32) {
    transform: rotate(-126deg);
}

.colors_circle span:nth-of-type(33) {
    transform: rotate(-132deg);
}

.colors_circle span:nth-of-type(34) {
    transform: rotate(-138deg);
}

.colors_circle span:nth-of-type(35) {
    transform: rotate(-144deg);
}

.colors_circle span:nth-of-type(36) {
    transform: rotate(-150deg);
}

.airfit_band-colors_slider {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 3px solid #F5F5F5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.airfit_band-img_wrap .slick-dots {
    list-style: none;
}

.airfit_band-img_wrap .slick-dots li {
    display: block;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    font-size: 1px;
    overflow: hidden;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    color: transparent;
}

.airfit_band-img_wrap .slick-dots li button {
    display: none;
}

.airfit_band-img_wrap .slick-dots li.slick-active {
    transform: scale(1.5);
}

.airfit_band-img_wrap .slick-dots li:nth-of-type(1) {
    /*background-color:#54918E;*/
    background-color: #20283f;

    top: 30px;
    right: -80px;
}

.airfit_band-img_wrap .slick-dots li:nth-of-type(2) {
    /*background-color:#F26F6F;*/
    background-color: #000000;

    top: 210px;
    right: -142px;
}

.airfit_band-img_wrap .slick-dots li:nth-of-type(3) {
    background-color: #a9242e;
    top: 130px;
    right: -125px;
}

.airfit_band-img_wrap .slick-dots li:nth-of-type(4) {
    top: 176px;
    right: -61px;
}



.airfit_band-img_wrap.fit-one .slick-dots li:nth-of-type(1) {
    /*background-color:#54918E;*/
    background-color: #20283f;

    /*top: 30px;*/
    /*right: -80px;*/
}

.airfit_band-img_wrap.fit-one .slick-dots li:nth-of-type(2) {
    /*background-color:#F26F6F;*/
    background-color: #000000;

    /*top: 80px;*/
    /*right: -107px;*/
}

.airfit_band-img_wrap.fit-one .slick-dots li:nth-of-type(3) {
    background-color: #77308c;
    /*top: 130px;*/
    /*right: -125px;*/
}

/*.airfit_band-img_wrap.fit-one .slick-dots li:nth-of-type(4) {*/
/*    background-color: #77308c;*/
/*    !*top: 176px;*!*/
/*    !*right: -61px;*!*/
/*}*/

.airfit_band-img_wrap.fit-two .slick-dots li:nth-of-type(1) {
    /*background-color:#54918E;*/
    background-color: #20283f;
}

/*airfit_band*/

/*airbeat_technologies*/
.airbeat_technologies {
    background: #333;
    z-index: 5;
    position: relative;
    overflow: hidden;
}

.active .airbeat_technologies-bg {
    opacity: 1;
}

.airbeat_technologies-bg {
    position: absolute;
    bottom: 0%;
    right: 0%;
    transform: translate(0%, 0%);
    width: 1920px;
    max-width: unset;
    opacity: 0;
    transition: 1s;
    transition-delay: 0.5s;
}

.airbeat_technologies .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.airbeat_technologies.active .section_heading {
    animation: slideUp .7s ease-in-out forwards;
}

.airbeat_technologies .section_heading {
    color: #fff;
    animation-delay: .7s;
}

.active .airbeat_technologies-inside img {
    animation: slideUp .7s ease-in-out forwards;
    opacity: 0;
    margin-left: auto;
}

.airbeat_technologies-inside img:first-of-type {
    animation-delay: .9s;
}

.airbeat_technologies-inside img:last-of-type {
    margin-top: -80px;
    animation-delay: 1.1s;
}

.airbeat_technologies-inside img {
    opacity: 0;
}

.airbeat_technologies-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-self: flex-end;
    margin-right: 15%;
}

.airbeat_technologies-list {
    color: #fff;
    list-style: none;
    margin-top: 100px;
}

.airbeat_technologies-list li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 50px;
    opacity: 0;
}

.airbeat_technologies-list li svg {
    min-width: 45px;
    margin-right: 35px;
}

.active .airbeat_technologies-list li {
    animation: slideLeft .7s ease-in-out forwards;

}

.airbeat_technologies-list li:nth-of-type(1) {
    animation-delay: 1.3s;
}

.airbeat_technologies-list li:nth-of-type(2) {
    animation-delay: 1.5s;
}

.airbeat_technologies-list li:nth-of-type(3) {
    animation-delay: 1.7s;
}

.airbeat_technologies-list li:nth-of-type(4) {
    animation-delay: 1.9s;
}

.airbeat_technologies-list li:nth-of-type(5) {
    animation-delay: 2.1s;
}

.airbeat_technologies-list li:nth-of-type(6) {
    animation-delay: 2.3s;
}

/*airbeat_technologies*/

/*airbeat_connection*/
.airbeat_connection .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-left: 20%;
}

.airbeat_app-contention {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    /*justify-content: center;*/
    justify-content: left;
    /*margin: 0 auto;*/
    margin-top: 25px;
    background: #fff;
}

.airbeat_connection.active .section_heading {
    animation: slideUp .7s ease-in-out forwards;
}

.airbeat_connection .accent_text {
    animation-delay: 0.5s;
}

.airbeat_connection.active .accent_text {
    animation: slideUp .7s ease-in-out forwards;
}

.active .airbeat_app-contention img {
    animation: slideLeft .7s ease-in-out forwards;
}

.airbeat_app-contention {
    position: relative;
}

.airbeat_app-contention img {
    /*margin-right: 30px;*/
    margin-right: 6%;
    opacity: 0;
}

.airbeat_app-contention img:nth-of-type(1) {
    animation-delay: .7s;
    max-width: 11%;
}

.airbeat_app-contention img:nth-of-type(2) {
    animation-delay: .9s;
    max-width: 11%;
}

.airbeat_app-contention img:nth-of-type(3) {
    animation-delay: 1.1s;
    max-width: 23%;
}
.airbeat_app-contention img:nth-of-type(4) {
    animation-delay: 1.2s;
    max-width: 21%;
    margin-left: -170px;

}
.airbeat_app-contention img:nth-of-type(5) {
    animation-delay: 1.3s;
    -ms-align-self: flex-start;
    align-self: flex-start;
    margin-top: -50px;
    margin-left: -232px;
    max-width: 32%;
}

/*airbeat_connection*/

/*airbeat_eco*/
.airbeat_eco .fp-tableCell {
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.airbeat_eco {
    padding: 0 0 0 15%;
    background: url(/images/denn/twsone/dennbeats-eco_bg.png) 500px 0px no-repeat #F9F9F9;
}

.airbeat_eco.active .section_heading {
    animation: slideUp .7s ease-in-out forwards;
}

.airbeat_eco.active .accent_text {
    animation: slideUp .7s ease-in-out forwards;
}

.airbeat_eco .section_heading {
    animation-delay: .7s;
    width: 48%;
    margin-bottom: 0;
}

.airbeat_eco .accent_text {
    animation-delay: .9s;
    width: 50%;
    max-width: 610px;
    font-size: 24px;
}

.airbeat_eco-imgs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-self: center;
    align-self: center;
}

.download-links {
    -ms-align-self: flex-start;
    align-self: flex-start;
    min-width: 300px;
    content: 60px;
}

.download-links a {
    opacity: 0;
    display: block;
}

.active .download-links a {
    animation: slideLeft .7s ease-in-out forwards;
}

.download-links a:first-of-type {
    animation-delay: 1.1s;
}

.download-links a:last-of-type {
    animation-delay: 1.3s;
}

.airbeat_eco-imgs {
    padding-right: 310px;
    background: url(../img/eco-dots.png) center right no-repeat;
    margin-left: auto;
    margin-right: 65px;
    margin-top: 0px;
}

.airbeat_eco-imgs img {
    margin-left: 40px;
    opacity: 0;
}

.active .airbeat_eco-imgs img {
    animation: slideLeft .7s ease-in-out forwards;
}

.airbeat_eco-imgs img:first-of-type {
    animation-delay: 1.5s;
}

.airbeat_eco-imgs img:last-of-type {
    animation-delay: 1.7s;
}

.airbeat_eco {
    background-position: 00px 0%;
}

.airbeat_function .section_heading {
    margin-bottom: 20px;
}

/*airbeat_eco*/

/*airbeat_function*/
.airbeat_function .section_heading {
    animation-delay: .7s;
    margin-left: 18%;
}

.active.airbeat_function .section_heading {
    animation: slideLeft .7s ease-in-out forwards;
    color: #fff;
}

.airbeat_function .accent_text {
    animation-delay: .9s;
    margin-left: 18%;
    max-width: 730px;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 25px;
}

.active.airbeat_function .accent_text {
    animation: slideLeft .7s ease-in-out forwards;
    color: #fff;
}

.airbeat_function {
    background: url(/images/denn/twsone/dennbeats_functions_bg.png) center right no-repeat #3c3c3c;
}

.airbeat_function .fp-tableCell {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    /*justify-content: space-between;*/
    /*padding-top: 120px;*/
}

.airbeat_function-imgs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-left: 18%;
}

.airbeat_function .fp-tableCell .footer {
    margin-top: auto;
    padding-top: 25px;
}

.airbeat_function-imgs img {
    margin-right: 30px;
    opacity: 0;
}

.active .airbeat_function-imgs img {
    animation: slideLeft .7s ease-in-out forwards;
}

.airbeat_function-imgs img:first-of-type {
    animation-delay: 1.1s;
}

.airbeat_function-imgs img:last-of-type {
    animation-delay: 1.3s;
}

.airbeat_function {
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.airbeat_function .decor_circle {
    border-color: rgba(0, 0, 0, .12);
    top: unset;
    bottom: 80px;
    left: 0;
    transform: translate(-50%, 50%);
    z-index: -1;
}

/*airbeat_function*/
/* yandex */
.yandex_plus {
    width: 33%;
    float: right;
    padding-top: 2%;
}

.yandex_plus_text {
    width: 32%;
    float: right;
    font-weight: bold;
    color: #363636 !important;
    font-size: 36%;
}

/* yandex */
.footer_section {
    background: #ffffff;
}


/* Logo */

.logo img {
    width: 200px;
}

/* wrapper */

.fullpage-wrapper {
    overflow: hidden;
}

/* text */

.white-shadow {
    text-shadow: 1px 1px 1px white, 0 0 0em white;
}

.w-100 {
    width: 100%;
}

.t-alignt-right {
    text-align: right;
}

.my-promocode {
    padding-top: 10px;
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 10px;
}

.padding-with-block {
    padding-top: 8% !important;
    padding-left: 9% !important;
    max-width: 475px ;
}

.padding-with-block-fit3 {
    padding-top: 3% !important;
    padding-left: 9% !important;
    max-width: 475px ;
}

.position_text_on_line {
    margin: -9% 0px 0px -10%;
}


.position_text_on_line .airfit_app-list {
    color: #363636 !important;
}

.position_text_on_line .airfit_app-list li:last-child{
    margin-left: 110px;
    /* animation-delay: 2.75s; */
}   

.app_content_last_block {
    padding-left: 8%;
}

.icons-temp-spo {
    position: absolute;
    /* flex: 1; */
    /* margin-left: 38%; */
    z-index: 101;
    /* margin-top: 28%; */
    left: 49%;
    top: 69%;
}

.spo-icon {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* background-color: #f8a745; */
    margin: 0 auto 10px;
    background-color: #fff;
    border: 5px solid #f8a745;
    animation: slideUp .7s ease-in-out forwards;
    animation-delay: 1s;
    opacity: 0;
    animation: slideUp .7s ease-in-out forwards;
    animation-delay: 2.4s;
}

.temp-icon {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* background-color: #363636; */
    margin: 0 auto 10px;
    background-color: #fff;
    border: 5px solid #615f5f;
    margin-left: -50px;
    opacity: 0;
    animation: slideUp .7s ease-in-out forwards;
    animation-delay: 2.4s;
}
.chip-icon, .ip67-icon {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* background-color: #f8a745; */
    margin: 0 auto 10px;
    background-color: #fff;
    border: 5px solid #615f5f;
    opacity: 0;
    animation: slideUp .7s ease-in-out forwards;
    animation-delay: 2.4s;
}
.ip67-icon {
    margin-left: -50px;
}
.bonus-belt {
    position: absolute;
    left: 57%;
    top: 71%;
    display: flex;
}
.bonus-belt__item:nth-child(2) img {
    border-radius: 50%;
    border: 2px solid #fff;
}
.bonus-belt__item:nth-child(2) {
    margin-top: 50px;
    margin-left: -1px;
}
.bonus-belt__text {
    font-weight: 500;
    font-size: 22px;
    color: #F3F3F3;
    padding-top: 60px;
    padding-left: 10px;
}

.bonus-belt__text span {
    font-weight: 300;
}

.airfitthree-offer_img {
    margin-left: -6%;
}

.tws-img {
    margin-bottom: 4% !important;
}

.single_img {
    margin-right: 17%;
}

.check-band-info {
    position: absolute;
    left: 96%;
    top: -17%;
    min-width: 262px;
}