@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400..700;1,400..700&display=swap');
* {
    box-sizing: border-box;
    font-family: Montserrat, Arial, 'Helvetica Neue', Helvetica, 'Arial Rub', sans-serif;
    border: 0;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: Montserrat, Arial, 'Helvetica Neue', Helvetica, 'Arial Rub', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #FFF;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    width: 100vw;
    overflow: hidden;
    background: #151315;
}

body::-webkit-scrollbar,
.grid-three-col-box::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track,
.grid-three-col-box::-webkit-scrollbar-track {
    background: #151315;
}
body::-webkit-scrollbar-thumb,
.grid-three-col-box::-webkit-scrollbar-thumb {
    background-color: #323232;
    border-radius: 5px;
}

a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
a:visited {
    color: inherit;
}
button {
    cursor: pointer;
}
header .button-burger {
    display: none !important;
}
header .menu {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    border-left: 1px solid #FFF;
    mix-blend-mode: exclusion;
    width: 70px;
    padding: 20px;
    min-height: 100vh;
    font-size: 30px;
    color: #FFF;
}
header .menu a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
header .line {
    position: absolute;
    border-left: 1px solid #FFF;
    top: 0;
    right: 69px;
    min-height: 100vh;
    z-index: 99;
}

.main-page-first {
    width: 100vw;
    min-height: 100vh;
    /*background: url("1.png") center top/cover no-repeat;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-page-first h1 {
    font-size: 100px;
    font-weight: 400;
    color: #FFF;
    line-height: 95px;
    margin: 0;
}
.main-page-first p.podpis {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
    line-height: 25px;
}
.main-page-first .text-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    z-index: 3;
}
.head-box {
    width: calc(100% - 150px);
    padding: 35px 25px 0 0;
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: space-between;
    align-self: center;
    align-items: center;
    z-index: 10;
}
.head-box img {
    width: 154px;
    height: auto;
}
.head-box .else {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
    align-self: center;
    align-items: center;
}
.head-box .else a.tel {
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
    line-height: 15px;
}
button.base-fiol {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #f8f8f830;
    border-radius: 5px;
    padding: 10px 22px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    color: #FFF;
    line-height: 100%;
    height: fit-content;
    width: fit-content;
}

.base-fiol:before {
    content: "";
    position: absolute;
    background: #7647C4;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
}

.base-fiol:hover:before {
    width: 110%;
    height: 300px;
}

.base-fiol:hover {
    color: #FFF;
    border-color: #7647C4;
}
.base-fiol:focus {
    outline: none
}

.main-page-black {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #151315;
}
.main-page-white {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
}

.hidden {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}
.button-burger {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-top: 25px;
    border: none;
    background: none;
    outline: none;
}
.button-burger span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    margin-top: 10px;
    text-indent: -999em;
    top: 0;
    left: 0;
    cursor: pointer;
}
.button-burger span,
.button-burger span::before,
.button-burger span::after {
    display: block;
    width: 30px;
    height: 0.9px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}
.button-burger span::before,
.button-burger span::after {
    position: absolute;
    content: '';
}
.button-burger span::before {
    top: -10px;
}
.button-burger span::after {
    top: 10px;
}
.button-burger.active span {
    background-color: transparent;
}
.button-burger.active span::before {
    transform: translateY(10px) rotate(45deg);
}
.button-burger.active span::after {
    transform: translateY(-10px) rotate(-45deg);
}



#menu-screen {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -101vw;
    transition: opacity 0.5s ease-in-out, right 0.8s ease-in-out;
    z-index: 9;
    background-color: #151315;
    color: #FFF;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-y: auto;
}

#menu-screen.active {
    right: 0;
    opacity: 1;
}
#menu-screen .head {
    display: flex;
    flex-direction: row;
    gap: 40px;
    height: 35px;
    padding: 35px;
}
#menu-screen .head img {
    height: 32px;
}
#menu-screen .main {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
    padding: 25px 90px 35px 35px;
}
#menu-screen .main .main-osn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 65%;
}
#menu-screen .main .main-osn .col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}
#menu-screen .main .main-osn .col .col-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}
#menu-screen .main .main-osn .col .col-inner .zag {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 30px;
}
#menu-screen .main .main-osn .col .col-inner .punkt {
    font-size: 15px;
    font-weight: 300;
    line-height: 140%;
    color: #FFF;
}
#menu-screen .main .main-mail {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#menu-screen .main .main-mail .zag {
    font-size: 40px;
    font-weight: 400;
    line-height: 100%;
    color: #FFF;
    text-transform: uppercase;
}
#menu-screen .mobileonly {
    display: none;
}
.photo-box .mobileonly {
    display: none;
}

#menu-screen .foot {
    display: flex;
    flex-direction: row;
    gap: 40px;
    border-top: 1px solid #FFF;
    width: calc(100% - 70px);
    align-items: center;
    justify-content: flex-start;
    padding: 30px 40px;
}
#menu-screen .foot .ob-2col {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
#menu-screen .foot .ob-2col .ob-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}
#menu-screen .foot .ob-2col .ob-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
#menu-screen .foot .ob-2col .ob-grid-4 .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#menu-screen .foot .ob-2col .ob-grid-4 .item .zag {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
}
#menu-screen .foot .ob-2col .ob-grid-4 .item a.text,
#menu-screen .foot .ob-2col .ob-grid-4 .item .text {
    font-size: 15px;
    font-weight: 300;
    color: #FFF;
}
#menu-screen .foot .ob-2col .ob-grid-5 .soc-item svg {
    fill: #FFF;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
}
#menu-screen .foot .ob-2col .ob-grid-5 .soc-item svg:hover {
    fill: #7647C4;
    width: 30px;
    height: 30px;
}

#menu-screen .main .main-mail form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#menu-screen .main .main-mail form input {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #FFFFFF50;
    border-radius: 0;
    background-color: transparent;
    color: #ffffff50;
    font-size: 20px;
    font-weight: 300;
}
#menu-screen .main .main-mail form input:focus {
    border-bottom: 1px solid #FFFFFF;
    color: #ffffff;
}
#menu-screen .main .main-mail form button {
    height: 60px;
    width: 300px;
    min-width: 200px;
    background-color: #7647C4;
    border-radius: 100px;
    border: 0;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
}

form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
form input {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #FFFFFF50;
    border-radius: 0;
    background-color: transparent;
    color: #ffffff50;
    font-size: 20px;
    font-weight: 300;
}
form input:focus {
    border-bottom: 1px solid #FFFFFF;
    color: #ffffff;
}
form button {
    height: 60px;
    width: 300px;
    min-width: 200px;
    background-color: #7647C4;
    border-radius: 100px;
    border: 0;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
}
.disclaimer {
    font-size: 13px;
    margin: 0;
    font-weight: 300;
    line-height: 120%;
}
.fit-1 {
    background: #151315 url(V.svg) center center no-repeat;
    background-size: cover;
    width: 100vw;
    min-height: 100vh;
    padding: 70px 90px 70px 70px;
    color: #FFF;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.fit-1 .zag-box  {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}
.fit-1 .zag-box .first {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.fit-1 .zag-box .first .podpis {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
    color: #FFF;
    text-transform: uppercase;
}
.fit-1 .zag-box .first h2 {
    font-size: 70px;
    font-weight: 400;
    line-height: 70px;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
}
.fit-1 .second .after {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
    color: #FFF;
    text-transform: uppercase;
}
.fit-1 .pict-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}
.fit-1 .pict-box .pict-cover {
    background: url(section-1_result.webp) center center/cover no-repeat;
    width: 100%;
    height: 500px;
    flex: 1;
}
.fit-1 .pict-box .after {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
    color: #FFF;
    text-transform: uppercase;
}
.fit-2 {
    background: #151315;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #FFF;
    padding-right: 75px;
}
.fit-2 .head {
    width: 100%;
    text-align: left;
    padding: 30px 70px;
    border-bottom: 1px solid #FFF;
}
.fit-2 .head h2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 95px;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
}
.fit-2 .cards-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
}
.fit-2 .cards-box::-webkit-scrollbar {
    height: 6px;
}
.fit-2 .cards-box::-webkit-scrollbar-track {
    background: #151315;
}
.fit-2 .cards-box::-webkit-scrollbar-thumb {
    background-color: #323232;
    border-radius: 5px;
}
.fit-2 .cards-box .cards-line:first-child {
    margin-left: -280px;
    width: calc(100% + 280px);
}
.fit-2 .cards-box .cards-line:nth-child(2) {
    margin-left: -150px;
    width: calc(100% + 150px);
}
.fit-2 .cards-box .cards-line {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    overflow: hidden;
}
.hor-scroll {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
}

.fit-2 .cards-box .cards-line .single-card {
    width: 430px;
    min-width: 430px;
    height: 310px;
    border: 1px solid #FFFFFF50;
    padding: 15px 30px;
    background: url("background-eywa-section.svg") center center/90% 90% no-repeat;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
.fit-2 .cards-box .cards-line .single-card.blacked {
    background: transparent;
    transition: all 0.3s;
}
.fit-2 .cards-box .cards-line .single-card.blacked:hover {
    background-color: #7647C4;
    cursor: pointer;
}
.fit-2 .cards-box .cards-line .single-card.blacked svg {
    width: 80px;
    min-width: 80px;
    height: 80px;
}
.fit-2 .cards-box .cards-line .single-card.blacked svg path:first-child {
    stroke: #7647C4;
    transition: all 0.3s;
}
.fit-2 .cards-box .cards-line .single-card.blacked svg path:last-child {
    stroke: #FFF;
    transition: all 0.3s;
}
.fit-2 .cards-box .cards-line .single-card.blacked:hover svg path {
    stroke: #FFF;
}
.fit-2 .cards-box .cards-line .single-card.blacked img {
    width: 80px;
    min-width: 80px;
    height: 80px;
}
.fit-2 .cards-box .cards-line .single-card .zag {
    font-size: 22px;
    font-weight: 400;
    line-height: 21px;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
}
.fit-2 .cards-box .cards-line .single-card .after {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
    text-wrap: balance;
}
.fit-2 .cards-box .cards-line .single-card img {
    width: 78px;
    height: 70px;
}

.partners-logo {
    background: #151315;
    width: 100vw;
    height: 200px;
    display: flex;
    flex-direction: column;
    color: #FFF;
    padding-right: 71px;
}
.owl-carousel.slider_partners .owl-item img {
    width: auto;
    max-height: 40px;

}

.design-slider {
    width: 100vw;
    min-height: 100vh;
    padding: 70px 90px 70px 70px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}
.design-slider.black {
    background-color: #151315;
}
.design-slider.black a.btn-podrobnee {
    color: #FFF;
}
.design-slider.white a.btn-podrobnee {
    color: #151315;
}
.design-slider.white {
    background-color: #FFF;
    color: #151315;
}
.design-slider.white .btn-podrobnee i {
    background: url(right-str-black.svg) center center / contain no-repeat;
}
.design-slider .head {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 70px;
    overflow-x: hidden;
    overflow-y: hidden;
    width: calc(100% + 15px);
    height: fit-content;
}
.design-slider .head .h-line {
    width: 100vw;
    height: 1px;
    border-bottom: 1px solid #FFF;
    position: absolute;
    bottom: 3px;
    left: -75px;
}
.design-slider.white .head .h-line {
    border-color: #15131550;
}
.design-slider.white .head span.active {
    color: #151315;
    border-bottom: 4px solid #151315;
}
.design-slider.white .head span {
    color: #15131550;
    border-bottom: 4px solid #15131550;
}
.design-slider.white .design-slide .badge {
    color: #151315;
    text-transform: uppercase;
}
.design-slider .head span {
    font-size: 70px;
    color: #FFFFFF25;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.5s;
    border-bottom: 4px solid #FFFFFF00;
}
.design-slider .head span.active {
    color: #FFF;
    border-bottom: 4px solid #FFF;
}
.design-slider .design-slide {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    position: relative;
    align-content: stretch;
    align-items: stretch;
    height: 100%;
    flex: 1;
}
.design-slider .design-slide .badge {
    position: absolute;
    top: 40px;
    left: -50px;
    transform: rotate(-90deg);
    font-size: 20px;
    color: #FFF;
    font-weight: 400;
    line-height: 100%;
}
.design-slider .design-slide .left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
    padding-left: 40px;
    padding-top: 10px;
}
.design-slider .design-slide .right {
    height: 100%;
    width: 100%;
    min-height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.btn-podrobnee {
    font-size: 20px;
    color: #FFF;
    font-weight: 400;
    line-height: 100%;
    /*text-transform: uppercase;*/
}
.btn-podrobnee i {
    display: inline-block;
    width: 72px;
    height: 34px;
    background: url("right-str.svg") center center/contain no-repeat;
}
.two-cols-space-between {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.fit-health {
    width: 100vw;
    min-height: 800px;
    background-color: #151315;
    color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}
.fit-health .head {
    width: calc(100% - 75px);
    text-align: left;
    padding: 70px 70px 30px 70px;
    border-bottom: 1px solid #FFF;
}
.fit-health .head h2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 95px;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
}
.fit-health .hor-line {
    width: calc(100% - 75px);
    left: 0;
    top: 40px;
    position: absolute;
    border-top: 1px solid #FFF;
}
.fit-health .head i {
    position: absolute;
    right: 90px;
    top: 0;
    margin-top: 90px;
    display: block;
    width: 164px;
    height: 77px;
    background: url("right-str.svg") center center / contain no-repeat;
}
.grid-three-col-box {
    padding: 70px 90px 70px 70px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.grid-three-col-box ul {
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 0;
}
.grid-three-col-box ul li {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.grid-three-col-box .item-box {
    position: relative;
    color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    width: 30%;
}
.grid-three-col-box .item-box h3 {
    color: #FFF;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    line-height: 100%;
    text-align: left;
    margin: 0;
}
.grid-three-col-box li.item-box:nth-child(1) {
    margin-top: 90px;
}
.grid-three-col-box li.item-box:nth-child(3) {
    margin-top: 60px;
}
.grid-three-col-box li.item-box:nth-child(5) {
    margin-top: -90px;
}
.grid-three-col-box li.item-box:nth-child(6) {
    margin-top: -30px;
}
.grid-three-col-box .item-box .item-box-pict {
    width: 100%;
    min-width: 100%;
    height: 320px;
    min-height: 320px;
    border-radius: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.link-all-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.photo-box {
    width: 100vw;
    min-height: 800px;
    background-color: #151315;
    color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}
.photo-box.white {
    background-color: #FFF;
    color: #151315;
}
.photo-box .head {
    width: calc(100% - 75px);
    text-align: left;
    padding: 70px 70px 30px 70px;
    border-bottom: 1px solid #151315;
}
.photo-box .head h2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 95px;
    color: #151315;
    text-transform: uppercase;
    margin: 0;
}
.photo-box .head.noborder {
    width: calc(100% - 75px);
    text-align: left;
    padding: 70px 70px 30px 70px;
    border-bottom: 0;
}
.photo-box.black .head h2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 95px;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
}
.photo-box .hor-line {
    width: calc(100% - 75px);
    left: 0;
    top: 40px;
    position: absolute;
    border-top: 1px solid #151315;
}
.photo-container {

    padding: 30px 90px 30px 70px;
}

.photo-container .up {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 15px;
    width: 100%;
    height: 486px;
    position: relative;
}
.photo-container .up .big {
    position: relative;
    width: 100%;
    height: 486px;
    flex-grow: 1;
}
.photo-container .up .min {
    position: relative;
    width: 100%;
    flex-grow: 1;
    height: 486px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}
.photo-container .up .min div {
    position: relative;
    width: 100%;
    flex-grow: 1;
}
.gallery-pict {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.gallery-pict a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.photo-container .down {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    height: 176px;
    position: relative;
}
.photo-container .down div {
    position: relative;
    width: 100%;
    height: 100%;
    flex-grow: 1;
}
.photo-container-inner {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.personal-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
    width: auto;
    padding: 70px 90px 70px 70px;
    overflow-x: scroll;
}
.personal-cards::-webkit-scrollbar {
    max-width: 90%;
    height: 12px;
}

.personal-cards::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 6px;
}

.personal-cards::-webkit-scrollbar-thumb {
    background-color: #7647c4;
    border-radius: 6px;
    border: 0;
    border: 3px solid #eee;
}
.personal-cards-inner-out {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.personal-cards .personal-cards-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}
.personal-cards .personal-cards-inner .meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}
.personal-cards .personal-cards-inner .photo {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 200px;
    height: 200px;
}
.personal-cards .personal-cards-inner .meta .name-zag {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    color: #000;
}
.personal-cards .personal-cards-inner .meta .first .spec {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
    color: #000;
}
.personal-cards .personal-cards-inner .meta .second .spec {
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    color: #000;
}
.personal-cards .personal-cards-inner .meta .first {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.personal-cards .personal-cards-inner .meta .second {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.akcii-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    padding: 70px 75px 70px 70px;
    overflow: hidden;
    border-top: 1px solid #151315;
}
.akcii-box .akcii-zag h2 {
    color: #000;
    font-size: 100px;
    font-weight: 400;
    line-height: 95px;
    text-transform: uppercase;
}
.akcii-box .akcii-box-slider {
    overflow: hidden;
    width: 100%;
}
.slider_akcii .slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.akcii-slide-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px;
}
.owl-carousel .slide {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.akcii-slide-text a {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    text-wrap: balance;
}

.grid-to-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 75px 0 70px;
}
.grid-to-col form {
    max-width: 527px;

}
.grid-to-col__first {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.grid-to-col__first p {
    font-size: 20px;
    font-weight: 300;
    color: #FFF;
    line-height: 140%;
    margin: 0;
    max-width: 527px;
    text-wrap: balance;
    text-transform: uppercase;
}

footer {
    background-color: #151315;
    height: fit-content;
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 70px;
    border-top: 1px solid #FFF;
}
footer .contacts {
    width: 100%;
    padding: 70px 145px 0 70px;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}
footer .contacts .map {}
footer .contacts .text-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
footer .contacts .text-box .text-box-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
footer .contacts .text-box .text-box-inner p {
    margin: 0;
}
footer .contacts .text-box .text-box-inner .hor-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
footer .contacts .text-box .text-box-inner .hor-box .punkt {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    font-weight: 300;
    color: #FFF;
    line-height: 22px;
}
footer .contacts .text-box .text-box-inner .hor-box .punkt .zag {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    line-height: 25px;
    text-transform: uppercase;
}

button {
    height: 60px;
    width: 300px;
    min-width: 200px;
    background-color: #7647C4;
    border-radius: 100px;
    border: 0;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
}

footer .menu {
    width: 100%;
    padding: 70px 145px 0 70px;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}
footer .menu .menu-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}
footer .menu .menu-section .spisok {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: -25px;
}
footer .menu .menu-section .spisok a {
    color: #FFF;
    font-size: 15px;
    font-weight: 300;
    padding: 8px 24px;
    border: 1px solid #151315;
    border-radius: 20px;
    width: fit-content;
    transition: all 0.5s
}
footer .menu .menu-section .spisok a:hover {
    border: 1px solid #7647C4;
    color: #FFF;
}

