/*
Theme Name: Compcore
Theme URI: http://example.com
Description: Theme for Compcore
Author: tividev
Author URI: http://example.com
Version: 1.0
*/


#wpadminbar {
    top: auto; 
    bottom: 0; 
    position: fixed; 
    width: 100%; 
    z-index: 9999;
}


html {
    margin-top: 0 !important;
    margin-bottom: 32px;
}

/*STYLES*/


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background-color: #3C3C3C;
    border-radius: 8px;
    transition: border-radius 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #d6541d;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/compcore/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 300 800; 
    font-style: normal;
}

body {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px;
}

main.hide, footer.hide {
    display: none;
}


@media (min-width: 1440px) {
    .container {
        padding: 0 28px;
    }
}


@media (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 24px;
    }
}


@media (max-width: 1023px) {
    .container {
        max-width: 768px;
        padding: 0 20px;
    }
}


@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
}


@media (max-width: 479px) {
    .container {
        max-width: 100%;
        padding: 0 12px;
    }
}

/* HEADER */

nav li {
    list-style: none;
}

.header__top {
    background-color: #F26522;
}

.nav__top ul {
    padding: 7px 0;
    box-sizing: border-box;
}

.nav__top li a {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
}

.nav__top ul {
    display: flex;
    column-gap: 54px;
    justify-content: flex-end;
    margin-right: 54px;
}


.header__bottom {
    transition: transform 0.2s ease-in-out;
    /*transform: translateY(0);*/
}

.header__bottom.fixed {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    animation: fadeInTop 0.2s ease-in-out;
}

