:root {
    --color: #F1F1F1;
    --oswald: 'Oswald', sans-serif;
    --ubuntu: 'Ubuntu', sans-serif;
    --jost: "Jost", sans-serif;

}

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

:focus {
    outline: none;
}

a {
    color: var(--color);
}

a,
p {
    text-decoration: none;
    color: var(--color);
}

ul,
li {
    list-style: none;
}

::placeholder {
    color: #6B7288;
    opacity: 1;
    font-weight: 300;
    font-size: 16px;
    font-family: var(--ubuntu);
}

:-ms-input-placeholder {
    color: #6B7288;
    font-weight: 300;
    font-size: 16px;
    font-family: var(--ubuntu);
}

::-ms-input-placeholder {
    color: #6B7288;
    font-weight: 300;
    font-size: 16px;
    font-family: var(--ubuntu);
}

svg path {}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

.img-100 {
    width: 100%;
}
html {
    height: 100%;
}
body {
    min-height: calc(100% - 240px);
    position: relative;
    padding: 0;
    margin: 0;
    background: #212328;
    font-family: var(--ubuntu);
    color: #fff;
}
.no-scroll {
    overflow: hidden;
}

body.page {
    margin-top: 110px;
}

.logo a {
    width: 150px;
    display: flex;
    align-items: center;
}

.logo a img {
    width: 100%;
}

.container-max {
    max-width: 1440px;
}

.d-flex {
    display: flex;
    align-items: center;
}
.flex-wrap {
    flex-wrap: wrap;
}

.p-relative {
    position: relative;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100% !important;
}

.mt-10 {
    margin-top: 10px
}

.mr-10 {
    margin-right: 10px;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.mt-3 {
    margin-top: 3em;
}

.mt-4 {
    margin-top: 4em;
}

.mt-5 {
    margin-top: 5em;
}

.mt-6 {
    margin-top: 6em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mb-3 {
    margin-bottom: 3em;
}
.pb-3 {
    padding-bottom: 3em;
}

.ptb-2 {
    padding-top: 2em;
    padding-bottom: 2em;
}

.ptb-4 {
    padding-top: 4em;
    padding-bottom: 4em;
}

.ptb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.plr {
    padding-left: 30px;
    padding-right: 30px;
}
.grecaptcha-badge {
    display: none !important;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 110px;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(12px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.30);
}

header>div,
.header-top {
    height: 100%;
}

.menu ul {
    gap: 0 25px;
    counter-reset: section;
    padding: 0;
    margin: 0;
}

.menu > ul {
    margin-top: 15px;
}

.menu li a {
    font-family: var(--oswald);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    transition: .5s all ease-out;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.menu li a:before {
    counter-increment: section;
    content: "0" counter(section);
    position: absolute;
    top: -25px;
    left: 0;
    color: #494B51;
    transition: .5s all ease-out;
}

.menu li a:hover {
    color: #CF0032;
}

.menu li a:hover:before {
    color: #fff;
}

.menu li {
    position: relative;
}
.sub_menu li {position: relative;}
.sub_menu {
   /* display: none;
    position: absolute;
    padding-top: 15px !important;
    left: -30px;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    border-radius: 4px;*/
    border-radius: 4px;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    min-width: 170px;
    position: absolute;
    left: -1px;
    z-index: 5;
    visibility: hidden;
    opacity: 0;  
    transform: translateY(10px);
    transition: .3s ease-in-out;
}
.sub_menu .sub_menu {
    min-width: 210px;
}

.sub_menu li a {
    font-weight: 300;
    font-size: 14px;
    line-height: 36px;
    text-transform: uppercase;
    font-family: var(--oswald);
    border-bottom: 0.6px solid #35383F;
    background: #212328;
    padding: 0 15px;
    width: 100%;
    display: block;
    transition: .4s all ease-out;
}

.sub_menu li a:hover {
    background: #CF0032;
    color: #fff;

}

.sub_menu li a:before {
    display: none !important;
}
/*
.menu li:hover .sub_menu {
    display: block;
}*/

.sub_menu .sub_menu {
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    left: -webkit-calc(100% - 1px);
  }
.menu li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.right {
    gap: 0 10px;
}

.lang a.actives {
    border: 1px solid #F1F1F1;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    font-family: var(--oswald);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    gap: 0 10px;
    transition: .4s all ease-out;
}

.lang a.actives:after {
    content: '';
    background-image: url("data:image/svg+xml,%0A%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.3125 1.375L6.34375 5.875C6.15625 6.0625 5.875 6.0625 5.6875 5.875L0.65625 1.375C0.4375 1.1875 0.4375 0.875 0.625 0.6875C0.8125 0.46875 1.125 0.46875 1.3125 0.65625L6 4.84375L10.6562 0.65625C10.8438 0.46875 11.1562 0.46875 11.3438 0.6875C11.5312 0.875 11.5312 1.1875 11.3125 1.375Z' fill='white'/%3E%3C/svg%3E%0A");
    width: 12px;
    height: 7px;
}

.lang a.actives:hover {
    background-color: #CF0032;
}

.btn {
    border-radius: 4px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-family: var(--oswald);
    border: 1px solid #fff;
    transition: .5s all ease-out
}

.btn:hover,
#mse2_mfilter .btn_more:hover{
    background: #fff;
    color: #CF0032;
    border: 1px solid #CF0032;
}
#mse2_mfilter .btn_more {
    width:auto !important;
}

.btn-red,
#mse2_mfilter .btn_more {
    background: #CF0032;
    border: 1px solid #B7002C;
}

.btn-border,
#mse2_mfilter .btn_more {
    border: 1.277px solid #FFF;
    padding: 10px 40px 10px 40px;
}

.btn-white {
    color: #272B38;
}
.alertify-notifier .ajs-message.ajs-error {
    border: 1px solid #CF0032 !important;
    background: #CF0032 !important;
}

.hero-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 68px;
    letter-spacing: -0.02em;
    font-family: var(--ubuntu);
    color: #fff;
}
.hero-mini-title {
    margin-top:15px;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: var(--ubuntu);
    color: #fff;
}

.hero-sub_title {
    font-weight: 300;
    font-size: 16px;
    line-height: 180%;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 25px
}

.hero-title span {
    color: #CF0032;
}

.buttons {
    gap: 0 15px;
}

.buttons .btn {
    padding: 10px 20px;
}

.hero {
    background-image: url(../img/bg-header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    overflow: hidden;
}

.hero-row {
    padding-top: 90px;
    padding-bottom: 50px;
    position: relative;

}
.hero-img-mobile {
    display: none;
}

.hero-img img {
    mix-blend-mode: lighten;
}

.hero-options {
    background: #24272C;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    padding: 35px 0;
}
.trans-slider-options {
  

    padding-left:15px;
    padding-right:15px;
    padding-top:55px;
    padding-bottom: 55px;
    overflow: hidden;
   
}
.trans-slider{
    animation: 28s linear 0s infinite normal none running scroll;
    display: flex;
    align-items: center;
    gap:0 35px;
    justify-content: space-between;
}
.trans-slider-image {
    min-width: 5%;
}
@keyframes scroll {
    100% {
        transform: translateX(-50%);
    }
}
.row-trans{
    margin-top:80px;
}
.row-sub_tans{
    margin-top:15px;
}
.trans-sub_title{
    font-size: 48px;
    font-weight: 700;
    line-height: 140%;
}
.trans-sub_text {
    font-size: 16px;
    font-weight: 300;
    line-height: 160%; 
}
.tr-section{
    height: 375px;
}
.tr-image img{
    margin-top: -135px;
}
.tr-section {
    background: #24272C;
    margin-top:135px;
}
.tr-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 180%;
}
.tr-title{
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
.tr-title span {
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    margin-top:5px;
}
.row-banner-trans div{
    padding-bottom:15px;
    padding-top:15px;
}
.h-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.02em;
    color: #fff;
}

.h-title sup {
    font-size: 20px;
    line-height: 23px;
}
.btn-more {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.28px;
    border-bottom:1px dashed #00FEBE;
    color:#00FEBE;
    margin-top:5px;
}
.h-sub_title {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: #999999;
}

.orbit-svg__wrap {
    transition: opacity .3s ease-out, transform .3s ease-out;
    transition: opacity .3s ease-out, transform .3s ease-out, -webkit-transform .3s ease-out;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.h-grid:hover .orbit-svg__wrap {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.h-grid:hover .orbit-svg {
    -webkit-animation: 20s linear infinite hoverRotate;
    animation: 20s linear infinite hoverRotate;
}

.h-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(26, 28, 33, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all ease;
    border: 1px solid rgba(26, 28, 33, 0.1);
}

.h-grid:hover .h-left {
    border: 1px solid #2D2F35;
    box-shadow: inset 0px 0px 16px rgba(0, 0, 0, 0.25);
    background: #222429;
}

.h-grid .icon svg path {
    transition: .5s all ease-out;
}

.h-grid:hover .icon svg path {
    fill: #CF0032;
}

.h-grid .icon svg g {
    transition: .5s all ease-out;
}

.h-grid:hover .icon svg g {
    fill: #CF0032;
    animation: bounce 0.5s ease-in-out;
}

.h-left .icon svg {
    overflow: inherit;
}

.h-left .icon {
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.h-grid {
    padding-left: 106px;
    padding-right: 0;
    position: relative;
    min-height: 94px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.63;
}

@keyframes hoverRotate {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

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

.tabs {
    max-width: 100%;
}

.tabs__caption {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
    padding: 0;
    margin-bottom: 50px;
}

.tabs__caption li:last-child:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: -2px;
    z-index: -1;
    height: 5px;

}

.tabs__caption:after {
    content: '';
    display: table;
    clear: both;
}

.tabs__caption li {
    padding: 9px 10px;
    margin: 1px 0 0 1px;
    position: relative;
    text-align: center;
    font-weight: 500;
    font-size: 35px;
    line-height: 47px;
    color: #212328;
    text-shadow:
        -0 -1px 0 #9F9F9F,
        0 -1px 0 #9F9F9F,
        -0 1px 0 #9F9F9F,
        0 1px 0 #9F9F9F,
        -1px -0 0 #9F9F9F,
        1px -0 0 #9F9F9F,
        -1px 0 0 #9F9F9F,
        1px 0 0 #9F9F9F,
        -1px -1px 0 #9F9F9F,
        1px -1px 0 #9F9F9F,
        -1px 1px 0 #9F9F9F,
        1px 1px 0 #9F9F9F,
        -1px -1px 0 #9F9F9F,
        1px -1px 0 #9F9F9F,
        -1px 1px 0 #9F9F9F,
        1px 1px 0 #9F9F9F;
}
.tabs-price {
    margin-top:50px;
}
.tabs-price .tabs__caption {
    margin-bottom: 0;
}

.tabs-price .tabs__caption li {
    font-family: var(--ubuntu);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    text-shadow: none;
    color:#fff;
}
.tabs-price .tabs__caption .active {
    color:#CF0032;
}
.tabs-price .tabs__caption .active sup {
    color:#CF0032
}

.tabs-price  .tabs__caption li sup {
    font-size: 20px;
    font-weight: 300;
}

.tabs__caption li:not(.active) {
    cursor: pointer;
}

.tabs__caption li:not(.active):hover {}

.tabs__caption .active {
    color: #fff;
    text-shadow: none;
}


.tabs__caption .active sup {
    color: #00FEBE;
}
.tabs-main .tabs__caption li:after {
    position: static;
    content:'/' !important;
    margin-left:10px;
    font-weight: 500;
    font-size: 38px;
    line-height: 47px;
    color: #212328;
    text-shadow: 0 -1px 0 #9F9F9F, 0 -1px 0 #9F9F9F, 0 1px 0 #9F9F9F, 0 1px 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F;
}
.tabs-main .tabs__caption li:last-child:after {
    position: static;
    content:'' !important;
    margin-left:10px;
    font-weight: 500;
    font-size: 38px;
    line-height: 47px;
    color: #212328;
}

.tabs__caption .active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
}

.tabs__content {
    display: none;
    border-radius: 0 5px 5px 5px;
    padding: 7px 15px;
    position: relative;
}

.tabs__content.active {
    display: block;
}
.table-row-container {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
  }


.table-container {
    display: flex;
    flex-flow: column nowrap;
    margin: 0 auto;
    width:100%
}
  
.table-row {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    border-bottom: 0.5px solid #37393D;
} 
.row-item:last-child {
    flex-direction: column;
}
.table-row-second .row-item {
    flex-direction: row;
}
.table-row.heading .row-item:last-child {
    flex-direction: row;
}
.heading {
    padding-left:20px;
} 
.footering {
    background: #CF0032;
    padding-left:20px;
    padding-right: 20px;
}
.footering a {
    text-decoration: none !important;
    color:#000 !important
}
.row-item {
    display: flex;
    flex: 1;
    padding: 25px 0;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.15s ease-in-out;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}  
.row-item:hover {

  /*   box-shadow: 0px 1px 4px rgba(0, 0, 0, .08); */
}
  
.row-sub-container {
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
}
.row-sub-container .row-item {
    padding: 8px 0;
} 
.table-row:last-child,
.row-sub-container .row-item:last-child {
    border-bottom: 0;
}

.price-item span {
    color: #FFF;
    font-family: var(--oswald);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 220% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}
.price-item {
    color: #FFF;
    font-family: var(--oswald);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.4px; /* 220% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}
.price-item:has(span) {
    color: #FFF;
    font-family: var(--ubuntu);
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.4px;
    text-transform: capitalize;
    letter-spacing: normal;

   
}
.price-item + span{

}
.table-row-second{
    background: rgba(255, 255, 255, 0.10);
    padding:0 20px;
}
.table-row-second .row-item {
    color: #FFF;
    font-family: var(--oswald);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.4px; /* 165% */
    letter-spacing: 8px;
    text-transform: uppercase;
    justify-content: flex-start;
}
.table-row .row-item:first-child {
    justify-content: flex-start;
    text-align: left;
    flex:0 0 40%;
    max-width: 40%;
}
.table-row-second .row-item:first-child {
    flex:0 0 100%;
    max-width: 100%;
}
.table-row-second .row-item:first-child span {
    font-weight: normal;
    letter-spacing: normal;
}
.answer-price{
    color: #FFF;
    font-family: var(--ubuntu);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    margin-top:10px;
    padding-left:20px;
}
.quest-price {
    position: relative;
    display: flex;
    align-items: center;
    gap:0 15px;
}
.no-accordion-price .quest-price:before {
    display: none;
}
.quest-price:before {
    content:'';
    min-width:25px;
    height:20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2977_293)'%3E%3Cpath d='M12 1.33333C13.4707 1.33333 14.6667 2.52933 14.6667 4V12C14.6667 13.4707 13.4707 14.6667 12 14.6667H4C2.52933 14.6667 1.33333 13.4707 1.33333 12V4C1.33333 2.52933 2.52933 1.33333 4 1.33333H12ZM12 0H4C1.79067 0 0 1.79067 0 4V12C0 14.2093 1.79067 16 4 16H12C14.2093 16 16 14.2093 16 12V4C16 1.79067 14.2093 0 12 0Z' fill='%23CF0032'/%3E%3Cpath d='M8.00001 12C7.63201 12 7.33334 11.702 7.33334 11.3333V4.66667C7.33334 4.29867 7.63201 4 8.00001 4C8.36801 4 8.66668 4.29867 8.66668 4.66667V11.3333C8.66668 11.702 8.36801 12 8.00001 12Z' fill='%23CF0032'/%3E%3Cpath d='M4 8C4 7.632 4.298 7.33334 4.66667 7.33334H11.3333C11.7013 7.33334 12 7.632 12 8C12 8.368 11.7013 8.66667 11.3333 8.66667H4.66667C4.298 8.66667 4 8.368 4 8Z' fill='%23CF0032'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2977_293'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.accordion-price.active.no-accordion-price .quest-price:before  {
    display: none;
}
.accordion-price.active .quest-price:before {
    content:'';
    min-width:25px;
    height:20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2977_307)'%3E%3Cpath d='M12 1.33333C13.4707 1.33333 14.6667 2.52933 14.6667 4V12C14.6667 13.4707 13.4707 14.6667 12 14.6667H4C2.52933 14.6667 1.33333 13.4707 1.33333 12V4C1.33333 2.52933 2.52933 1.33333 4 1.33333H12ZM12 0H4C1.79067 0 0 1.79067 0 4V12C0 14.2093 1.79067 16 4 16H12C14.2093 16 16 14.2093 16 12V4C16 1.79067 14.2093 0 12 0Z' fill='%23CF0032'/%3E%3Cpath d='M4 8.00001C4 7.63201 4.298 7.33334 4.66667 7.33334H11.3333C11.7013 7.33334 12 7.63201 12 8.00001C12 8.36801 11.7013 8.66668 11.3333 8.66668H4.66667C4.298 8.66668 4 8.36801 4 8.00001Z' fill='%23CF0032'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2977_307'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.answer-price {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    height: 0;
}
.accordion-price.active .answer-price {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);  
    transition: .4s all ease-out;
    height: auto;
}
.accordion-price.active .answer-price p {
    margin:0;
}
.row-item a {
    color: #CF0032;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%; /* 28.8px */
    text-decoration-line: underline;
    text-wrap: nowrap;
    margin-right: 5px;
}
.row-item a:last-child{
    margin-right: 0;
}
.footering .price-item,
.footering .price-item span {
    text-align: left;
}
.footering .price-item {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 180%;
}
.footering .price-item span  {
    color: #FFF;
    font-family: var(--oswald);
    font-size: 12px;
    font-weight: 300;
    line-height: 26.4px; 
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.footering .row-item:first-child .price-item {
    letter-spacing: 8px;
    font-family: var(--oswald);
    font-weight: 700;
    line-height: 26.4px;
}
.footering .row-item:first-child .price-item span {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.4px;
    font-family: var(--ubuntu);
    letter-spacing: normal;
}

.fancybox__content p,
.fancybox__content a {
    color:#000;
}




.s-grid {
    height: 360px;
}

.s-field {
    background: #24272C;
}

.s-c {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 22px;
    position: relative;
    z-index: 2;
}

.s-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-top: 8px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
}

.s-text {
    font-weight: 300;
    font-size: 12px;
    line-height: 17px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    left: 0;
    bottom: 22px;
    z-index: 2;
}

.titles {
    position: relative;
}

.word {
    position: absolute;
    text-align: center;
    width: 100%;
    top: -85px;
    z-index: -1;
}

.sb-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #CACACA;
}