footer .ob-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
footer .ob-grid-5 .soc-item svg {
    fill: #FFF;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
}
footer .ob-grid-5 .soc-item svg:hover {
    fill: #7647C4;
    width: 30px;
    height: 30px;
}

footer .end {
    width: 100%;
    background: #151315;
    z-index: 99;
    border-top: 1px solid #FFF;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 40px 70px;
}
footer .end .left {
    width: 35%;
    font-size: 13px;
    font-weight: 300;
    color: #FFF;
}
footer .end .right {
    width: 60%;
    font-size: 13px;
    font-weight: 300;
    color: #FFF;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.photo-box .head h2 i {
    position: absolute;
    right: 90px;
    margin-top: -90px;
    display: block;
    width: 164px;
    height: 77px;
    background: url(right-str-black.svg) center center / contain no-repeat;
    fill: #151515;
}

.header-mobile {
    display: none;
}

.design-slider.white .design-slide .badge {
    top: 82px;
    left: -110px;
}

.popback {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(18, 17, 17, 0.5);
    z-index: 9999;
    opacity: 0;
    margin: 0;
    padding: 0;
    transition: opacity 200ms ease-in;
    pointer-events: none;
    backdrop-filter: blur(10px);
    padding: 0 30px 0 20px;
}
.popback:target {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

.popup {
    position: relative;
    width: 100%;
    max-width: 550px;
    min-width: 340px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    box-shadow: 0 0 10px #00000050;
}
.popup .close {
    width: 20px;
    height: 20px;
    background: url(https://action.fiteywa.ru/new/images/close.png) center center / contain no-repeat;
    position: absolute;
    right: -25px;
    top: 0px;
}
.popup .popup-content {
    background-color: #FFF;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.popup .popup-content .popup-header {
    height: 200px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.popup .popup-content .popup-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    color: #000;
    padding: 20px;
}
.popup .popup-content .popup-text span {
    text-align: center;
}

.popup .popup-content .popup-text span.title {
    letter-spacing: -0.25px;
    color: #151315;
    font-size: 30px;
    line-height: 42px;
    font-weight: 700;
}
.popup .popup-content .popup-text span.text {
    letter-spacing: -0.25px;
    font-size: 16px;
    line-height: 22px;
    color: #151315;
}
.popup form {
    gap: 20px;
    align-items: center;
}
.popup input {
    border-radius: 6px;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 18px;
    background: #ffffff;
    color: #000 !important;
    border: 2px solid #7647c4 !important;
    height: 53px;
    background: transparent;
    font-weight: 300;
    outline: none !important;
}
.popup input::placeholder {
    color: #ccc;
}
.popup .agree input {
    display: none;
}
.agree {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup .agree input + span {
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #7647c4;
    transition: all 0.3s ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-size: 7px;
    background-position: center;
    background-repeat: no-repeat;
}

.popup .agree input:checked + span {
    background-color: #7647c4;
    background-image: url(https://fiteywa.ru/wp-content/themes/eywa/assets/img/checkbox.svg);
}

.hpp-banner__video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 2;
}
.owl-carousel .akcii-slide-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 15px;
}
.fix-width {
    max-width: 1440px;
    width: 100%;
    padding: 20px;
    margin: auto;
}
.fix-width .head-box {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}






@media screen and (min-width: 964px) and (max-width: 1235px) {
    .main-page-first h1,
    .photo-box.black .head h2,
    .akcii-box .akcii-zag h2 {
        font-size: 70px;
        line-height: 70px;
    }
    .fit-1 .zag-box .first h2 {

    }
}




@media (min-width: 1025px) and (max-width: 1366px) {
    #menu-screen .foot .ob-2col .ob-grid-4 .item .zag {
        font-size: 13px;
    }
    #menu-screen .foot .ob-2col .ob-grid-4 .item a.text,
    #menu-screen .foot .ob-2col .ob-grid-4 .item .text {
        font-size: 13px;
    }
    #menu-screen .foot .ob-2col .ob-grid-5 .soc-item svg {
        width: 20px;
        height: 20px;
    }
    #menu-screen .main .main-mail .zag {
        font-size: 30px;
    }
    #menu-screen .main .main-mail form button {
        height: 50px;
        width: 250px;
        font-size: 15px;
    }
    form button {
        height: 50px;
        width: 250px;
        font-size: 15px;
    }
    .disclaimer {
        font-size: 10px;
    }
    #menu-screen .main .main-osn .col .col-inner .punkt {
        font-size: 12px;
    }
    #menu-screen .main .main-osn .col .col-inner .zag {
        font-size: 12px;
    }
}