@keyframes fadeInTop {
    0% {
        opacity: 0; 
        transform: translateY(-100px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header__bottom {
    padding: 20px 0;
    background-color: #252525;
    box-sizing: border-box;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__bottom .logo {
    display: flex;
    align-items: center;
}

.header__bottom .logo img {
    width: 240px;
    height: 50px;
}

.dropdown {
    display: none;
    position: absolute;
}

.dropdown.active {
    display: flex;
}

.dropdown__items {
    background: #252525;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 999;
}

.dropdown__items nav ul {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown__items li {
    background: #363636;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    width: 300px;
}

.dropdown__items li:hover {
    background: #F26522;
}

.dropdown__items li a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dropdown__items li a span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.dropdown__items li img {
    border-radius: 4px;
}

.nav__bottom ul {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.nav__bottom li a {
    color: #fff;
    font-size: 16px;
    letter-spacing: -.2px;
    font-weight: 400;

}

.menu__item {
    transition: opacity 0.2s ease-in-out;
}

.menu__item:hover {
    opacity: 0.5;
}

.link__dropdown {
    position: relative;
    cursor: pointer;
}


.link__dropdown:after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    background: url(/wp-content/themes/compcore/images/arrow_down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
    top: 2px;
    margin-left: 10px;
    transition: transform 0.2s ease-in-out;
}

.link__dropdown.hovered {
    opacity: 0.5;
}

.link__dropdown.hovered:after {
    transform: rotate(180deg);
    transition: transform 0.2s ease-in-out;
    opacity: 0.5;
}

a.header__button, .btn {
    font-size: 14px !important;
    width: 180px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
    border-radius: 6px;
    line-height: auto !important;
    letter-spacing: auto !important;
    box-sizing: border-box;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    opacity: 1 !important;
}



a.header__button:hover, .btn:hover {
    background-color: #F26522;
    box-shadow: none !important;
    color: #fff !important;
    opacity: 1 !important;
}

.btn:hover:after {
    content: '';
    width: 15.56px;
    height: 16px;
    background: url('images/arrown-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin-top: 3px;
    position: absolute;
    right: 45px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    animation: opacityAnim 0.2s forwards;
}



.product__btn, .news__button {
    width: 216px;
}

.product__btn:after, .news__button:after {
    right: 30px !important;
}

.about__button:after {
    right: 25px !important;
}

@keyframes opacityAnim {
    from {
      opacity: 0;
      visibility: hidden;
    }
    to {
      opacity: 1;
      visibility: visible;
    }
  }

.btn span {
    transition: transform 0.2s ease-in-out;
}

.btn:hover span {
    transform: translateX(-15px);
}

.btn span {
    margin-top: 3px;
}

.burger {
    display: none;
    transform: scale(0.7);
}

.mobile__nav {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 9999999;
    background: #000;
}

.mobile__nav li {
    transition: background-color .2s ease-in-out;
}


.mobile__nav li a {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 1px solid #fff;
    padding: 24px 0;
    box-sizing: border-box;
    width: 100%;
    display: block;
    opacity: 1 !important;
    cursor: default;
}


.mobile__nav__items .menu__item.active {
    border: none;
}

li.active {
    background-color: #F26522;
}

.mobile__nav__items .dropdown__items.active ul {
    padding: 10px 0;
}

.moblie__bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grey-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

#show-dropdown-products {
    display: flex;
    align-items: center;
}

#show-dropdown-products:before {
    content: '';
    width: 20.74px;
    height: 21.33px;
    background: url(images/arrow_left.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

#show-dropdown-products span {
    transition: transform 0.2s ease-in-out;
}

#show-dropdown-products.active span {
    transform: translateX(36px);
}

#show-dropdown-products.active:before {
    opacity: 1;
}

.mobile__simple__menu.hide, .moblie__bottom.hide {
    display: none;
}

.mobile__nav__items .dropdown__items {
    display: none;
    background: none;
}

.mobile__nav__items .dropdown__items.active {
    display: block;
}

.dropdown__items nav ul {
    gap: 6px;
}

.mobile__nav__items .dropdown__items li {
    width: 100%;
}

.mobile__nav__items .dropdown__items li a {
    padding: 0;
    display: flex;
    border: none;
}

.mobile__nav__items .dropdown__items li:hover {
    border: none;
}

@media (max-width: 1240px) {
    .header__top, .nav__bottom {
        display: none;
    }

    .burger {
        position: relative;
        width: 40px;
        height: 30px;
        background: transparent;
        display: block;
      }
      
      .burger input {
        display: none;
      }
      
      .burger span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
      }
      
      .burger span:nth-of-type(1) {
        top: 0px;
        transform-origin: left center;
      }
      
      .burger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
        transform-origin: left center;
      }
      
      .burger span:nth-of-type(3) {
        top: 100%;
        transform-origin: left center;
        transform: translateY(-100%);
      }
      
      .burger input:checked ~ span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 0px;
        left: 5px;
      }
      
      .burger input:checked ~ span:nth-of-type(2) {
        width: 0%;
        opacity: 0;
      }
      
      .burger input:checked ~ span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
        left: 5px;
      }

      .mobile__nav {
        display: none;
    }
    
    .mobile__nav.active {
        display: block;
    }
}

@media (max-width: 1024px) {
    .btn:after {
        display: none;
    }
    
    .btn {
        background-color: #F26522 !important;
        color: #fff !important;
        box-shadow: none !important;
    }
    
    .btn:hover span {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .header__top, .nav__bottom {
        display: none;
    }
}

@media (max-width: 767px) {
     .header__bottom .logo img {
        width: 162px;
        height: 34px;
    }
}

/* PAGE TITLE AREA */

.page__title__area {
    background: #F26522;
    padding: 28px 0;
    box-sizing: border-box;
    height: 164px;
}

.page__title__area {
    color: #000;
    text-transform: uppercase;
}

.page__title__area h1 {
    font-size: 34px;
}

@media (max-width: 1023px) {
    .page__title__area h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .page__title__area h1 {
        font-size: 27px;
    }

    .page__title__area {
        padding: 16px 0;
        height: 110px; 
    }
}

/* ABOUT BANNER */

.about__banner {
    background: #252525;
    padding: 28px 0;
    box-sizing: border-box;
    height: 244px;
}

.about__banner h2 {
    text-transform: uppercase;
    font-size: 34px;
    line-height: 1.1;
}

@media (max-width: 1023px) {
    .about__banner {
        height: 214px;
    }
    
    .about__banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .about__banner {
        height: 160px;
        padding: 14px 0;
    }

    .about__banner h2 {
        font-size: 18px;
    }
}

/* HERO SECTION */

.hero {
    position: relative;
    width: 100%;
    height: 810px;
    overflow: hidden;
    /*background: url('images/video_bg_cover.webp');*/
    background-size: cover;
}

.hero__background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

/*.loaded__video {*/
/*    display: none;*/
/*}*/

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero__content h1 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: 0px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .hero__content h1 {
        font-size: 32px;
    }
    
    .hero__content {
        padding-top: 34px;
    }
    
    .hero {
        height: 588px;
    }
    
    .hero .hero__background {
        height: 588px;    
    }
}