.title {
    font-size: 36px;
    line-height: 41px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.title span {
    color: #CF0032;
    font-weight: 300;
}
.bg__word:after {
    content:'';
    position: absolute;
    width: 50%;
    height: 100%;
    background-image: url(../img/W_word.png);
    background-size: contain;
    background-repeat: no-repeat;
    right:0;
    top:0;
}
.bg__word .ab-title::first-letter {
    color: #CF0032;
}

.red {
    color: #CF0032;
}

.p-cats-grid {
    background: #CF0032;
    border-radius: 2px;
    padding: 1px 4px;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
}

.p-cats {
    gap: 0 5px;
}



@keyframes flareAnimation {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.p-col {
    background: #272B38;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    padding: 30px;
    position: relative;
    overflow: hidden;

}

.p-col:hover:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    transform: skewX(-45deg);
    animation: flareAnimation;
    left: -150%;
    background: #ffffff26;
    animation: flareAnimation 1s linear;
    -webkit-box-shadow: 11px 11px 100px 100px rgba(225, 225, 225, 0.2);
    -moz-box-shadow: 11px 11px 100px 100px rgba(225, 225, 225, 0.2);
    box-shadow: 11px 11px 100px 100px rgba(225, 225, 225, 0.2);
}

.p-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.p-sb-title {
    font-weight: 300;
    font-size: 17px;
    line-height: 21px;
}

#mse2_results .p-sb-title {
    font-size: 16px;
}

.p-btn {
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 20px;
    display: inline-block;
    position: absolute;
    overflow: hidden;
    z-index: 2;
    bottom:20px;
}

.p-image {
    margin-right: -30px;
}

.p-col:hover .p-image img {
    filter: grayscale(0);
}

.p-image img {
    filter: grayscale(1);
    transition: .5s all ease-in-out;
}

.p-btn-span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #CF0032;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.p-col:hover .p-btn-span {
    width: 225%;
    height: 562.5px;
}

.f-l-col {
    background: #CF0032;
    padding: 60px 0;
    height: 100%;
}

.f-l-col:before {
    content: '';
    position: absolute;
    left: -1000%;
    top: 0;
    height: 100%;
    width: 1000%;
    background: #CF0032;

}

.f-l-phone a {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}

.f-l-sb-title {
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--oswald);
    display: flex;
    gap: 0 10px;
}

.f-l-sb-title:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    position: relative;
    top: 7px;
}

.f-l-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    margin-top: 30px;
    margin-bottom: 45px;
}

.f-l-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.f-r-row {
    background: #24272C;
    overflow: hidden;
}
.f-r-row:after {

}
.f-r-col {
    padding-left: 50px;
}

.main_form .f-r-col {
    padding-left: 30px;
    padding-right: 30px;
}

.step {
    height: 0;
    overflow: hidden;
    transform: translateX(-50%);
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.step.active {
    height: auto;
    overflow: visible;
    transform: translateX(0);
}

.step-nav {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    padding-bottom: 35px;
}

.step-nav li {
    display: inline-block;
    margin-right: 10px;
}

.step-nav li a {
    display: flex;
    align-items: center;
    gap: 0 20px;
    overflow: hidden;
}

.step-nav li a .f-r-number {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    text-transform: uppercase;
    color: #212328;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--oswald);
    justify-content: center;
}

.step-nav li a .f-r-name {
   height: 0;
   width: 0;
   visibility: hidden;
   /*transform: translateX(-50%);
   transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;*/
}

.step-nav li a.active .f-r-number {
    background-color: #CF0032;
    color: #fff;
}

.step-nav li a.active .f-r-name {
    width: auto;
    display: flex;
    height: auto;
    visibility: visible;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--oswald);
    letter-spacing: 0.5em;
    transform: translateX(0);
}

.step label .f-svg {
    gap: 0 30px;
    cursor: pointer;
}

.step label .checkbox {
    display: none;
}

.step label span {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
}
.step label .f-svg svg path,
.step label span {
    transition: .4s all ease-out;
    cursor: pointer;

}
.step label .f-svg:hover svg path,
.step label .f-svg:hover span {
    fill: #00FEBE;
    color: #00FEBE;
   
}
.step label .f-svg:hover svg path {
    animation: bounce 0.5s ease-in-out;
}

input[type=checkbox]:checked+.f-svg svg path,
input[type=checkbox]:checked+.f-svg span {
    fill: #00FEBE;
    color: #00FEBE;
}

.step-3 {
    gap: 0 50px;
}

.step-4 {
    gap: 30px 60px;
    flex-wrap: wrap;
}

.check {
    gap: 0 10px;
}
.radio {
    gap: 0 10px;
}
input.error + .radio {
    border: 1px solid #B7002C;
}

.ch-input {
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    width: 25px;
    height: 25px;
    position: relative;
}
.radio .ch-input {
    border-radius: 100% !important;
}
input[type=checkbox]:checked+.check .ch-input:before {
    content: '';
    background: #CF0032;
    border-radius: 2px;
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input[type=radio]:checked+.radio .ch-input:before {
    border-radius: 100%;
    content: '';
    background: #CF0032;
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input[type=radio] {
    display: none;
}
.ch-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
}

.row-form {
    flex-wrap: wrap;
}

.form-control {
    background: #272B38;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #FFFFFF;
    width: 100%;
    height: 55px;
    resize: none;
}
.form-select {
    display: block; 
    width: 100%;
    padding: 14px 20px;
    color: #212529;
    background: #272B38;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    height: 60px;
    color: #F2F2F2;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-select-form option {
    height: 40px;
    display: flex;
    align-items: center;

}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #F2F2F2;
    text-align: left;
    list-style: none;
    background-color: #272B38;
    background-clip: padding-box;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
}
.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}
.dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=top] {
    right: auto;
    bottom: auto;
}
.bootstrap-select{
    width: 100% !important;
}
.bootstrap-select .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #F2F2F2;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    height: 40px;
}
.dropdown-menu.show {
    display: block;
}
.bootstrap-select .dropdown-menu li {
    position: relative;
}
.dropdown, .dropleft, .dropright, .dropup {
    position: relative;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #F2F2F2;
    text-decoration: none;
    background-color: #1C202D;
}
.dropdown-item.active, .dropdown-item:active {
    color: #F2F2F2;
    text-decoration: none;
    background-color: #1C202D;
}
.btn.dropdown-toggle{
    color: #F2F2F2 !important;
    position: relative;
    font-family: var(--ubuntu) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 160% !important;
    background: #272B38;
    border: 1px solid #D0D0D0 !important; 
    text-transform: capitalize !important;

    padding: 14px 20px !important;
    color: #F2F2F2 !important;
    height: 55px !important;
    letter-spacing: normal !important;
}
.filter-option::before {
    content:'' !important;
    width:15px;
    height: 10px;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='12' height='6' viewBox='0 0 12 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00002 -0.00013876C5.90131 -0.000709534 5.80347 0.0182095 5.71209 0.0555329C5.62071 0.0928564 5.5376 0.14785 5.46752 0.217361L0.967517 4.71736C0.826289 4.85859 0.746948 5.05013 0.746948 5.24986C0.746948 5.44959 0.826289 5.64113 0.967517 5.78236C1.10874 5.92359 1.30029 6.00293 1.50002 6.00293C1.69974 6.00293 1.89129 5.92359 2.03252 5.78236L6.00002 1.80736L9.96752 5.77486C10.111 5.89773 10.2955 5.96194 10.4843 5.95464C10.6731 5.94735 10.8521 5.8691 10.9857 5.73553C11.1193 5.60196 11.1975 5.42291 11.2048 5.23415C11.2121 5.04539 11.1479 4.86084 11.025 4.71736L6.52502 0.217361C6.38532 0.0788026 6.19677 0.000689507 6.00002 -0.00013876Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right:15px;
    top:40%;
    display: block !important;
    transform: translate(-50%, 0) rotate(180deg);
}
.error + .dropdown-toggle {
    border: 1px solid #CF0032 !important;
}

textarea.form-control {
    width: 100%;
    height: 55px;
    overflow: hidden;
}

.form-group .btn {
    width: 100%;
    border: 1px solid #D0D0D0;
    height: 55px;
    font-weight: 300;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.p-l-title {
    font-weight: 700;
    font-size: 176.708px;
    line-height: 233px;
    letter-spacing: -0.02em;
    color: #CF0032;
    text-shadow: 0px 0px 68.6757px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
    display: flex;
}

.p-l-title:before {
    content: '95%';
    font-weight: 700;
    font-size: 176.708px;
    line-height: 233px;
    letter-spacing: -0.02em;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: -1;
    color: #212328;
    text-shadow: 0 -1px 0 #9F9F9F, 0 -1px 0 #9F9F9F, 0 1px 0 #9F9F9F, 0 1px 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.count {
    animation: countUp 1s ease-in-out;
}

.counter {
    margin-right: 50px;
    margin-top: -45px;
}

.p-l-slide {
    height: 25px;
    width: 100%;
    position: relative;
    /* border-top:1px solid #CF0032;
    border-bottom:1px solid #CF0032;*/
}

.p-l-slide:before {
    content: '';
    position: absolute;
    left: -880%;
    top: 0;
    width: 1000%;
    border-top: 1px solid #CF0032;
    border-bottom: 1px solid #CF0032;
    height: 25px;
}

.p-l-slide:after {
    content: '';
    position: absolute;
    left: -1000%;
    top: 0;
    width: 1000%;
    height: 25px;
    background: rgb(33, 35, 40);
    background: linear-gradient(90deg, rgba(33, 35, 40, 1) 90%, rgba(207, 0, 50, 1) 100%);
}

.line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #CF0032;
    transition: width 1s ease-in-out;
}