@media (max-width: 1024px) {
    #menu-screen .foot,
    #menu-screen .main .main-mail {
        display: none;
    }
    #menu-screen .main .main-osn {
        width: 100%;
    }

}

@media screen and (max-width: 964px) {
    .photo-box .mobileonly {
        display: flex;
    }

    .main-page-first h1 {
        font-size: 33px;
        line-height: 100%;
    }
    .main-page-first p.podpis {
        margin: 0;
        font-size: 12px;
    }
    .head-box {
        display: none;
    }
    .header-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 70px;
        z-index: 98;
        background: #00000054;
        backdrop-filter: blur(10px);
    }
    .header-mobile-inner {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
        width: 100vw;
        height: 70px;
        align-items: center;
        padding: 20px;
    }
    .header-mobile .logo img {
        width: 140px;
        height: auto;
    }
    .header-mobile .call a {
        border-radius: 50%;
        background-color: #7647C4;
        display: flex    ;
        align-items: center;
        justify-content: center;
        padding: 11px;
    }

    header .menu {
        position: fixed;
        z-index: 99;
        top: 0;
        right: 0;
        border-left: 0;
        mix-blend-mode: exclusion;
        width: 70px;
        padding: 0 0 0 12px;
        min-height: 40px;
        font-size: 30px;
        color: #FFF;
    }
    .fit-1,
    footer .contacts,
    footer .menu .menu-section,
    .akcii-box {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .akcii-box {
        padding: 40px 20px;
        border-top: 0;
    }
    .grid-to-col {
        grid-template-columns: 1fr;
        padding: 0 20px 0 20px;
    }
    .main-page-first .text-box {
        left: 20px;
    }
    .fit-1 .pict-box .after {
        font-size: 12px;
    }
    .fit-1 .second .after {
        font-size: 12px;
    }
    .fit-health .head h2,
    .photo-box .head h2,
    .photo-box.black .head h2,
    .fit-1 .zag-box .first h2,
    .akcii-box .akcii-zag h2 {
        font-size: 29px;
        line-height: 29px;
    }
    footer .menu {
        grid-template-columns: 1fr;
        padding: 0px 20px 0 20px;
    }
    footer .menu .menu-section {
        gap: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
    footer .menu .menu-section .spisok {
        gap: 10px;
    }

    footer .end {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }
    footer .end .right {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        font-size: 12px;
    }
    footer .end .left {
        width: 100%;
        font-size: 12px;
        line-height: 100%;
    }
    footer {
        margin-top: 40px;
        gap: 20px;
    }
    button,
    form button {
        height: 46px;
        width: fit-content;
        min-width: fit-content;
        background-color: #7647C4;
        border-radius: 100px;
        border: 0;
        color: #FFF;
        font-size: 14px;
        font-weight: 400;
        padding: 12px 34px;
    }
    .photo-box {
        gap: 20px;
    }
    .photo-box .head {
        width: 100%;
        padding: 40px 20px;
    }
    .personal-cards {
        padding: 40px 20px;
    }
    .photo-container {
        padding: 40px 20px;
    }
    .photo-box .head h2 i {
        right: -29px;
        margin-top: -35px;
        display: block;
        width: 164px;
        height: 33px;
    }

    .fit-health .head i {
        right: -17px;
        margin-top: 48px;
        display: block;
        height: 33px;
    }
    .fit-health .hor-line {
        display: none;
    }
    .fit-health .head {
        width: 100%;
        padding: 40px 20px;
    }
    .grid-three-col-box {
        padding: 40px 20px;
        gap: 20px;
    }
    .photo-box .hor-line {
        display: none;
    }

    .design-slider {
        padding: 40px 20px;
    }
    .design-slider .design-slide {
        grid-template-columns: 1fr;
    }
    .fit-2 .head h2,
    .design-slider .head span {
        font-size: 35px;
        line-height: 35px;
    }
    .fit-2 {
        padding: 0 !important;
    }
    .fit-2 .head {
        padding: 40px 20px;
    }
    .fit-2 .cards-box .cards-line .single-card {
        width: 360px;
        min-width: 360px;
    }
    .design-slider .design-slide .badge {
        left: -33px;
        opacity: 0.5;
    }
    .design-slider.white .design-slide .badge {
        font-size: 15px;
        left: -80px;
    }

    .grid-three-col-box li.item-box:nth-child(1) {
        margin-top: 0;
    }
    .grid-three-col-box li.item-box:nth-child(3) {
        margin-top: 0;
    }
    .grid-three-col-box li.item-box:nth-child(5) {
        margin-top: 0;
    }
    .grid-three-col-box li.item-box:nth-child(6) {
        margin-top: 0;
    }
    .grid-three-col-box .item-box h3 {
        height: 5rem;
    }

    .photo-container .up {
        grid-template-columns: 1fr;
        height: auto;
    }
    .photo-container .down {
        grid-template-columns: repeat(2, 1fr);
        height: 250px;
    }
    #menu-screen.active {
        left: 0;
    }

    #menu-screen .main {
        padding: 100px 20px 0 20px;
    }
    #menu-screen .main .main-osn {
        grid-template-columns: repeat(2, 1fr);
    }
    #menu-screen .mobileonly {
        display: flex;
        flex-direction: column;
        padding: 0 0 40px 0;
    }
    .pconly {
        display: none !important;
    }
    #menu-screen .main .main-osn .col {
        justify-content: flex-start;
    }

    .fit-1 .pict-box .pict-cover {
        flex: none;
    }
    .personal-cards .personal-cards-inner {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .personal-cards .personal-cards-inner .photo {
        width: 150px;
        height: 150px;
    }
    .personal-cards {
        gap: 40px;
    }
    .personal-cards .personal-cards-inner .meta .second .spec {
        display: none;
    }
    .personal-cards .personal-cards-inner:nth-child(4),
    .personal-cards .personal-cards-inner:nth-child(5),
    .personal-cards .personal-cards-inner:nth-child(6) {
        display: none;
    }
    .photo-box {
        min-height: fit-content;
    }
}


