@media (max-width: 767px) {
    .hero__content h1 {
        font-size: 27px;
    }
    
    .hero__content h1 br {
        display: none;
    }
    
    .hero__content {
        padding-top: 32px;
    }
    
    .hero {
        height: 656px;
    }
    
    .hero .hero__background {
        height: 656px;
        transform: translate(-35%, -50%);
    }
}

/* ABOUT SECTION */

.about {
    padding: 40px 0;
}

.about h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    width: 60%;
}

.about__content {
    margin-top: 32px;
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
}

.about__content h3 {
    width: 60%;
    font-size: 22px;
    color:#F7F7F7;
    font-weight: 500;
    opacity: 0.8;
}

.about__description {
    width: 40%;
    margin-top: 26px;
}

.about__description h4 {
    font-size: 22px;
    font-weight: 500;
    opacity: 0.8;
    color: #F7F7F7;
    margin-bottom: 14px;
}

.about__description p {
    font-size: 16px;
    line-height: 1.3;
    color: #F7F7F7;
    opacity: 0.5;
    font-weight: 400;
}

.about__description .btn {
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .about h2 {
        font-size: 28px;
        width: 100%;
    }
    
    .about {
        padding: 26px 0;
    }
    
    .about__content h3 {
        font-size: 18px;
    }
    
    .about__content {
        flex-direction: column;
    }
    
    .about__description {
        width: 60%;
    }
    
    .about__content h3 br {
        display: none;
    }
}