.p-button-next,
.s-swiper-next,
.s2-swiper-next,
.s3-swiper-next,
.ab-next {
    right: -65px;
}

.p-button-prev,
.s-swiper-prev,
.s2-swiper-prev,
.s3-swiper-prev,
.ab-prev {
    left: -65px
}

.p-l-text {
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
    letter-spacing: -0.02em;
}

.p-r-a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-family: var(--oswald);
    margin-bottom: 10px;
}

.p-r-site {
    font-weight: 400;
    font-size: 32px;
    line-height: 37px;
    letter-spacing: -0.02em;
}

.p-r-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 145%;
    margin-top: 25px;
    margin-bottom: 15px;
}

.p-r-partner {
    font-weight: 700;
    font-size: 54px;
    line-height: 62px;
    letter-spacing: -0.02em;
}

.p-slide {
    padding: 20px 50px 5px 50px;
    background: #212328;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

}

.p-r-right {
    border: 1px solid #6F6F6F;
    padding: 10px;
    max-width: 117px;
}

.p-r-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.02em;
}

.p-r-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #00FEBE;
}

.p-r-bg:before {
    content: '';
    background-image: url(../img/bg-swiper-portfolio.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
    position: absolute;
    top: 0;
    left: 0;
}

.swiper-button-prev {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.003 26.9538L16.584 20.5348C16.4502 20.4011 16.4057 20.2228 16.4057 19.9999C16.4057 19.8216 16.4502 19.6433 16.584 19.5095L23.003 13.0905C23.2705 12.8231 23.7608 12.8231 24.0283 13.0905C24.2957 13.358 24.2957 13.8483 24.0283 14.1158L18.8128 19.2867H38.5157C38.8723 19.2867 39.2289 19.6433 39.2289 19.9999C39.2289 20.4011 38.8723 20.7131 38.5157 20.7131H18.8128L24.0283 25.9286C24.2957 26.196 24.2957 26.6864 24.0283 26.9538C23.7608 27.2213 23.2705 27.2213 23.003 26.9538Z' fill='%237B7B7B'/%3E%3Crect x='-0.641903' y='0.641903' width='37.9436' height='37.9436' transform='matrix(-1 0 0 1 37.9455 0)' stroke='%237B7B7B' stroke-width='1.28381'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 39px;
    height: 39px;
}

.swiper-button-next {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.003 26.9538L16.584 20.5348C16.4502 20.4011 16.4057 20.2228 16.4057 19.9999C16.4057 19.8216 16.4502 19.6433 16.584 19.5095L23.003 13.0905C23.2705 12.8231 23.7608 12.8231 24.0283 13.0905C24.2957 13.358 24.2957 13.8483 24.0283 14.1158L18.8128 19.2867H38.5157C38.8723 19.2867 39.2289 19.6433 39.2289 19.9999C39.2289 20.4011 38.8723 20.7131 38.5157 20.7131H18.8128L24.0283 25.9286C24.2957 26.196 24.2957 26.6864 24.0283 26.9538C23.7608 27.2213 23.2705 27.2213 23.003 26.9538Z' fill='%237B7B7B'/%3E%3Crect x='-0.641903' y='0.641903' width='37.9436' height='37.9436' transform='matrix(-1 0 0 1 37.9455 0)' stroke='%237B7B7B' stroke-width='1.28381'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 39px;
    height: 39px;
    transform: rotate(180deg)
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none !important;
}

.team__column {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  .team__column:hover img {
    transform: scale(1.2);
  } 
  
  .team__column *,
  .team__column *:before,
  .team__column *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  
  .team__column img {
    backface-visibility: hidden;
    max-width: 100%;
    vertical-align: top;
  }
  
  .team__column:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    z-index: 1;
    opacity: 0.5;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  .team__column:hover:before {
    -webkit-transform: translate(3%,46.5%) rotate(135deg) skew(29deg, 28deg);
    transform: translate(3%,46.5%) rotate(135deg) skew(29deg, 28deg);
  }
  
  .team__column:before {
    -webkit-transform: translate(3%,58%) rotate(135deg) skew(29deg, 28deg);
    transform: translate(3%,58%) rotate(135deg) skew(29deg, 28deg);
    background-color: #CF0032;
 
  }
  
  .team__column:after {

  }
  
  .team__column .team__content {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    bottom: 0;

  }
  
  .team__column .team__content:before,
  .team__column .team__content:after {
     position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #CF0032;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    content: '';
    opacity: 0.5;
    z-index: -1; 
  }
  
  .team__column:hover .team__content:before {
    -webkit-transform: translate(-15%, 99.5%) rotate(13deg);
    transform: translate(-15%, 99.5%) rotate(13deg); 
  }


  .team__column .team__content:before {
     -webkit-transform: translate(-15%, 88%) rotate(13deg);
    transform: translate(-15%, 88%) rotate(13deg); 
  }
  .team__column:hover .team__content:after {
    -webkit-transform: translate(15%, 99.5%) rotate(-13deg);
    transform: translate(15%, 99.5%) rotate(-13deg);
  }
  
  .team__column .team__content:after {
     -webkit-transform:translate(15%, 88%) rotate(-13deg);
    transform: translate(15%, 88%) rotate(-13deg); 
  }
  



  
  .team__column:hover:before,
  .team__column.hover:before {
    /* -webkit-transform: skew(30deg) translateX(-20%);
    transform: skew(30deg) translateX(-20%);
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s; */
  }
  
  .team__column:hover:after,
  .team__column.hover:after {
    /* -webkit-transform: skew(-30deg) translateX(-10%);
    transform: skew(-30deg) translateX(-10%); */
  }
  
  .team__column:hover .team__content:before,
  .team__column.hover .team__content:before {
    /* -webkit-transform: skew(30deg) translateX(-40%);
    transform: skew(30deg) translateX(-40%);
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s; */
  }
  
  .team__column:hover .team__content:after,
  .team__column.hover .team__content:after {
    /* -webkit-transform: skew(-30deg) translateX(-30%);
    transform: skew(-30deg) translateX(-30%);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s; */
  }
  






.team-swiper img {
 
    transition: .4s all ease-in-out;
}

.team-swiper img:hover {
  
}
.team-swiper .swiper-slide {
    position: relative;
}
.team-swiper .swiper-slide:hover .team-name {
    visibility: visible;
    opacity: 1;

}
.team-swiper .swiper-slide:hover .team-spec {
    visibility: visible;
    opacity: 1;
}
.team-name {
    text-align: center;
    font-family: var(--oswald);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: 0.48px;
    text-transform: uppercase;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 15%;
    width: 100%;
    transition: .7s all ease-out;
}
.team-spec{
    text-align: center;
    font-family: var(--oswald);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 27px */
    letter-spacing: 0.9px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 8%;
    width: 100%;
    transition: .7s all ease-out;
}

.price-sb-title {
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.02em;
}

.price-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    letter-spacing: -0.02em;
    margin-top: 10px;
}

.prices-col:nth-child(even) {
   /* background: #24272C;
    box-shadow: 0px 0px 20px -9px rgba(0, 0, 0, 0.2);*/    
}

.prices-col {
    align-items: stretch;
}

.row-prices th {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

.row-prices td {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 25px;
}

.price-top-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

.cell {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    padding: 25px 25px;
    min-height: 90px;
    border-left: 1px solid #56585E;
}

.cell-red {
    background: #CF0032;
    position: relative;
}

.cell-red-right:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='121' height='104' viewBox='0 0 121 104' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M121 104L0 58.5L8.5 29.25L17 0L121 104Z' fill='url(%23paint0_linear_652_4001)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_652_4001' x1='54.5' y1='75' x2='69' y2='52' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D01341'/%3E%3Cstop offset='1' stop-color='%23BC002D'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    width: 121px;
    height: 104px;
    z-index: 2;
}

.cell-red-right:before {
    content: '';
    position: absolute;
    top: -15px;
    right: -46px;
    border: 0;
    width: 143px;
    height: 75px;
    transform: rotate(45deg);
    background-color: #212328;
    z-index: 1;
}

.cell-red-right img {
    max-width: 130px;
}

.price-titles {
    position: relative;

}

.around {
    position: absolute;
    top: 55px;
    right: -125px;
    animation: spin 40s infinite linear;
    width: 275px;
    height: 275px;
    z-index: 3;
}

.around-black {
    top: 20%;
    right: -255px;

}
.around-black img {
    filter: grayscale(1) brightness(0.5);
}
.prices-col:last-child div {
    border: 0;
}

@keyframes spin {
    from {

        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.table {
    flex-wrap: wrap;
}

.btn-table {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #CF0032;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    background: #FFFFFF;
    border: 1.2766px solid #FFFFFF;
    border-radius: 5.10638px;
    justify-content: center;
}

.sl-col {
    background: #00FEBE;
    padding: 50px 0;
    padding-right: 15px;
    position: relative;
}

.sl-title {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 22px;
    line-height: 40px;
    font-family: var(--oswald);
    color: #000;
}

.sl-text b {
    font-size: 16px;
}

.sl-text p {
    margin: 0;
    color: #000;
}

.sl-text {
    font-weight: 300;
    font-size: 14px;
    color: #000000;
    margin-top: 30px;
}

.sl-col:before {
    content: '';
    position: absolute;
    left: -996%;
    top: 0;
    height: 100%;
    z-index: -1;
    width: 1000%;
    background: #00FEBE;
}

.sl-col:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 60px;
    height: 130px;
    width: 125px;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='143' height='146' viewBox='0 0 143 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.1' d='M11.677 145.227L0.283002 128.136C12.099 123.494 19.906 116.32 23.704 106.614C27.502 96.908 29.401 82.349 29.401 62.937H4.081V0.269961H57.253C57.253 9.13197 57.253 17.994 57.253 26.856C57.253 35.718 57.253 44.58 57.253 53.442C57.253 79.606 54.088 100.284 47.758 115.476C41.428 130.246 29.401 140.163 11.677 145.227ZM97.132 145.227L85.738 128.136C97.554 123.494 105.361 116.32 109.159 106.614C112.957 96.908 114.856 82.349 114.856 62.937H89.536V0.269961H142.708C142.708 9.13197 142.708 17.994 142.708 26.856C142.708 35.718 142.708 44.58 142.708 53.442C142.708 79.606 139.543 100.284 133.213 115.476C126.883 130.246 114.856 140.163 97.132 145.227Z' fill='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
}

#map {
    width: 100%;
    height: 960px;
}

.mp-col {
    padding-left: 125px;
    position: relative;
}

.mp-bottom {
    margin-top: 70px;
}

.mp-address {
    font-weight: 300;
    font-size: 24px;
    line-height: 50px;
    margin-top: 70px;
}

.mp-phone {
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
}

.mp-email {
    font-weight: 300;
    font-size: 24px;
    line-height: 50px;
    margin-bottom: 25px;
}

.mp-social {
    margin-top: 70px;
    gap: 0 45px;
}

.mp-col .btn-red {
    padding: 10px 20px;
    letter-spacing: 0.1em;
    font-size: 20px;
}

.mp-copy {
    margin-top: 100px;
}

.full-scroll {
    position: fixed;
    bottom: 15%;
    left: 5%;
    width: 2px;
    height: 145px;
    z-index: 999999999;
    background-color: #303238;
    transition: height 0.3s ease;
}

.scroll {
    background-color: #ffffff;
    transition: height 0.3s ease;
}

.full-scroll-text {
    letter-spacing: 0.175em;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    transform: rotate(-90deg);
    left: -10px;
    margin-top: 16px;
    position: absolute;
    width: max-content;
    min-width: 60px;
    cursor: pointer;
}


/*hover svg*/
.s-field {
    height: 360px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;

}

.s-field:before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(34, 34, 34, 0.55);
    transition: .5s all ease-out;
    z-index: 1;
}

.s-image-svg {
    position: relative;
}

.s-field:hover:before {
    background: transparent;
}

