/*
 Theme Name:   PWPlay
 Description:  template PWPlay
 Author: Valery
 Author URI: https://pwplay.tech/
 Template:     twentytwentyone
 Version:      1.0
 Text Domain:  pwplay
*/
:root {
    --bs-font-sans-serif: "Geologica", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --global--font-primary: "Blauer Neue", var(--bs-font-sans-serif);
    --global--font-secondary: var(--bs-font-sans-serif);
    --bs-heading-color: #000;
}
html{
    font-size: 15px;
}
body{
    font-size: 1rem;
}
a{
    color:#000;
    text-decoration: none;
    transition: all .3s ease;
}
a:hover{
    color:#FF0031;
}
a:active,
a:focus {
    outline: none;
}
::-moz-selection {
    background-color: #FF0031;
    color: #fff;
}
::selection {
    background-color: #FF0031;
    color: #fff;
}
body {
    font-family: var(--global--font-secondary);
    font-weight: 200;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--global--font-primary);
    font-weight: 800;
}
.font-primary {
    font-family: var(--global--font-primary);
}
strong, b {
    font-variation-settings: 'wght' 600;
}
button, input, textarea, select {
    font-family: inherit;
}
header#masthead{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding:0 20px;
    height:70px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 99;
    background:#000;
    border-bottom:1px solid rgba(255,255,255,0.6);
    transition: all .3s ease;
}
.site--logo{
    padding-right:20px;
    border-right:1px solid rgba(255,255,255,0.6);
    height:100%;
    display:inline-flex;
    align-items: center;
}
.mobile--menu_trigger {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    user-select: none;
    width: 50px;
    height: 23px;
}
.icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 1px;
    width: 50px;
    top: 11px;
    background-color: #fff;
}
.icon:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #fff;
    content: "";
    top: -11px;
}
.icon:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #fff;
    content: "";
    top: 11px;
}
.open .icon {
    transition-duration: 0.5s;
    background: transparent !important;
}
.open .icon:before {
    transform: rotateZ(45deg) translate(7px, 8px);
}
.open .icon:after {
    transform: rotateZ(-45deg) translate(7px, -8px);
}
header#masthead.menu--opened{
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,0.6);
}
header#masthead.menu--opened .site--logo{
    border-right:1px solid rgba(0,0,0,0.6)
}
header#masthead.menu--opened .icon,
header#masthead.menu--opened .icon:after,
header#masthead.menu--opened .icon:before{
    background-color: #000;
}
header#masthead.menu--opened .logo--path{
    fill:#000000!important;
}
.header--right{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap:20px;
    height: 100%;
}
.header--phone{
    display: inline-flex;
    align-items: center;
    height: 100%;
    transition: all .3s ease;
    padding-right:20px;
    border-right:1px solid rgba(255,255,255,0.6)
}
header#masthead.menu--opened .header--phone{
    border-right:1px solid rgba(0,0,0,0.6)
}
.header--phone a{
    font-weight: 500;
    color:#fff;
}
.header--phone a:hover{
    color:#FF0031;
}
header#masthead.menu--opened .header--phone a{
    opacity: 0;
}
.mobile-menu__dropdown ul:not(.sub-menu) li{
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    transition: opacity .8s ease,transform .8s cubic-bezier(0.19,1,0.22,1);
}
.mobile-menu__dropdown ul:not(.sub-menu) li:nth-child(1){
    transition-delay: 0.1s;
}
.mobile-menu__dropdown ul:not(.sub-menu) li:nth-child(2){
    transition-delay: 0.2s;
}
.mobile-menu__dropdown ul:not(.sub-menu) li:nth-child(3){
    transition-delay: 0.3s;
}
.mobile-menu__dropdown ul:not(.sub-menu) li:nth-child(4){
    transition-delay: 0.4s;
}
.mobile-menu__dropdown ul:not(.sub-menu) li:nth-child(5){
    transition-delay: 0.5s;
}
.mobile-menu__dropdown.active ul:not(.sub-menu) li{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.page--top{
    position:relative;
    min-height: calc(100vh - 70px);
    background-color: #000;
    display: flex;
    color:#fff;
    flex-direction: column;
    justify-content: center;
    width:100%;
    overflow: hidden;
}
.main--img{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    animation:
            subtle-move 5s ease-in-out infinite,
            hologram 5s ease-in-out infinite;
}
@keyframes subtle-move {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.01);
    }
}

@keyframes light-change {
    0%, 100% {
        filter: brightness(1) contrast(1);
    }
    50% {
        filter: brightness(1.05) contrast(1.05);
    }
}
@keyframes hologram {
    0%, 100% {
        opacity: 0.95;
        filter: brightness(1.1) contrast(1.1) hue-rotate(0deg);
    }
    20%, 60% {
        opacity: 0.98;
        filter: brightness(1.2) contrast(1.2) hue-rotate(2deg);
    }
    40%, 80% {
        opacity: 1;
        filter: brightness(1.3) contrast(1.3) hue-rotate(-2deg);
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0.5deg);
    }
    50% {
        transform: translateY(-20px) rotate(-0.5deg);
    }
}
@keyframes breath {
    0%, 100% {
        transform: scale(1);
        opacity: 0.95;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}
@keyframes space-move {
    0% {
        transform: scale(1) translateX(0) translateY(0);
        object-position: 0% 50%;
    }
    25% {
        object-position: 100% 30%;
    }
    50% {
        transform: scale(1.05) translateX(-5px) translateY(5px);
        object-position: 50% 80%;
    }
    75% {
        object-position: 0% 70%;
    }
    100% {
        transform: scale(1) translateX(0) translateY(0);
        object-position: 0% 50%;
    }
}
.page--top:after{
    content: '';
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transition: all .3s ease;
}
.top--content{
    position: relative;
    z-index: 2;
    width:70%;
    padding:0 20px;
}
.top--h1{
    color:#fff;
    font-size: 6rem;
    line-height: 1;
    text-transform: uppercase;
}
.button,
div.wpforms-container-full button[type=submit]{
    outline: none;
    -webkit-appearance: none;
    width:230px;
    height:54px;
    display: inline-flex;
    text-align: center;
    position: relative;
    border-radius:10px;
    border:1px solid transparent;
    align-items: center;
    letter-spacing: 2px;
    justify-content: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    user-select: none;
    transition: all .3s ease;
}
.button.small--btn{
    font-size: 14px;
    width:180px;
    height:44px;
}
.button.color1,
#load-more:hover{
    background-color: #fff;
    color:#000;
}
.button.color1:hover{
    background-color: #FF0031;
    color:#fff;
}
.button.color1:focus{
    background-color: #fff;
    color:#000;
}
.button.color2,
.button.color2:focus{
    background-color: transparent;
    color:#fff;
    border-color:#fff;
}
.button.color2:hover{
    border-color:#000;
    background-color: #000;
    color:#fff;
}
.button.color3,
.button.color3:focus,
div.wpforms-container-full button[type=submit]{
    background-color: #FF0031;
    color:#fff;
}
.button.color3:hover{
    background-color: #000;
    color:#fff;
}
div.wpforms-container-full button[type=submit].button.color3:hover,
.about--col .button.color3:hover,
.careers--col .button.color3:hover,
.ai-chat-form .button.color3:hover{
    background-color: #fff;
    color:#000;
}
.button.color4,
.button.color4:focus{
    background-color: #000;
    color:#fff;
}
.button.color4:hover{
    background-color: #fff;
    color:#000;
}
.button.color5,
.button.color5:focus{
    border-color:#000;
    background-color: transparent;
    color:#000;
}
.button.color5:hover{
    background-color: #000;
    color:#fff;
}
.top--buttons{
    gap:1.5rem;
    display: flex;
    flex-direction:row;
    margin-top:2rem;
}
footer{
    padding:6.7rem 3.3rem;
    position: relative;
    background: #fff;
}
.footer--row{
    display: flex;
    flex-direction: row;
    gap:2rem;
    justify-content: space-between;
}
.footer--bottom{
    position: relative;
    margin-top:3rem;
    padding-top:3rem;
    display: flex;
    flex-direction: row;
    gap:2rem;
    justify-content: space-between;
    align-items: center;
}
.footer--bottom:after{
    content:'';
    position: absolute;
    width:calc(100% + 6.6rem);
    left:-3.3rem;
    top:0;
    height: 1px;
    background: #e5e5e5;
}
.privacy{
    transition: all .3s ease;
    line-height: 1;
    border-bottom: 1px solid;
}
.privacy:hover{
    border-color: #FF0031;
}
.cookies-wrap.hide{
    display: none;
}
.cookies-wrap {
    position: fixed;
    bottom: 0px;
    z-index: 1001;
    left: 0;
    width: 100%;
    padding: 1rem 20px;
    font-size: 1rem;
    text-align: center;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #000;
    border-radius: 0px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    -webkit-transform: translateY(3000%);
    transform: translateY(3000%);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}