@media (max-width: 1023px) {
    .about__description {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .about h2 {
        font-size: 22px;
    }
    
    .about__content h3 {
        font-size: 16px;
        width: 100%;
    }
    
    .about__description {
        width: 100%;
    }
}



/* PRODUCTS SECTION */
.products {
    padding: 40px 0;
}

.products h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.products__content {
    margin-top: 32px;
    display: flex;
    gap: 14px; 
    justify-content: space-between;
}

.products__item img {
    border-radius: 4px;
    width: 100%;
}

.products__item {
    flex: 1 1 calc(33.333% - 14px);
}

.product__title {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__title h5 {
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 170px;
    font-weight: 700;
}

@media (max-width: 1439px) {
    .product__title h5 {
        font-size: 18px;
    }
}

@media (max-width: 1240px) {
    .products__content {
        
    }
    
    .products__item img {
        object-fit: cover;
    }

    
    .products__content {
        row-gap: 30px;   
    }
    
    .product__btn {
        width: 150px;
    }
    
    .product__btn span {
        font-size: 13px;
    }
}

@media (max-width: 1023px) {
    .products__content {
        flex-direction: column;
    }
    
    .products__item img {
        max-height: 380px;
    }
    
    .product__title h5 {
        font-size: 22px;
    }
    
    .product__btn {
        width: 216px;
    }
    
    .product__btn span {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .products h2 {
        font-size: 22px;
    }
    
    .products__item img {
        max-height: 292px;
    }
    
    .product__title h5 {
        font-size: 18px;
    }
    
    .product__btn {
        width: 197px;
    }
}

@media (max-width: 390px) {
    .product__btn {
        width: 180px;
    }
}


/* BANNER SECTION */
.banner {
    /*background-color: #F26522; */
    background-color: #F16320;
    /*background-color: red;*/
    box-sizing: border-box;
    margin: 30px 0;
}

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

.banner h2 {
    color: #000001;
    font-size: 35px;
    max-width: 750px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 28px;
}

.banner__background {
    background: url('images/banner_video_bg_cover.webp');
    background-size: cover;
    position: relative;
    width: 600px;
    height: 300px;
}

.banner__video {
    position: absolute;
    width: 600px;
    height: 300px;
    overflow: hidden;
    z-index: 1;
    object-fit: cover;
    /*mix-blend-mode: overlay;*/
    
}

@media (max-width: 1439px) {
    .banner__content h2 {
        max-width: 450px;
    }
}

@media (max-width: 1024px) {
    .banner__content {
        flex-direction: column;
    }
    
    .banner__content h2 {
        font-size: 28px;
        max-width: 70%;
    }
    
    .banner__area {
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .banner__video, .banner__background {
        width: 265px;
        height: 92px;
    }
    
    .banner__content h2 {
        max-width: 100%;
        font-size: 22px;
    }
    
    .banner h2 {
        padding-top: 14px;
    }
    
    .banner__area {
        padding-bottom: 14px;   
    }
    
    .banner {
        margin-bottom: 0;
    }
}

/* ADVANTAGES SECTION */

.advantages {
    padding: 64px 0 30px;
}

.advantages h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.advantages__content {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.advantage__item {
    padding: 27px;
    box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
    box-sizing: border-box;
    flex: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 155px;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    justify-content: space-between;
}

.advantage__item:hover {
    background-color: #F26522;
    box-shadow: none;
}

.advantage__item h3 {
    font-size: 32px;
    font-weight: 500;
    width: 70%;
}

.advantage__item p {
    text-align: right;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.advantage__item p span {
    font-size: 102px;
}

@media (max-width: 1439px) {
    .advantage__item h3 {
        font-size: 26px;
    }
}

@media (max-width: 1240px) {
    .advantage__item h3 {
        font-size: 20px;
    }
    
    .advantage__item p span {
        font-size: 80px;
    }
}


@media (max-width: 1023px) {
    .advantages__content {
        flex-direction: column;
    }
    
    .advantages h2 {
        font-size: 28px;
        max-width: 500px;
    }
    
    .advantage__item h3 {
        font-size: 32px;
    }
    
    .advantage__item p span {
        font-size: 100px;
    }
    
    .advantage__item.autohover {
        background-color: #F26522;
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .advantages h2 {
        font-size: 22px;
    }
    
    .advantage__item {
        padding: 22px;
    }
    
    .advantage__item h3 {
        font-size: 24px;
    }
}

/* STATISTICS SECTION */

.statistics {
    padding: 64px 0 30px;
}

.statistics h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.statistics__content {
    margin-top: 32px;

}

.statistics__graph {
    box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
    box-sizing: border-box;
    display: flex;
    border-radius: 8px;
    flex-direction: column;
    position: relative;
}

.graph__content {
    display: flex;
}

.graph__numbers {
    padding: 37px 27px;
    display: flex;
    flex-direction: column-reverse;
    border-right: 2px solid #fff;
    align-items: center;
    gap: 26px;
    font-weight: 600;
    font-size: 22px;
    width: 100px;
}

.graph__numbers span {
    width: 50px;
    text-align: center;
    box-sizing: border-box;
}

.graph__numbers span:after {
    content: '';
    width: calc(100% - 100px);
    background: #fff;
    position: absolute;
    height: 1.5px;
    margin-top: 15px;
    margin-left: 100px;
    left: 0;
    opacity: 0.2;
}

.graph__numbers .numbers__white:after {
    background: #fff;
    background-repeat: no-repeat;
    opacity: 1;
}

.graph__numbers .numbers__title:after {
    background: none;
}
.numbers__title {
    font-size: 14px;
    font-weight: 400;
}

.graph__description {
    border-top: 2px solid #fff;
    padding: 18px 0;
}

.graph__description p {
    padding-left: 98px;
    margin: 0;
    font-size: 13px;
    opacity: 0.5;
}

.graph__items {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 80px 20px 80px;
    justify-content: space-between;
    z-index: 2;
}

.graph__item {
    width: 200px;
}

.graph__item span {
    font-size: 18px;
    display: block;
    opacity: 0.6;
    font-weight: 400;
    height: 85px !important;
    line-height: 1.2;
    padding-top: 20px;
}

#graph_item_5 span {
    opacity: 1;
}

.graph__block {
    background: #4A4A4A;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #fff;
    width: 150px;
}

.graph__item .graph__block {
    transition: height 1s ease;
    transition-delay: 0.35s;
    height: 0;
}

#graph_item_5 .graph__block {
    /* height: 70%; */
    background: #F26522;
}

.statistics__statement {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
    border-radius: 8px;
    padding: 25px;
    box-sizing: border-box;
    gap: 12px;
}

.statistics__statement span {
    max-width: 190px;
    line-height: 1.2;
    font-size: 16px;
}

@media (max-width: 1240px) {
    .statistics h2 {
        font-size: 28px;
    }
    
    .graph__item span {
        font-size: 11px;
    }
    
    .graph__block {
        width: 100px;
    }
    
    .graph__items {
        padding: 0 25px 20px 25px;   
    }
    
    .graph__item {
        width: 130px;
    }
    
    .graph__description p {
        font-size: 10px;
        padding-left: 30px;
    }
}

@media (max-width: 1023px) {
    .graph__block {
        width: 75px;
    }
    
    .graph__item {
        width: 120px;
    }
    
    .graph__item span {
        font-size: 10px;
    }
    
    .graph__description p {
        font-size: 9px;
    }
}

@media (max-width: 767px) {
    .graph__items {
        overflow-x: scroll;
        column-gap: 22px;
    }
    
    .graph__items::-webkit-scrollbar {
        display: none;
    }
    
    .graph__item span {
        padding-top: 30px;
        width: 100px;
    }
    
    .graph__item span br {
        display: none;
    }
}

/* PROJECTS SECTION */

.projects {
    padding: 64px 0 30px;
}

.projects h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 500px;
}

.projects__content {
    margin-top: 32px;
}

.projects__items {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}

.projects__item {
    flex: 1 1 calc(50% - 14px);
}

.project__image {
    height: 540px;
    display: flex;
    align-items: flex-end;
    padding: 28px 24px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    border-radius: 8px;
}

.project__image h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.project__description {
    margin-top: 32px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    opacity: 0.7;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .projects h2 {
        font-size: 28px;
    }
}

@media (max-width: 1023px) {
    .projects__items {
        flex-direction: column;
        row-gap: 54px;
    }
    
    .project__description {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .projects h2 {
        font-size: 22px;
    }
    
    .project__description {
        font-size: 16px;
    }
}

/* AREAS SECTION */

.areas {
    padding: 64px 0 94px;
}

.areas h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.areas__content {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
}

.areas__item {
    border-radius: 8px;
    flex-basis: calc(25% - 10.5px);
    flex-grow: 0; 
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    background: #252525;
}

.areas__item img {
    width: 45px;
    height: auto;
}

.areas__item h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 1439px) {
    .areas__item h3 {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .areas__item h3 {
        font-size: 15px;
    }
}

@media (max-width: 1023px) {
    .areas .scroll-area {
        overflow-x: scroll;
    }
    
    .areas .scroll-area::-webkit-scrollbar {
        display: none;
    }
    
    .areas__content {
        display: flex;
        overflow-x: auto; 
        justify-content: flex-start;
        flex-wrap: wrap;
        width: calc(333px * 4 + 42px); 
        gap: 14px; 
    }
    
    .areas__item {
        flex: 0 0 333px;
    }
    
    .areas__item h3 {
        font-size: 24px;
    }
}


@media (max-width: 767px) {
    .areas h2 {
        font-size: 22px;
    }
    
    .areas__content {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
    }
    
    .areas__item {
        flex-basis: calc(50% - 4px);
        height: 124px;
        padding: 12px;
    }
    
    .areas__item h3 {
        font-size: 14px;
    }
    
    .areas__item img {
        width: 37px;
        height: 37px;
    }
}




/* EXCERPTION SECTION */

.excerption {
    padding: 28px 0 160px;
    background: #F26522;
}

.excerption__content h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-transform: uppercase;
}

.excerption__author {
    margin-top: 24px;
    display: flex;
    gap: 28px;
    align-items: center !important;
}

.excerption__author img {
    width: 65px;
    height: 65px;
}

.author__title {
    color: #000;
}

.author__title {
    font-size: 20px;
}

.author__title p {
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 14px;
}

@media (max-width: 767px) {
    .excerption {
        padding: 24px 0 70px 0;
    }
    
    .excerption__content h2 {
        font-size: 18px;
    }
}

/* NEWS SECTION */

.news {
    padding: 100px 0 77px;
    background: #fff;
    color: #000;
}

.news__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.news__title h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.news__button {
    box-shadow: inset 0px 0px 0px 2px rgba(0,0,0,1) !important;
    color: #000;
}

@media (max-width: 1024px) {
    .news__button {
    box-shadow: none !important;
    }
}

.news__item a {
    display: flex;
    flex-direction: column;
}

.article__info, .news__item h3 {
    transition: background-color 0.2s ease-in-out;
}

.news__item img {
    transition: box-shadow 0.2s ease-in-out;
    max-height: 360px;
}

.news__item:hover .article__info, .news__item:hover h3 {
    background-color: #F26522 !important;
}

.news__item:hover img {
    box-shadow: 0px 5px 0px 0px rgba(242,101,34,1);
}

.news__items {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}

.news__item {
    display: flex;
    flex-direction: column;
    color: #000;
    flex: 1 1 calc(33.333% - 14px);
}

.news__item img {
    border-radius: 8px;
    width: 100%;
}

.news__item h3, .news__item span {
    color: #000;
}

.news__item h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
    padding: 14px 10px 14px 10px;
}

.news__item .article__info {
    padding: 0px 10px 37px 10px;
    display: flex;
    column-gap: 45px;
}

.article__info {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.article__info span {
    font-size: 14px;
    font-weight: 500;
}


@media (max-width: 1024px) {
    .news__item h3 {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .news__title h2 {
        font-size: 28px;
    }
    
    .news__items {
        flex-wrap: wrap;
    }
    
    .news__item {
       flex: 1 1 calc(50% - 14px)   
    }
    
    .news__item:last-child {
        display: none;
    }
    
    .news__item h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .news {
        padding: 64px 0 30px 0;
    }
    
    .news__title h2 {
        font-size: 22px;
    }
    
    .news__title .news__button  {
        display: none;
    }
    
    .news__items {
        flex-direction: column;
    }
}

/* CTA SECTION */

.cta {
    background: #fff;
    padding: 64px 0 94px;
}

.cta__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta__content {
    background: #000;
    padding: 32px;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.cta__title h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.cta__decription span {
    font-size: 16px;
    font-weight: 400;
}

.cta__video {
    width: 737px;
    height: 310px;
    position: relative;
}

.cta__background {
    position: absolute;
    width: 737px;
    height: 310px;
    object-fit: cover;
}

.cta__decription.mob {
    display: none;
}

.cta__button {
    cursor: pointer;
}
 
@media (max-width: 1439px) {
    .cta__title h2 {
        font-size: 32px;    
    }
}

@media (max-width: 1023px) {
    .cta__content {
        flex-direction: column;
    }
    
    .cta__background {
        width: 440px;
        height: 100px;
    }
    
    .cta__video {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        height: 130px;
    }
    
    .cta__decription.mob {
        display: block;
    }
    
    .cta__text .cta__decription {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta__title h2 {
        font-size: 28px;
    }
    
    .cta__video {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .cta__video, .cta__background {
        height: 140px;
    }
    
    .cta__background {
        width: 330px;
    }
}

/* FOOTER */

footer {
    padding: 50px 0 0 0;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 160px;
}

.footer__navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 160px;
    row-gap: 40px;
}

.footer__navigation h3 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contacts__content {
    display: flex;
    flex-direction: column;
}

.footer__contact a {
    font-size: 18px;
}

#menu-item-31 {
    margin-bottom: 22px;   
}


footer nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social__content {
    display: flex;
    gap: 46px;
}

.footer__social nav ul {
    display: flex;
    flex-direction: row;
    gap: 46px;
}

.footer__terms {
    max-width: 440px;
}

.footer__terms nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 0px;
}

.footer__terms a {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.4;
    line-heigth: 1.1;
}

.footer__bottom {
    margin-top: 60px;
}

.footer__bottom img {
    width: 100%;   
}

.footer-big-logo-mob {
    display: none;
}

@media (max-width: 1439px) {
    .footer__navigation {
        column-gap: 0px;
    }
}

@media (max-width: 1023px) {
    .footer__top {
        flex-direction: column-reverse;
        position: relative;
    }
    
    .footer__logo {
        position: absolute;
        right: 0;
    }
}

@media (max-width: 767px) {
    
    .footer-big-logo, .footer__logo {
        display: none;
    }
    
    .footer-big-logo-mob {
        display: block;
    }
    
    .footer__navigation a {
        font-size: 15px;
    }
    
    .footer__menu_category, .footer__social, .footer__contact {
        width: 50%;
    }
    
    .footer__menu_category:first-child {
        order: 0;
    }
    
    .footer__menu_category:nth-child(2) {
        order: 1;
    }
    
    .footer__social {
        order: 2;
    }
    
    .footer__social nav ul {
        flex-direction: column;
        gap: 14px;
    }
    
    .footer__contact {
        order: 3;
    }
    
    .footer__terms {
        order: 4;
    }
    
    .footer__terms nav ul {
        flex-direction: column;
        gap: 14px;
    }
    
    .footer__terms a {
        opacity: 1;
    }
    
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 14px 0;
}

.breadcrumbs ol {
    display: flex;
}

.breadcrumbs a {
    font-size: 13px;
    font-weight: 400;
}

.breadcrumbs li:last-child {
    opacity: 0.3;
}

/* CONTACT POPUP */


#openPopup {
    cursor: pointer;
}


#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


#popupOverlay.hidden {
    display: none;
}


#popup {
    background: #000;
    width: 945px;
    padding: 80px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0px 0px 0px 0.5px rgba(255,255,255,1);
}


.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 36px;
    line-height: 0.4;
    color: #fff;
    cursor: pointer;
}

.contact__popup__content {
    display: none;
}

.contact__popup__content.active {
    display: block;
}

.contact__popup__content h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 32px;
}