.s-1 .svg-2 {
    position: absolute;
    right: -20px;
    top: -25px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-1 .svg-1 {
    position: absolute;
    left: 0;
    top: 30px;
    transform: translate(-80px);
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-1:hover .svg-1 {
    transform: translate(15px);
}

.svg-2 .g-svg-1,
.svg-2 .g-svg-2 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-1:hover .svg-2 .g-svg-1 {
    transform: translateY(-5px);
}

.s-1:hover .svg-2 .g-svg-2 {
    transform: translateY(5px);
}

.s-2 .svg-1 {
    position: absolute;
    right: -105px;
    top: 35px;
    transition: .5s all ease-out;
}

.s-2 .svg-2 {
    position: absolute;
    right: 0;
    top: 35px;
    transform: translate(200px);
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-2:hover .svg-1 {
    opacity: 0;
    transition: .4s all ease-out;

}

.s-2:hover .svg-2 {
    transform: translate(-40px);
}

.s-3 .svg-1 {
    position: absolute;
    right: 0px;
    top: -60px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-3 .g-svg-1,
.s-3 .g-svg-2,
.s-3 .g-svg-3 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-3:hover .svg-1 .g-svg-1 {
    transform: translate(-15px);
}

.s-3:hover .svg-1 .g-svg-2 {
    transform: translate(15px);
}

.s-3:hover .svg-1 .g-svg-3 {
    transform: translate(15px);
}

.s-4 .svg-1 {
    position: absolute;
    right: 30px;
    top: 40px;
    transition: .4s all ease-out;
}

.s-4 .svg-2 {
    opacity: 0;
    position: absolute;
    right: 30px;
    top: 40px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-4:hover .svg-1 {
    transition: .4s all ease-out;
    transform: scale(1.2);
}

.s-4:hover .g-svg-1 {
    opacity: 0;
    transition: .4s all ease-out;
}

.s-4 .g-svg-1 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-5 .svg-1 {
    position: absolute;
    transform: translate(0);
    top: 30px;
    left: 15px;
    transition: .4s all ease-out;
}

.s-5:hover .svg-1 {
    opacity: 0;
    transition: .4s all ease-out;
    transform: scale(1.3);
    left: 70px;
    top: 50px;
}

.s-5 .svg-2 {
    position: absolute;
    opacity: 0;
    transition: .4s all ease-out;
    top: 30px;
    left: -60px;
}

.s-5 .svg-2 svg {
    height: 66px
}

.s-5:hover .svg-2 {
    opacity: 1;
    transition: .4s all ease-out;
    transform: scale(2) translate(35px, 20px);
}


.s-6 .svg-1 {
    position: absolute;
    transform: translate(120px);
    top: 0;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-6 .g-svg-1,
.s-6 .g-svg-2,
.s-6 .g-svg-3,
.s-6 .g-svg-4 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-6 .g-svg-5 {
    transition: .4s all ease-out;
}

.s-6 .g-svg-2 {
    transform: translateY(250px);
}

.s-6:hover .svg-1 {
    transform: translate(80px);
}

.s-6:hover .svg-1 .g-svg-2 {
    transform: translate(0);
}

.s-6:hover .svg-1 .g-svg-5 {
    opacity: 0;
    transition: .4s all ease-out;
}

.s-7 .svg-1 {
    position: absolute;
    right: 20px;
    top: 40px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-7:hover .svg-1 {
    transform: translate(-55px)
}

.s-7 .g-svg-1 {
    opacity: 0;
    transition: .4s all ease-out;
}

.s-7:hover .g-svg-1 {
    opacity: 1;
    transition: .4s all ease-out;
}

.s-7 .g-svg-3 path,
.s-7 .g-svg-4 path,
.s-7 .g-svg-5 path,
.s-7 .g-svg-6 path {
    fill: #CF0032;
    transition: .4s all ease-out;
}

.s-7:hover .g-svg-3 path,
.s-7:hover .g-svg-4 path,
.s-7:hover .g-svg-5 path,
.s-7:hover .g-svg-6 path {
    fill: #222222;
    transition: .4s all ease-out;
}

.s-8 .svg-1 {
    position: absolute;
    right: -145px;
    top: 40px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-8 .g-svg-1,
.s-8 .g-svg-2,
.s-8 .g-svg-3 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-8 .g-svg-1 {
    transform: scale(1.3) translate(-40px, -15px);
}

.s-8:hover .g-svg-1 {
    transform: scale(1) translate(-70px, 0);
}

.s-8:hover .g-svg-2,
.s-8:hover .g-svg-3 {
    transform: translate(-70px);
}

.s-8 .svg-1 {
    position: absolute;
    right: -145px;
    top: 40px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-9 .g-svg-1,
.s-9 .g-svg-2 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-9 .g-svg-1 {
    opacity: 0;
    transition: .4s all ease-out;
    transform: translate(0, -48px);
}

.s-9 .g-svg-1 circle {
    r: 150px;
    transition: .2s all ease-out;
}

.s-9:hover .g-svg-1 circle {
    r: 60px;
    transition: .5s all ease-out;
}

.s-9 .g-svg-2 path {
    fill: #CF0032;
    transition: .4s all ease-out;
}

.s-9 .g-svg-2 {
    transform: rotate(19deg) translate(77px, -112px);
}

.s-9:hover .g-svg-1 {
    opacity: 1;
    transition: .4s all ease-out;
}

.s-9:hover .g-svg-2 path {
    fill: #272B38;
    transition: .4s all ease-out;
}

.s-9:hover .g-svg-2 {
    transform: translate(0px, -45px);
}


.s-10 .svg-1 {
    position: absolute;
    right: -90px;
    top: 70px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-10:hover .svg-1 {
    transform: translate(-80px, -15px)
}

.s-11 .svg-1 {
    position: absolute;
    left: -40px;
    top: 90px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
    transform: scale(1.5);
}

.s-11:hover .svg-1 {
    transform: translate(60px, -65px);
}

.s-12 .g-svg-1,
.s-12 .g-svg-2 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-12 .g-svg-2 {
    transform: translate(-40px, 55px);
}

.s-12 .svg-1 {
    position: absolute;
    right: -10px;
    top: 170px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
    transform: scale(2.5);
}

.s-12:hover .g-svg-2 {
    transform: translate(0, 0);
}

.s-12:hover .svg-1 {
    transform: translate(-120px, -150px);
}

.s-13 .svg-1 {
    position: absolute;
    right: -50px;
    top: 10px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-13:hover .svg-1 {
    transform: translateX(-110px);
}

.s-14 .svg-1 {
    position: absolute;
    left: 15px;
    top: 110px;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-14:hover .svg-1 {
    transform: translateY(-80px);
}

.s-14 .g-svg-1,
.s-14 .g-svg-2 {
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.s-14:hover .g-svg-2 {
    transform: translateY(0);
}

.s-14 .g-svg-2 {
    transform: translateY(100px);
}

.gm-style .gm-style-iw-c {
    border-radius: 0 !important;
}

.maps-right {
    color: #000;
    margin-left: 15px;
}

.maps-right p {
    color: #000;
}

.maps-footers {
    overflow: hidden;
}

.h-row {
    flex-wrap: wrap;
    justify-content: space-between;
}

.middle-top-row,
.mobile_menu_overlay,
.mobile_menu_container {
    display: none;
}

.contacts-template #map {
    height: 660px;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
}

.contact-title span {
    color: #CF0032;
}

.contact-phone a {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1.28px;
}

.contact-email a {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.64px;
}

.contact-social {
    margin-top: 45px;
}

.contact-social p {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
}

.green {
    color: #07D3A1;
}

.social-flex {
    margin-top: 15px;
    margin-bottom: 45px;
    gap: 0 35px;
}

.social-flex a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    gap: 0 15px;
}

.social-flex a span {
    border-bottom: 1px dashed #fff;
}

.contact-row {
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-grid {
    /* padding-top: 65px; */
}

.contact-all-social {
    margin-top: 45px;
}

.contact-all-social>div {
    gap: 0 30px;
}

.contact-all-social p {
    font-size: 18px;
    font-weight: 300;
}

.contact-all-social a {
    border-bottom: 1px dashed #fff;
    font-size: 20px;
    font-weight: 300;
}

.contact-form-left {
    max-width: 295px;
}

.contact-form-left .f-l-text {
    font-weight: 300;
    font-size: 14px;
}

.contact-form-right textarea {
    height: 120px;
}

.contact-form {
    background: #24272C;
}

.v-grid img {
    margin-top: 25px
}

.v-grid {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    width: calc(100%/3);
    position: relative;
}

.v-grid:before {
    content: '';
    height: 100%;
    width: 1px;
    display: block;
    background: #777777;
    position: absolute;
    right: 0;
    top: 0;
}

.v-grid:last-child:before {
    display: none;
}

.v-grid a {
    color: #CF0032;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.64px;
    gap: 0 20px;
}

.bg-dark {
    background: #24272C;
}

.ab-sub_title {
    font-family: var(--oswald);
    color: #F1F1F1;
    font-size: 16px;
    font-weight: 300;
    line-height: 26.4px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.amazon-sub_title{
    font-size: 23px;
}
.ab-title {

    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.08px;
}
.amazon-title {
    margin-top: 10px;
    margin-bottom: 10px;
}
.amazon-title::first-letter {
    color: #CF0032;
}
.registr__grid-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    align-items: flex-end;
    height: 100%;
}
.listing--grid{
    display: flex;
    align-items: flex-end;
    gap:50px
}
.list-text{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}
.pop--content p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
}
.pop--content h3 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    text-transform: uppercase;
    gap:10px
}
.pop--content h3:before {
        content: '';
        width: 13px;
        height: 13px;
        background: #CF0032;
}
.am-title {
    margin-bottom: 5px !important;
}
.analit--grid ul {
    gap:15px;
    counter-reset: section;
    padding: 0;
    margin: 0;
}
.analit--grid li:before {
    counter-increment: section;
    content: "0" counter(section);
    color:#CF0032;
    font-family: var(--oswald);
}
.analit--grid li {
    color: #FFF;
    font-family: var(--oswald);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.4px;
    letter-spacing: 1.6px;
    display: flex;
    align-items: baseline;
    gap:10px;
}
.analit--grid li:not(:last-child) {
    margin-bottom: 10px;
}
.ab-title::first-letter {
    /* color: #CF0032; */
}
.an-title::first-letter {
    color: #CF0032;
}
.an-title {
    margin-bottom: 25px !important;
    font-size: 36px;
}
.am--left-img:before{
    content: '';
    height: 235px;
    width: 200%;
    position: absolute;
    left: -150%;
    top: 50%;
    background: #CF0032;
    z-index: 1;
    transform: translate(0, -50%);
}
.am--left-img{
    margin-left: -175px;
}
.am--left-img img {
    position: relative;
    z-index: 2;
    min-width: 700px;
    left: 0;
    top: 30px;
}
.am--right-img:after {
    content: '';
    height: 235px;
    width: 200%;
    position: absolute;
    right: -150%;
    top: 50%;
    background: #CF0032;
    z-index: 1;
    transform: translate(0, -50%);
}
.am--right-img img {
    position: relative;
    z-index: 2;
}
.form-amazon{
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 15px;
}

.ab-content {
    font-size: 16px;
    font-weight: 300;
    line-height: 180%;
}

.ab-content ul {
    list-style: disc;
    padding-left: 30px;
}

.ab-content ul li {
    list-style: disc;
    padding-bottom: 10px;
}

.ab-cit {
    font-size: 22px;
    font-family: var(--oswald);
    font-weight: 300;
    line-height: 40px;
    letter-spacing: 1.32px;
    text-transform: uppercase;
}

.ab-top-right {
    background: #CF0032;
    padding-left: 40px;
    min-height: 530px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ab-top-right:before {
    content: '';
    position: absolute;
    right: -996%;
    top: 0;
    height: 100%;
    width: 1000%;
    background: #CF0032;
}

.bg-dark {
    overflow: hidden;
   /* display: inline-table;*/
}

.ab-left {
    font-size: 14px;
    font-weight: 300;
    margin-top: 30px;
}

.ab-left p {
    margin-top: 5px;
}

.ab-top-right:after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 60px;
    height: 130px;
    width: 125px;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='143' height='146' viewBox='0 0 143 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.1' d='M11.677 145.227L0.283002 128.136C12.099 123.494 19.906 116.32 23.704 106.614C27.502 96.908 29.401 82.349 29.401 62.937H4.081V0.269961H57.253C57.253 9.13197 57.253 17.994 57.253 26.856C57.253 35.718 57.253 44.58 57.253 53.442C57.253 79.606 54.088 100.284 47.758 115.476C41.428 130.246 29.401 140.163 11.677 145.227ZM97.132 145.227L85.738 128.136C97.554 123.494 105.361 116.32 109.159 106.614C112.957 96.908 114.856 82.349 114.856 62.937H89.536V0.269961H142.708C142.708 9.13197 142.708 17.994 142.708 26.856C142.708 35.718 142.708 44.58 142.708 53.442C142.708 79.606 139.543 100.284 133.213 115.476C126.883 130.246 114.856 140.163 97.132 145.227Z' fill='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
}

.ab-sw-title:before {
    counter-increment: section;
    content: "0" counter(section);
    position: absolute;
    top: -25px;
    left: 0;
    transition: .5s all ease-out;
    font-weight: 300;
    line-height: 26.4px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--oswald);
    color: #fff;
}

.ab-row {
    margin-top: 50px;
}

.ab-row .swiper-wrapper {
    counter-reset: section;
}

.ab-row .swiper-slide {
    padding-top: 70px;
    border-left: 1px solid #303238;
    padding-bottom: 70px;
    padding-left:15px;
}

.ab-sw-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.18px;
    position: relative;
    padding-top: 15px;
    margin-bottom: 30px;
}

.ab-sw-text {
    color: #E8E8E8;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0.15px;
}

.w-title::first-letter {
    color: #CF0032;
}

.w-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.64px;
    margin-bottom: 15px;
    height: 75px;
}

.w-content {
    font-size: 14px;
    font-weight: 300;
    line-height: 180%;
}

.w-grid {
    padding-left: 15px;
    padding-right: 15px;
}

.col-veews {
    padding-top: 70px;
    border-left: 1px solid #303238;
    padding-bottom: 70px;
}

.exp-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
}

.exp-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.72px;
}

.exp-title p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.exp-grid {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: calc(100%/3);
}

.work-button-next {
    right: -65px;
}

.work-button-prev {
    left: -65px;
}

.red-bg {
    background: #CF0032;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
}

.all-grid {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.28px;
    display: flex;
    align-items: center;
    gap: 0 30px;
    color: #fff;
}

.proc-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.64px;
    text-transform: uppercase;
}

.proc-sub_title {
    font-size: 12px;
    font-weight: 300;
    line-height: 180%;
}

.proc-form {
    border-radius: 2px;
    background: #CF0032;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    padding: 30px 40px;
    margin-top: 40px;
}

.proc-form-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.48px;
}

.proc-form-sub_title {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
}

.proc-grid-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.48px;
    margin-bottom: 10px;
}

.proc-grid-text {
    font-size: 12px;
    font-weight: 300;
    line-height: 180%;
}

.proc-row {
    counter-reset: section;
    padding-left: 20px;
}

.proc-grid {
    padding-bottom: 30px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0 30px;

}

.proc-grid:before {
    counter-increment: section;
    content: counter(section);
    border-radius: 41px;
    border: 1px solid #565860;
    background: #212328;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    position: relative;
    z-index: 2;
    transition: .4s all ease-out;
}

.proc-grid:hover::before {
    background: #CF0032;
}

.proc-grid:last-child:after {
    display: none !important;
}

.proc-grid:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 20px;
    background: #60626A;
    z-index: 1;
}

.prod-grid-inner {
    max-width: 90%;
    flex: 0 0 90%
}

.sub-txt-not-f {
    color: #CACACA;
    font-size: 24px;
    font-family: Ubuntu;
    font-weight: 500;
    margin: 0;
    margin-bottom: 3px;
}
.success-title {
    font-size: 125px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -2.514px;
    text-transform: uppercase;
}
.success-title span {
    color: #CF0032;
}
.success-sub_title{
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.72px;
}
.success-sub_title span {
    color: #CF0032;
}
.success-desc{
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
}


/* Animation*/

.O-stroke path {
    stroke-dasharray: 302px;
    stroke-dashoffset: 302px;
    animation: O-move 20s ease forwards;
}

@keyframes O-move {
    0% {
      stroke-dashoffset: 302px;
    }
    4% {
      stroke-dashoffset: 302px;
    }
    9% {
      stroke-dashoffset: 0px;
    }
    100% {
      stroke-dashoffset: 0px;
    }
  }


.xl-txt-not-f {
    color: #FFF;
    font-size: 64px;
    font-family: Ubuntu;
    font-weight: 700;
    letter-spacing: -1.28px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 14px;
}

.xl-txt-not-f span {
    color: #CF0032;
}

.small-txt-not-f {
    color: #FFF;
    font-size: 18px;
    font-family: Ubuntu;
    font-weight: 300;
    line-height: 27px;
    margin: 0;
}

.not-found-soc-img {
    margin: 50px 0 70px;
}

.not-found-soc-box:not(:last-child) {
    margin-right: 35px;
}

.not-found-soc-box-txt {
    color: #FFF;
    font-size: 20px;
    font-family: Ubuntu;
    font-weight: 300;
    border-bottom: 1px dashed;
    margin-left: 12px;
    line-height: 1;
    padding-bottom: 5px;
}

.not-found-soc-title {
    color: #FFF;
    font-size: 18px;
    font-family: Ubuntu;
    font-weight: 300;
}

.not-found-list li a {
    color: #FFF;
    font-size: 20px;
    font-family: Ubuntu;
    font-weight: 300;
    border-bottom: 1px dashed;
    padding-bottom: 5px;
    transition: .2s all linear;
}

.not-found-list li a:hover {
    border-color: transparent;
}

.not-found-list li:not(:last-child) {
    margin-right: 35px;
}

.not-found-list {
    padding: 0;
    margin: 0;
}

.not-found-row {
    padding: 110px 0 90px;
    align-items: flex-start;
}

.footer-list li a:hover {
    color: #cf0032;
    transition: .2s all linear;
}

.not-found-main-img {
    justify-content: flex-end;
}



/* coockie new*/
#cookie .fancybox-close-small {
    top: 0 !important;
}
#cookie .fancybox-close-small svg path {
    fill: #0E8DC2;
}
.cookie-wrap-cont {
    border-right:1px solid #ccc;
}
.cookie-wrap {
  padding: 25px 30px;

}