/* Section-1 Styles */
#section-1 {
    min-height: 100vh;
    color: #fff;
    background-color: #151315;
}
#section-1 .content-slider {
    position: relative;
    width: 100vw;
    min-height: 100vh;
}
#section-1 .content-slider input {
    display: none;
}
#section-1 .content-slider .slider {
    position: relative;
    width: inherit;
    height: inherit;
    overflow: hidden;
}
#section-1 .content-slider .slider .banner {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    width: inherit;
    height: inherit;
    text-align: center;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: all 0.5s ease;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper {
    height: 100%;
    padding: 70px 90px 70px 70px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    color: #FFF;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .zag-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .zag-box .first {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .zag-box .first .podpis {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
    color: #FFF;
    text-transform: uppercase;
    text-align: left;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .zag-box .first button {
    border-radius: 8px;
    background: transparent;
    border: 1px solid #7647C4;
    padding: 9px 20px;
    font-size: 15px;
    font-weight: 500;
    width: fit-content;
    color: #7647C4;
    margin-top: 10vh;
    transition: all 0.5s;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .zag-box .first button:hover {
    background-color: #7647C4;
    border: 1px solid #7647C4;
    color: #FFF;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .zag-box .first h2 {
    font-size: 70px;
    font-weight: 400;
    line-height: 70px;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .pict-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .pict-box .pict-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
    padding-bottom: 0.3em;
    font-weight: 400;
    font-size: 2.5em;
    text-transform: none;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
    font-size: 6em;
    line-height: 95%;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
    display: block;
    width: 4em;
    height: 0.1875em;
    margin: 2.5em auto;
    background: #fff;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button {
    padding-bottom: 5em;
    z-index: 15 !important;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a {
    padding: 0.5em 2em;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 0.875em;
    color: #fff;
    text-transform: uppercase;
    border: 0.1875em solid #fff;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
    color: #e88382;
    border-color: #e88382;
    transition: 0.3s;
}
#section-1 .content-slider nav {
    position: absolute;
    bottom: 0.5em;
    width: 100%;
    z-index: 10;
    text-align: center;
}
#section-1 .content-slider nav .controls {
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}
#section-1 .content-slider nav .controls label {
    position: relative;
    display: inline-block;
    width: auto;
    height: 3.1em;
    overflow: hidden;
    margin: 0 1em;
    padding-top: 1em;
    text-align: left;
    text-transform: uppercase;
    font-size: 1em;
    color: #FFF;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}
#section-1 .content-slider nav .controls label .progressbar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #948396;
    z-index: 100;
}
#section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
    position: inherit;
    width: inherit;
    height: inherit;
    margin-left: -100%;
    background: #7647C4;
}
#section-1 .content-slider nav .controls label span {
    font-size: 1.4em;
    font-weight: 700;
}
#section-1 .content-slider nav .controls label:hover {
    color: #7647C4;
}
#section-1 .content-slider #banner1:checked ~ .slider #top-banner-1,
#section-1 .content-slider #banner2:checked ~ .slider #top-banner-2,
#section-1 .content-slider #banner3:checked ~ .slider #top-banner-3,
#section-1 .content-slider #banner4:checked ~ .slider #top-banner-4,
#section-1 .content-slider #banner5:checked ~ .slider #top-banner-5 {
    opacity: 1;
    z-index: 1;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1),
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2),
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3),
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4),
#section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) {
    cursor: default;
    color: #fff;
    transition: all 0.5s;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar,