.form__block p br {
    display: none;
}

.form-row input {
    width: 50%;
}

.form p {
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form input, .form textarea {
    padding: 18px 24px;
    background-color: #232323;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    outline: none;
    box-shadow: none;
    color: #fff;
    font-family: 'Inter', sans-serif !important;
}

.form textarea {
    height: 167px;
    min-height: 167px;
    max-height: 300px;
    resize: vertical;
    max-width: 100% !important;
}

.form input::placeholder, .form textarea::placeholder {
    color: #fff;
}

[data-name="your-name"], [data-name="your-email"] {
    flex-basis: calc(50% - 5px);
    display: block;
}

[data-name="your-name"] input, [data-name="your-email"] input {
    width: 100%;
}

[data-name="tel"], [data-name="your-message"] {
    flex-basis: 100%;
    display: block;
}

[data-name="tel"] input, [data-name="your-message"] textarea {
    width: 100%;
}

.captcha__text {
    margin: 32px 0 32px;
}

.wpcf7-submit {
        transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        background-color: #000 !important;
        box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1) !important;
        cursor: pointer !important;
    } 

.wpcf7-submit:hover {
        background-color: #F26522 !important;
        box-shadow: none !important;
    }
    
.wpcf7-not-valid {
    box-shadow: inset 0px 0px 0px 1px rgba(220,50,50,1) !important;
}