.cookies-wrap.open {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.cookies--text {
    padding-right: 20px;
    text-align: left;
}
.cookies-wrap a {
    flex-shrink: 0;
    border:1px solid transparent;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    color: #000;
    height: 44px;
    line-height: 42px;
    width: 180px;
    background: #fff;
}
.cookies-wrap a:hover{
    border:1px solid #fff;
    background:transparent;
    color:#fff;
}
.footerblock{
    display: flex;
    flex-direction: column;
    gap:24px;
    align-items: flex-start;
}
.footerblock img{
    height: 64px;
}
.footerblock p{
    font-size:1.4rem;
    margin:0;
    font-weight: 100;
}
.footer--col h6{
    font-size:1.2rem;
    margin:0 0 1rem 0;
}
.footer--col ul{
    display: block;
    list-style-type:none;
    margin: 0;
    padding: 0;
}
.footer-navigation-wrapper li{
    margin:0;
    display: flex;
    flex-direction: row;
    gap:10px;
    align-items: center;
    line-height: 1;
    color:#777
}
.footer-navigation-wrapper li+li{
    margin:1rem 0 0 0;
}
.footer-navigation-wrapper li a{
    line-height: 1;
    color:#777
}
.footer-navigation-wrapper li a:hover{
    color:#000;
}
.footer--col:first-child{
    max-width:36%;
}
.footer--col div+div{
    margin-top:2rem;
}
footer.top--border{
    border-top:1px solid #000;
}
.text-page-header{
    padding:0 3.3rem;
}
.header-content{
    padding-top:6.7rem;
    padding-bottom: 3.3rem;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: flex-start;
}
.header-content:after{
    content:'';
    position:absolute;
    top:0;
    height: 100%;
    width:1px;
    background: #000;
    left:50%;
}
.title-column,
.breadcrumbs-column{
    width:50%;
}
.breadcrumbs-column{
    padding-left:3.3rem;
}
.text-page-header{
    border-bottom:1px solid #000;
}
.page--text{
    padding:3.3rem;
    background: #000;
    color: #fff;
}
.page--text a{
    color:#FF0031;
    border-bottom:1px solid transparent;
}
.page--text a:hover{
    color:#fff;
    border-color: #fff;
}
ol, ul {
    padding-left: 1rem;
}
.breadcrumbs li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    margin: -8px 8px;
    background: url(assets/images/cr-arrow.svg) no-repeat center;
    background-size: contain;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.fade-combo {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.fade-combo.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-scroll {
    transition: opacity 0.2s ease;
}
.title-column h1 {
    font-size: calc(4rem + 1.5vw);
    line-height: 1;
    margin:0;
}
.title-column{
    padding-right: 3.3rem;
}
.breadcrumbs{
    display: block;
    list-style: none;
    padding:0;
    margin: 0;
}
.breadcrumbs li{
    display: inline-block;
    line-height: 26px;
    text-transform: uppercase;
    color:#777;
}
.error404{
    min-height: calc(100vh - 70px);
    padding:3.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #000;
    color:#fff;
    text-align: center;
}
.error--title{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error--title h1 {
    position: relative;
    z-index: 2;
    display: inline-block;
    animation: suckUp 4s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}
@keyframes suckUp {
    0% {
        transform: translateX(0) rotate(0);
    }
    5%, 15%, 25% {
        transform: translateX(-8px) rotate(-3deg);
    }
    10%, 20% {
        transform: translateX(8px) rotate(3deg);
    }
    30% {
        transform: translateX(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-125px) rotate(-10deg) scale(0.8);
        opacity: 0.8;
        filter: drop-shadow(0 0 5px cyan);
    }
    100% {
        transform: translateY(-250px) rotate(-10deg) scale(0.2);
        opacity: 0;
        filter: drop-shadow(0 0 15px cyan);
    }
}
.error--pic{
    position:relative;
    width:201px;
    height:320px;
    margin: 0 auto;
}
.error--pic img {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 201px;
    z-index: 10;
    animation: ufoGlow 2s infinite alternate,ufoSway 3s infinite ease-in-out;
}

@keyframes ufoGlowActive {
    0% { filter: drop-shadow(0 0 5px cyan); }
    100% { filter: drop-shadow(0 0 30px cyan); }
}
@keyframes ufoGlow {
    from { filter: drop-shadow(0 0 5px #00ffff); }
    to { filter: drop-shadow(0 0 15px #00ffff); }
}
@keyframes ufoSway {
    0%, 100% {
        transform: translateX(-50%) rotate(-3deg);
    }
    50% {
        transform: translateX(-50%) rotate(3deg);
    }
}
.ufo-beam {
    position: absolute;
    top: 117px;
    left: 108px;
    width: 0;
    height: 250px;
    background: linear-gradient(
            to bottom,
            rgba(0, 255, 255, 0.7),
            rgba(0, 255, 255, 0.3) 70%,
            transparent 100%
    );
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateX(-50%);
    z-index: 9;
    opacity: 0;
    animation:
            beamAppear 0.5s 2.2s forwards,
            beamWiden 2.7s forwards;
}
@keyframes beamWiden {
    0% {
        width: 0;
    }
    100% {
        width: 150px;
    }
}
@keyframes beamAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.8;
    }
}
.ufo-beam::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.8),
            transparent
    );
    animation: beamFlicker 1s infinite alternate;
    clip-path: inherit;
}

@keyframes beamFlicker {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}
.error--text{
    font-size: calc(4rem + 1.5vw);
    line-height: 1;
    margin:0;
    font-weight: 800;
    text-transform: uppercase;
}
.section--heading{
    padding:6.7rem 3.3rem 3.3rem 3.3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.about--section .section--heading{
    padding-right: 0;
    padding-left: 0;
}
.section--title{
    font-size: 4rem;
    text-transform: uppercase;
    margin:0;
}
.counter--wrp{
    border-top:1px solid #000;
    background: #000;
    display: grid;
    text-align: center;
    grid-template-columns: repeat(4, 1fr);
}
.counter--item{
    padding:3.3rem 2rem;
    position:relative;
    background: #fff;
    transition: all .3s ease;
}
.counter--item+.counter--item{
    border-left:1px solid #000;
}
.counter--item svg{
    transition: all .3s ease;
}
.counter--item:hover{
    transform: translate(-15px,-15px);
    border-color:#FF0031;
    background:#FF0031;
    color:#fff;
}
.counter--item:hover svg path{
    fill:#fff;
}
.counter-value,
.counter-suffix{
    font-weight: 400;
    font-size:3.5rem;
    line-height: 1;
}
.counter--title{
    margin-top:20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.counter--subtitle{
    margin-top:10px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.2rem;
}
.page--mainabout{
    background: #000;
}
.page--mainabout .section--title{
    color:#fff;
}
.small--btn{
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap:10px;
}
.section--heading .color2:hover{
    border-color: #FF0031;
    background-color: #FF0031;
    color: #fff;
}
.small--btn:hover img {
    transform: translateX(100px);
}
.small--btn img,
.small--btn span,
.mainabout--item img{
    transition: all .3s ease;
}
.small--btn:hover span {
    transform: translateX(10px);
}
.mainabout--row{
    border-top:1px solid rgba(255,255,255,0.6);
    border-bottom:1px solid rgba(255,255,255,0.6);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.mainabout--item{
    padding:3.3rem;
    display: flex;
    flex-direction: row;
    gap:20px;
    align-items: flex-start;
    color:#fff;
    background: #000;
    transition: all .3s ease;
}
.mainabout--item:hover{
    background:#FF0031
}
.mainabout--item:hover img{
    -webkit-filter: brightness(1000%);
    filter: brightness(1000%);
}
.mainabout--item p{
    font-size:1.2rem;
    font-weight: 200;
    margin: 0;
}
.mainabout--item+.mainabout--item{
    border-left:1px solid rgba(255,255,255,0.6)
}
.about--title{
    font-size:2rem;
    font-weight: 700;
    line-height: 1;
    margin:0 0 20px 0;
}
.error--title h1{
    color:#fff;
}

.page--lastworks{
    background: #000;
    color:#fff;
    padding-bottom: 6.7rem;
}
.page--lastworks .section--title{
    color:#fff;
}
.portfolio-slide-thumbnail{
    position:relative;
    overflow: hidden;
    //padding-top:55%;
}
/*.portfolio-slide-thumbnail img{
    z-index: 1;
    position:absolute;
    object-fit: cover;
    width:100%;
    height:100%;
    object-position: center;
}*/
.portfolio-slide-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:0 3.3rem;
    position:absolute;
    top:0;
    left:0;
    z-index: 2;
    width: 100%;
    height: 0;
    gap:20px;
    color:#fff;
    background-color:rgba(255,0,49,0.9);
    opacity:0;
    transform: translateY(-100%);
    transition: all .3s linear;
}
.portfolio-slide:hover .portfolio-slide-content{
    opacity:1;
    height: 100%;
    transform: translateY(0);
}
.swiper-slide{
    height: auto!important;
}
.portfolio-swiper-container{
    display: none;
    position: relative;
}
.portfolio-swiper-container.swiper-initialized{
    display: block;
}
html {
    scroll-behavior: smooth;
}
html.is-smooth-scroll {
    scroll-behavior: auto;
}
.portfolio-swiper-button-prev,
.portfolio-swiper-button-next{
    position: absolute;
    top:50%;
    z-index: 9;
    transform: translateY(-50%);
    width:50px;
    height:50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgba(0,0,0,0.8);
    transition: all .3s ease;
    opacity: 0;
}
.portfolio-swiper-container.swiper-initialized:hover .portfolio-swiper-button-prev,
.portfolio-swiper-container.swiper-initialized:hover .portfolio-swiper-button-next{
    opacity:1;
}
.portfolio-swiper-button-prev:hover,
.portfolio-swiper-button-next:hover{
    background-color:rgba(255,0,49,1);
}
.portfolio-swiper-button-prev{
    left:2rem;
}
.portfolio-swiper-button-next{
    right:2rem;
}
.swiper-pagination{
    display: none;
}
.portfolio-swiper-button-prev.swiper-button-lock,
.portfolio-swiper-button-next.swiper-button-lock{
    pointer-events: none;
    opacity: 0!important;
}
.portfolio-slide-title{
    font-weight: 700;
    line-height: 1;
    font-size:1.4rem;
}
.main--works{
    width: calc(100% - 20px);
    margin-left: 10px;
}
.swiper-slide img{
    -webkit-filter:grayscale(100%);
    filter:grayscale(100%);
}
.swiper-slide.swiper-slide-next img{
    -webkit-filter:grayscale(0);
    filter:grayscale(0);
}


.swiper-pagination-bullet{
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: #ffffff;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover{
    background:rgba(255,0,49,1);
    opacity:1;
}
.page--mainservices{
    color:#fff;
    background-color: #000;
}
.mainservices--inner{
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.page--mainservices .section--title{
    color:#fff;
}
.page--mainservices .section--heading{
    padding-top:0;
}
.mainservices--col+.mainservices--col{
    border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.mainservices--row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.mainservices--col:first-child .mainservices--row .mainservices--item:first-child{
    grid-column: span 2;
}
.mainservices--col:first-child .mainservices--row .mainservices--item:first-child{
    min-height: 50vh;
}
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(2),
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(3),
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(4),
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(5){
    min-height: 25vh;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(5){
    min-height: 50vh;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    grid-column: span 2;
}
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(2),
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(4){
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(1),
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(2),
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(3),
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(4){
    min-height: 25vh;
}
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(1),
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(3){
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(1),
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(2){
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.mainservices--flex{
    color:#fff;
    display: flex;
    flex-direction: column;
    height:100%;
    justify-content: space-between;
    padding:3.3rem;
}
.mainservices--flex:hover{
    transform: translate(-15px, -15px);
    background: #FF0031;
    color:#fff;
}
.mainservices--flex p{
    margin:1rem 0 0 0;
    font-size:1.1rem;
}
.mainservices--title{
    font-family: var(--global--font-primary);
    font-weight: 800;
    line-height: 1;
    font-size:1.5rem;
}
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(1) .mainservices--title,
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(5) .mainservices--title{
    font-size:2.5rem;
}
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(2) .mainservices--icon,
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(3) .mainservices--icon,
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(4) .mainservices--icon,
.mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(5) .mainservices--icon,
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(1) .mainservices--icon,
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(2) .mainservices--icon,
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(3) .mainservices--icon,
.mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(4) .mainservices--icon{
    text-align: right;
}
.page--contacts{
    color:#fff;
    background:#000;
    padding:3.3rem;
}
.page--row{
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: flex-start;
}
.page--col{
    width:50%;
}
.page--form .wpforms-field-label,
div.wpforms-container-full .wpforms-form label.wpforms-error, div.wpforms-container-full .wpforms-form em.wpforms-error{
    display: none!important;
}
.page--col:last-child{
    padding-left:3.3rem;
}
div.wpforms-container-full:not(:empty){
    margin:0;
}
.page--input input,
.page--textarea textarea{
    height: 54px;
    border-top: 0;
    border-left: 0;
    font-weight: 200;
    border-right: 0;
    display: flex;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color:#fff;
    border-bottom: 1px solid #c2c2c2;
    background: rgba(255,255,255,0.1);
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: none !important;
    -webkit-transition: background .3s, border .3s;
    -o-transition: background .3s, border .3s;
    transition: background .3s, border .3s;
}
.page--input input:focus,
.page--textarea textarea:focus{
    border-bottom: 1px solid #fff;
    background: rgba(255,255,255,0.3);
}
.page--input.wpforms-has-error input{
    border-bottom: 1px solid #ff0000;
}
.page--textarea textarea{
    min-height: 120px;
    padding-top: 15px;
}
.page--contacts h4{
    color:#fff;
    margin:0 0 2rem 0;
}
.breadcrumbs-column .button{
    margin-top:20px;
}
.contacts--row{
    display: flex;
    flex-direction: column;
    gap:1rem;
}
.contacts--line{
    display: flex;
    flex-direction: row;
    gap:10px;
    align-items: center;
}
.contacts--line a{
    color:#fff;
}
.contacts--line a:hover,
.contacts--info span{
    color:#FF0031
}
.contacts--row{
    margin-bottom: 2rem;
}
.contacts--info{
    line-height: 1.5;
}
.contacts--row,
.contacts--info{
    font-size: 1.2rem;
}
.wpforms-submit-container div,
.wpforms-submit-container span{
    display: none!important;
}
.header--text{
    margin-top:2rem;
    font-size: 1.2rem;
}
.about--image{
    height:100vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.about--image:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    height: 15vh;
    background: linear-gradient(to bottom, black, transparent);
}
.about--image:before {
    display: none;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, black, transparent);
}
@keyframes pan-image {
    0% {
        object-position: 0% 50%;
    }
    25% {
        object-position: 100% 30%;
    }
    50% {
        object-position: 50% 100%;
    }
    75% {
        object-position: 0% 70%;
    }
    100% {
        object-position: 0% 50%;
    }
}
.about--pic{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-position: center;
    object-fit: cover;
    animation: space-move 20s linear infinite;
    //animation: breath 8s ease-in-out infinite both;
    //animation: float 12s ease-in-out infinite;
    //animation: pan-image 30s linear infinite;
}
.about--section{
    color: #fff;
    background: #000;
    padding: 0 3.3rem 2rem 3.3rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.careers--section,
.services--section{
    color: #fff;
    background: #000;
    padding: 0;
    overflow: hidden;
}
.about--section .section--title,
.careers--section .section--title,
.services--section .section--title{
    color:#fff;
    width: 100%;
}
.about--section .section--title span,
.careers--section .section--title span,
.services--section .section--title span{
    color:#FF0031;
}

.about--text:after{
    content: "";
    position: absolute;
    top:0;
    left:-50vw;
    width:200vw;
    height:1px;
    background:rgba(255,255,255,0.6);
}
.about--text:before{
    content: "";
    position: absolute;
    top:1px;
    left:50%;
    width:1px;
    height:calc(100% + 2rem);
    background:rgba(255,255,255,0.6);
}
.about--text,
.careers--items{
    padding-top:3.3rem;
    display: flex;
    position: relative;
    flex-direction: row;
}
.careers--items{
    padding-top: 0;
    border-top: 1px solid rgba(255,255,255,0.6);
}
.careers--items:before{
    content: "";
    position: absolute;
    top:0px;
    left:50%;
    width:1px;
    height:100%;
    background:rgba(255,255,255,0.6);
}
.about--col,
.careers--item{
    width: 50%;
    font-size: 1.2rem;
}
.about--col .button{
    margin-top:1rem;
}
.about--col.first{
    padding-right: 3.3rem;
}
.about--col+.about--col{
    position: relative;
}
.about--col img{
    position: absolute;
    top: -3.3rem;
    right: -3.3rem;
    width: calc(100% + 3.3rem);
    height: calc(100% + 5.3rem);
    z-index: 0;
    object-position: center;
    object-fit: cover;
}
.contacts--info a{
    color:#fff;
}
.careers--item{
    color: #fff;
    display: flex;
    flex-direction: column;
    padding:3.3rem;
    gap:2rem;
}
.careers--item:hover {
    transform: translate(-15px, -15px);
    background: #FF0031;
    color: #fff;
}
.careers--title{
    color:#fff;
    margin: 0;
}
.navigation.pagination{
    padding: 30px 0 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.navigation.pagination .screen-reader-text{
    display: none!important;
}
.nav-links{
    display: inline-flex;
    gap: 1px;
    flex-direction: row;
}
.nav-links span,
.nav-links a{
    padding:0 20px;
    height: 50px;
    line-height: 50px;
    font-weight: 500;
    background: #fff;
    color:#000;
    transition: all .3s ease;
}
.nav-links .current,
.nav-links a:hover{
    background: #FF0031;
    color: #fff;
}
.title-column h1.smaller,
.hero-page-header h1{
    font-size: calc(2rem + 1.5vw);
}
.careers--top,
.careers--bottom{
    display: flex;
}
.careers--col{
    width:50%;
    padding:3.3rem;
    font-size:1.2rem;
}
.careers--col h4{
    color:#fff;
    margin:0 0 2rem 0;
}
.careers--bottom{
    border-top:1px solid rgba(255,255,255,0.6);
}
.careers--col:first-child{
    border-right:1px solid rgba(255,255,255,0.6);
}
button.mfp-close:focus,
button.mfp-close:hover {
    background-color: transparent;
    box-shadow: none;
}
.mfp-bg {
    background: rgba(0, 0, 0, 0.9);
}
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 1;
}
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
.white-popup-block {
    background: #fff;
    padding: 3.3rem;
    max-width:calc(100% - 4rem);
    margin: 0 auto;
    position: relative;
    border-radius: 0px;
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 2rem auto 0 auto;
}
#wpforms-223{
    width:100%;
    max-width:1000px;
    margin:0 auto;
}
#popup h3{
    text-align: center;
    margin:0 0 2rem 0;
}
#popup h3 span{
    color:#FF0031
}
#popup .page--input input,
#popup .page--textarea textarea{
    color:#000;
    background: rgba(0, 0, 0, 0.02);
}
#popup .page--input input:focus,
#popup .page--textarea textarea:focus{
    background: rgba(0, 0, 0, 0.07);
}
#popup .wpforms-submit-container{
    text-align: center;
}
.mfp-container {
    padding-left: 0;
    padding-right: 0;
}
.page--textarea.wpforms-has-error textarea {
    border-bottom: 1px solid #ff0000;
}
#popup div.wpforms-container-full button[type=submit]:hover {
    background-color: #000;
    color: #fff;
}
.wpforms-confirmation-container-full{
    text-align: center;
    font-size: 1.2rem;
}
.wpforms-confirmation-container-full p{
    margin:0;
}
.wpforms-submit-spinner{
    display: none!important;
}
.pagination-container {
    display: none;
}
.portfolio--items {
    margin: 0 auto;
    width: 100%;
}
.masonry--item {
    width: calc(25% - 20px);
    margin-bottom: 20px;
}
.masonry--item:nth-child(2n) .portfolio--thumbnail{
    //height:400px;
}
.masonry--item:nth-child(2n) .portfolio-thumb-horizontal{
    display: none;
}
.masonry--item:nth-child(2n) .portfolio-thumb-vertical{
    display: block;
}
/*.masonry--item:nth-child(2n) .portfolio--thumbnail .wp-post-image{
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    width: 100%!important;
    height: 100%!important;
    object-position: center;
}*/
.portfolio--archive{
    background:#000;
    color:#fff;
    padding:3.3rem 0 3.3rem 20px;
    position: relative;
    overflow: hidden;
}
.portfolio--thumbnail{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.portfolio--thumbnail:hover .portfolio-slide-content {
    opacity: 1;
    height: 100%;
    transform: translateY(0);
}
#load-more-container{
    text-align: center;
}
#load-more {
    margin-top:1rem;
    display: none;
    transition: opacity .3s ease,background .3s ease;
}
#load-more.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.portfolio--item img,
.portfolio--btn img{
    transition: all .3s ease;
}
.portfolio--item:hover .wp-post-image{
    -webkit-filter: blur(3px);
    filter: blur(3px);
}
.portfolio--item .portfolio-slide-content{
    padding:2rem;
    text-align: center;
    color:#fff;
    align-items: center;
    justify-content: center;
    gap:20px;
}
.portfolio--item .portfolio-slide-content h4{
    color:#fff;
    margin:0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.portfolio--btn{
    width:64px;
    height: 64px;
    background:#000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 64px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
}
.portfolio--btn:hover img{
    transform: rotate(45deg);
}
.hero-page-header{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    color:#fff;
    position:relative;
    overflow:hidden;
    min-height: 70vh;
    padding:3.3rem;
}
.hero-page-header h1{
    color:#fff;
    margin:0;
}
.hero-page-header .header-content{
    position: relative;
    z-index:2;
    flex-direction: column;
    gap:20px;
    align-items: center;
    padding:0;
}
.hero-page-header .header-content:after{
    display: none;
}
.hero-page-header img{
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
    max-width: 100% !important;
    width: 100%!important;
    height: 100%!important;
    object-position: center;
    animation: space-move 20s linear infinite;
}
.hero-page-header:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, black, transparent);
}
.hero-page-header .breadcrumbs li a{
    color:#fff;
}
.hero-page-header .breadcrumbs li {
    color: rgba(255,255,255,0.5);
}
.hero-page-header .breadcrumbs li:not(:last-child)::after {
    background: url(assets/images/cr-arrow2.svg) no-repeat center;
}
.portfolio--section{
    background:#fff;
    color:#000;
    border-top:1px solid #000;
}
.portfolio--top{
    display: flex;
    position: relative;
    flex-direction: row;
}
.portfolio--col{
    width:50%;
    font-size: 1.2rem;
    padding:3.3rem;
}
.portfolio--col+.portfolio--col{
    border-left:1px solid #000;
}
.portfolio--col h4,
.portfolio--col h2{
    margin: 0 0 2rem 0;
}
.portfolio--col h4 span{
    color:#FF0031
}
.portfolio--col .second{
    margin-top:2rem;
}
.back--url{
    display: inline-flex;
    position: relative;
    padding-left:30px;
    line-height: 26px;
    text-transform: uppercase;
    color:#fff;
    overflow:hidden;
}
.back--url:after{
    position: absolute;
    left:0;
    top:0;
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    margin: 0;
    background: url(assets/images/cr-arrow2.svg) no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
}
.back--url:hover:after {
    transform: rotate(180deg) translateX(100px);
}
.back--url:hover{
    padding-left:0;
}
.portfolio--section.invert{
    background:#000;
    color:#fff;
    border-top:0;
}
.portfolio--section.invert h4{
    color:#fff;
}
.portfolio--section.invert .portfolio--col:last-child{
    padding:0;
}
.portfolio--section.invert .portfolio--col+.portfolio--col {
    border-left: 1px solid rgba(255,255,255,0.6);
}
img.portfolio--img {
    cursor:grab;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-position: center;
    object-fit: cover;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.portfolioslider,
.portfolioslider2{
    display: none;
    position: relative;
}
.portfolioslider:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, black, transparent);
}
.portfolioslider.swiper-initialized{
    display: block;
    height:100%;
    min-height: 400px;
}
.portfolioslider2.swiper-initialized{
    display: block;
}
.swiper--wrp .swiper-pagination {
    display: block;
    bottom:20px;
}
.swiper--wrp{
    position: relative;
}
.second .portfolio--top{
    flex-direction: row-reverse;
}
.portfolio--section.invert.second .portfolio--col+.portfolio--col {
    border-left:0;
}
.portfolio--section.invert.second .portfolio--col:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.portfolio--section.second.invert{
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.portfolioslider2 .swiper-slide{
    text-align: center;
}
.portfolioslider2 .swiper-slide img{
    width:100%!important;
    height: auto!important;
    border-radius: 20px;
    transition: all .3s ease;
    display: inline-block;
}
.portfolioslider2 .swiper-slide:not(.swiper-slide-active) img{
    opacity: 0.5;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.portfolioslider2 .swiper-slide.swiper-slide-active img{
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.first .main--works {
    width: calc(100% - 100px);
    margin-left: 50px;
}
.first .swiper--wrp .swiper-pagination{
    bottom:-30px;
}
.section--title span{
    color:#FF0031
}
.ai-chat-window.hidden {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ai-chat-window.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.ai-chat-window.fullscreen {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    transition: none !important;
}
.ai-chat-window {
    border-top-left-radius: 20px;
    position: fixed;
    z-index:9999;
    bottom:0;
    right:0;
    width: min(50vw, 650px);
    max-height: 90vh;
    background: #fff;
    border: 0;
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0 -10px 35px rgba(0, 0, 0, .15);
    box-shadow: 0 -10px 35px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.ai-chat-window.open {
    transform: translateX(0);
}

.ai-chat-window.fullscreen {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100%!important;
    height: 100vh !important;
    max-height: 100vh;
    border-radius: 0;
    background-color: #000;
}
.ai-chat-window.fullscreen .ai-chat-messages{
    max-height: 500px;
    height: 50vh;
}
.ai-chat-header {
    background: #000;
    font-family: var(--global--font-primary);
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    padding: 10px 10px 10px 20px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 20px;
}
.ai-chat-header i{
    font-style: normal;
    color:#FF0031
}
.ai-chat-messages {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    max-height: 400px;
    height: 45vh;
    background-image: url(assets/images/aibg.svg?12);
    background-repeat: repeat;
    background-size:100px;
    background-color: #fff;
}

.ai-chat-message {
    max-width: 80%;
    margin: 8px 0;
    padding: 10px 14px;
    border-radius: 12px;
    word-break: break-word;
    font-size: 14px;
    line-height: 1.4;
}

.ai-chat-message.user {
    align-self: flex-end;
    background: #dcf8c6;
    color: #000;
    text-align: left;
}

.ai-chat-message.bot {
    align-self: flex-start;
    background: #f1f0f0;
    color: #000;
    text-align: left;
}
.ai-chat-message.ai-typing {
    align-self: flex-start;
    background: transparent;
    color: #888;
    font-style: italic;
    padding: 0;
}

.ai-chat-form {
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.ai-chat-form input{
    height: 54px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    display: flex;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #c2c2c2;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    padding: 0 20px;
    margin: 0;
    font-weight: 200;
    font-size: 14px;
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: none !important;
    -webkit-transition: background .3s, border .3s;
    -o-transition: background .3s, border .3s;
    transition: background .3s, border .3s;
}
.ai-chat-form textarea {
    min-height: 120px;
    font-weight: 200;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    display: flex;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #c2c2c2;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    padding: 15px 20px;
    margin: 0;
    font-size: 14px;
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: none !important;
    -webkit-transition: background .3s, border .3s;
    -o-transition: background .3s, border .3s;
    transition: background .3s, border .3s;
}
.ai-chat-form textarea:disabled{
    background-color: #393939;
    pointer-events: none;
    color: #777;
    border-bottom: 1px solid #575757;
}
.ai-chat-form input:disabled{
    background-color: #393939;
    pointer-events: none;
    color: #777;
    border-bottom: 1px solid #575757;
}
.ai-chat-form .button:disabled{
    cursor:default;
    pointer-events: none;
    background-color: #8b8b8b;
    color: #c1c1c1;
}
.ai-chat-message p{
    margin:0;
}
.ai-chat-form textarea:focus,
.ai-chat-form input:focus{
    border-bottom: 1px solid #fff;
    background: rgba(255, 255, 255, 0.3);
}
.ai-chat-form input.error,
.ai-chat-form textarea.error {
    border-color: red;
}
.ai-chat-form button {
    padding: 10px;
    cursor: pointer;
    width: 100%;
}
.ai-chat-message a{
    font-weight: 500;
    border-bottom:1px solid
}
.ai-chat-controls button{
    -webkit-appearance: none;
    outline: none;
    border:0;
    font-size: 18px;
    color:#fff;
    background: transparent;
}

.ai-chat-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    padding: 10px;
    width: 90%;
    line-height: 1.3;
    pointer-events: none;

}
.chat-message.system{
    margin-top: 10px;
    background: #f43c32;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    text-align: center;
}
#newDialogBtn{
    margin-top:10px;
    display: inline-flex;
    cursor: pointer;
    border: 1px solid #fff;
    padding: 10px;
    font-weight: 400;
    border-radius: 4px;
    transition: all .3s ease;
}
#newDialogBtn:hover{
    background:#fff;
    color:#000;
}
.footer--ai.ai-chat-button {
    position:fixed;
    bottom:2rem;
    right:2rem;
    z-index:9;
    cursor: pointer;
}
.ai-chat-button svg{
    width:120px;
    transition: all .3s ease;
}
.ai-chat-button:hover svg{
    transform: scale(1.2);
}
.ai-chat-button > div{
    position: absolute;
    display: flex;
    z-index: 3;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
    line-height: 1;
    font-size: 13px;
    flex-direction: column;
    gap: 5px;
    text-transform: uppercase;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ai-chat-button span{
    font-family: var(--global--font-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}
.services--top{
    border-top:1px solid rgba(255,255,255,0.6);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:0;
}
.services--col{
    color:#fff;
    padding:3.3rem;
    display: flex;
    flex-direction: row;
    gap:20px;
}
.services--col+.services--col{
    border-left:1px solid rgba(255,255,255,0.6);
}
.services--icon{
    width: 50px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
}
.services--desc h4{
    color:#fff;
}
.services--desc{
    font-size: 1.2rem;
}
.services--items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:0;
}
.services-thumbnail{
    position:relative;
    overflow:hidden;
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
}
.services-thumbnail .wp-post-image{
    position:absolute;
    top:0;
    left:0;
    z-index: 0;
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
    transition: all .3s ease;
}
.services--title{
    z-index: 2;
    color:#fff;
    position:absolute;
    width: 100%;
    left:0;
    bottom:40px;
    text-transform: uppercase;
    text-align: center;
    padding:0 2rem;
    transition: all .3s ease;
    margin:0;
}
.services-thumbnail:after {
    content: '';
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
    transition: background .3s ease;
}
.services--item:nth-child(1),
.services--item:nth-child(9){
    grid-column: span 2;
}
.services--item:nth-child(1) .services-thumbnail,
.services--item:nth-child(9) .services-thumbnail{
    aspect-ratio: 8 / 3;
}
.services--item{
    display: block;
    border-top:1px solid rgba(255,255,255,0.6);
}
.services--item+.services--item{
    border-left: 1px solid rgba(255,255,255,0.6);
}
.services--item:nth-child(3),
.services--item:nth-child(6),
.services--item:nth-child(9){
    border-left: 0;
}
.services--item:hover .services-thumbnail .wp-post-image{
    transform: scale(1.1);
    opacity:0.4;
}
.services--item .services-thumbnail{
    transition: all .3s ease;
}
.services--item:hover .services-thumbnail{
    background-color:#FF0031
}
.services--item:hover .services--title{
    bottom:50%;
}
.services--desc p{
    margin: 0;
}
.hero-page-header .header-content .header--text,
.hero-page-header .header-content .header--text p{
    margin:0;
}
.hero-page-header .header-content .header--text{
    width:100%;
    max-width: 800px;
}
.services--section{
    background: #000;
    color:#fff;
}
.services--header{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.services--header div{
    width:50%;
}
.service--icon{
    max-width: 100%;
    height: auto;
}
.services--header h2{
    color:#fff;
    text-align: right;
    font-size: 4rem;
    text-transform: uppercase;
    margin: 0 0 2rem 0;
}
.services--header h2 span,
.services--text_heading span{
    color:#FF0031;
}
.services--header div:first-child{
    padding:3.3rem;
    font-size: 1.2rem;
}
.services--header div:first-child p{
    margin:0;
}
.services--header div:last-child{
    text-align: center;
    padding:2rem 2rem 0 2rem;
}
.services--text_heading{
    text-align: center;
    font-size: 4rem;
    text-transform: uppercase;
    margin: 0;
    padding:6.7rem 3.3rem 2rem 3.3rem;
    border-bottom:1px solid #000;
}
.services--block{
    display: flex;
    flex-direction: row;
}
.services--text,
.services--pic{
    width: 50%;
}
.services--text{
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    padding: 3.3rem;
    justify-content: center;
}
.services--pic{
    position: relative;
    overflow: hidden;
    display: grid;
    aspect-ratio: 4 / 3;
    background-color: #000;
}
.services--pic img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: all .3s ease;
}
.services--text h4{
    margin:0 0 2rem 0;
}
.services--block:nth-child(even){
    flex-direction: row-reverse;
}
.services--block:nth-child(even) .services--text{
    border-left: 1px solid #000;
}
.services--block:nth-child(odd) .services--pic{
    border-left: 1px solid #000;
}
.services--block+.services--block{
    border-top:1px solid #000;
}
.services--text p{
    margin:0;
}
.why--row .mainabout--item img {
    border-radius: 100%;
    transition: border-color .3s ease;
    border: 1px solid transparent;
}
.why--row .mainabout--item:hover img {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    border: 1px solid #fff;
    border-radius: 100%;
}
.why--row h4{
    color:#fff;
}
.mainabout--row.row--five {
    grid-template-columns: repeat(6, 1fr);
}
.mainabout--row.row--four {
    grid-template-columns: repeat(4, 1fr);
}
.row--five .mainabout--item:nth-child(1),
.row--five .mainabout--item:nth-child(2),
.row--five .mainabout--item:nth-child(3) {
    grid-column: span 2;
}
.row--five .mainabout--item:nth-child(4),
.row--five .mainabout--item:nth-child(5){
    grid-column: span 3;
    border-top:1px solid rgba(255,255,255,0.6);
    border-left: 0;
}
.row--five .mainabout--item:nth-child(5){
    border-left:1px solid rgba(255,255,255,0.6);
}
.step--process .section--heading{
    justify-content: center;
}
.steps--wrap{
    border-bottom: 1px solid #000;
}
.steps--wrap{
    background-color: #000;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.step--item{
    border:1px solid transparent;
    border-top: 1px solid #000;
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding:3.3rem;
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: all .3s ease;
}
.steps--wrap .step--item h4{
    color:#000;
}
.step--item:nth-child(2),
.step--item:nth-child(4){
    border-left-color: #000;
}
.step--item:hover {
    border-color:#000;
    transform: translate(-15px, -15px);
}
.step--item:nth-child(5){
    grid-column: span 2;
}
.service--endbox{
    padding:3.3rem;
    font-size: 1.2rem;
}
.service--endbox h4,
.service--endbox span{
    color:#FF0031;
}
.service--endbox h4{
    margin:0 0 2rem 0;
}
.service--endbox .button{
    margin-top:1rem;
}
.service--endbox > div{
    max-width: 60vw;
    margin:0 auto;
}
.page--top video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/******************/
.page--lastworks.first{
    border-bottom:1px solid rgba(255,255,255,0.6)
}
.services--text_wrp .services--pic{
    display:none!important;
}
.services--text_wrp .services--text{
    width:100%!important;
}
.portfolio--video ~ .main--works{
    margin-top: 3.3rem;
}
.portfolio--video{
    padding:0 3.3rem;
    position: relative;
}
.portfolio--video video{
    border-radius: 20px;
    width:100%;
    height:auto;
}
.unmute-btn {
    position: absolute;
    bottom: 3.3rem;
    right: 4rem;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
}
.sound-toggle-btn{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    background: transparent;
    outline: 0;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
}
@media only screen and (max-width: 1919px) and (min-width: 1440px) {
    .top--content {
        width: 80%;
    }
}
@media only screen and (max-width : 1439px) {
    .top--h1 {
        font-size: 5rem;
    }
    .top--content {
        width: 80%;
    }
    .masonry--item {
        width: calc(33.3333% - 20px);
    }
    .masonry--item:nth-child(2n) .portfolio--thumbnail{
        //height:450px;
    }
    .services--col:last-child{
        border-left:0;
        border-top:1px solid rgba(255,255,255,0.6);
        grid-column: span 2;
    }
    .services--top {
        grid-template-columns: repeat(2, 1fr);
    }
    .why--row .mainabout--item img{
        width:44px;
    }
    .mainabout--row.row--four {
        grid-template-columns: repeat(2, 1fr);
    }
    .row--four .mainabout--item:nth-child(3){
        border-left: 0;
    }
    .row--four .mainabout--item:nth-child(3),
    .row--four .mainabout--item:nth-child(4){
        border-top:1px solid rgba(255,255,255,0.6)
    }
}
@media only screen and (max-width : 1200px) {
    header#masthead{
        height:50px;
    }
    .service--endbox > div{
        max-width: 80vw;
        margin:0 auto;
    }
    .services--header h2,
    .services--text_heading{
        font-size: calc(2rem + 1.5vw);
    }
    .page--top {
        min-height: calc(100vh - 50px);
    }
    .top--content {
        width: 100%;
    }
    .top--h1 {
        font-size: 4rem;
    }
    .site--logo svg{
        height: 20px;
        width: auto;
    }
    .icon,
    .mobile--menu_trigger,
    .icon:before,
    .icon:after{
        width: 32px;
    }
    .mobile-menu__link{
        font-size: 2.2rem;
    }
    .menu--bottom{
        font-size: 1rem;
        flex: 0 0 50px;
    }
    .footer--col:nth-child(2){
        display: none;
    }
    .footerblock p {
        font-size: 1.2rem;
    }
    .header-content {
        padding-top: 3.3rem;
        padding-bottom: 3.3rem;
    }
    .error404 {
        min-height: calc(100vh - 50px);
    }
    .error--text {
        font-size: calc(3rem + 1.5vw);
    }
    .mobile-menu__dropdown{
        height: calc(-50px + 100vh);
    }
    .counter-value, .counter-suffix {
        font-size: 2.5rem;
    }
    .section--title {
        font-size: calc(2rem + 1.5vw);
    }
    .counter--subtitle{
        font-size: 1rem;
    }
    .mainabout--item {
        padding: 2rem;
    }
    .about--title {
        font-size: 1.5rem;
    }
    .mainabout--item p {
        font-size: 1rem;
    }
    .mainservices--flex{
        padding:2rem;
    }
    .mainservices--flex p {
        font-size: 1rem
    }
    .mainservices--title{
        font-size: 1.2rem;
    }
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(1) .mainservices--title,
    .mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(5) .mainservices--title {
        font-size: 2rem;
    }
    .services--title{
        padding:0;
    }
}
@media only screen and (max-width : 992px) {
    .top--h1 {
        font-size: 3rem;
    }
    .portfolio--video {
        padding: 0 2rem;
    }
    .unmute-btn {
        position: absolute;
        bottom: 3.3rem;
        right: 3rem;
    }
    .portfolio-slide-content{
        padding:0 2rem;
    }
    .portfolio-swiper-container.swiper-initialized{
        padding-bottom:40px;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
        bottom:0;
    }
    .page--lastworks {
        padding-bottom: 3.3rem;
    }
    .portfolio-slide-title {
        font-size: 1.2rem;
    }
    .portfolio-swiper-button-prev, .portfolio-swiper-button-next{
        display: none!important;
    }
    .swiper-pagination{
        display: block;
    }
    .button,
    div.wpforms-container-full button[type=submit]{
        width: 200px;
        height: 44px;
        text-align: center;
        position: relative;
        border-radius: 5px;
        font-size: 1rem;
    }
    .cookies-wrap a{
        border-radius: 5px;
    }
    .mobile-menu__link {
        font-size: 2rem;
    }
    .mobile-menu__toggle{
        margin-left:20px;
        transform: translateY(0px);
    }
    .mobile-menu__toggle.active {
        transform: translateY(0px) rotate(180deg);
    }
    footer {
        padding: 3.3rem 2rem;
    }
    .footer--bottom:after {
        width: calc(100% + 4rem);
        left: -2rem;
    }
    .footer--bottom {
        gap:0;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    .footerblock p {
        font-size: 1rem
    }
    .title-column {
        padding-right: 0rem;
    }
    .breadcrumbs-column {
        padding-left: 0rem;
    }
    .title-column h1 {
        font-size: calc(3rem + 1.5vw);
    }
    .page--text {
        padding: 3.3rem 2rem;
    }
    .text-page-header {
        padding: 0 2rem
    }
    .header-content{
        flex-direction: column;
    }
    .header-content:after{
        display: none;
    }
    .title-column, .breadcrumbs-column {
        width: 100%;
    }
    .breadcrumbs-column{
        position: relative;
        padding-top:20px;
        margin-top:20px;
    }
    .breadcrumbs-column:after{
        content: '';
        position: absolute;
        top: 0;
        height: 1px;
        width: calc(100% + 4rem);
        background: #000;
        left: -2rem;
    }
    .section--heading {
        padding: 3.3rem 2rem 2rem 2rem;
    }
    .counter--item {
        padding: 2rem;
    }
    .counter-value, .counter-suffix {
        font-size: 2rem;
    }
    .counter--wrp {
        grid-template-columns: repeat(2, 1fr);
    }
    .counter--item+.counter--item {
        border-left: 0;
    }
    .counter--item:nth-child(1),
    .counter--item:nth-child(3){
        border-right:1px solid #000;
    }
    .counter--item:nth-child(3),
    .counter--item:nth-child(4){
        border-top:1px solid #000;
    }
    .counter--item:nth-child(1):hover,
    .counter--item:nth-child(3):hover,
    .counter--item:nth-child(4):hover{
        border-color:#FF0031
    }
    .mainabout--item:last-child{
        grid-column: span 2;
        border-left: 0;
        border-top:1px solid rgba(255,255,255,0.6);
    }
    .mainabout--row {
        grid-template-columns: repeat(2, 1fr);
    }
    .mainservices--inner {
        grid-template-columns: repeat(1, 1fr);
    }
    .mainservices--col+.mainservices--col {
        border-left: 0;
    }
    .mainservices--col:first-child .mainservices--row .mainservices--item:first-child {
        min-height: auto;
    }
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(1) {
        min-height: auto;
    }
    .mainservices--flex {
        gap: 2rem;
    }
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(3) {
        min-height: auto;
    }
    .mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(1),
    .mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(2),
    .mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(3),
    .mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(4) {
        min-height: auto;
    }
    .mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(5){
        min-height: auto;
    }

    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(4){
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    }
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(2),
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(3),
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(4),
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(5){
        min-height: auto;
    }
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(5){
        border-bottom:1px solid rgba(255, 255, 255, 0.6);
    }
    .page--contacts {
        padding: 3.3rem 2rem;
    }
    .contacts--row, .contacts--info,
    .header--text,
    .about--col,
    .portfolio--col{
        font-size: 1rem;
    }
    .about--section {
        padding: 0 2rem 2rem 2rem;
    }
    .about--text{
        flex-direction: column-reverse;
        gap:2rem;
    }
    .about--col,
    .portfolio--col{
        width: 100%;
    }
    .portfolio--col,
    .hero-page-header{
        padding:2rem;
    }
    .portfolio--col+.portfolio--col {
        border-left: 0;
        border-top: 1px solid #000;
    }
    .portfolio--top {
        flex-direction: column;
    }
    .portfolio--section.invert .portfolio--top{
        flex-direction: column-reverse;
    }
    .portfolio--top .swiper-wrapper{
        height:400px;
    }
    .portfolio--section.invert .portfolio--col+.portfolio--col {
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    }
    .portfolio--section.invert .portfolio--col+.portfolio--col{
        padding-bottom: 2rem;
    }
    .about--text:before{
        display: none;
    }
    .about--col+.about--col{
        text-align: center;
    }
    .about--col.first {
        padding-right: 0;
    }
    .about--col+.about--col {
        padding-left: 0;
    }
    .page--input input, .page--textarea textarea {
        height: 44px;
        padding: 0px 15px;
    }
    .page--textarea textarea{
        min-height: 88px;
        padding-top: 10px;
    }
    .page--col:last-child {
        padding-left: 1rem;
    }
    .about--col img {
        position: relative;
        top: auto;
        right: auto;
        margin-top:-3.3rem;
        margin-left:-2rem;
        width: calc(100% + 4rem);
        height: auto;
        z-index: 0;
        object-position: center;
        object-fit: cover;
    }
    .careers--item{
        padding:3.3rem 2rem;
        font-size: 1rem;
    }
    .careers--col {
        width: 50%;
        padding: 3.3rem 2rem;
        font-size: 1rem;
    }
    .masonry--item {
        width: calc(50% - 20px);
    }
    .masonry--item:nth-child(2n) .portfolio--thumbnail{
        //height:500px;
    }
    .portfolio--btn {
        width: 50px;
        height: 50px;
        border-radius: 50px;
    }
    .portfolio--item img, .portfolio--btn img{
        height:32px;
    }
    .swiper--wrp .swiper-pagination {
        bottom: 20px !important;
    }
    .portfolio--section.second.invert {
        border-top: 0;
    }
    .portfolio--section.invert.second .portfolio--col:first-child {
        border-left: 0;
    }
    .first .main--works {
        width: calc(100% - 60px);
        margin-left: 30px;
    }
    .first .swiper--wrp .swiper-pagination {
        bottom: -30px !important;
    }
    .page--lastworks.first {
        padding-bottom: calc(3.3rem + 20px);
    }
    .ai-chat-window {
        position: fixed;
        z-index: 9999;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-height: 100%;
        background: #000000;
        border: 0;
        display: flex;
        flex-direction: column;
        box-shadow: none;
        transform: translateY(100%);
        transition: transform .3s ease
    }
    .ai-chat-header {
        flex: 0 0 auto;
        height: 40px;
        padding:10px;
    }
    .ai-chat-messages {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 10px;
        max-height: 600px;
        height: calc(100vh - 245px)
    }
    .ai-chat-form {
        flex: 0 0 auto;
        padding: 10px
    }
    .ai-chat-placeholder {
        font-size: 15px
    }
    .ai-chat-form textarea {
        min-height: 88px;
        resize: vertical;
        padding: 15px;
        width: 100%;
        box-sizing: border-box
    }
    .ai-chat-form input{
        height:44px;
        padding:0 15px;
    }
    .ai-chat-controls button {
        -webkit-appearance: none;
        outline: none;
        border: 0;
        font-size: 24px;
        color: #fff;
        padding: 0;
        background: 0 0
    }
    .ai-chat-window.mobile-hidden {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform .3s ease,opacity .3s ease
    }
    .ai-chat-window.mobile-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        transition: transform .3s ease,opacity .3s ease
    }
    .ai-chat-controls button.ai-chat-maximize {
        display: none
    }
    .services--col {
        padding: 2rem;
    }
    .services--desc{
        font-size: 1rem;
    }
    .services--items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .services--item:nth-child(9) {
        grid-column: unset;
    }
    .services--item:nth-child(9) .services-thumbnail {
        aspect-ratio: 4 / 3;
    }
    .services--item:nth-child(3), .services--item:nth-child(6), .services--item:nth-child(9) {
        border-left: 1px solid rgba(255,255,255,0.6);
    }
    .services--item:nth-child(2), .services--item:nth-child(4), .services--item:nth-child(6),.services--item:nth-child(8) {
        border-left: 0;
    }
    .services--item:nth-child(10){
        grid-column: span 2;
        border-top: 1px solid rgba(255,255,255,0.6);
        border-left:0;
    }
    .services--item:nth-child(10) .services-thumbnail {
        aspect-ratio: 8 / 3;
    }
    .services--header div:first-child,
    .services--text{
        padding:2rem;
        font-size: 1rem;
    }
    .services--text_heading {
        padding: 3.3rem 2rem 2rem 2rem;
    }
    .mainabout--row.row--five {
        grid-template-columns: repeat(2, 1fr);
    }
    .row--five .mainabout--item:nth-child(1),
    .row--five .mainabout--item:nth-child(2),
    .row--five .mainabout--item:nth-child(3),
    .row--five .mainabout--item:nth-child(4){
        grid-column: unset;
    }
    .row--five .mainabout--item:nth-child(5){
        grid-column: span 2;
    }
    .row--five .mainabout--item:nth-child(4){
        border-left: 1px solid rgba(255,255,255,0.6);
    }
    .row--five .mainabout--item:nth-child(3){
        border-top: 1px solid rgba(255,255,255,0.6);
        border-left: 0;
    }
    .row--five .mainabout--item:nth-child(5){
        border-left: 0;
    }
    .row--four .mainabout--item:nth-child(4){
        grid-column: unset;
        border-left: 1px solid rgba(255, 255, 255, 0.6);
    }
    .step--item{
        padding:2rem;
        font-size: 1rem;
    }
    .service--endbox {
        padding: 3.3rem 2rem;
        font-size: 1rem;
    }
    .service--endbox > div{
        max-width: 100vw;
        width:100%;
        margin:0 auto;
    }
}
@media only screen and (max-width : 768px) {
    .mobile-menu__list {
        padding: 0 0 0 2rem;
    }
    .swiper-slide {
        width: 80%;
    }
    .main--works {
        width: calc(100% - 30px);
        margin-left: 30px;
    }
    .swiper-slide.swiper-slide-active img{
        -webkit-filter:grayscale(0);
        filter:grayscale(0);
    }
    .swiper-slide.swiper-slide-next img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    .mobile-menu__link {
        font-size: 1.5rem;
        padding: 15px 0;
    }
    .mobile-menu__toggle {
        width: 14px;
        height: 14px;
    }
    .mobile-menu__subitem:last-child {
        padding: 5px 0 12px 0;
    }
    .top--h1{
        font-size: 2.5rem;
    }
    .footer--col:first-child {
        max-width: 100%;
    }
    .footerblock {
        gap: 14px;
    }
    .footer--row {
        flex-direction: column;
        justify-content: flex-start;
    }
    .footerblock img {
        height: 50px;
    }
    .error--title h1{
        font-size: calc(0.8rem + 1.5vw);
        font-weight: 600;
    }
    .error--text {
        font-size: calc(2rem + 1.5vw);
    }
    .ufo-beam {
        height: 200px;
    }
    .section--title,
    .services--text_heading{
        font-size: calc(1.2rem + 1.5vw);
    }
    .mainabout--item img{
        height:32px;
    }
    .about--title {
        font-size: 1.3rem;
    }
    .mainservices--col:first-child .mainservices--row .mainservices--item:nth-child(2) .mainservices--title,
    .mainservices--col:last-child .mainservices--row .mainservices--item:nth-child(5) .mainservices--title {
        font-size: 1.5rem;
    }
    .svg-icon{
        width:32px!important;
        height: 32px!important;
    }
    .mainservices--title {
        font-size: 1.1rem;
    }
    .page--row{
        flex-direction: column-reverse;
        gap:2rem
    }
    .page--col:last-child {
        padding-left: 0;
    }
    .page--col {
        width: 100%;
    }
    div.wpforms-container-full button[type=submit]{
        width:100%;
    }
    .breadcrumbs-column .button{
        display: none;
    }
    .careers--items{
        flex-direction: column;
    }
    .careers--item{
        width:100%;
        gap:20px;
        padding:2rem;
    }
    .careers--items:before{
        display: none;
    }
    .careers--item+.careers--item{
        border-top:1px solid rgba(255,255,255,0.6)
    }
    .careers--item:hover{
        border-top:1px solid #FF0031!important;
    }
    .careers--col {
        width: 100%;
        padding: 2rem;
    }
    .careers--top, .careers--bottom {
        flex-direction: column;
    }
    .careers--col:first-child {
        border-right: 0
    }
    .careers--col+.careers--col{
        border-top:1px solid rgba(255,255,255,0.6)
    }
    .careers--col h4{
        margin:0 0 20px 0;
    }
    .white-popup-block {
        padding: 2rem;
        max-width: 100%;
    }
    .mfp-content {
        margin: 6px auto 0 auto;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
    button.mfp-close img {
        height: 24px;
        width: 24px;
    }
    .mfp-close {
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    #popup h3 {
        margin: 0 0 20px 0;
    }
    .wpforms-confirmation-container-full{
        font-size: 1rem;
    }
    .first .main--works {
        width: calc(100% - 30px);
        margin-left: 30px;
    }
    .footer--ai.ai-chat-button {
        bottom: 0;
        right: 0;
    }
    .services--title {
        padding: 0 20px;
        bottom: 2rem;
    }
    .services--item:hover .services--title {
        bottom: 2rem;
    }
    .services--top {
        grid-template-columns: repeat(1, 1fr);
    }
    .services--col:last-child {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.6);
        grid-column: unset;
    }
    .services--col+.services--col {
        border-top: 1px solid rgba(255, 255, 255, 0.6);
        border-left: 0;
    }
    .services--header h2{
        font-size: calc(1.2rem + 1.5vw);
    }
    .services--header {
        flex-direction: column;
        align-items: flex-end;
    }
    .services--header div {
        width: 100%;
    }
    .service--icon {
        max-width: 450px;
        width: 100%;
        height: auto;
    }
    .services--header div:last-child{
        padding:0 2rem;
    }
    .services--header h2 {
        text-align: left;
    }
    .services--block{
        flex-direction: column;
    }
    .services--text, .services--pic {
        width: 100%;
    }
    .services--block:nth-child(even) {
        flex-direction: column;
    }
    .services--block:nth-child(even) .services--text {
        border-left: 0;
    }
    .services--block:nth-child(odd) .services--pic {
        border-left: 0;
    }
    .why--row .mainabout--item img {
        width: 32px;
    }
    .steps--wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .step--item:nth-child(5){
        grid-column: unset;
    }
    .step--item:nth-child(2), .step--item:nth-child(4) {
        border-left-color: transparent;
    }
}
@media only screen and (max-width : 576px) {
    html{
        font-size: 14px;
    }
    .unmute-btn {
        bottom: 20px;
        right: 20px;
    }
    .portfolio--video video {
        border-radius: 0px;
    }
    .portfolio--video {
        padding: 0;
    }
    .site--logo{
        border-right: 0;
    }
    .header--phone {
        display: none;
        padding-right: 0;
        border-right: 0;
    }
    header#masthead.menu--opened .site--logo,
    header#masthead.menu--opened .header--phone{
        border-right: 0;
    }
    .mobile-menu__list {
        padding: 0 0 0 20px;
    }
    .mobile-menu__sublist{

    }
    .button,
    div.wpforms-container-full button[type=submit],
    .cookies-wrap a{
        letter-spacing: 1px;
        font-size: 13px;
    }
    .cookies-wrap{
        flex-direction: column;
        gap:10px;
        font-size: 13px;
    }
    .cookies-wrap a {
        width: 100%;
    }
    .cookies--text {
        padding-right: 0;
    }
    .footer--bottom{
        align-items: flex-start;
        flex-direction: column;
        gap:10px;
    }
    .copy{
        text-align: left;
    }
    footer {
        padding: 3rem 20px;
    }
    .footer--bottom:after {
        width: calc(100% + 40px);
        left: -20px;
    }
    .page--text {
        padding: 3.3rem 20px;
    }
    .title-column h1 {
        font-size: calc(2rem + 1.5vw);
    }
    .text-page-header {
        padding: 0 20px;
    }
    .breadcrumbs-column:after {
        width: calc(100% + 40px);
        left: -20px;
    }
    .section--heading {
        padding: 3.3rem 20px 2rem 20px;
    }
    .counter--item {
        padding: 20px;
    }
    .counter--subtitle {
        font-size: 13px;
        line-height: 1.3;
    }
    .counter--item svg{
        height: 24px;
        width: 24px;
    }
    .section--heading {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .mainabout--row {
        grid-template-columns: repeat(1, 1fr);
    }
    .mainabout--item:last-child {
        grid-column: unset;
    }
    .mainabout--item+.mainabout--item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.6);
    }
    .mainabout--item {
        padding: 20px;
    }
    .about--title {
        margin: 0 0 1rem 0;
    }
    .swiper-slide {
        width: 90%;
    }
    .mainservices--flex,
    .careers--item{
        padding: 2rem 20px;
    }
    .page--contacts {
        padding: 3.3rem 20px;
    }
    .about--section {
        padding: 0 20px 2rem 20px;
    }
    .careers--col {
        padding: 2rem 20px;
    }
    .masonry--item {
        width: calc(100% - 20px);
    }
    .masonry--item:nth-child(2n) .portfolio--thumbnail{
        height:auto;
    }
    .masonry--item:nth-child(2n) .portfolio--thumbnail .wp-post-image {
        object-fit: unset;
        position: relative;
        top: auto;
        left: auto;
        width: 100% !important;
        height: auto !important;
        object-position: center;
    }
    .portfolio--thumbnail {
        border-radius: 10px;
    }
    .portfolio--col, .hero-page-header {
        padding: 2rem 20px;
    }
    .masonry--item:nth-child(2n) .portfolio-thumb-vertical {
        display: none;
    }
    .masonry--item:nth-child(2n) .portfolio-thumb-horizontal {
        display: block;
    }
    .main--works {
        width: calc(100% - 20px);
        margin-left: 20px;
    }
    .first .main--works {
        width: calc(100% - 20px);
        margin-left: 20px;
    }
    .portfolio-slide-content .button{
        display: none!important;
    }
    .ai-chat-button svg {
        width: 100px;
    }
    .services--col {
        padding: 2rem 20px;
    }
    .services--header div:first-child {
        padding: 2rem 20px;
    }
    .services--header div:last-child {
        padding: 0 20px;
    }
    .services--text {
        padding: 2rem 20px;
    }
    .services--text_heading {
        padding: 3.3rem 20px 2rem 20px;
    }
    .mainabout--row.row--five {
        grid-template-columns: repeat(1, 1fr);
    }
    .row--five .mainabout--item:nth-child(5) {
        grid-column: unset;
    }
    .row--five .mainabout--item:nth-child(4) {
        border-left: 0;
    }
    .mainabout--row.row--four {
        grid-template-columns: repeat(1, 1fr);
    }
    .row--four .mainabout--item:nth-child(1),
    .row--four .mainabout--item:nth-child(2),
    .row--four .mainabout--item:nth-child(3),
    .row--four .mainabout--item:nth-child(4){
        border-left: 0;
    }
    .step--item {
        padding: 2rem 20px;
    }
    .service--endbox {
        padding: 3.3rem 20px;
    }
}