html {
    scroll-behavior: smooth;
}
body {
    font-family: "Open Sans", system-ui;
    font-optical-sizing: auto;
    font-style: normal;
    background: #fff;
    font-variant-numeric: lining-nums;
    overflow-x: hidden;
    
}
body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}
body::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
		left bottom,
		left top,
		color-stop(0.44, rgb(189,24,114)),
		color-stop(0.72, rgb(220,35,135)),
		color-stop(0.86, rgb(220,35,135)));
}
::selection {
    background: #FFFB83;
    color: #121212;
}
body.spec .border-bottom-header {
    border-bottom: 0px;
}
.mb-12 {
    margin-bottom: 12px !important;
}
.mb-16 {
    margin-bottom: 16px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-32 {
    margin-bottom: 32px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-48 {
    margin-bottom: 48px;
}
.mb-64 {
    margin-bottom: 64px !important;
}
.mb-40-mob {
    margin-bottom: 40px;
}

.deskt-w-49 {
    width: 49%;
}
.deskt-w-50 {
    width: 50%;
}
.deskt-w-75 {
    width: 75%;
}
.deskt-w-80 {
    width: 80%;
}
mark {
    background: #FFFB83;
    color: #121212;
    padding: 0 3px;
}

header {
    padding: 16px 0px 0px;
    background: #121212;
    border-radius: 0px 0px 32px 32px;
    color: #fff;
    z-index: 10;
    position: relative;
    width: 100%;
    top: 0;
}
.header-row-1 {
    display: flex;
    width: 50%;
    justify-content: flex-start;
    align-items: center;
    gap: 43px;
}
.header-row-2 {
    display: flex;
    width: 24%;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}
.header-nav-but {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.header-logo {
    width: 75px;
    height: 100%;
}

.header-mob {
    font-family: Playfair Display;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.02em;
    color: #fff;
    cursor: pointer;
}
.header-mob-menu {
    padding-top: 16px;
}
.header-menu-row-1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-menu-column-1 {
    flex: 0 0 70%;
    max-width: 70%;
    margin: 16px 0px;
    flex-direction: column;
    display: flex;
}
.header-menu-column-1 p {
    margin: 0px;
}
.header-menu-column-1 a {
    color: #fff;
    outline: none !important;
    text-decoration: none !important;
}
.header-menu-column-2 {
    display: block;
    margin: 0px 0px 16px;
    width: 100%;
}
.header-menu-column-3 {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: .5;
    margin-bottom: 16px;
}
.header-menu-row-3 {
    margin: 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.header-menu-row-4 {
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 20px;
    margin: 0;
    border-top: 1px solid #fff;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
}

.header-menu-bottom {
    display: flex;
    flex-direction: column;
    max-width: 33%;
    text-wrap: nowrap;
    flex: none;
}
.header-menu-bottom a {
    color: #fff;
    margin-bottom: 8px;
    outline: none !important;
    text-decoration: none !important;
}
.header-menu-bottom-rights {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: .5;
}
.header-title {
    font-family: Playfair Display;
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    color: #fff;
    letter-spacing: -0.02em;
    padding-bottom: 32px;
    margin: 0;
}

.main-header {
    width: 100%;
    background: #121212;
    border-radius: 0px 0px 32px 32px;
    margin-top: -30px;
    
}
.main-header-sides {
    display: flex;
    justify-content: space-between;
}
.main-header-ls {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-header-ls-border {
    width: 100%;
    border-bottom: 1px solid #DC2387;
    padding-bottom: 40px;
}
.main-header-rs {
    width: 49%;
}
.secsec-box {
    display: flex;
    justify-content: space-between;
}
.border-bottom-header {
    padding-bottom: 16px;
    border-bottom: 1px solid #fff;
}
.burger {
	position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    cursor: pointer;
    z-index: 99;
    display: none;
}
.burger span{
    display: block;
    width: 50%;
    height: 1px;
    background-color: #121212;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s;
    border-radius: 100px;
}
.burger span:first-of-type{
	top: 40%;
}
.burger span:last-of-type{
	top: 60%;
}

.burger.active span:first-of-type{
	top: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}
.burger.active span:last-of-type{
	top: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}
.all-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tag {
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    height: fit-content;
    text-wrap: nowrap;
    min-height: 24px;
}
.tag:before {
    content: "";
    background-image: url(../img/icons/point.svg);
    width: 8px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
}
/*.tag:before {
    content: "•";
    font-size: 15px;
    padding-right: 5px;
}*/
.tag.empty-tag:before {
    padding-right: 0;
}
.tag.star:before {
    content: "★";
    background: none;
    font-size: 15px;
    padding-right: 5px;
}
.btag {
    background: #121212;
    color: #fff;
}
.ptag {
    background: #DC2387;
    color: #fff;
}
.gtag {
    background: #00928F;
    color: #FFFB83;
}
.ytag {
    background: #FFFB83;
    color: #121212;
}
.tag.btag:before {
    filter: brightness(0) invert(1);
}
.tag.ptag:before {
    filter: brightness(0) invert(1);
}
.tag.ytag:before {
    filter: brightness(0);
}
.tag.star.ptag {
    display: inline;
}

.btag.invert {
    filter: invert(1);
    font-weight: 400;
}
.btag.invert:before {
    content: none;
}
.btn {
    font-size: 14px;
}
.btn:hover {
    color: #fff !important;
    background: #FC40A6 !important;
    border: 1px solid #FC40A6 !important;
}
.btn:active,
.btn:focus {
    color: #fff !important;
    background: #BD1872 !important;
}

.btn-primary {
    background: #DC2387;
    border: 1px solid #DC2387 !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    width: fit-content;
}

.btn-secondary {
    background: none;
    border: 1px solid #fff !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
}
.btn-third {
    background: #121212;
    border: 1px solid #121212 !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}
.btn-empty {
    border: 1px solid #121212 !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #121212;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-fours {
    background: #00928F;
    border: 1px solid #00928F !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #FFFB83;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    font-family: "Open Sans", system-ui;
    letter-spacing: 0;
}
.btn-fifs {
    background: none;
    border: 1px solid #121212 !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #121212;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-order {
    background: #121212;
    border: 1px solid #121212 !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 175px;
}
.btn-empty-noborder {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #121212;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    border: 0px;
    outline: none;
}
.btn-primary::after,
.btn-empty::after,
.btn-empty-noborder::after,
.btn-secondary::after,
.btn-third::after,
.btn-fifs::after,
.btn-fours::after {
    content: "";
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 100%;
    overflow: hidden;
    background-image: url(../img/icons/arrow.svg);
    background-size: 4px;
    background-repeat: no-repeat;
    padding: 5px;
    background-position: center;
    margin-left: 6px;
}
.btn-fours::after {
    background: #FFFB83;
    background-image: url(../img/icons/arrow.svg);
    background-size: 4px;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-fifs::after {
    filter: invert(1);
}
.btn-empty::after,
.btn-empty-noborder::after {
    background: #23dc78;
    filter: invert(1);
    background-image: url(../img/icons/arrow.svg);
    background-size: 4px;
    background-repeat: no-repeat;
    padding: 5px;
    background-position: center;
}
.btn-empty:hover::after,
.tarif:hover .btn-empty:after,
#mse2_mfilter .btn_more:hover::after {
    filter: invert(0);
    background: #fff;
    background-image: url(../img/icons/arrow.svg);
    background-size: 4px;
    background-repeat: no-repeat;
    background-position: center;
}
.tarif:hover .btn-empty {
    color: #fff !important;
    background: #DC2387 !important;
    border: 1px solid #DC2387 !important;
}
.btn-fifs:hover::after {
    filter: invert(0);
}
.btn-order::before {
    content: "+";
    width: 16px;
    height: 16px;
    background: #DC2387;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 6px;
    line-height: 17px;
    font-weight: 700;
}
.btn-empty-noborder:hover {
    color: #121212 !important;
    background: none !important;
    border: 0px !important;
}
.btn-noback {
    border: 1px solid #121212 !important;
    padding: 8px 24px 8px 24px;
    border-radius: 100px;
    color: #121212;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    opacity: .5;
}
.btn-noback:hover {
    opacity: 1;
    background: #121212;
    color: #fff;
}
section {
    padding: 48px 0px 64px;
}

.container-lg {
    max-width: 1320px;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
p {
    margin-bottom: 8px;
}
a:hover {
    color: #FC40A6;
    text-decoration: none;
}
.main-text {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
}
footer {
    background: #121212;
    margin: 0;
    border-radius: 32px 32px 0px 0px;
    color: #fff;
    padding: 64px 0px 24px;
}
.dissable-yet {
    background: #ffffff80;
    width: 100%;
    height: 95%;
    z-index: 11;
    position: absolute;
}
.project-block {
    padding: 40px;
    border-radius: 16px;
    display: flex;
    background-size: cover !important;
    background-position: center !important;
    flex-direction: column;
}
.project-block-container {
    min-height: 658px;
    background: #121212;
    width: 32%;
    padding: 32px;
    border-radius: 12px;
    position: relative;
}
.project-block-title {
    font-family: Playfair Display;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: #fff;
    letter-spacing: -0.02em;
}
.project-block-text {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
    letter-spacing: -0.02em;
}
.spec-tips .project-block-title {
    font-size: 40px;
    line-height: 48px;
}
.play-button-bottom {
    width: 64px;
    height: 64px;
    padding: 16px;
    position: absolute;
    bottom: 40px;
    filter: invert(1);
    border-radius: 100%;
    background-image: url(../img/icons/play.svg);
    border: 1px solid #121212;
    background-repeat: no-repeat;
    background-position: center;
}
.buyers.project-block  {
    border-radius: 16px 16px 0px 0px;
    overflow: hidden;
}
.buyers .project-block-container {
    min-height: auto;
    background: #ffffff;
    margin-top: 260px;
}
.buyers .project-block-title {
    color: #DC2387;
}
.buyers .project-block-text {
    color: #121212;
}
.project-block-title span { 
    line-height: 0;
    top: -23px;
    position: relative;
    vertical-align: baseline;
    font-size: 55%;
}
.project-block-under {
    display: flex;
    justify-content: space-between;
    padding: 40px 48px 48px;
    background: #DC2387;
    border-radius: 0px 0px 16px 16px;
}
.input-sub {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    outline: 0px;
    padding: 8px 12px;
    line-height: 0;
    border: 0px;
}
.title-fordis {
    font-family: Playfair Display;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
}
.text-fordis {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    width: 90%;
}
.text-flex-border-top {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #121212;
    padding-top: 18px;
}
.text-32s {
    width: 32%;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.fordis-block {
    background: #F2F2F2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    position: relative;
    justify-content: flex-end;
}
.fordis-img {
    width: 33%;
    background-size: cover !important;
    background-position: center !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.fordis-description {
    width: 67%;
    height: 100%;
    padding: 48px;
}
.logo-black {
    width: 100%;
    height: 100%;
    background: url(../images/logo-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.logo-black-short {
    width: 100%;
    height: 100%;
    background: url(../images/logo-black-short.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.logo-white {
    width: 100%;
    height: 100%;
    background: url(../images/logo-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.logo-white-short {
    width: 100%;
    height: 100%;
    background: url(../images/logo-white-short.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.social-icon {
    height: 40px;
    width: 40px;
    border: 1px solid #000;
    border-radius: 100%;
    margin: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    filter: invert(1);
    cursor: pointer;
}
.youtube {
    background-image: url(../img/icons/play.svg);
}
.linkedin {
    background-image: url(../img/icons/linked.svg);
    background-size: 16px;
    background-position: center 9px;
}
.instagram {
    background-image: url(../img/icons/inst.svg);
}
.footer-container {
    display: flex;
    margin-bottom: 48px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-container a {
    color: #fff;
    margin-bottom: 8px;
    outline: none !important;
    text-decoration: none !important;
}
.footer-container a:hover {
    color: #FC40A6;
}
.footer-container a:active {
    color: #BD1872;
}
.footer-container:nth-child(3) {
    border-top: 1px solid #fff;
    padding-top: 24px;
    margin-bottom: 0;
}
.footer-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 17%;
    max-width: 17%;
}
.footer-column:nth-child(4) {
    display: flex;
    flex-direction: column;
    flex: 0 0 16%;
    max-width: 16%;
}
.footer-column-2 {
    display: flex;
    flex-direction: column;
    flex: 0 0 33%;
    max-width: 33%;
}
.footer-column-3 {
    flex: 0 0 33%;
    max-width: 33%;
    opacity: .5
}
.footer-column.align-self-center a{
    margin-bottom: 0px;
}
.footer-column-3 .align-self-center p{
    margin: 0;
}

.footer-container.fbottom {
    border-top: 1px solid #fff;
    padding-top: 24px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}
.footer-left-side {
    display: flex;
    flex: 0 0 67%;
    max-width: 67%;
    flex-direction: column;
}
.footer-left-column {
    flex-direction: column;
    display: flex;
    flex: 0 0 25%;
    max-width: 25%;
}
.footer-left-main {
    width: 100%;
    display: flex;
    margin-bottom: 48px;
}
.footer-left-sub {
    width: 100%; 
    display: flex;
}
.footer-left-column-last {
    flex-direction: column;
    display: flex;
    flex: 0 0 50%;
    max-width: 50%;
}
.footer-right-side {
    flex: 0 0 33%;
    max-width: 33%;
    opacity: .5;
}
.title-section {
    font-family: Playfair Display;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}
.partner-box {
    border: 1px solid #121212;
    padding: 24px;
    border-radius: 16px;
    height: 182px;
}
.partner-box:hover {
    background: #121212;
}
.partner-logo {
    height: 25px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    margin-bottom: 24px;
    filter: brightness(0);
}
.partner-text {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 100;
    line-height: 28px;
    margin: 0;
    color: #121212;
}
.partner-box:hover .partner-text {
    color: #fff;
}
.partner-box:hover .partner-logo {
    filter: brightness(0) invert(1);
}
.slider_partner .slick-slide {
    margin-right: 16px;
}
.nxt,
.nxts,
.prv,
.prvs {
    content: "";
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    overflow: hidden;
    background-image: url(../img/icons/arrow.svg);
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: 18px center;
    margin-left: 5px;
    cursor: pointer;
    filter: invert(1);
}
.prv.slick-disabled,
.prvs.slick-disabled,
.nxt.slick-disabled,
.nxts.slick-disabled {
    opacity: .2;
}
.prv,
.prvs {
    transform: rotate(180deg);
}
.pininfo-but {
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid #121212 !important;
    display: flex;
    flex-direction: column;
    color: #121212;
}
.pininfo-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    padding-bottom: 8px;
    font-family: Playfair Display;
}
.pininfo {
    border-top: 3px solid #121212;
    padding: 20px 0px 0px;;
    position: relative;
}
.pininfo:last-child {
    border-bottom: 3px solid #121212;
    padding: 20px 0px 48px;
}
.bulpoint {
    width: 16px;
    min-width: 16px;
    height: 16px;
    border-radius: 100%;
}
#bdesigners .bulpoint {
    background: #dc2387;
}
#bsales .bulpoint {
    background: #00928F;
}
#bshop .bulpoint {
    background: #121212;
}
#bdesigners .pininfo-text {
    border-bottom: 1px solid #dc2387;
}
#bsales .pininfo-text {
    border-bottom: 1px solid #00928F;
}
#bshop .pininfo-text {
    border-bottom: 1px solid #121212;
}
.pininfo-but.active#bshop .pininfo-text,
.pininfo-but#bshop:hover .pininfo-text {
    border-bottom: 1px solid #fff;
}
.pininfo-but.active#bshop .bulpoint,
.pininfo-but#bshop:hover .bulpoint{
    background: #fff;
}
.pininfo-but.active,
.pininfo-but:hover {
    background: #121212;
}
.pininfo-but.active .pininfo-text,
.pininfo-but.active .main-text,
.pininfo-but:hover .pininfo-text,
.pininfo-but:hover .main-text
{
    color: #fff;
}
.dsnrs-info-box {
    background: #F2F2F2;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex !important;
    flex-basis: calc(50% - 12px);
}
.dsnrs-info-box-number {
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background: #DC2387;
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 0px;
    margin-right: 8px;
    margin-top: 4px;
}
.pininfo-sales-box {
    height: 250px;
    background: #F2F2F2;
    border-radius: 12px;
    width: 23.5%;
    position: relative;
    padding: 16px;
}
.pininfo-sales-box .main-text {
    position: absolute;
    bottom: 3px;
    margin-right: 16px;
}
.box-gap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.pininfo-sales-benefits {
    flex-basis: calc(50% - 12px);
    padding-right: 60px;
}
.title-benefits {
    font-family: Playfair Display;
    font-size: 56px;
    font-weight: 700;
    line-height: 56px;
}
.terms-block-title {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.02em;
}
.box-gap.slider-boxes .terms-block-title {
    font-weight: 700;
}
.cube-icon {
    background: url(../img/icons/cube.svg);
    width: 32px;
    height: 32px;
    margin-right: 8px;
}
.coin-icon {
    background: url(../img/icons/coin.svg);
    width: 32px;
    height: 32px;
    margin-right: 8px;
}
.pininfo-left {
    width: 31%;
    height: 100%;
    position: sticky;
    top: 20px;
}
.pininfo-right {
    width: 67%
}
.pininfo-title {
    font-family: Playfair Display; 
    font-size: 32px; 
    font-weight: 700; 
    line-height: 40px;
    letter-spacing: -0.02em;
}

.offer-box {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-right: 24px;
    position: relative;
    overflow: hidden;
    height: 175px;
}
.offer-box-img {
    width: 45%;
    background-position: right;
    background-size: cover !important;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.offer-button {
    font-family: Open Sans;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    z-index: 10;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.offer-box-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.offer-box-maintext {
    font-family: Playfair Display;
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}
.offer-button:after {
    content: "";
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 100%;
    overflow: hidden;
    background-image: url(../img/icons/arrow.svg);
    background-size: 4px;
    background-repeat: no-repeat;
    padding: 8px;
    background-position: center;
    margin-left: 8px;
}
.slider_offers .slick-slide:nth-child(2) {
    margin: 0px 24px;
}
.slider_offers .slick-track {
    display: flex;
}
.offer-box.box1 {
    background: #dc2387;
}
.offer-box.box2 {
    background: #00928F;
}
.offer-box.box3 {
    background: #F2F2F2;
}
.offer-box.box3 .offer-box-maintext {
    color: #121212;
}
.offer-box.box3 .offer-button {
    filter: invert(1);
    text-wrap: nowrap;
}

.author-project-img,
.mini-author-project-img {
    height: 200px;
    width: 100%;
    background-size: cover !important;
    background-position: center;
    display: block;
    position: relative;
    cursor: pointer;
}
.mini-author-project-img {
    height: 150px;
}
.main-projects {
    border: 1px solid #121212;
    border-radius: 16px;
    overflow: hidden;
    flex-basis: 100%;
}
#ajax-content {
    height: 100%;
}
.author-project-info {
    padding: 20px 24px;
}
.author-project-avatar {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    margin-right: 16px;
}
.author-project-name {
    font-family: Playfair Display;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em;
}
.author-project-about,
.mini-author-project-about {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 72px;
}
.mini-author-project-about {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: auto;
    margin: 0;
}
.tag-style {
    font-family: Open Sans;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: #fff;
    background: #DC2387;
    margin: 0;
    padding: 0px 8px;
    border-radius: 100px;
    margin-right: 12px;
    display: inline-block;
}
.author-insta {
    font-family: Open Sans;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.author-insta:before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    overflow: hidden;
    background-image: url(../img/icons/inst.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 4px;
    border-radius: 4px;
}
.author-flag {
    font-family: Open Sans;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    align-items: center;
}
.author-flag:before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    overflow: hidden;
    background-image: url(../img/icons/flag.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 4px;
}
.slider_mainproject .slick-slide {
    margin-right: 24px;
}
.author-project-over {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgb(0 0 0 / 24%);
}
.author-project-over:hover {
    background: rgb(0 0 0 / 0%);
}
.author-project-pressed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.play_but {
    filter: invert(1);
    border-radius: 100%;
    background-image: url(../img/icons/play.svg);
    border: 1px solid #121212;
    height: 70px;
    width: 70px;
    background-repeat: no-repeat;
    background-position: 26px center;
}

.slider_mainproject {
    min-width: 1300px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    margin-top: 16px;
}
.slick-dots li {
    margin: 6px 6px;
}
.slick-dots button {
    display: block;
    height: 12px;
    width: 12px;
    border: none;
    border-radius: 100%;
    background-color: #bdbdbd;
    text-indent: -9999px;
    cursor: pointer;
    outline: none !important;
    padding: 0;
}
.slick-dots li.slick-active button {
    background-color: #DC2387;
}
.dis-header {
    padding: 32px 32px 12px 32px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.bc {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-animation: zoomin 30s 1;
    -webkit-transform: scale(1.3);
}

@-webkit-keyframes zoomin {
    0% {
        -webkit-transform: scale(1.3);
    }
    100% {
        -webkit-transform: scale(2);
    }

}
.dis-header:after {
    content: "";
    background-image: url(../img/icons/glass.svg);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-position: top;
    z-index: 1;
}
.dis-header-ls {
    height: 538px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}
.dis-header-rs {
    width: 27%;
    margin-left: 3%;
    z-index: 2;
}
.dis-header-rs-title {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}
.dis-play,
.dis-play-secondary {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #121212;
    background: #fff;
    padding: 8px 16px 8px 8px;
    width: fit-content;
    border-radius: 100px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
}
.dis-play-secondary {
    padding: 8px 25px;
    background: #00928f;
    color: #fff;
}
.dis-play-secondary:hover {
    background: #DC2387;
    color: #fff;
}
.dis-play:before {
    content: "";
    filter: invert(1);
    border-radius: 100%;
    height: 32px;
    width: 32px;
    background: #ff6d70;
    background-image: url(../img/icons/play.svg);
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 10px;
    margin-right: 10px;
}
.dis-play-flex {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.slick-guide {
    display: flex; 
    justify-content: space-between; 
    gap: 24px; 
}
.guide-block {
    background: #00928F;
    border-radius: 12px;
    overflow: hidden;
}
.guide-img {
    height: 280px;
    background-size: cover;
    background-position: center;
}
.guide-info {
    color: #fff;
    padding: 32px;
}
.guide-title {
    font-family: Playfair Display;
    font-size: 56px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.01em;
    margin: 24px 0px 16px;
}
.guide-description {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    max-width: 500px;
}
.banner {
    padding: 40px 48px 48px;
    border-radius: 12px;
}
.banner-title {
    font-family: Playfair Display;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.02em;
}
.banner-text {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
}
.banner.tariff {
    background: #00928F;
    color: #fff;
}
.banner.promotion {
    background: #F2F2F2;
    color: #121212;
}
.banner-btn {
    padding: 20px 0px 24px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
}
.tariff .banner-btn {
    color: #121212;
    background: #fffb83;
}
.promotion .banner-btn {
    color: #fff;
    background: #121212;
}
.banner-btn::after {
    content: "";
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 100%;
    overflow: hidden;
    background-image: url(../img/icons/arrow.svg);
    background-size: 9px;
    background-repeat: no-repeat;
    padding: 5px;
    background-position: center;
    margin-left: 16px;
    filter: invert(1);
}
.promotion .banner-btn::after {
    filter: invert(0);
}
.slick-features.promotion {
    border-top: 1px solid #000;
    padding-top: 40px;
}
.slick-features,
.slick-features-under {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.slick-features {
    margin-bottom: 24px;
}
.features-ls {
    width: 32%
}
.features-rs {
    width: 66%;
}
.features-postinfo {
    padding: 32px;
    border-radius: 12px;
    background: #F2F2F2;
    width: 33%;
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.features-postinfo-title {
    font-family: Playfair Display;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.02em;
}
.features-postinfo-text {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin: 0;
}
.features-postinfo-text p {
    margin: 0;
}
.function-title {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    border-bottom: 0px solid #121212;
    display: inline-block;
    padding-bottom: 0;
    text-decoration-line: underline;
    text-underline-offset: 7px;
    text-decoration-thickness: 1px;
    margin-bottom: 5px;
}
.function-text {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    padding-top: 12px;
    display: none;
}
.features-infobut,
.reg-infobut {
    background: #F2F2F2;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}

.features-infobut.active {
    background: #00928F;
    color: #fff;
}
.reg-infobut.active {
    background: #121212;
    color: #fff;
}
.features-infobut.active .function-title,
.reg-infobut.active .function-title {
    border-bottom: 0px solid #fff;
}
.reg-infobut .bulpoint {
    background: #121212;
}
.reg-infobut.active .bulpoint {
    background: #fff;
}
.features-image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    display: none;
}
.promotion .features-infobut.active {
    background: #121212;
    color: #fff;
}
.promotion .bulpoint {
    background: #121212;
}
.promotion .active .bulpoint {
    background: #fff;
}
.promotion .features-image {
    height: auto;
}
.promotion .features-extra-image {
    height: 488px;
    width: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}
.slick-features.regtion {
    margin: 0;
}
.regtion-image {
    height: 488px;
    width: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}
.regtion .features-image {
    height: auto;
}
.stylistic .pininfo-title {
    margin-bottom: 24px;
}
.stylistic .dsnrs-info-box-number {
    background: #121212;
}
.stylistic .dsnrs-info-box {
    border-radius: 0px;
    padding: 16px 0px;
    border-bottom: 1px solid #000;
}
.stylistic .main-text p {
    margin: 0;
}
.stylistic .dsnrs-info-box:last-child {
    border-bottom: 0px solid #000;
}
.palitra {
    columns: 2;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #000;
}
.palitra-side {
    display: flex;
    margin-bottom: 16px;
}
.palitra-number {
    min-width: 20px;
    height: 20px;
    border-radius: 100px;
    background: #121212;
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 0px;
    width: fit-content;
    margin: 0px 16px 16px 0px;
    z-index: 1;
}
.palitra-image {
    width: 100%;
    height: 100px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 8px;
    background-repeat: no-repeat !important;
}
.palitra-side:nth-child(2) .palitra-image {
    height: 340px
}
.palitra-side:nth-child(5) .palitra-image {
    height: 170px;
}
.palitra-side:nth-child(4) .palitra-image {
    height: 140px;
    margin-top: -45px;
    margin-bottom: -15px;
}
.palitra-side:nth-child(4) {
    display: flex;
    flex-direction: column;
}
.palitra-side:nth-child(5) {
    display: flex;
    flex-direction: column;
}
.stylistic {
    background: #F2F2F2;
    padding: 32px;
    border-radius: 16px;
    flex-basis: calc(50% - 12px);
}
.border-around-flex {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 40px 0px;
}
.spec-card-slide {
    margin-bottom: 24px;
    width: 195px !important;;
}
.spec-card {
    height: 300px;
    width: 195px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 8px;
}
.spec-card-name {
    font-family: Playfair Display;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
}
.spec-card-avatar {
    width: 20px;
    height: 20px;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    border: 1px solid #dc2387;
    margin-right: 8px;
}
.btn-small {
    height: 15px;
    width: 15px;
    background: #121212;
    border: 1px solid #121212 !important;
    border-radius: 100px;
    color: #fff;
    padding: 0;
    display: flex;
}
.btn-small::after {
    content: "";
    width: 16px;
    height: 12px;
    border-radius: 100%;
    overflow: hidden;
    background-image: url(../img/icons/arrow.svg);
    background-size: 5px;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
    line-height: 0;
}
.spec-card-under {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.spec-header {
    background: #F2F2F2;
    border-radius: 0px 0px 32px 32px;
    margin-top: -30px;
    margin-bottom: 48px;
    padding-top: 62px;
}
.spec-header .header-title {
    color: #121212;
}
.verticle-slider {
    height: 515px;
    margin-bottom: -64px;
    overflow: hidden;
    display: flex;
    gap: 20px;
    margin-top: -32px;
}
.slider_specproject .slick-slide:nth-child(3n) .spec-card {
    height: 130px;
}
.slider_specproject-extra .slick-slide:nth-child(2n) .spec-card {
    height: 130px;
}
.slider_specproject-more .slick-slide:nth-child(4n) .spec-card {
    height: 130px;
}
.slider_specproject,
.slider_specproject-extra,
.slider_specproject-more {
    width: 31%;
}
.slider_specproject-extra {
    transform: rotate(180deg);
}
.slider_specproject-extra .spec-card-slide {
    transform: rotate(180deg);
}

.article-news-flex {
    height: 100%;
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.article-preview {
    background: #fff;
    width: 32%;
    height: 254px;
    overflow: hidden;
    border-radius: 16px;
    padding: 24px;
}
.article-preview-main {
    display: flex;
    height: 100%;
    justify-content: space-between;
    color: #121212;
    flex-direction: column;
}
.article-preview-info {
    width: 100%;
}
.article-title {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin: 16px 0px 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.article-preview-text {
    width: 100%;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
}
.article_img_b {
    height: calc(100% + 48px);
    margin: -24px;
    background-size: cover;
    background-position: center;
    display: none;
    width: calc(100% + 48px);
    margin-top: 24px;
}
.article-preview:nth-child(1) .article_img_b,
.article-preview:nth-child(2) .article_img_b,
.article-preview:nth-child(7) .article_img_b {
    display: block;
}
.article-preview:nth-child(1) .article_img_b {
    height: calc(100% + 80px);
    margin: -40px;
    width: 50%;
}
.article-preview:nth-child(1) .article-preview-text {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    width: 85%;
}
.article-preview:nth-child(1) .article-title {
    font-size: 40px;
    line-height: 48px;
    margin: 24px 0px;
}
.article-preview:nth-child(1) .article-preview-info {
    width: 50%;
}
.article-preview:nth-child(1) .article-preview-main {
    flex-direction: row;
}
.article-preview:nth-child(1) {
    width: 100%;
    height: 345px;
    padding: 40px;
}

.article-preview:nth-child(2) {
    height: 532px;
}
.article-preview:nth-child(6) {
    margin-top: -278px;
}
.article-preview:nth-child(7) {
    height: 532px;
    margin-top: -278px;
}
.article-preview:nth-child(8) {
    margin-left: calc(32% + 24px);
    margin-top: -278px;
}
.faq-title {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin: 0;
}
.faq-arrow {
    min-width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #F2F2F2;
    background-image: url(../img/icons/arrow.svg) !important;
    background-size: 10px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transform: rotate(90deg);
}
.faq-single {
    padding: 24px 0px;
    border-top: 3px solid #121212;
}
.ques {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.ans {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    width: 95%;
    display: none;
    margin: 0;
    padding-top: 8px;
}
.ques.active .faq-arrow {
    filter: invert(1);
    background: #ededed;
    transform: rotate(270deg);
}
.slider-tarifs .slick-track {
    display: flex;
    justify-content: space-between;
}
.slider-tarifs .slick-slide{
    margin-right: 24px;
}
.slider-tarifs .slick-slide:last-child {
    margin-right: 0px;
}
.slider-tarifs .slick-slide:nth-child(2) .tarif {
    border: 1px solid #DC2387;
}
.tarif {
    width: 100%;
    height: 624px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #fff;
    padding: 32px;
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}
.tarif:hover {
    border: 1px solid #DC2387;
}
.tarif:hover .tag {
    background: #DC2387;
    color: #fff;
}
.tarif-price-tag {
    font-family: Playfair Display;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.02em;
    margin: 16px 0px 8px;
}
.tarif-descrb {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    width: 85%;
    margin: 0;
}
.tarif-list {
    padding-left: 10px;
    border-top: 1px solid #000;
    margin-top: 16px;
    padding-top: 16px;
}
.tarif-list li {
    padding-left: 8px;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    padding-bottom: 8px;
}
.tarif-list li::marker {
    content: "−";
    color: #DC2387;
}
.buyers-header .header-title {
    color: #121212
}
.buyers-sides {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 48px;
}
.buyers-side {
    display: flex !important;
    flex-basis: calc(50%);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DC2387;
    padding-right: 24px;
}
.buyers-side:nth-child(even) {
    padding-right: 0px;
}
.buyers-side:last-child {
    border-bottom: 0px;
    margin: 0;
    padding: 0;
}
section.buyers-header {
    padding-bottom: 32px;
}
.buyers-header .main-header-sides {
    border-bottom: 1px solid #DC2387;
    padding-bottom: 32px;
}
.buyers-header .terms-block-title {
    margin: 0;
}
.tagie {
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 0px 16px;
    width: fit-content;
    height: fit-content;
    background: #DC2387;
    color: #fff;
    margin-right: 12px;
}

.author-card {
    position: relative;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    padding: 12px;
}

.author-card:nth-child(1) {
    height: 210px;
    width: 200px;
}

.author-card:nth-child(2) {
    height: 360px;
    width: 200px;
    grid-row: 2;
}

.author-card:nth-child(3) {
    height: 185px;
    width: 420px;
    margin-bottom: -70px;
}

.author-card:nth-child(4) {
    height: 290px;
    width: 420px;
    grid-row: 2;
}

.author-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
    height: 360px;
    width: 200px;
}

.author-card:nth-child(6) {
    grid-column: 3;
    grid-row: 1;
    height: 210px;
    width: 200px;
}

.author-card-info {
    background: #fff;
    position: absolute;
    border-radius: 8px;
    width: 175px;
    overflow: hidden;
    padding: 8px 8px 12px;
}

.author-card:nth-child(1) .author-card-info {
    animation-delay: 1s;
}

.author-card:nth-child(2) .author-card-info {
    animation-delay: 2s;
}

.author-card:nth-child(3) .author-card-info {
    animation-delay: 3s;
}

.author-card:nth-child(4) .author-card-info {
    animation-delay: 4s;
}

.author-card:nth-child(5) .author-card-info {
    animation-delay: 5s;
}

.author-card:nth-child(6) .author-card-info {
    animation-delay: 6s;
}

.author-card-info {
    animation: zoomIn 0.5s ease-in-out;
    animation-fill-mode: forwards;
    transform: scale(0);
    transform-origin: top left;
    transform-box: border-box;
}

.bullet-project {
    width: 24px;
    height: 24px;
    background: #DC2387;
    border-radius: 100%;
    color: #fff;
    font-size: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
    position: absolute;
}

.dsd {
    animation: zoomOut 0.5s ease-in-out;
    animation-fill-mode: forwards;
    transform: scale(1);
    transform-box: border-box;
    animation-delay: 2s;
}

.puls-but {
    -webkit-animation: pulse 1.7s ease infinite;
    width: 100%;
    position: absolute;
    height: 100%;
    background: #fc40a6;
    padding: 15px;
    border-radius: 100%;
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 0.1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.tr-pls {
    -webkit-animation: pulse-div 1s ease infinite;
}

@-webkit-keyframes pulse-div {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.01);
    }
}


.author-card-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    margin-right: 8px;
}

.author-card-name {
    font-family: Open Sans;
    font-size: 12px;
    font-weight: 500;
    line-height: 13px;
    margin-bottom: 0;
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

#progview_tour1 {
    height: 90vh;
}

.vr-modal {
    background: none;
    border: 0px;
}

.modal-xl {
    max-width: 80vw !important;
}
.modal-md {
    max-width: 60vw !important;
}

.main-modal {
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 16px;
}
.modal-background {
    width: 100%;
    background-position: center;
    min-height: 50vh;
    background-size: cover;
    border-radius: 16px 0px 0px 16px;
}
.modal-info {
    padding: 24px 32px;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-title {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.modal-info-text {
    border-bottom: 1px solid #121212;
    margin-bottom: 24px;
    padding-bottom: 24px;
}
.modal-input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #121212;
    opacity: 0.5;
    margin-bottom: 16px;
}
.close_formbut {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    right: -64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000bf;
    cursor: pointer;
}

.close_formbut:hover {
    color: #000;
}

.slider-heder-project {
    width: 100%;
    display: grid;
    gap: 24px;
    align-items: end;
}

.desdescribtion {
    background: #dc2387;
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 16px;
}
.desdescribtion p {
    color: #fff;
    flex-basis: calc(35%);
    margin: 0;
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-wrap: nowrap;
 }
.desdescribtion p small {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
.terms-flex {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.terms-div {
    background: #F2F2F2;
    border-radius: 16px;
    padding: 24px 32px;
    width: 100%;
}

.project-block-container .tag,
.project-block-container .project-block-title {
    margin-bottom: 24px;
}

.info-under {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    opacity: .5;
    padding: 24px 64px 48px;
    letter-spacing: -0.02em;
}
.price-card .tag {
    margin: auto;
    margin-bottom: 14px;
}
section.dis-tafirs {
    padding: 48px 0px 64px;
    background: #F2F2F2;
    border-radius: 32px;
}
.prices-buts {
	display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    overflow: hidden;
}
.yrmn {
    cursor: pointer;
    padding: 10px;
    margin: 0;
    width: 180px;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    background: #fff;
    text-align: center;
}
.yrmn.active {
    color: #FFFB83;
    background: #00928F;
}
.slick-container-intro {
    width: 22%;
    background: #fff;
    border-radius: 16px 0px 0px 16px;
    border: 1px solid #fff;
    padding: 24px 0px 0px 24px;
}
.slick-container-intro div {
    height: 150px;
}
.slick-container-intro_title {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 24px;
}
.slick-container-intro_text {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    opacity: .5;
}
.dis-tafirs table tr td {
    padding: 8px 25px;
    height: 66px;
    padding-left: 0px;
    border-bottom: 1px solid #1212124d;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.01em;
}
.dis-tafirs table tr:last-child td {
    border: 0px;
}
.slick-trs {
	width: 78%;
    padding: 24px 24px 0px 0px;
    background: #fff;
    border-radius: 0px 16px 16px 0px;
}
.slick-trs td {
    padding-right: 0px;
}
table {
    width: 100%;
}
.trs_descrb {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 0px 16px;
    text-align: center;
    margin: 0;
    opacity: .5;
    letter-spacing: -0.02em;
    height: 48px;
}
.monthy-year {
	font-size: 18px;
    width: 100%;
    margin: 0;
    text-align: center;
    font-weight: 400;
    display: block;
	line-height: 1;
    line-height: 1.5;
    margin-bottom: 15px;
}
.numbrs {
    text-align: center;
    padding: 0;
}
.prices-container {
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.price-card.slick-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ex, .tik {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.ex:before,
.tik:before {
    content: "✔";
    color: #fff;
    background: #00928f;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 100%;
    font-size: 12px;
    line-height: 20px;
}
.tik:before {
    content: "✕";
    color: #fff;
    background: #000;
}
.monthy-year {
	display: none
}
.price-tag, .price-tag-frt {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    margin: 12px 0px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.price-card {
    text-align: center;
    background: rgb(255, 255, 255);
    overflow: hidden;
    transition: height 0.5s;
    position: relative;
    border-radius: 0px;
    margin: 0px;
    height: auto;
    padding: 0;
}
.slick-container {
    display: flex;
    overflow: hidden;
}
.features-mob {
    display: none;
}
.slick-trs-nav {
    display: none;
}
.slick-trs .slick-dots {
    margin-bottom: 8px;
}
body.distrib .slick-dots li.slick-active button {
    background-color: #00928f;
}
.title-trends {
    font-family: Playfair Display;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    width: 47%;
}

.slick-comments .slick-track {
    display: flex;
    justify-content: space-between;
}
.slick-comments .slick-slide {
    margin-right: 24px;
}
.slick-comments .slick-slide:last-child {
    margin-right: 0px;
}
.comment-section {
    padding: 24px;
    border: 1px solid #121212;
    border-radius: 16px;
}
.comment-section .author-project-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
}
.comment-main {
    height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 24px 0px;
}
.review-stars {
    display: flex;
    gap: 8px;
}
.stars {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #BCBCBC;
}
.review-stars.str1 .stars:nth-child(-n+1),
.review-stars.str2 .stars:nth-child(-n+2),
.review-stars.str3 .stars:nth-child(-n+3),
.review-stars.str4 .stars:nth-child(-n+4),
.review-stars.str5 .stars:nth-child(-n+5) {
    background: #DC2387;
}
body.spec .review-stars.str1 .stars:nth-child(-n+1),
body.spec .review-stars.str2 .stars:nth-child(-n+2),
body.spec .review-stars.str3 .stars:nth-child(-n+3),
body.spec .review-stars.str4 .stars:nth-child(-n+4),
body.spec .review-stars.str5 .stars:nth-child(-n+5) {
    background: #121212;
}
body.spec .slick-dots li.slick-active button {
    background: #121212;
}
.review-dates {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    opacity: .5;
}
.review-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #121212;
}
.blog_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.blog_title .title-section {
    margin-bottom: 0px;
}
.project-block.spec-tips .project-block-title {
    margin-bottom: 64px;
}
.blog-art {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}
.blog-art img {
    width: calc(100% + 52px);
    margin: 0px -26px;
}
body.blog-page {
    background: #F2F2F2;
}
body.blog-page .content{
    text-align: justify;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}
/*-------- Мобильная версия -------------*/
@media (max-width: 1069px){
    .project-block.spec-tips .btn {
        width: 100%;
    }
    .project-block.spec-tips .project-block-title {
        margin-bottom: 16px;
        line-height: 32px;
    }
    .blog_title {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }
    .blog_title .title-section {
        margin-bottom: 16px;
        font-size: 40px;
        line-height: 48px;
    }
    .mb-40-mob {
        margin-bottom: 16px;
    }
    section.prtnrs {
        padding: 24px 0px;
    }
    .burgerback {
        height: 73px;
    }
    .burgerback.active {
    }
    header {        
        position: absolute;
        overflow: scroll;
    }
    .header-menu-row-3 .btn-primary,
    .modal-info .btn-primary{
        width: 100%;
    }
    .fordis-description .btn-third, .btn-fours{
        max-width: 100%;
    }
    .modal-background {
        display: none;
    }
    .modal-info {
        width: 100%;
        padding: 16px;
    }
    .modal-md {
        max-width: 100vw !important;
        overflow: hidden;
        align-items: flex-end;
    }
    .buyers-header .header-title {
        padding-bottom: 16px;
    }
    section.buyers-header {
        padding-top: 16px;
    }
    .project-block.buyers .tag.ptag {
        margin-bottom: -25px;
        z-index: 1;
        margin-top: 16px;
        margin-left: 16px;
    }
    .project-block.buyers .project-block-container {
        padding-top: 64px;
        margin-top: -16px;
        border-radius: 0px;
    }
    .pininfo:last-child {
        padding-bottom: 0px;
    }
    .title-trends {
        font-size: 28px;
        line-height: 28px;
        width: 100%;
        margin-bottom: 12px;
    }
    .project-block-under {
        flex-direction: column;
        padding: 16px;
    }
    .article-news-flex {
        gap: unset;
    }
    .tarif-list {
        margin-top: 12px;
        padding-top: 12px;
    }
    .tarif-list li {
        font-size: 14px;
        line-height: 20px;
    }
    .tarif-descrb {
        font-size: 14px;
        line-height: 20px;
    }
    .tarif-price-tag {
        margin: 8px 0px 8px;
        font-size: 28px;
        line-height: 28px;
    }
    .btn-empty-noborder {
        font-size: 14px;
        line-height: 20px;
    }
    .article-news-flex .slick-slide {
        margin-right: 12px;
    }
    .article-preview:nth-child(1) .article-preview-text {
        font-family: Open Sans;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        width: 100%;
        -webkit-line-clamp: 4;
    }
    .article-preview:nth-child(1) .article-preview-info {
        width: 100%;
    }
    .article-preview:nth-child(1) .article-preview-main {
        flex-direction: column;
    }
    .article-preview:nth-child(1) .article-title {
        margin: 12px 0px;
        font-size: 20px;
        line-height: 24px;
    }
    .article-preview:nth-child(1) .article_img_b {
        display: none;
    }
    .article-preview:nth-child(1) {
        padding: 16px;
        height: auto;
    }
    .tarif {
        padding: 16px;
        height: 550px;
    }
    .buyers-header .main-header-sides {
        padding-bottom: 12px;
        padding-top: 16px;
    }
    .buyers-sides {
        flex-direction: column;
        margin-top: 8px;
    }
    .buyers-side {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    .buyers-side .terms-block-title {
        width: 70%;
    }
    .guide-info {
        padding: 16px;
    }
    .guide-title {
        font-size: 30px;
        line-height: 30px;
        margin: 12px 0px 8px;
    }
    .guide-description {
        font-size: 20px;
        line-height: 24px;
    }
    section.dis-tafirs {
        padding: 24px 0px 64px;
    }
    .slick-container-intro_text {
        font-size: 14px;
    }
    .slick-container-intro_title {
        margin-bottom: 14px;
    }
    .slick-container-intro div {
        height: 134px;
    }
    .slick-trs-nav {
        display: block;
    }
    .slcfters .slick-slide {
        margin-right: 16px;
    }
    .slcfters .features-image {
        height: 250px;
    }
    .features-mob {
        background: #00928F;
        padding: 16px;
        color: #fff;
        border-radius: 12px;
        margin-top: 8px;
        min-height: 165px;
        display: block;
    }
    .features-mob .function-title {
        border-bottom: 0px solid #fff;
        font-size: 20px;
        line-height: 24px;
        margin: 0;
        width: 100%;
    }
    .features-mob .function-text {
        display: block;
        font-size: 14px;
        line-height: 20px;
    }
    .features-postinfo-title {
        font-size: 20px;
        line-height: 24px;
    }
    .features-postinfo-text {
        font-size: 20px;
        line-height: 24px;
    }
    .slick-guide {
        display: block;
    }
    .slick-guide .slick-slide {
        margin-right: 12px;
    }
    .prices-container {
        display: flex;
        gap: 24px;
        margin-bottom: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .prices-buts,
    .yrmn {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
    .dis-tafirs table tr td {
        padding: 8px 0px;
        font-size: 12px;
        line-height: 16px;
        height: 55px;
    }
    .slick-trs .slick-dots button {
        height: 3px;
        width: 25px;
        border: none;
        border-radius: 0%;
    }
    .slick-trs .slick-dots li.slick-active button {
        background-color: #00928f;
    }
    .slick-trs .slick-dots li {
        margin: 0;
    }
    .slick-trs .slick-dots li:last-child button {
        border-radius: 0px 10px 10px 0px;
    }
    .slick-trs .slick-dots li:first-child button {
        border-radius: 10px 0px 0px 10px;
    }
    .trs_descrb {
        font-size: 14px;
        line-height: 16px;
        height: 32px;
    }
    .slick-container-intro,
    .slick-trs {
        width: 50%;
        padding-right: 0;
    }
    .slick-features-under {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        flex-direction: column;
    }
    .features-postinfo {
        padding: 16px;
        border-radius: 12px;
        background: #F2F2F2;
        width: 100%;
        height: unset;
    }
    .info-under {
        padding: 16px 0px;
        font-size: 12px;
        line-height: 16px;
    }
    .dis-header {
        padding: 16px;
        border-radius: 32px;
        display: flex;
        flex-direction: column;
    }
    .dis-header-ls,
    .dis-header-rs,
    .distrib.b2b .dis-header-rs {
        width: 100% !important;
        margin: auto;
    }
    .dis-header:after {
        content: "";
        background: none;
    }
    .regtion-image {
        height: 190px;
    }
    .palitra-side {
        display: flex !important;
        flex-direction: row !important;
    }
    .palitra-image {
        margin: 0 !important;
    }
    .palitra-side:nth-child(3) {
        display: none !important;
    }
    .palitra {
        margin-top: 16px;
        padding-top: 12px;
        columns: auto;
    }
    .spec-tips .project-block-title {
        font-size: 28px;
        line-height: 28px;
    }
    .title-section {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    .terms-block-title {
        font-size: 20px;
        line-height: 24px;
    }
    .stylistic {
        padding: 16px;
    }
    .stylistic .pininfo-title {
        margin-bottom: 0;
        font-size: 20px;
        line-height: 24px;
    }
    .stylistic .dsnrs-info-box {
        height: auto;
    }
    .stylistic .main-text {
        font-size: 14px;
        line-height: 20px;
        margin: 0;
    }
    .banner-btn {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        padding: 8px 0px;
    }
    .banner-btn::after {
        content: "";
        width: 16px;
        height: 16px;
        margin-left: 8px;
        background-size: 5px;
    }
    .banner {
        padding: 16px;
    }
    .banner-text {
        font-family: Playfair Display;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .banner-title {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    .border-around-flex {
        border-top: 3px solid #000;
        border-bottom: 0px solid #000;
        padding: 16px 0px;
    }
    .features-rs .pininfo-title {
        font-size: 22px;
        line-height: 24px;
    }
    .regtion .features-image {
        height: auto;
        padding-bottom: 16px;
        border-bottom: 1px solid #121212;
        margin-bottom: 16px;
        border-radius: 0px;
    }
    .features-image {
        display: block !important;
    }
    .promotion .features-image {
        margin-bottom: 24px;
    }
    .features-ls {
        display: none;
    }
    .features-rs {
        width: 100%;
    }
    .spec-header {
        background: #fff;
        margin-bottom: 24px;
        padding-bottom: 0px;
        margin-top: -40px;
    }
    .spec-header .tag,
    .spec-header .banner-text{
        margin-bottom: 16px;
    }
    .spec-header .header-title {
        padding-bottom: 16px;
    }
    .spec-card-avatar {
        width: 32px;
        height: 32px;
    }
    .spec-card-name {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
    }
    .slider_specproject .slick-slide {
        margin: 0px;
        margin-right: 10px;
    }
    .verticle-slider {
        margin: auto;
        margin-top: 24px;
        height: auto;
    }
    .spec-card-slide {
        width: 100% !important;
    }
    .spec-card {
        width: 100%;
        height: 445px !important;
        margin-bottom: 16px;
    }
    .slider_specproject {
        width: 100%;
    }
    .slider_specproject-extra,
    .slider_specproject-more {
        display: none;
    }
    .slider_specproject .slick-dots li.slick-active button {
        background-color: #121212;
    }
    .project-block-container .tag,
    .project-block-container .project-block-title {
        margin-bottom: 12px;
    }
    .play-button-bottom {
        margin-top: 16px;
        bottom: auto;
        display: block;
        position: relative;
    }
    .project-block {
        min-height: 488px;
        padding: 0;
    }
    .project-block-container {
        width: 100%;
        padding: 16px;
        padding-bottom: 24px;
        min-height: auto;
    }
    .project-block-text {
        font-size: 20px;
        line-height: 24px;
    }
    .project-block-title {
        font-size: 32px;
        line-height: 32px;
    }
    .terms-flex {
        flex-direction: column;
    }
    .desdescribtion {
        display: flex;
    }
    .main-header {
        padding-bottom: 48px;
        border-radius: 0px 0px 16px 16px;
    }
    .main-header .title-section {
        margin-bottom: 16px;
    }
    .main-header .header-title {
        padding-bottom: 12px;
    }
    .all-tags {
        margin-bottom: 16px;
    }
    .main-header-ls-border {
        padding-bottom: 8px;
    }
    .author-card:nth-child(1) {
        height: 250px;
        width: 100%;
    }
    .slider-heder-project {
        display: block;
    }
    .main-header-rs {
        width: 100%;
    }
    .slider-heder-project .slick-slide {
        display: none;
    }
    .slider-heder-project.slick-slider {
        margin-top: 16px;
        margin-bottom: -30px;
    }
    .slider-heder-project .slick-list {
        padding-top: 20px !important;
    }
    .slider-heder-project .slick-track {
        max-height: 100% !important;
        transform: translate3d(0, 0, 0) !important;
        perspective: 100px;
    }
    .slider-heder-project .slick-slide {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        opacity: 0;
        height: 100% !important;
        transform: translate3d(0, 0, 0);
        transition: .7s !important;
    }
    .slider-heder-project .slick-snext,
    .slider-heder-project .slick-sprev {
        display: block;
    }
    .slider-heder-project .slick-current {
        opacity: 1;
        position: relative;
        display: block;
        transform: translate3d(0, 0px, -4px);
        z-index: 1;
        filter: brightness(0.6);
        transition: .7s !important;
    }
    .slider-heder-project .slick-snext {
        opacity: 1;
        transform: translate3d(0, 20px, -8px);
        z-index: 0;
        filter: brightness(0.3);
        transition: .7s !important;
    }
    .slider-heder-project .slick-sprev {
        opacity: 1 !important;
        transform: translate3d(0, -20px, 0px);
        z-index: 2;
    }
    .dsnrs-info-box {
        height: 170px;
    }
    .dsnrs-info-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .secsec-box {
        display: block;
    }
    .slider-boxes .slick-slide {
        margin-right: 12px;
    }
    .slider-boxes .slick-slide:last-child {
        margin: 0;
    }
    .main-header-sides {
        flex-direction: column;
    }
    .pininfo-left {
        display: none;
    }
    .main-header-ls {
        width: 100%;
    }
    .title-fordis {
        font-size: 43px;
        line-height: 43px;
    }
    .text-fordis {
        width: 100%;
    }
    .title-fordis mark {
        display: inline-block;
        vertical-align: baseline;
    }
    .text-flex-border-top {
        flex-direction: column;
        border-top: 0px;
    }
    .text-32s {
        width: 100%;
        border-top: 1px solid #121212;
        margin: 0;
        padding: 10px 0px;
    }
    .fordis-block {
        display: flex;
        position: relative;
        flex-direction: column-reverse;
    }
    .fordis-img {
        width: 100%;
        position: relative;
        height: 300px;
    }
    .fordis-description {
        width: 100%;
        padding: 16px;
        padding-bottom: 24px;
    }
    .header-title {
        font-size: 47px;
        line-height: 47px;
    }
    .box-gap {
        flex-direction: column;
    }
    .box-gap.slider-boxes {
        display: block;
    } 
    .deskt-w-49,
    .deskt-w-50,
    .deskt-w-75,
    .deskt-w-80 {
        width: 100%;
    }
    .pininfo-right {
        width: 100%;
    }
    .slider_offers .slick-slide:nth-child(1),
    .slider_offers .slick-slide:nth-child(2) {
        margin: 0px;
        margin-right: 12px;
    }
    .slider_offers .slick-list {
        padding: 0 6px 0 0 !important;
    }
    .offer-box {
        display: flex !important;
        flex-direction: column;
        height: 370px;
        padding: 0;
    }
    .offer-box-img {
        position: relative;
        width: 100%;
    }
    .offer-box-text {
        width: 100%;
        padding: 16px 20px;
        justify-content: flex-start;
        height: auto;
    }
    .offer-box-maintext {
        margin-bottom: 12px;
    }
    .slider_mainproject {
        min-width: 100%;
    }
    .header-row-2 {
        display: flex;
        width: 100%;
    }
    .burger {
        display: block;
    }
    footer {
        padding: 20px 0px;
        border-radius: 12px 12px 0px 0px;
    }
    .footer-container {
        flex-wrap: wrap;
        font-size: 15px;
        line-height: 20px;
        margin: 0;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .footer-column-2 {
        display: flex;
        flex-direction: column;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 16px 0px;
    }
    .footer-column-3 {
        flex: 0 0 100%;
        max-width: 100%;
        opacity: .5;
    }
    .footer-right-side {
        flex: 0 0 100%;
        max-width: 100%;
        opacity: .5;
        margin-bottom: 16px;
    }
    .footer-left-column {
        flex: 0 0 50%;
        max-width: 60%;
    }
    .footer-left-sub .footer-left-column {
        margin-bottom: 16px;
    }
    .footer-left-main {
        margin-bottom: 0px;
        flex-wrap: wrap;
    }
    .footer-left-side {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer-left-column-last {
        flex: 0 0 70%;
        max-width: 70%;
        margin: 16px 0px;
    }
    .footer-left-sub {
        display: block;
        margin: 0px 0px 16px;
    }
    .footer-container.fbottom {
        padding-top: 16px;
    }
    .footer-container.fbottom .footer-column:nth-child(1) {
        flex: 0 0 100%;
        max-width: 100%;
        height: 30px;
        margin-bottom: 16px;
    }
    .footer-container.fbottom .footer-column {
        display: flex;
        flex-direction: column;
        max-width: 33%;
        text-wrap: nowrap;
        flex: none;
    }
    .footer-container.fbottom .footer-column-3 {
        margin-top: 16px;
    }
}
.distrib.b2b .dis-header-rs {
    width: 47%;
}
.distrib.b2b .header-title {
    font-size: 50px;
    line-height: 55px;
}

@media (max-width: 1069px){
    .dis-play-flex {
        flex-direction: column;
    }
    .distrib.b2b .header-title {
        font-size: 38px;
        line-height: 45px;
        padding-bottom: 25px;
    }
    .dis-header-rs {
        margin-top: 25px !important;
    }
    .dis-header-rs-title {
        font-size: 22px;
        line-height: 27px;
    }
}

    .partner-text {
        font-size: 21px;
    }
    .header-logo {
        width: 175px;
        height: 100%;
    }
    .logo-white-short {
        background: url(../images/logo-white.svg);
        background-size: contain;
        background-repeat: no-repeat;
    }
    .prev-tour,
    .next-tour {
        position: absolute;
        width: 40px;
        height: 40px;
        background: #ffffff;
        border-radius: 100%;
        right: -64px;
        cursor: pointer;
        background-image: url(../img/icons/arrow.svg) !important;
        background-size: 10px !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        transform: rotate(360deg);
        top: 46%;
    }
    .next-tour {
        left: -64px;
        transform: rotate(180deg);
    }
    .prgview {
        width: 100%;
        height: 100%;
        display: none;
    }
    .features-postinfo-title {
        font-size: 35px;
        line-height: 40px;
    }
    .features-postinfo-text {
        font-size: 22px;
        line-height: 28px;
    }
    .info-under {
        text-align: left;
        padding: 0;
        width: 80%;
    }
    .form-modal.qform-theme-white {
        padding: 70px 40px 20px !important;
        margin: 20vh auto !important;
        max-width: 30% !important;
        border-radius: 16px !important;
    }
    .form-modal__close-btn {
        position: absolute !important;
        width: 40px !important;
        height: 40px !important;
        background: #fff !important;
        border-radius: 100% !important;
        right: -64px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        color: #000000bf !important;
        cursor: pointer !important;
        background-image: url(https://www.svgrepo.com/show/522388/close.svg) !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 30px !important;
        top: 0 !important;
    }
    
    .slick-trs-nav {
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 16px;
    }
    .slick-trs-nav .slick-list {
        width: 100%;
        padding: 0 !important;
    }
    .slick-trs-nav-but {
        font-family: Open Sans;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: -0.02em;
        text-align: center;
        color: #121212;
        padding: 10px; 
        border-right: 1px solid #12121280;
    }
    .slick-trs-nav .slick-slide {
        background: #fff;
        
    }
    .slick-trs-nav .slick-slide.slick-current {
        background: #121212;
    }
    .slick-trs-nav .slick-slide.slick-current .slick-trs-nav-but {
        color: #fff;
    }
    .slick-trs-nav .slick-slide:last-child .slick-trs-nav-but {
        border-right: unset;
    }
    .slick-container-intro div {
        height: 176px;
    }
    .trs_descrb {
        height: 75px;
    }
    .hdtrfs {
        height: 600px;
        overflow: hidden;
        margin-bottom: 100px;
        position: relative;
    }
    .hdtrfs-arrow {
        background-image: linear-gradient(#ffffff36, #ffffff, #ffffff);
        width: 97%;
        display: flex;
        height: 165px;
        position: absolute;
        bottom: 0;
        z-index: 11;
        justify-content: center;
        align-items: flex-end;
        padding: 25px;
        cursor: pointer;
    }
    .hdtrfs-arrow::after {
        content: "";
        width: 28px;
        height: 28px;
        background: #ffffff;
        border-radius: 100%;
        overflow: hidden;
        background-image: url(../img/icons/arrow.svg);
        background-size: 9px;
        background-repeat: no-repeat;
        padding: 5px;
        background-position: center;
        filter: invert(1);
        transform: rotate(90deg);
    }
    .footer-left-side {
        flex: 0 0 51%;
        max-width: 51%;
    }
    .footer-right-side {
        flex: 0 0 49%;
        max-width: 49%;
        text-align: justify;
    }
    .footer-column {
        max-width: 23%;
    }
    .footer-left-column-last {
        flex: 0 0 65%;
        max-width: 65%;
    }
    .footer-left-column {
        flex: 0 0 32%;
        max-width: 32%;
    }
    div[data-formid] div .btn_modal-box .btn-modal {
        background: 0;
        color: #000;
        font-size: 20px;
    }
    .tariff .banner-btn {
        padding: 10px;
    }
    .qform-field__block_box__field-box_input {
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid #121212;
        opacity: 0.5;
        margin-bottom: 16px;
        width: 100%;
    }
    .submit-box .submit-button {
        background: #DC2387 !important;
        border: 1px solid #DC2387 !important;
        padding: 8px 24px 8px 24px !important;
        border-radius: 100px !important;
        color: #fff !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-wrap: nowrap !important;
        width: fit-content !important;
    }
    .qform-field-outside-label-box {
        display: none;
    }
    .tariff .banner-btn {
        padding: 7px;
    }
    .banner-btn::after {
        display: none;
        content: "";
    }
    .banner-btn { 
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
    }
    .banner-btn:hover {
        background: #121212;
        color: #fffb83;
    }
    @media (max-width: 1069px){
        .modal-md-down {
            max-width: 100vw !important;
            overflow: hidden;
            align-items: flex-end;
        }
        .hdtrfs {
            margin-bottom: 50px;
        }
        .hdtrfs-arrow {
            height: 150px;  
        }
        .border-bottom-header {
            border: 0px;
        }
        .burger {
            opacity: 0;
        }
        .prev-tour,
        .close_formbut {
            right: 10px;
        }
        .close_formbut {
            top: 10px;
        }
        .next-tour {
            left: 10px;   
        }
        .modal-xl {
            max-width: 100vw !important;
        }
        .features-postinfo-title {
            font-size: 30px !important;
            line-height: 35px !important;
        }   
        .features-postinfo-text {
            font-size: 17px !important;
            line-height: 24px !important;
            margin-top: 30px;
        }
        .footer-left-side {
            flex: 0 0 100%;
            max-width: 100%;
        }
        .footer-right-side {
            flex: 0 0 100%;
            max-width: 100%;
            opacity: .5;
            margin-bottom: 16px;
        }
        .footer-left-column {
            flex: 0 0 100%;
            max-width: 100%;
        }
        .footer-column {
            max-width: 50%;
        }
        .dis-play {
            font-size: 14px;
        }
        .dis-header-ls {
            height: 438px;
        }    
        .distrib.b2b .header-title {
            font-size: 35px;
            line-height: 40px;
        }
        .features-mob {
            min-height: 202px;
        }
        .pininfo-sales-benefits {
            padding-right: 0;
        }
        .slick-container-intro_title {
            font-size: 21px;
        }
        .dis-tafirs table tr td {
            height: 66px;
        }
        .banner-title {
            font-size: 30px !important;
            line-height: 35px !important;
        }
        .banner-text {
            font-size: 17px !important;
            line-height: 24px !important;
            margin: 24px 0px;
        }
        .form-modal.qform-theme-white {
            max-width: 90% !important;
        }
        .footer-container.fbottom .footer-column {
            max-width: 100%;
        }
    }
    .personal-info-text {
        background: #fafafa;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0px 3px 14px -5px rgb(0 0 0 / 48%);
    }
.footer-column.align-self-center {
    margin-left: -20%;
}
.pkd a {
    color: #DC2387 !important;
}
.pkd {
    padding: 0;
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 1.1;
    margin: 0px 8px 5px !important;
}
input[type="checkbox"] {
    accent-color: #DC2387;
    width: 15px;
    height: 15px;
}