.wpcf7-not-valid-tip {
    font-size: 12px !important;
    position: absolute;
    top: 12px;
    right: 12px;
}

.wpcf7-response-output {
    max-width: 260px !important;
    border: none !important;
    color: #DC3232 !important;
    font-size: 12px !important;
    line-heigth: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: -63px;
    left: 200px;
}

.wpcf7-response-output:before {
    content: '';
    background: url(/wp-content/themes/compcore/images/warning_icon_red.svg);
    display: block;
    width: 39px;
    height: 32px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -50px;
    top: 3px;
    
}

@media (max-width: 1240px) {
    .wpcf7-response-output {
        top: -63px;    
    }
}




@media (max-width: 1024px) {
    .contacts__form .container {
        flex-direction: column;
        gap: 32px;
    }

    .contacts__form h2, .form__block {
        width: 100%;
    }
    
    .contacts__form h2 {
        font-size: 28px;
    }
    
    .contacts__form h2 br {
        display: none;
    }
    
    .wpcf7-submit {
        background-color: #F26522 !important;   
    }
    
    .contact__popup__content h2 {
        font-size: 28px;
    }
    
    .wpcf7-response-output {
        top: -63px;    
    }
}

@media (max-width: 1023px) {
    
    .contacts__form {
        padding: 74px 0 74px 0;
    }
    
    #popup {
    width: 90%;
        
    }
    
    .wpcf7-submit {
        box-shadow: none !important;
    }
    
    .wpcf7-not-valid-tip {
        font-size: 10px !important;
    }
}