.cookie-wrap h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: -0.02em;
    color: #5B5B5B;
    margin-top: 0;
    margin-bottom: 15px;
    
}

.cookie-content {

}

.cookie-content p {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.01em;
    font-display: swap;
    line-height: 25px;
    color: #5B5B5B;
    
}

.cookie-content a {
    color: #0E8DC2;
    text-decoration: underline;
}

.cookie-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 25px;
    margin-top: 20px;

}

.cookie-links a {
    font-weight: 300;
    font-size: 14px;
    color: #0E8DC2;;
    font-display: swap;
    text-decoration: none;
        border-bottom:1px dashed #0E8DC2;
    
}

#cookie {
    padding: 0;
    width: 100%;
    max-width: 100%;
    position:fixed;
    left:0;
    bottom:0;
    z-index:999999999;
    box-shadow: 0 0 10px 2px #00000050;
    background: #24272C;

}

.cookie-cointainer{
    display:flex;
    
}

.btn-accept {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    color:  #fff;
    transition: all 0.2s linear 0s;
    border: 1px solid transparent;
    height: 38px;
    background: #CF0032;
    border-radius: 4.03528px;
    width: 100%;
    cursor: pointer;
        min-width:200px;
    border:1px solid #CF0032;
        margin-bottom:15px;
    
}


.btn-accept:hover {
  
}

.cookie-accept {
    padding: 25px 30px;

}


.cookie-accordion .acc-container {
    width: 100%;
    padding: 0 30px;
}

.cookie-accordion .acc {
    margin-bottom: 15px;
    border-radius: 0;
    background: #fff;
    border:none
}


.cookie-accordion .acc-content {
    padding: 15px 30px;
}


.check-box {
    display: flex;
}

.check-box input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 38px;
    height: 18px;
    border-radius: 50px;
    border: 1px solid #C1C1C1;
    cursor: pointer;
    transition: 0.4s;
    background: #fff;
}

.check-box input:checked[type="checkbox"] {
    background: #0E8DC2;;
}

.check-box input:checked[type="checkbox"]:after {
    background:  #fff;
}

.check-box input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 1px;
    left: 2px;
    background: #C1C1C1;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    /* transform: scale(1.1); */
    transition: 0.4s;
}

.check-box input:checked[type="checkbox"]::after {
    left: 60%;
}

.cookie-accordion h3 {
    padding: 15px 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
}

.main-check-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 20px;
}

.cookie-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.main-check-box p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase
}
.right{
    display:flex;
    justify-content:flex-end;
    padding:0 30px;
}
.right a {
    width:auto;
}
.cookie-accordion {
    transition: none;
}
/* coockie end*/

#cookie .fancybox-close-small {
    top: 0 !important;
}



.cookie-wrap {
    padding: 25px 30px;
}

.cookie-wrap h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 16px 0;
}

.cookie-content {}

.cookie-content p {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.01em;

    color:#fff !important;
}

.cookie-content a {
    color: #7FB5F2;
    text-decoration: underline;
}

.cookie-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 25px;
    margin-top: 20px;

}

.cookie-links a {
    font-weight: 300;
    font-size: 14px;
    color: #7FB5F2;

    text-decoration: none;
}

.cookie_wrap {
    padding: 0;
    width: auto;
    max-width: 655px;
    line-height: 1.5;
    background: #24262C;
}

.btn-accept {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: rgb(255, 255, 255) !important;
    transition: all 0.2s linear 0s;
    border: 1px solid transparent;
    height: 38px;
    background: #CF0032;
    border-radius: 2.03528px;
    width: 100%;
    cursor: pointer;
 
}

.btn-accept:hover {
    color: #CF0032!important;
    border-color: #CF0032;
    background: #fff;
}

.cookie-accept {
    padding: 22px 30px;
    box-shadow: 0px -4px 16px rgba(0, 0, 0, 0.08);
    max-width: 275px;
    width: 100%;
}
.btn-accept-white {
    color:#CF0032 !important;
    background: #fff !important;
    border:1px solid #CF0032 !important; 
 }
 .btn-accept-white:hover {
    color:#fff !important;
    background: #CF0032 !important;
 }

.acc-container {
    width: 100%;
    padding: 0 30px;
}

.acc {
    margin-bottom: 10px;
}

.acc-head {
    background: #1C1C1E;
    padding: 15px 15px 15px 30px;
    font-size: 22px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.acc-head p::before {
    content: '';
    position: absolute;
    top: 50%;
    background-image: url(../img/arr-dwn.svg);
    transition: all .3s;
    background-repeat: no-repeat;
}

.acc-head p::before {
    left: 10px;
    width: 9px;
    height: 13px;
    margin-top: -2px;
}

.acc-head p::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 50px;
    height: 50px;
}

.acc-head p {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}

.acc-content {
    padding: 15px 30px;
    padding-top: 0;
    display: none;
    font-weight: 300;
    font-size: 14px;
    background: #1C1C1E;
}

.acc-content p {
    margin: 0;
    color: #fff;
    line-height: 27px;
}

.acc-head.active p::before {
    transform: rotate(180deg);
    margin-top: -9px;
}

.check-box {
    display: flex;
}

.check-box input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 38px;
    height: 18px;
    background: transparent;
    border-radius: 50px;
    border: 1px solid #C1C1C1;
    cursor: pointer;
    transition: 0.4s;
}

.check-box input:checked[type="checkbox"] {
    background: #CF0032;
}

.check-box input:checked[type="checkbox"]:after {
    background: #fff;
}

.check-box input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 1px;
    left: 2px;
    background: #C1C1C1;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    transition: 0.4s;
}

.check-box input:checked[type="checkbox"]::after {
    left: 60%;
}

.cookie-accordion h3 {
    padding: 15px 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    margin: 0;
    color: #fff;
}

.main-check-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 20px;
}

.cookie-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.main-check-box p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
}