#section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) .progressbar {
    background: #fff;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar-fill,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar-fill,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar-fill,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar-fill,
#section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) .progressbar-fill {
    animation: progressBarFill 5s linear;
}
/* Animations */
@keyframes progressBarFill {
    from {
        margin-left: -100%;
    }
    to {
        margin-left: 0;
    }
}

.btn-fiyeywa {
    padding: 10px 20px;
    width: fit-content;
    border-radius: 35px;
    background-color: #7647C4;
    color: #FFF !important;
    font-weight: 600 !important;
    line-height: 1.2;
}
.str {
    display: inline-block;
    width: 72px;
    height: 34px;
    background: url(right-str-black.svg) center center / contain no-repeat;

}
.akcii-slide-text .btn-podrobnee {
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    transition: all 0.5s;
}
.akcii-slide-text .btn-podrobnee:hover {
    color: #7647c4;
}
.akcii-slide-text .btn-podrobnee svg {
    margin-left: 13px;
    margin-bottom: -10px;
    width: 50px;
    stroke: #000;
    transition: all 0.5s;
}
.akcii-slide-text .btn-podrobnee:hover svg {
    stroke: #7647c4;
}
.photo-container-mob {
    display: none;
}

.wpcf7-form p {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.wpcf7-form p:has(.hidden) {
    display: none;
}
.wpcf7-form p:has(input[type="hidden"]) {
    display: none;
}

form input[type="submit"] {
    height: 60px;
    width: 300px;
    min-width: 200px;
    background-color: #7647C4;
    border-radius: 100px;
    border: 0;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
}











@media only screen and (max-width: 1120px) {

    #section-1 .content-slider nav {
        bottom: -0.2em;
    }

}
@media only screen and (max-width: 1024px) {

    #section-1 .content-slider nav {
        bottom: 0;
    }
    #section-1 .content-slider nav .controls {
        width: 100%;
    }
}
@media only screen and (max-width: 860px) {
    #section-1 .content-slider nav {
        bottom: -1em;
    }
    #section-1 .content-slider nav .controls {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {

    #section-1 .content-slider nav .controls {
        width: 100%;
    }
    #section-1 .content-slider nav .controls label {
        width: 19%;
        font-size: 0.8em;
    }
    #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
        margin: 1.7em auto;
    }
    .fit-2 .cards-box .cards-line .single-card {
        height: 100%;
    }
    .fit-2 .cards-box .cards-line .single-card {
        width: 100%;
        min-width: 100%;
    }
    .fit-2 .cards-box {
        overflow-x: hidden;
        padding: 1rem;
    }
    .fit-2 .cards-box .cards-line:first-child,
    .fit-2 .cards-box .cards-line:nth-child(2) {
        margin-left: 0;
        width: 100%;
    }
    .fit-2 .cards-box .cards-line .single-card {
        display: none;
    }
    .fit-2 .cards-box .cards-line .single-card.blacked {
        display: flex;
    }
    .hor-scroll {
        width: 100%;
    }
    .fit-2 .cards-box .cards-line {
        flex-direction: column;
    }
    .hpp-banner__image-pc, .hpp-banner__video {
        display: block !important;
    }
    .design-slider .design-slide .left {
        padding-left: 0;
    }
    .photo-container-mob {
        display: flex;
        flex-direction: row;
        gap: 10px;
        height: fit-content;
        width: auto;
        overflow: scroll;
        padding: 0 10px;
        padding-bottom: 15px;
    }
    .photo-container-mob img {
        height: 200px;
        width: auto;
    }
    .photo-container-mob::-webkit-scrollbar {
        max-width: 90%;
        height: 12px;
    }

    .photo-container-mob::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 6px;
    }

    .photo-container-mob::-webkit-scrollbar-thumb {
        background-color: #7647c4;
        border-radius: 6px;
        border: 0;
        border: 3px solid #eee;
    }
}

@media only screen and (max-width: 480px) {

    #section-1 .content-slider nav {
        bottom: -0.5em;
    }
    #section-1 .content-slider nav .controls label {
        width: 40%;
        font-size: 0.7em;
    }
    #section-1 .content-slider .slider .banner .banner-inner-wrapper .line {
        margin: 1.7em auto;
    }
}