@media (max-width: 767px) {
    .contacts__form {
        padding: 64px 0 64px 0;
    }
    
    .contacts__form .container {
        gap: 24px;
    }
    
    .contacts__form h2 .contact__popup__content h2 {
        font-size: 22px;
    }
    
    [data-name="your-name"], [data-name="your-email"] {
        flex-basis: 100%;
    }
    
    .captcha__text {
        font-size: 12px;
        margin: 16px 0 !important;
    }
    
    #popup {
        width: 100%;
        height: 100vh;
        padding: 40px 28px 0;
        border-radius: none;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow-y: scroll;
        box-shadow: none;
    }
    
    #popup.form textarea {
        height: 124px;
        min-height: 124px;
    }
    
    .contact__popup__content {
        margin-top: 60px;   
    }
    
    .close-btn {
        top: 50px;
    }
    
    .wpcf7-response-output, .wpcf7-not-valid-tip {
        font-size: 10px !important;
    }
    
    .wpcf7-response-output {
        left: 40px;
        top: auto;
    }
    
    .wpcf7-response-output:before {
        width: 29px;
        height: 29px;
        left: -40px;
        top: 3px;
    }
}


/*SUCCESS MAIL*/

.success__popup__content {
    display: none;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 14px;
}

.success__popup__content.active {
    display: flex;    
}