.gdpr-main-title-txt p {
    color: #FFF;
    font-size: 36px;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.gdpr-main-title {
    padding: 25px 0;
    background: #CF0032;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35) inset;
    margin-bottom: 50px;
}

.gdpr-content-left-title {
    color: #FFF;
    font-size: 22px;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}

.gdpr-content-left-title:before {
    content: "";
    width: 64px;
    height: 6px;
    background: #CF0032;
    display: block;
    position: absolute;
    bottom: -14px;
}

.gdpr-main-content-row {
    display: flex;
    max-width: 950px;
    margin: 0 auto;
}

.gdpr-main-content-row-right {
    max-width: 650px;
}

.gdpr-main-content-row-left {
    width: 30%;
    margin-right: 30px;
}

.gdpr-main-content-row-right p {
    color: #FFF;
    font-size: 16px;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    margin: 0;
    margin-bottom: 20px;
}

.gdpr-main-content-row-right p b {
    margin-bottom: -20px;
    display: block;
}

.gdpr-main-content-row-right ol li {
    color: #FFF;
    font-size: 16px;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    list-style: auto;
    margin-bottom: 5px;
}

.gdpr-main-content-row-right ol {
    padding-left: 15px;
}

.seo-promo-swiper .s-c,
.maintaining-swiper .s-c {
    font-size: 14px;
}

.seo-promo-swiper .s-title,
.maintaining-swiper .s-title {
    font-size: 24px;
}

.seo-promo-swiper .s-text,
.maintaining-swiper .s-text {
    font-size: 14px;
}

.product-row-img img {
    min-width: 700px;
    position: relative;
}

.product-row-img.red-before img,
.product-row-img.black-before img {
    max-width: 270px;
    min-width: 270px;
    position: relative;
}

.product-row-img img:not(:last-child) {
    margin-right: 30px;
}

.product-row-img {
    position: relative;
    margin-left: 35px;
    padding: 4em 0;
}

.product-row-img:before {
    content: "";
    width: 100vw;
    height: 275px;
    background: transparent;
    display: block;
    position: absolute;
    left: 105px;
}

.product-row-img.red-before:before {
    background: #CF0032;
}

.product-row-img.black-before:before {
    background: #181B22;
    height: 140%;
}

.sm-pr-title .ab-title {
    font-size: 36px;
    line-height: 40px;
}

.no-before:before {
    display: none;
}

.absortion-w img {
    min-width: 1000px;
}

.product-row-img.min-auto img {
    min-width: auto;
}

section.video-production-main {
    position: relative;
}

.video-production-main-content {
    padding: 85px 0 105px;
    position: relative;
    max-width: 495px;
}

.video-prod-media {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.video-prod-media video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-production-main-sub_title {
    color: #F1F1F1;
    font-size: 16px;
    font-family: Oswald;
    font-style: normal;
    font-weight: 300;
    line-height: 26.4px;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.video-production-main-title {
    color: #FFF;
    font-size: 54px;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.08px;
    margin-bottom: 20px;
    max-width: 465px;
}

.video-production-main-txt {
    color: #FFF;
    font-size: 16px;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
}

.gg-ads-sub_title {
    color: #F1F1F1;
    font-size: 16px;
    font-family: Oswald;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.gg-ads-title {
    color: #FFF;
    font-size: 54px;
    font-family: Ubuntu;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.08px;
    margin-bottom: 30px;
}
.trans-title{
    font-size: 44px;
    letter-spacing: -0.88px;
}

.gg-ads-content p {
    color: #FFF;
    font-size: 16px;
    font-family: Ubuntu;
    font-weight: 300;
    line-height: 180%;
}

.gg-ads-cit {
    color: #FFF;
    font-size: 16px;
    font-family: Oswald;
    line-height: 26px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.gg-ads-percent {
    color: #FFF;
    font-size: 120px;
    font-family: Oswald;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gg-ads-txt {
    color: #FFF;
    font-size: 24px;
    font-family: Ubuntu;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 13px;
}
.trans-txt {
    font-size: 15px;
    margin-top:15px;

}

.gg-ads-subtxt {
    color: #FFF;
    font-size: 12px;
    font-family: Ubuntu;
    font-weight: 300;
    line-height: 160%;
}

.gg-ads-link {
    color: #272B38;
    text-align: center;
    font-size: 20px;
    font-family: Oswald;
    font-weight: 300;
    line-height: 33px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: #FFF;
    max-width: max-content;
    transition: .2s all linear;
    margin-top: 25px;
}

.gg-ads-link:hover {
    background: transparent;
    color: #fff;
}

.gg-ads-top-right {
    padding-left: 50px;
    background: #CF0032;
    position: relative;
}

.gg-ads-top-right:before {
    content: "";
    width: 50vw;
    height: 100%;
    background: #CF0032;
    position: absolute;
    top: 0;
    z-index: 0;
    left: 100%;
}

.gg-ads-txt u {
    text-decoration: none;
    border-bottom: 1px dashed;
    padding-bottom: 3px;
}

.service-cat .s-image-svg {
    bottom: 0;
    height: 150px;
    display: flex;
    align-items: flex-end;
}

.service-cat .s-image {
    position: absolute;
    bottom: 0;
}

.service-cat .s-4 .svg-1 {
    right: auto;
    left: 25px;
    top: inherit;
    bottom: 30px;
}

.service-cat .s-text {
    position: inherit;
    bottom: inherit;
    padding-left: 16px;
    margin-top: 15px;
}

.service-cat-title {
    display: flex;
    margin-bottom: 35px;
}

.service-cat-title p {
    margin: 0;
    color: #FFF;
    font-size: 41px;
    font-family: Ubuntu;
    font-weight: 500;
}

.service-cat-title sup {
    color: #00FEBE;
    font-family: Ubuntu;
    font-size: 18px;
    margin-left: 5px;
}

.category-cases .p-image {
    margin-right: -30px;
    margin-bottom: -31px;
}

.category-cases .p-middle {
    /*margin-top: 35px;*/
}

.footer-list {
    margin: 0;
    padding: 0;
}

.footer-list li a {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-family: Oswald;
    font-weight: 300;
    line-height: 50px;
}

.footer-list li:not(:last-child) {
    margin-right: 15px;
}

.copyright {
    color: #F1F1F1;
    text-align: right;
    font-size: 17px;
    font-weight: 300;
    line-height: 26.4px;
    display: flex;
    gap:0 15px;
    align-items: center;
}
.copyright span {
    display: flex;
    margin-left: auto;
    font-family: var(--oswald);
}
.g-logo {
    display: block;

}
.g-logo img {
    max-width: 80px;
}

.footer-logo img {
    max-width: 140px;
}

footer {
    padding: 25px 0;
    background: #101010;
    margin-top: auto;
    position: absolute;
    bottom: -130px;
    width: 100%;
    height: 130px;
}

.form-subtitle {
    color: #FFF;
    font-size: 16px;
    font-family: Ubuntu;
    font-weight: 300;
    line-height: 160%;
    margin-bottom: 30px;
}

.contact-form-cat .contact-form-right {
    padding: 60px 0;
}

.privacy-check {
    position: relative;
    width: 19px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #FFF;
    margin-right: 15px;
    display: none;
}

.privacy-check:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #CF0032;
    display: flex;
    transition: .2s all linear;
    opacity: 0;
}

.policy-txt {
    color: #FFF;
    font-size: 16px;
    font-family: Ubuntu;
    font-weight: 300;
    line-height: 160%;
}

.privacy-label input:checked+.privacy-check:before {
    opacity: 1;
}

.privacy-label {
    cursor: pointer;
    padding-left: 15px;
    margin-top: 15px;
}

.privacy-label input {
    display: none;
}

.policy-txt a {
    text-decoration: underline;
    margin-left: 5px;
}

.ab-top-left .btn {
    max-width: max-content;
}


.about-video-prod-box {
    position: relative;
    border-radius: 8px;
    padding-left: 63px;
}

.about-video-prod-box:before {
    content: "";
    width: 453px;
    height: 410px;
    border-radius: 8px;
    background: #CF0032;
    box-shadow: 0px 0px 40px -9px rgba(0, 0, 0, 0.50);
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
}

section.about-video-production {
    padding: 135px 0;
}

span.play-btn {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.about-video-prod-box-txt h2 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 30px;
}

.about-video-prod-box-txt p {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    margin: 0;
}


section.what-whill {
    padding: 60px 0;
    background: #24272C;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
}

.what-whill-titles p {
    margin: 0;
    color: #FFF;
    font-family: Oswald;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.4px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.what-whill-titles {
    margin-bottom: 50px;
    text-align: center;
}

.wh-will-numb p {
    color: #CF0032;
    font-family: Oswald;
    font-size: 90px;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
    text-transform: uppercase;
    margin: 0;
}

.wh-will-row.d-flex {
    align-items: flex-start;
}

.wh-will-title {
    color: #fff;
    font-family: Ubuntu;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.36px;
    margin: 0;
    margin-bottom: 10px;
}

.wh-will-cont {
    color: #fff;
    font-family: Ubuntu;
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: -0.28px;
}

.wh-will-numb {
    margin-right: 14px;
}

ul.tabs_caption-works li {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 4px 10px;
    border-radius: 2px;
    background: #212328;
    text-shadow: none;
    margin-right: 10px;
}

ul.tabs_caption-works {
    margin: 0 0 30px;
    justify-content: center;
}

ul.tabs_caption-works li.active {
    background: #CF0032;
}

.our-works-main-title p {
    color: #FFF;
    text-align: center;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.our-works-main-title {
    margin-bottom: 50px;
    text-align: center;
}

section.our-works {
    padding: 75px 0;
}


ul.tabs_caption-works li:last-child {
    margin-right: 0;
}

.tabs__content-works {
    position: relative;
}

.our-works-next,
.our-works-yt-next,
.our-works-tt-next,
.our-works-pan-next {
    right: -75px;
}

.our-works-prev,
.our-works-yt-prev,
.our-works-tt-prev,
.our-works-pan-prev {
    left: -75px;
}

.about-video-prod-box img {
    border-radius: 8px;
}

.landing-page .gg-ads-percent {
    font-size: 24px;
    margin-bottom: 6px;
}

.landing-page .gg-ads-cit {
    margin-bottom: 4px;
}

.landing-right-txt {
    margin-bottom: 50px;
}

.landing-right-txt .gg-ads-subtxt {
    font-size: 14px;
}

.landing-page-link-main-block {
    font-family: Oswald;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: #FFF;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    transition: .2s all linear;
}

.landing-page-link-main-block:hover {
    background: transparent;
    color: #fff;
}

.landing-page .gg-ads-content {
    border-bottom: 1px solid #434548;
}

section.purpose-of-creating {
    padding: 60px 0 90px;
    background: #212328;
}

section.purpose-of-creating .f-l-sb-title {
    margin-bottom: 50px;
}

.purpose-box-title p {
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.28px;
    margin: 0;
}

.purpose-box-content p {
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 19px;
    letter-spacing: -0.28px;
    margin: 0;
}

.purpose-box-img {
    margin-right: 15px;
}

.purpose-box-title {
    margin-bottom: 6px;
}

.what-land-title p {
    color: #fff;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.72px;
    margin: 0;
}

.what-is-for-lend-left-txt p {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    margin: 0;
}

.what-is-for-lend-right-list ul li {
    color: #FFF;
    font-family: Oswald;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
    position: relative;
}

.what-is-for-lend-right-list ul li:last-child {
    margin: 0;
}

.what-land-title {
    margin-bottom: 18px;
}

section.what-is-for-land .row {
    align-items: flex-start;
}

.what-is-for-lend-right-list ul {
    margin: 0;
    counter-reset: num;
}

.what-is-for-lend-right-list ul li:before {
    content: "0" counter(num);
    counter-increment: num;
    position: absolute;
    top: 0px;
    left: -30px;
    transition: .5s all ease-out;
    color: #CF0032;
    font-family: Oswald;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.4px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

section.what-is-for-land {
    background: #24272C;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    padding: 50px 0 70px;
}

section.what-whill.land-whill {
    margin-top: 45px;
    padding-top: 30px;
    background: transparent;
    box-shadow: none;
}


.why-buy-landing-row p {
    margin: 0;
}

.why-buy-landing-row {
    background: #CF0032;
    display: flex;
    padding: 36px;
    position: relative;
    width: 100%;
    justify-content: space-between;
}

.why-buy-landing-left-title {
    color: #FFF;
    font-family: Oswald;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 1.32px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.why-buy-landing-left-about {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    margin-bottom: 22px;
}

.why-buy-landing-left {
    max-width: 600px;
}

.why-buy-landing-left-link {
    color: #FFF;
    text-align: center;
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    border-radius: 5px;
    border: 1px solid #000;
    background: #212328;
    transition: .2s all linear;
}

.why-buy-landing-right {
    color: #FFF;
    font-family: Oswald;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.4px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    max-width: 200px;
}

.why-buy-landing-left-link:hover {
    background: #fff;
    color: #212328;
}

.why-buy-landing-middle {
    max-width: 190px;
    margin-top: -85px;
    margin-right: 25px;
}

.percpectives-row p {
    margin: 0;
}

.perspectives-title {
    color: #fff;
    font-family: Ubuntu;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.64px;
    margin-bottom: 10px;
}

.perspectives-about p {
    color: #fff;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    letter-spacing: -0.28px;
    margin-bottom: 25px;
}

.perspectives-left {
    max-width: 430px;
}

.percpectives-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.perspectives-right img {
    min-width: 720px;
}

.perspectives-right {
    max-width: 650px;
}

.perspectives-about p:last-child {
    margin: 0;
}

.perspectives-links {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: #FFF;
    padding: 10px 15px;
    max-width: max-content;
    color: #000;
    text-align: center;
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .2s all linear;
}

.perspectives-about {
    margin-bottom: 40px;
}

.perspectives-links:hover {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
    padding-left: 0;
}

ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 0 auto 0 auto;
    border: 1px solid #4A4A4A;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    cursor: pointer;
}

ul.accordion-list li.active h3:after {
    transform: rotate(45deg);
}

ul.accordion-list li h3 {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0;
    letter-spacing: 0.01em;
    cursor: pointer;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

ul.accordion-list li h3:after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    right: 10px;
    top: 0;
    background: url(../img/landing/pilus.svg)no-repeat;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    border-radius: 50%;
    background-size: 20px;
    background-position: center;
}

ul.accordion-list li h3:hover:after {
    background-color: #36373C;
}

ul.accordion-list li:last-child {
    border-bottom: 1px solid #4A4A4A;
}

ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
    line-height: 26px;
    padding-top: 15px;
}

ul.accordion-list li div.answer p {
    position: relative;
    display: block;
    padding: 10px 0 0 0;
    cursor: pointer;
    margin: 0 0 15px 0;
    margin-bottom: 0;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
}

.faq-title * {
    margin: 0;
}

.faq-title h2 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 178.164px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.faq-title p {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    max-width: 260px;
}

.faq-title {
    max-width: 360px;
    width: 32%;
}

section.faq-all {
    background: #24272C;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    padding: 60px 0 50px;
    margin: 70px 0 0px;
}

.faq-row {
    display: flex;
    justify-content: space-between;
}

.faq-box {
    width: 68%;
    max-width: 690px;
}

html[lang="lv"] .web-d-top h2 {
    color: #212328;
    text-shadow: 0 -1px 0 #9F9F9F, 0 -1px 0 #9F9F9F, 0 1px 0 #9F9F9F, 0 1px 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    left: -5px;
    top: 8px;
    width: max-content;
}

html[lang="lv"] .web-d-top {
    top: 65px;
}

html[lang="en"] .web-d-top h2 {
    color: #212328;
    text-shadow: 0 -1px 0 #9F9F9F, 0 -1px 0 #9F9F9F, 0 1px 0 #9F9F9F, 0 1px 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px 0 0 #9F9F9F, 1px 0 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F, -1px -1px 0 #9F9F9F, 1px -1px 0 #9F9F9F, -1px 1px 0 #9F9F9F, 1px 1px 0 #9F9F9F;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    left: -250px;
    top: 8px;
    width: max-content;
}

html[lang="en"]  .web-d-top {
    top: 65px;
}

section.bg-dark.inst-bg {
    padding-top: 95px;
}
.free_audit{
    display: none;
}
.sc__title{
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; 
    letter-spacing: -0.96px;
    font-family: var(--ubuntu);
    margin-bottom: 10px;
}
.sc__sub-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 56.563px; 
    letter-spacing: -0.56px;
    text-transform: uppercase;
    font-family: var(--ubuntu);
}
.sc__text{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; 
    letter-spacing: 0.32px;
    font-family: var(--ubuntu);
}
.sc__right {
    position: relative;
}
.sc__al1{
    position: relative;
    top: 7px;
}
.sc__5r{
    position: absolute;
    top:0;
    right:-135px;
    z-index: -1;
}
.sc__opt-grid{
    display: flex;
    gap:0 20px;
}
.sc__opt-title{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
    font-family: var(--ubuntu);
    margin-bottom: 10px;
}
.sc__opt-sub {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-family: var(--ubuntu);
}
.sc__opt-img img {
    min-width: 80px;
}
.sc__cour{
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    font-family: var(--ubuntu);
    margin:20px 0;
}
.sc__numbers-wrapper {
    display: flex;
    align-items: flex-start;
    gap:0 25px;
    position: relative;
    padding-top: 30px;
}
.sc__numbers-wrapper::before {
    content: '';
    right:0;
    top:0;
    position: absolute;
    border-top: 1px dashed #fff;
    width:100px;
    z-index: 1;
}
.sc__numbers-wrapper::after {
    content: '';
    right:0;
    top:0;
    position: absolute;
    border-right: 1px dashed #fff;
    width:1px;
    height: 100px;
    z-index: 1;

}
.sc__numbers-wrapper:not(:last-child){
    margin-bottom: 30px;
}
.sc__numbers-number {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 17.124px; 
    text-transform: uppercase;
    font-family: var(--oswald);
    padding:15px 15px;
    background: #CF0032;
}
.sc__numbers-title {
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.54px;
    margin-bottom: 5px;
}
.sc__numbers-sub {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: #BBB;
}
.sc__numbers-text {
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    margin-top:20px;
}
.sc__place-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    color: #E1E1E1;
}
.sc__place-wrapper {
    border-radius: 8px;
    background: #CF0032;
    padding:15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 20px;
}
.sc__place-name {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 180% */
    letter-spacing: 0.4px;
}
.sc__place-text{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.28px;
}
.sc__author-title {
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.526px;
    text-transform: uppercase;
    margin-bottom: 60px;
    width: 100%;
}
.sc__author-title span {
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.166px;
    display: block;
}
.sc__work-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: auto;
    justify-content: flex-end;
    padding-bottom: 30px;
}
.sc__work-grid {
    display: flex;
    gap:0 20px;
}
.sc__work-grid:not(:last-child){
    margin-bottom: 20px;
}
.sc__work-date {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 17.124px; /* 95.135% */
    letter-spacing: -0.36px;
    text-transform: uppercase;
    color: #CF0032;
    min-width: 90px;
}
.sc__work-text{
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%
}
.r5__title{
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.08px;
}
.r5__title span {
    color: #CF0032;
}
.r5__sub-title{
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.54px;
}
.sc__h-row .h-grid:first-child {
    padding-left:15px;
    justify-content: flex-start;
    align-items: flex-start;
}
.sc__logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sc__logo {
    height: 215px;
    display: flex;
    align-items: center;
    width:calc(100%/4);
    justify-content: center;
    border-right: 1px solid #333;
    border-top: 1px solid #333;
}
.sc__logo:nth-child(4) {
    border-right:0;
}
.sc__logo:last-child {
    border-right:0;
}
.sc__price-grid{
    border-radius: 8px;
    background: #242424;
    box-shadow: 0px 0px 70px -9px rgba(0, 0, 0, 0.35);
    padding:25px 25px
}
.sc__price-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}
.sc__price-title > div {
    color: #00FEBE;
}
.sc__price-text{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sc__price-text span {
    border-radius: 2px;
    background: #CF0032;
    font-size: 14px;
    padding:3px 5px;
}
.school__form .contact-form-left {
    max-width: 315px;
}
.school__form .form-breaf {
    border-bottom: 0;
    padding-bottom: 0;
}
.school__form .form-subtitle {
    margin-bottom: 15px;
    letter-spacing: 3.36px;
    text-transform: uppercase;
}
.school__hero,
.school_author {
    position: relative;
}
.school__hero::before {
    content: '';
    position: absolute;
    width:100%;
    height: 35px;
    box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.75);
    bottom:23px;
    left:0;
    transform: rotate(-5deg);
    z-index: 10;
    background: #CF0032;
}
.school_author:before {
    content: '';
    position: absolute;
    width:100%;
    height: 35px;
    box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 26px 0px rgba(0,0,0,0.75);
    top:135px;
    left:0;
    transform: rotate(5deg);
    z-index: 10;
    background: #CF0032;
    z-index: 1;
}
.sc__author-img{
    position: relative;
    z-index: 2;
}
.sc__author-title-mob{
    display: none;
}
.row__hero-mob {
    display: none;
}
.sc__al-name {
    font-size: 14px;
    font-weight: 300;
    line-height: 23.724px; 
    text-transform: uppercase;
    font-family: var(--oswald);
    color:#000;
    padding: 5px 15px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    right:0;
    top: 235px;
    z-index: 11;
}
.sc__al-name:before {
    content:'';
    background-image: url("data:image/svg+xml,%0A%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7L10.2631 0.25H0.73686L5.5 7Z' fill='%23E8E8E8'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    width:11px;
    height: 9px;
    position: absolute;
    bottom: -8px;
}

.fancybox__container{
    z-index: 999999999999;
}

.contact-row .col-lg-6.col-sm-12.p-0 > img {
    max-width: 430px;
}

.contact-row .col-lg-6.col-sm-12.p-0:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-row {
    align-items: initial;
    padding: 35px 0;
}

@media screen and (max-width: 1400px) {
    .full-scroll {
        left: 50px;
    }
}

@media screen and (max-width: 1336px) {
    section.why-buy-landing {
        margin-top: 50px;
    }
    .sc__5r {
        right:0;
    }

}

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

    .am--left-img img {
        min-width: inherit;
    }
    .school__form .contact-form-right {
        padding-left:30px;
        padding-top:30px;
    }
    .sc__price-title {
        font-size: 24px;
    }
    .sc__author-title {
        position: relative;
        z-index: 1;
    }
    .sc__5r {
        right:0;
    }
    .sc__title {
        font-size: 26px;
        line-height: 32px;
    }
    .sc__sub-title {
        font-size: 19px;
    }
    .p-cats-grid {
        font-size: 11px;
    }

    .p-col {
        padding: 20px;
    }

    .f-r-col {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-group .btn {
        font-size: 15px;
    }

    .form-control {
        padding: 14px 15px;
    }

    .btn-table {
        font-size: 18px;
    }

    .counter {
        margin-top: 0;
    }

    .h-title {
        font-size: 30px;
    }

    .h-title sup {
        font-size: 16px;
    }

    .cell-red-right img {
        position: relative;
        z-index: 3;
    }

    .step-3 {
        flex-wrap: wrap;
        gap: 25px 25px;
    }

    .hero-row,
    .price-titles {
        overflow: hidden;
    }
    .sc__opt-title {
        font-size: 20px;
    }
    .sc__opt-sub {
        font-size: 12px;
    }
    
}
@media screen and (max-width: 992px) {
    .am--left-img {
        margin-left: inherit;
    }
    .listing--grid {
        gap:15px
    }
    .registr__grid .im-grid  {
        gap:15px
    }
    .registr__grid .im-grid img {
        max-width: 40px;
    }
    .listing--grid .nm-number{
        font-size: 80px;
        min-width: 100px;
    }
    .logo a {
            width: 100px;
    } 
    .row__hero-desc .buttons {
        display: none;
    }
    .row__hero-mob{
        display: block;
        margin-top:50px;
    }
    .school_author:before {
        height: 15px;
        top: 60px;
    }
    .sc__author-img-bottom {
        margin-top:30px;
    }
    .sc__author-title-desc {
        display: none;
    }
    .sc__author-title-mob {
        display: block;
        text-align: left;
        margin-top:30px;
        margin-bottom: 0;
    }
    .sc__author-img{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
        gap: 0 20px;
    }
    .school__form .form-breaf .step-4 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .school__form .contact-form-left {
        max-width: 100%;
    }

    .sc__row-price {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .sc__row-price .col-4 {
        min-width: 65%;
    }

    .sc__logo {
        width: calc(100% / 2);
    }
    .sc__logo:nth-child(4) {
        border-right: 1px solid #333;
    }
    .sc__logo:nth-child(even) {
        border-right: 0;
    }

    .sc__h-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 15px 0;
    }
    .sc__h-row .h-grid {
        min-width: 65%;
    }

    .row__opt{
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .row__opt .col-4 {
        min-width: 65%;
    }

   .row__hero-desc .sc__text {
        display: none;
    }
    
    .r5__title {
        font-size: 42px;
    }
    
    .price-item span,
    .price-item {
        font-size: 8px;
    }
    .price-item:has(span) {
        line-height: 13px;
        font-size: 9px;
    }
    .row-item {
        font-size: 13px;
    }
    .row-item a {
        font-size: 13px;
    }
    .sc__sub-title {
        line-height: 27.563px;
    }
    .sc__buttons {
        margin-top:1.5rem;
    }
   

}

@media screen and (max-width: 1024px) {
    .p-l-text {
        font-size: 22px;
        line-height: 31px;
    }

    .p-r-text {
        font-size: 15px;
        margin-top: 15px;
        line-height: 140%;
    }

    .p-r-bottom {
        margin-top: 15px;
    }

    .p-r-partner {
        font-size: 49px;
        line-height: 48px;
    }

    .p-l-title {
        font-size: 155px;
        line-height: 203px;
    }

    .p-l-title:before {
        font-size: 151px;
        line-height: 194px;
    }

    .hero-title {
        font-size: 43px;
        line-height: 44px;
    }

    .tabs__caption li {
        font-size: 30px;
        line-height: 1;
    }

    .tabs__caption {
        margin-bottom: 20px;
    }

    .price-title {
        font-size: 38px;
        line-height: 40px;
    }

    .price-sb-title {
        font-size: 25px;
        line-height: 30px;
    }

    .mp-col {
        padding-left: 65px;
    }

    .p-button-next,
    .s-swiper-next,
    .s2-swiper-next,
    .s3-swiper-next,
    .ab-next{
        right: 5px;
    }

    .p-button-prev,
    .s-swiper-prev,
    .s2-swiper-prev,
    .s3-swiper-prev,
    .ab-prev {
        left: 5px;
    }

    .cell {
        padding: 15px 15px;
    }

    .our-works-next,
    .our-works-yt-next,
    .our-works-tt-next,
    .our-works-pan-next {
        right: -35px;
    }

    .our-works-prev,
    .our-works-yt-prev,
    .our-works-tt-prev,
    .our-works-pan-prev {
        left: -35px;
    }

    .about-video-prod-box {
        padding-left: 23px;
    }

    section.about-video-production {
        padding: 95px 0;
    }

    .about-video-prod-box:before {
        width: 423px;
        height: 330px;
    }


    .about-video-prod-box-txt h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-video-prod-box-txt p {
        line-height: 160%;
        font-size: 16px;
    }

    .perspectives-right img {
        min-width: 480px;
    }

    .perspectives-links {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-title h2 {
        font-size: 96px;
    }

    .faq-title p {
        line-height: 140%;
        font-size: 15px;
    }

    .faq-title {
        max-width: 230px;
    }

    ul.accordion-list li {
        padding: 15px 0;
    }

    ul.accordion-list li h3 {
        font-size: 20px;
    }

    .work-button-next {
        right: 5px;
    }

    .work-button-prev {
        left: 5px;
    }
}

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

    .success-title {
        font-size: 80px;
    }

    .btn-top{
        display: none;
    }
    header {
        /*height: auto;*/
        backdrop-filter: none;
    }

    .v-grid {
        margin-bottom: 30px;
    }

    .v-grid:before {
        display: none;
    }

    .contact-grid {
        /* padding-top: 30px; */
        margin-bottom: 30px;
    }

    .contact-form-left {
        max-width: 100%;
    }

    .contact-form-left {
        margin-bottom: 30px;
    }

    .menu ul {
        gap: 0 15px;
    }

    .p-logo img {
        max-width: 70px;
    }

    .p-cats-grid {
        font-size: 9px;
    }

    .p-col {
        padding: 15px;
    }

    .form-group .btn {
        font-size: 11px;
    }

    .ptb-4 {
        padding-top: 2em;
        padding-bottom: 2em;
    }

    .p-l-title,
    .p-l-title:before {
        font-size: 120px;
        line-height: normal;
    }

    .p-slide {
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .p-r-partner {
        font-size: 40px;
        line-height: normal;
    }

    .p-r-text {
        font-weight: 300;
        font-size: 14px;
        line-height: 145%;
        margin-top: 15px;
    }

    .mr-10 {
        margin-right: 0;
    }

    .team {
        margin-top: 2em;
    }

    .cell {
        padding: 15px;
        font-size: 14px;
    }

    .price-top-title {
        font-size: 18px;
    }

    .cell-red-right img {
        max-width: 75px;
    }

    .mp-col {
        padding-left: 40px;

    }

    .btn-table {
        font-size: 15px;
    }

    .tabs__caption li {
        font-size: 20px;
    }

    .tabs__caption {
        margin-bottom: 15px;
    }

    .full-scroll {
        left: 10px;
    }

    .exp-grid {
        width: calc(100%/2);
    }

    .col-veews {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .row {}

    section.about-video-production .col-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-video-prod-box-txt {
        margin-top: 55px;
    }

    .about-video-prod-box {
        margin: 0 auto;
        max-width: max-content;
    }

    .about-video-prod-box-txt h2 {
        text-align: center;
    }

    .col-md-4.wh-will-box {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .wh-will-numb p {
        width: 93px;
    }

    section.what-whill {
        padding: 40px 0 20px;
    }

    section.about-video-production {
        padding: 75px 0 55px;
    }

    .f-l-col.contact-form-left {
        margin: 0;
        height: 100%;
        padding: 30px 25px;
    }

    .contact-form-cat .contact-form-right {
        padding: 30px 0;
    }

    .form-subtitle {
        margin-bottom: 10px;
    }

    .percpectives-row {
        flex-wrap: wrap;
    }

    .perspectives-left {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .perspectives-right {
        max-width: 100%;
    }

    .faq-row {
        flex-wrap: wrap;
    }

    .faq-title {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .faq-box {
        width: 100%;
        max-width: 100%;
    }

    .faq-title p {
        max-width: 100%;
    }

    .landing-page .ab-top-left {
        margin-bottom: 25px;
    }

    .landing-page-link-main-block {
        margin-top: 20px;
    }

    .gg-ads-top-right {
        padding-left: 20px;
    }

    .landing-right-txt:last-child {
        margin: 0;
    }

    .why-buy-landing-left-title {
        font-size: 18px;
        line-height: 22px;
    }

    .why-buy-landing-row {
        padding: 20px;
    }

    .why-buy-landing-middle {
        max-width: 190px;
        margin-top: 5px;
        margin-right: 5px;
    }

    .why-buy-landing-left {
        max-width: 300px;
    }

    .why-buy-landing-left-link {
        font-size: 18px;
        line-height: 24px;
    }

    section.faq-all {
        padding: 30px 0 30px;
        margin: 40px 0 0px;
    }

    .faq-title h2 {
        font-size: 76px;
        margin-bottom: 5px;
    }
    .school__hero::before {
        height: 15px;
        bottom: inherit;
        top: 265px;
    }
}

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

    .btn-accept, .btn-accept-white {
        max-width: 48%;
        min-width: auto;
        height: 30px;
    }
    .cookie-accept {
        flex-wrap: wrap;
        gap: 10px;
    }
    .cookie-cointainer {
        display: flex;
        flex-wrap: wrap;
    }
    .cookie-wrap-cont {
        border: 0;
    }
    .cookie-accept {
        padding: 7px 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        max-width: 100%;
    }
    .cookie-accordion .acc-container {
        padding: 0 15px;
    }
    .right{
        padding: 0 15px;
    }
    
   
    header {
        height: auto;
    }

    .team-name,
    .team-spec {
        visibility: visible;
        opacity: 1;
    }
    .team-name {
        font-size: 14px;
    }
    .team-spec {
        font-size: 9px;
    }

    .ab-next,
    .ab-prev {
        display: none !important;
    }

    .menu-desctop {
        display: none;
    }

    .middle-top-row {
        padding: 15px 0;
        position: fixed;
        top: 0;
        z-index: 10;
        width: 100%;
        background: #24272C;
        display: block;
        left: 0;
        box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #24272C;
    }

    .cont-middle-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu_container {
        display: block;
    }

    .burger-menu {
        width: 29px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        cursor: pointer;
        padding-left: 8px;
        margin-right: 12px;
    }

    .burger-menu img {
        width: 21px;
        height: 19px;
    }

    .logo img {
        max-width: 150px;
    }

    .middle-top-row-right {
        display: flex;
        align-items: center;
    }

    .mobile_menu_overlay,
    .mobile_menu_container {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        display: block;
    }

    .mobile_menu_overlay {
        display: none;
        cursor: pointer;
        z-index: 98;
        background: rgba(0, 0, 0, 0.5);
    }

    .mobile_menu_container {
        transform: translateX(-100%);
        width: 100%;
        overflow-x: hidden;
        z-index: 99;
        background: #CF0032;
    }

    .mobile_menu_container,
    .mobile_menu_container .mobile_menu_content ul li ul {
        transition: all 350ms ease 0s;
    }

    .mobile_menu_container.loaded {
        transform: translateX(0px);
    }

    .mobile_menu_container-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 15px;
        box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px;
        position: relative;
        z-index: 99999;
        border-bottom: 1px solid #24272C;
        background: #24272C;
    }

    .mobile_menu_container-title-left {
        display: flex;
        align-items: center;
    }

    a.close-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-menu img {
        width: 19.5px;
    }

    .mobile_menu_container .mobile_menu_content {
        max-height: 100%;
        padding: 15px 0;
        display: flex;
        flex-direction: column;
        height: 91%;
    }
    .menu,
   
    .social   {
        padding-left:15px;
        padding-right:15px;
    }
    .lang_row_mobile {
        background: #222429; 
        padding-top:25px;
        padding-bottom:25px;
        padding-left:15px;
        padding-right:15px;
        border-top:1px solid #fff;
        border-bottom:1px solid #fff;
        margin-top: auto;
    }
    .land_mobile {
        display: flex;
        align-items: center;
        gap:0 25px;
    }
    .land_mobile a {
        font-family: var(--oswald);
        font-size: 21.692px;
        font-style: normal;
        font-weight: 300;
        line-height: 31.815px; 
        text-transform: uppercase;
        border-radius: 4.821px;
        border: 1.205px solid #F1F1F1;
        display: flex;
        align-items: center;
        width:calc(100%/3);
        padding:5px 0;
        justify-content: center;
    }
    .land_mobile a.active {
        background:#fff;
        color:#000;
    }
    .button_call_mobile{
        margin-top:10px;
    }
    .button_call_mobile a {
        max-width: 100%;
    }

    .menu ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .menu li {
        margin-bottom: 20px;
    }

    .menu li a {
        color: #FFF;
        font-family: var(--oswald);
        font-size: 24px;
        font-style: normal;
        font-weight: 300;
        line-height: 64px; /* 266.667% */
        letter-spacing: 2.4px;
        text-transform: uppercase;
        transition: all 0.4s ease-in-out 0s;
        position: relative;
    }

    .menu li a:before {
        position: static;
        margin-right: 10px;
        display:none
    }

    header>div,
    .header-top {
        height: auto;
    }

    .social {
        gap: 0 20px;
        margin-top: 20px;
        justify-content: space-between;
    }

    .social a {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .4s all ease-out;
        width: 30px;
    }

    .right-hero {
        
    }

    .around-black {
        display: none;
    }

    .tabs__caption {
        margin-top: 0;
    }

    .f-l-col:before {
        display: none;
    }

    .f-l-col {
        padding: 30px 15px;
    }

    .f-l-title {
        margin-bottom: 20px;
    }

    .p-l-title:before {
        left: inherit;
    }

    .p-l-title {
        justify-content: center;
    }

    .p-l-text {
        margin-top: 15px;
        text-align: center;
    }

    .p-l-slide:before {
        left: -880%;
        width: 990%;
    }

    .counter {
        margin-bottom: 25px;
    }

    .p-pagination {
        margin-top: 2em;
    }

    .team {
        margin-top: 5em;
    }

    .cell {
        padding: 15px 10px;
        font-size: 12px;
        width: calc(100%/3);
    }

    .cell-red-right:before,
    .cell-red-right:after {
        display: none;
    }

    .price-top-title {
        font-size: 15px;
    }

    .mp-col {
        padding-left: 40px;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .step-nav {
        margin-top: 30px;
        padding-bottom: 20px;
    }

    .f-r-col {
        padding-bottom: 20px;
    }

    .p-button-prev {
        left: 0;
    }

    .p-button-next {
        right: 0;
    }

    .price-title {
        font-size: 28px;
        line-height: normal;
    }

    .hero-title {
        font-size: 30px;
        line-height: 34px;
    }

    .hero-sub_title {
        font-size: 15px;
        line-height: 169%;
    }

    .h-title {
        font-size: 27px;
        line-height: 26px;
    }

    .h-left {
        width: 70px;
        height: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    .h-left .icon svg {
        width: 70px;
        height: 70px;
    }

    .h-grid {
        padding-left: 89px;
        align-items: flex-start;
    }

    .h-right {
        max-width: 210px;
    }

    .f-l-title {
        font-size: 17px;
        line-height: 116%;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .f-l-text {
        font-size: 14px;
        line-height: 20px;
    }

    .mp-col {
        padding-left: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .f-l-sb-title {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-options {
        padding: 20px 0;
    }

    .not-found-row {
        flex-direction: column-reverse;
        padding: 50px 0 60px;
    }

    .not-found-row>div {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .copyright {
        font-size: 16px;
        line-height: 1;
    }

    .xl-txt-not-f {
        font-size: 49px;
    }

    .not-found-main-img {
        justify-content: center;
        margin-bottom: 35px;
    }

    .full-scroll {
        display: none !important;
    }

    .gdpr-main-content-row-left {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 35px;
    }

    .gdpr-main-content-row-right {
        width: 100%;
        max-width: 100%;
    }

    .gdpr-main-content-row {
        flex-wrap: wrap;
    }

    .gdpr-main-title-txt p {
        font-size: 23px;
    }

    .gdpr-main-title {
        padding: 15px 0;
        margin-bottom: 30px;
    }
 

}

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

  
    .free_audit{
        display: flex;
        position: fixed;
        z-index: 99999;
        bottom:0;
        left:0;
        width:100%;
        background: linear-gradient(180deg, rgba(33, 35, 40, 0.00) 0%, #212328 100%);
        padding:25px 15px;
    }
    .free_audit a {
        width:100%;
        font-size:26px;
        padding:15px 10px;
        justify-content: center;
        letter-spacing: 2px;
    }

    .id_291 .free_audit,
    .id_290 .free_audit,
    .id_292 .free_audit {
        display: none;
    }
  
    .land-right{
        margin-top:30px;
    }
    footer {
        position: static;
        height: auto;
        padding-bottom: 150px;
    }
    .row-form {
        margin: 0;
    }

    .contact-form-cat .contact-form-right {
        padding: 30px 10px;
    }

    .ab-top-left {
        padding-left: 10px;
        padding-right: 10px;
    }

    .full-scroll {
        display: none !important;
    }

    .counter {
        margin-left: 0;
    }

    .contact-all-social>div {
        flex-wrap: wrap;
        gap: 30px 30px;
    }

    .social-flex {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .contact-phone a {
        font-size: 50px;

    }

    .contact-phone {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .work-button-prev,
    .work-button-next {
        display: none !important;
    }

    .p-cats {
        gap: 5px 5px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .p-top {
        align-items: flex-start;
    }

    .all-grid {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .prod-grid-inner {
        max-width: 80%;
        flex: 0 0 80%;
    }

    .proc-row {
        margin-top: 40px;
    }

    header {
        height: auto;
    }

    .product-row-img img {
        max-width: 170px;
    }

    .product-row-img {
        margin-bottom: 35px;
    }

    .right-hero {
        
    }

    .h-right {
        max-width: none;
    }

    .step-nav li {
        margin-bottom: 15px;
        margin-right: 0px;

    }
    .step-nav li a {
        gap:0 10px;
    }

    .step-nav li:last-child {
        margin-bottom: 0;
    }

    textarea.form-control {
        height: 95px;
    }

    .around {
        display: none;
    }

    .mp-col {
        padding-left: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 15px;
    }

    .mp-address {
        font-size: 21px;
        line-height: 40px;
        margin-top: 30px;
    }

    .mp-social {
        margin-top: 40px;
    }

    .mp-copy {
        margin-top: 50px;
    }

    .cell {
        min-width: 150px;
    }

    .table.d-flex {
        overflow-x: auto;
    }

    .cell:first-child {
        min-width: 150px;
        border-left: 0;
        margin-left: 150px;
    }

    .prices-col:nth-child(even) {
        background: transparent;
        box-shadow: none;
    }

    .not-found-list {
        flex-wrap: wrap;
    }

    .not-found-list li:not(:last-child) {
        margin-right: 25px;
        margin-bottom: 15px;
    }


    .gg-ads-top-right.ptb-4 {
        padding-left: 20px;
    }

    .contact-form-cat .contact-form-right {
        padding: 30px 10px;
    }

    .footer-row {
        flex-wrap: wrap;
    }

    .footer-row>div {
        max-width: 100%;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 25%;
        flex: 0 0 100%;
    }

    .footer-logo {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        max-width: max-content;
        margin: 0 auto;
    }

    .copyright {
        text-align: center;
    }

    .p-image img {
        max-width: 150px;
    }

    .p-sb-title {
        min-height: 65px;
    }

    .about-video-prod-box:before {
        width: 95%;
        height: 280px;
    }

    .about-video-prod-box-txt h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .our-works-next,
    .our-works-yt-next,
    .our-works-tt-next,
    .our-works-pan-next {
        display: none;
    }

    .our-works-prev,
    .our-works-yt-prev,
    .our-works-tt-prev,
    .our-works-pan-prev {
        display: none;
    }

    .our-works-main-title {
        margin-bottom: 20px;
    }

    section.our-works {
        padding: 25px 0 0;
    }

    .wh-will-numb p {
        font-size: 60px;
        width: 63px;
        line-height: 52px;
    }

    .wh-will-numb {
        margin-right: 11px;
    }

    .what-whill-titles {
        margin-bottom: 30px;
    }

    .video-production-main-content {
        padding: 35px 15px 35px;
    }

    .video-production-main-title {
        font-size: 34px;
        line-height: 1;
    }

    .video-production-main-txt {
        line-height: 160%;
        font-size: 15px;
    }

    body.page {
        margin-top: 78px;
    }

    .about-video-prod-box-txt p {
        line-height: 160%;
        font-size: 14px;
    }

    .landing-page-link-main-block {
        font-size: 18px;
        padding: 10px 15px;
    }

    .gg-ads-title {
        font-size: 39px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .purpose-box {
        margin-bottom: 15px;
    }

    section.purpose-of-creating {
        padding: 30px 0 30px;
    }

    section.what-is-for-land {
        padding: 30px 0 30px;
    }

    .what-land-title p {
        font-size: 31px;
        line-height: 1;
    }

    .what-is-for-lend-left-txt {
        margin-bottom: 15px;
    }

    .why-buy-landing-row {
        flex-wrap: wrap;
    }

    .why-buy-landing-middle {
        max-width: 160px;
    }

    .why-buy-landing-right {
        max-width: 165px;
    }

    .why-buy-landing-left {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .perspectives-right img {
        min-width: 100%;
    }

    .perspectives-about {
        margin-bottom: 15px;
    }
    .sc__text {
        line-height: 160%;
    }
   
    .cookie-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cookie-more {
        flex-wrap: wrap;
        padding: 0 15px;
    }
    
    .acc-container {
        padding: 0 15px;
    }
    
    .cookie-wrap {
        padding: 20px 15px;
    }
    
    .cookie-accordion h3 {
        padding-bottom: 0;
    }
    
    .acc-head p::after {
        display: none;
    }

    .prices-col::after{
        display: none;
    }
}

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

    .amazon--num-wrapper:after {
        content:'';
        position: absolute;
        right:-15px;
        top:0;
        width: 120px;
        height: 100%;
        background: linear-gradient(90deg, rgba(32, 33, 38, 0.00) 0%, #202126 100%);
        
    }
    .amazon--num-wrapper {
        position: relative;
    }

    #mse2_results .p-sb-title {
        font-size: 13px;
    }
    
    .sc__logo {
        padding:0 20px;
        height:150px;
    }
    .sc__work-text {
        font-size: 14px;
    }
    .school_author:before {
        top: 40px;
    }
    .sc__author-img-bottom .f-l-sb-title{
        font-size: 10px;
    }
    .sc__author-title {
        font-size: 20px;
    }
    .sc__author-title span {
        font-size: 38px;
    }
    .sc__cour {
        font-size: 32px;
    }
    .sc__place-wrapper {
        padding: 15px 20px;
    }
    .sc__opt-img img {
        min-width: 50px;
    }
    .sc__opt-title {
        font-size: 15px;
    }
    .sc__case .case-m-text {
        margin-top: 15px;
        
    }
    .sc__case .case-m-title {
        font-size: 20px;
    }
    
    .row__hero-mob .buttons .btn {
        font-size: 16px;
    } 
    .sc__title {
        font-size: 19px;
        line-height: 28px;
    }
    .sc__sub-title {
        font-size: 14px;
        line-height: 20px;
    }
    .copyright {
        margin-top:20px;
    }
    .why-buy-landing-right {
        max-width: 100%;
    }
    .landing-page-link-main-block {
        font-size: 16px;
    }
    .service-cat-title p {
        font-size: 30px;
    } 
    .registr__grid-title {
        margin-bottom: 30px;
    }
    .registr__grid .im-grid img{
        max-width: 100%;
    }
    .registr__grid{
        margin-bottom: 30px;
        display: block;
    }
    .registr__grid-title br {
        display: none;
    }
    .listing--grid .nm-number {
        height: 85px;
        min-width: 150px;
        font-size: 120px;
    }
    .listing--grid {
        margin-bottom: 30px;
    }
    .row-numbers-amazon{
        flex-wrap: nowrap !important;
        overflow-x: scroll !important;
        justify-content: flex-start !important;
    }
    .am--left-img:before{
            width: 245%;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
    }
    .analit--grid ul {
        margin-bottom: 30px;
    }
    .am--right-img:after {
            width: 245%;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
    }
}

@media screen and (max-width: 360px) {
    .about-video-prod-box:before {
        height: 240px;
    }
}