.success__popup__content h2 {
    font-size: 42px;    
}

.success__popup__content p {
    font-size: 24px;
    margin: 0;
    font-weight: 300;
    opacity: 0.6;
}

.success__popup__content .video__block {
    width: 609px;
    height: 366px;
    margin: 0 auto;
    overflow: hidden;
}

.success__popup__content .video__background {
    width: 609px;
    height: 366px;
    margin: 0 auto;
}

.btn__success {
    box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
    width: 180px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
    border-radius: 6px;
}

.btn__success:hover {
    box-shadow: none;
    background-color: #F26522;
}

@media (max-width: 1024px) {
    .success__popup__content h2 {
        font-size: 28px;    
    }
    
    .success__popup__content p {
        font-size: 20px;
    }
    
    .success__popup__content .video__block {
    width: 527px;
    height: 316px;
}

.success__popup__content .video__background {
    width: 527px;
    height: 316px;
}
}

@media (max-width: 767px) {
    
    .success__popup__content {
        height: 100%;    
    }
    
    .success__popup__content h2 {
        font-size: 22px;    
    }
    
    .success__popup__content p {
        font-size: 16px;
    }
    
    .success__popup__content .video__block {
        width: 350px;
        height: 244px;
    }

    .success__popup__content .video__background {
        width: 350px;
        height: 244px;
    }
}

/* SWITCHER */
.menu-item-type-gs_sim a, a[title="ru_RU"], a[title="en_US"] {
    text-transform: uppercase;
}

#scrollToTopBtn {
    display: none;
    opacity: 0;
}


@media (max-width: 1240px) {
    #scrollToTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            opacity: 1;
            display: none;
            background-color: #3C3C3C;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 10px 15px;
            font-size: 16px;
            /*cursor: pointer;*/
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 100;
    }
}
