@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;

    src: local("Montserrat"),
    url("../fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat Light";
    font-style: normal;
    font-weight: 300;
    src: local("Montserrat Light"),
         url("../fonts/Montserrat/static/Montserrat-Light.ttf") format("truetype");
}


@font-face {
    font-family: "Montserrat Medium";
    font-style: normal;
    font-weight: 500;
    src: local("Montserrat Medium"),
         url("../fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
	font-family: 'Montserrat SemiBold'; 
    font-style: normal;
    font-weight: 600;

    src: local("Montserrat SemiBold"),
    url("../fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype"); 
}

@font-face {
    font-family: 'Montserrat Bold'; 
    font-style: normal;
    font-weight: 700;
    src: local("Montserrat Bold"),
         url("../fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
    font-family: 'Montserrat ExtraBold'; 
    font-style: normal;
    font-weight: 800;
    src: local("Montserrat ExtraBold"),
         url("../fonts/Montserrat/static/Montserrat-ExtraBold.ttf") format("truetype");
}

@font-face {
    font-family: 'Montserrat Black'; 
    font-style: normal;
    font-weight: 900;
    src: local("Montserrat Black"),
         url("../fonts/Montserrat/static/Montserrat-Black.ttf") format("truetype");
}

* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus,
a:active {
  outline: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ul li {
  list-style: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
    margin: 0px !important;
    height: 100%;
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6, p, 
label, input {
    font-size: inherit;
    font-weight: inherit;
    font-family: 'Montserrat', sans-serif;
}

h1, h2{
    font-size: 54px;
    text-transform: uppercase;
    line-height: 100%;
}
h2{
    color: #22BE7F;
}

img {
    vertical-align: top;
}

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

body{

    line-height: 1;

    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;

    background-color: #0A1021;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 165.99%;

    height: 100%;
    width: 100%;
}



@media (max-width:1030px) {
    body{
        line-height: 130%;
    }
    h2{
        font-size: 27px;
    }
}

a{
    color: #ffffff;
}
.container{
    margin-right: auto;
    margin-left: auto;
}

.flex-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper {
    /* width: 100%; */
    position: relative;
    /* min-height: 100%; */
    /* overflow: hidden; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
._container {
    max-width: 1540px;
    padding: 0 20px;
    margin: 0 auto;
}
@media (max-width: 1540px) {
    ._container {
        max-width: 1040px;
    }
}
@media (max-width: 1040px) {
    ._container {
        max-width: 680px;
    }
}
@media (max-width: 680px) {
    ._container {
        max-width: none;
    }
}
  
.btn {
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color:#ffffff;
    font-family: 'Montserrat', sans-serif;

    width: 250px;
    height: 65px;
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(39, 196, 127, 1) 0%, rgba(11, 160, 127, 1) 100%);
    cursor: pointer;
}
.btn:hover {
    background: rgba(39, 196, 127, 1);
}
  
input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
 
input, textarea {
    width: 100%;
    padding: 15px 35px;
    height: 65px;
}
input._error {
    border: 2px solid #db2b2b;
}
  
textarea {
    resize: none;
    height: 130px;
}


.row:after {
    display: block;
    content: "";
    clear: both;
}

/*
    HEADER
*/

.header {
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.header._hide {
    opacity: 0;
    visibility: hidden;
}
._hide {
    opacity: 0;
    visibility: hidden;
    display: none;
}
.header__container {
    display: flex;
    margin: 40px 10%;
    background-color: #0A1021;
    justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}
@media (max-width: 1330px) {
    .header__container {
      margin: 22px 5%;
    }
}
.header__logo img {
    width: 100%;
    height: 55px;
}
.menu__item{
    margin: 0 35px;
}
.menu__list {
    display: -webkit-box;
        display: -ms-flexbox;
            display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
@media (max-width: 1200px) {
    .menu__item {
        margin: 0px 15px;
    }
}
@media (max-width: 676px) {
    .header__logo img{
        width: 80%;
    }
    .menu__item{
        margin: 0 5px;
    }
}
.menu__link {
    font-size: 18px;
    font-weight: 400;
    line-height: 45px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
    .menu__link:hover {
      color: #2AC87F;
    }
}
.menu__link._active {
    font-weight: 700;
    color: #2AC87F;
}
  
.menu-icon {
    display: none;
    width: 0px;
}
.menu__close{
    display: none;
}

@media (max-width: 1140px) {
    .menu-icon, .menu__close {
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 9;
      background: url("../img/burger_menu_white.svg") no-repeat;
      background-size: contain;
    }
    .menu-icon{
      display: block;
      position: absolute;
      right: 20px;
    }
    /* .menu__close{
      display: block;
      z-index: 11;
      margin: 29px 6px 35px;
      transform: rotate(180deg);
    } */
    .header__container{
      justify-content: flex-start;
    }
    .header__menu{
      justify-self: unset;
    }
    .menu__body {
        position: absolute;
        z-index: 99;
        top: 96px;
        left: 0;
        opacity: 0;
        visibility: hidden;
        padding: 10px;
        width: 100%;
        height: 90px;
        overflow-y: auto;
        background: #0A1021;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .menu__body._active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

    .menu__list {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
}
@media(max-width:760px){
    .menu__body {
        top: 95px;
    }
    
}
@media(max-width:610px){
    .menu__body {
        top: 75px;
        height: 90px;
    }
    .menu__link {
        font-size: 14px;
    }
}
@media(max-width:460px){
    .menu__list{
        flex-wrap: wrap;
        justify-content: normal;
        padding-left: 15px;
    }
}

/*
    MAIN
*/

.page {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; 
    padding-top: 135px;
}
/* @media (max-width: 1330px) {
  .page {
    padding-top: calc(90px + 100 * ((100vw - 320px) / 1010));
  }
} */

/*
    MAIN HEAD (FIRST BLOCK)
*/

.page-head {
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    min-height: 940px;
}
.page-head__container{
    width: 100%;
}
.page-head__container{
    /*align-items: flex-start;*/
    /* padding: 20% 0; */
}
@media (max-width: 1780px) {
    .page-head__container{
        padding: 20% 0;
    }
}
@media (max-width: 1330px) {
  .page-head {
    min-height: 600px;
}
  .page-head__container{
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
    .page-head {
        min-height: 400px;
    }
    .page-head__container{
        padding: 20% 40px;
    }
}
.page-head__title {
    font-family: 'Montserrat';
}
.home-page__title{
    font-family: 'Montserrat Black' !important;
    margin: 0 50% 0 0;
}
.desc{
    margin-bottom: 50px;
    margin-top: 60px;
    font-size: 22px;
}
.home-page__desc{
    margin: 20px 33% 45px 0;
}
.read-more-btn{
    width: 150px;
    flex-direction: row;
    justify-content: flex-start;
}
.read-more-btn p{
    font-size: 18px;
    margin-left: 25px;
}
.more-btn-icon{
    width: 46px;
    height: 46px;
    background-image: url('../img/more-icon.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1330px) {
    .page-head__title {
        font-size: 48px;
    }
    .home-page__title{
        margin: 0;
    }
    .desc{
        font-size: 20px;
    }
    .home-page__desc{
        margin: 20px 0 45px 0;
    }
}
@media (max-width: 767px) {
    .page-head__title {
        font-size: 30px;
    }
    .desc{
        margin-bottom: 40px;
        margin-top: 20px;
        font-size: 18px;
    }
}

/*
    ADVANTAGES BLOCK
*/

.page-block{
    padding-top: 200px;
}
.first-page-block{
    padding-top: 100px;
}
.page-advantages__container{
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.block-head-info, .block-body-info{
    align-items: flex-start;
}
.advantages-head__info{
    padding-right: 20%;
}
.page-advantages__body{
    min-width: 680px;
}
.page-advantages__cards{
    justify-content: flex-start;
    flex-direction: column;
}
.page-advantages__card{
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 45px;
}
.advantages-card__img{
    margin-right: 70px;
    min-width: 77px;
    min-height: 77px;
}
.advantages-card__desc{
    text-transform: uppercase;
    font-size: 18px !important;
    line-height: 166%;

    width: 100%;
    position: relative;
}
.page-advantages__card:not(:last-child) .advantages-card__desc::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgb(216, 216, 216);
}
.cards{
    flex-wrap: wrap;
    flex-direction: row;
}
.card-title{
    font-size: 22px;
    font-family: 'Montserrat SemiBold';
    line-height: 130%;
    margin-bottom: 20px;
}
.card-desc{
    font-size: 18px;
    line-height: 130%;
}
@media (max-width:1540px) {
    .page-advantages__container{
        flex-wrap: wrap;
    }
    .advantages-head__info{
        padding-right: 0;
    }
}

@media (max-width:1100px) {
    .page-block{
        padding-top: 60px !important;
    }
    .page-advantages__body{
        min-width: auto;
    }
    .advantages-card__desc{
        font-size: 18px !important;
    }
    
}
@media (max-width:780px) {
    .page-block{
        padding-top: 40px !important;
    }
    .card-title{
        font-size: 20px !important;
    }
    .card-desc{
        font-size: 16px !important;
    }
    .advantages-card__img{
        margin-right: 20px;
    }
}


/*
    SOLUTIONS BLOCK
*/

.page-solutions__container{
    align-items: flex-start;
}
.page-solutions__desc{
    padding-right: 55%;
}
.page-solutions__body{
    width: 100%;
    position: relative;
}
.page-solutions__cards{
    display: flex;
    flex-wrap: nowrap;
}
.page-solutions__card{
    width: 710px;
    min-height: 325px;
    /* margin-right: 10px; */
    padding: 20px 30px 20px 22%;

    border: 1px solid rgb(0, 0, 0);
    border-radius: 40px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(10, 16, 33, 1) 75%, rgba(10, 16, 33, 0) 100%);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;

    align-items: flex-start;
    justify-content: flex-start;
}

.swiper-slide {
    display: flex !important;
}

.solution-title{
    font-family: 'Montserrat Bold';
    font-size: 32px;
}
.solution-card__desc{
    flex-grow: 1;
}

.slider-wrapper{
    width: 100%;
    position: relative;
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: -90px !important;
    right: 0px !important; 
    width: 46px !important;
    height: 46px !important;
    margin-top: unset !important;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: unset !important;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: " " !important; 
}
.swiper-button-prev{
    transform: rotate(180deg);
    left: calc(100% - 130px) !important;
}
.more-btn{
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    margin-top: auto;
    text-transform: uppercase;
}
.more-btn a{
    width: 100%;
}
.vertical-line{
    width: 1px;
    position: absolute;
    height: 30px;
    z-index: 10;
    top: -84px;
    right: 0px;
    left: calc(100% - 65px);
    background: rgb(216, 216, 216);
}
.solution-more__button p{
    width: 100%;
}

@media (max-width:1540px) {
    .page-solutions__card{
        margin-right: 0px;
        padding: 20px 30px 20px 32%;
    }
    .page-solutions__desc{
        padding-right: 15%;
    }
        
}
@media (max-width:767px) {
    .page-solutions__card{
        padding: 20px 10px 20px 40px;
        background-size: cover;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 32px !important;
        height: 32px !important;
        top: -40px !important;
    }
    .vertical-line{
        height: 20px;
        top: -34px;
    }
    .more-btn{
        margin-top: 10px;
        font-size: 16px;
    }
}
@media (max-width: 450px) {
    .page-solutions__card{
        padding: 20px 10px 10px 20px;
    }
}


/*
    NEWS BLOCK
*/
.news-page-head{
    background-color: #010439;
}

.page-news__title{
    margin-bottom: 65px;
    text-align: start;
}
.page-news__cards{
    align-items: stretch;
    justify-content: flex-start;
}
.page-news__card{
    max-width: 460px;
    margin-bottom: 40px;
    background-color: #1C213E;
    border-radius: 40px;
    align-items: flex-start;
    justify-content: space-between;
}
.page-news__card:not(:last-child){
    margin-right: 40px;
}
.news-card__img{
    width: 100%;
    height: 330px;
}
.news-card__img img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 40px;
}
.news-card__title, .news-card__desc, .news-more__button{
    padding-left: 50px;
    padding-right: 50px;
}
.news-card__title{
    margin: 35px 0 15px 0;
}
.news-card__title,
.news-card__desc{
    text-align: start;
}
.news-card__desc{
    color: #808080;
    margin-bottom: 45px;
    flex-grow: 1;
}
.news-more__button{
    color: #22BE7F;
    margin-bottom: 50px;
}
.more-news{
    width: 100%;
    padding: 110px 0;
}
@media (max-width:1540px) {
    .page-news__title{
        margin-bottom: 45px;
    }
    .page-news__card{
        max-width: 460px;
        margin: 20px !important;
    }
    .news-card__img img {
        height: 100%;
    }
    .news-card__title, .news-card__desc, .news-more__button{
        padding-left: 30px;
        padding-right: 30px;
    }
    .news-card__title{
        margin: 15px 0;
    }
    .news-card__desc{
        margin-bottom: 25px;
    }
    .news-more__button{
        margin-bottom: 30px;
    }
        
}
@media (max-width:1060px) {
    .page-news__title{
        margin-bottom: 35px;
    }
    .show-more-btn{
        margin: 60px 0;
    }
    .page-news__cards{
        justify-content: center;        
    }
}
@media (max-width:680px) {
    .page-news__card{
        margin: 10px 0 !important;
    }
    .news-card__title, .news-card__desc, .news-more__button{
        padding-left: 10px;
        padding-right: 10px;
    }
    .news-card__title{
        margin: 10px 0;
    }
    .news-card__desc{
        margin-bottom: 25px;
    }
    .show-more-btn{
        margin: 30px 0;
    }
    .news-more__button{
        margin-bottom: 15px;
    }
    .news-more__button img{
        width: 36px;
        height: 36px;
    }
    .news-card__img{
        height: 230px;
    }
}
/*
    PARTNERS
*/
.page__partners{
    position: relative;
}
.page-partners__container{
    justify-content: flex-start;
    flex-direction: row;
    justify-content: space-between;
}
.block-head-info, .block-body-info{
    align-items: flex-start;
}
.partners-head__info{
    padding-right: 5%;
}
.page-partners__cards{
    min-width: 820px;
    justify-content: center;
    padding: 45px 55px;
    background-color: #ffffff;
    border-radius: 40px;
}
.page-partners__card{
    display: flex;
    justify-content: center;
    flex: 0 0 25%;
}
.partner-logo img {
    max-width: 100%;
}
@media (max-width:1540px) {
    .page-partners__container{
        flex-direction: column;
    }
    .partners-head__info{
        padding-right: 0;
    }
    .page-partners__cards{
        justify-content: center;
        padding: 20px 35px;
    }
    .page-partners__card{
        flex: 0 0 33%;
    }
}
@media (max-width: 1040px) {
    .page-partners__cards{
        min-width: 100%;
    }
}
@media (max-width:767px) {
    .page-partners__card{
        flex: 0 0 50%;
    }
}


/*
    CONTACT FORM (FEEDBACK)
*/

.page__feedback{
    padding-bottom: 100px;
    position: relative;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.1) 90%, rgba(0,0,0,1) 100%); */
}
.page-feedback__container{
    align-items: flex-start;
    flex-direction: row;
}
.block-head-info, .block-body-info{
    align-items: flex-start;
}
.feedback-head__info {
    order: 2; /* Порядок блока заголовка */
}
.page-feedback__body {
    order: 1; /* Порядок блока формы */
    background-color: #1C213E;
    margin-right: 5%;
    min-width: 975px;
    padding: 50px 45px;
    border-radius: 40px;
}
.page-feedback__title{
    margin-bottom: 65px;
}
.feedback-form-container{
    justify-content: space-between;
    align-items: flex-start;
}
.feedback-form-container .form-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.form-row, 
.form-col{
    margin-bottom: 40px;
}
.form-col{
    width: 100%;
}
.form-row > span,
.form-col > span{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.form-row input,
.form-row textarea{
    max-width: 400px;
}
.form-row input,
.form-row textarea,
.form-col input, 
.form-col textarea {
    width: 100%;
    font-size: 18px;
    line-height: 175.7%;
    background: #fff;
    border-radius: 5px;
    font-family: 'Montserrat';
}
input::-webkit-input-placeholder, 
textarea::-webkit-input-placeholder{
    color: rgb(187, 200, 212);
}
.form-row textarea{
    resize: vertical;
    /* width: auto; */
    max-height: 300px;
}
/* .form-row .textarea{
    width: 100%;
} */
.form-row label, .form-col label {
    font-size: 20px;
    margin-bottom: 10px;
}
.form-row label span, .form-col label span {
    color: red;
}
.col-submit input{
    line-height: 0;
}
@media (max-width: 1540px) {
    .page-feedback__container{
        flex-direction: column;
    }
    .feedback-head__info {
        order: 1;
    }
    .page-feedback__body {
        order: 2;
        min-width: 100%;
        margin-right: 0;
    }
    .feedback-form-container{
        align-items: center;
    }
}
@media (max-width: 1040px) {
    .feedback-body{
        padding: 0 20px;
    }
    .form-row label, .form-col label {
        font-size: 18px;
    }
    .form-row span:first-child {
        margin-right: 20px;
    }
}
@media (max-width: 768px) {
    .page__feedback{
        padding-bottom: 50px;
    }
    .page-feedback__title{
        margin-bottom: 20px;
    }
    .page-feedback__body{
        padding: 45px 15px;
    }
    .form-col{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .feedback-form-container .form-row {
        flex-direction: column;
        align-items: center;
    }
    .form-row, .form-col{
        margin-bottom: 5px;
    }
    .form-row input{
        max-width: 100% !important;
    }
    .form-row span:first-child {
        margin-right: 0px;
    }
    .form-row > span,
    .form-col > span {
        width: 100%;
        max-width: none;
        margin-bottom: 15px;
    }
    .form-row > span{
        margin-right: 0;
    }

    .wpcf7-spinner{
        display: none;
    }
}

/*
    FOOTER
*/
.footer{
    padding-top: 100px;
    margin-bottom: 85px;
}

.footer a{
    font-family: 'Montserrat Medium';
    font-size: 24px;
    line-height: 166%;
}

.footer__container {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0 20px;
}
.footer-solutions{
    flex: 3.8;
} 
.footer-menu {
    flex: 2;
}
.footer-contacts{
    flex: 3;
    padding-left: 50px;
}

.footer-contacts p, .footer-contacts p a{
    font-family: 'Montserrat Medium';
    font-size: 18px;
}

.footer-contacts .address{
    margin-top: 65px;
    margin-bottom: 40px;
}
.footer-contacts .mail{
    text-decoration: underline;
}

.footer-menu-item,
.footer-col h4{
    text-transform: uppercase;
}
.footer-col h4{
    font-family: 'Montserrat SemiBold';
    font-size: 24px;
}

.footer-menu-list{
    flex-direction: column;
}

.footer-menu-item{
    margin: 0 0 40px 0;
}

.solutions-list li a{
    font-family: 'Montserrat';
    font-size: 20px;
    color:#808080;
}
.solutions-list li{
    margin-bottom: 15px;
}

@media (max-width: 1520px) {

    .footer__container {
        padding: 0 40px;
    }

    .footer-menu-item{
        margin: 0 0 10px 0;
    }
}
@media (max-width: 1030px) {
    .footer{
        padding-top: 50px;
        margin-bottom: 45px;
    }
    .footer-solutions{
        margin-right: 20px;
    }
    .footer-contacts{
        margin-top: 20px;
        padding-left: 0px;
    }
    .footer-col {
        max-width: 100%; 
        margin-bottom: 25px;
        flex: unset !important;
    }
}
@media (max-width: 815px) {
    .footer a, .footer-col h4{
        font-size: 20px;
    }
    .solutions-list li a{
        font-size: 16px;
    }
    .footer-menu-list{
        padding-left: 0px !important;
    }
    .footer-menu-item{
        margin: 0 0 10px 0;
    }
    .solutions-list li{
        margin-bottom: 5px;
    }
    .footer__container {
        justify-content: space-between;
    }
    .footer-contacts .address{
        margin-top: 35px;
        margin-bottom: 10px;
    }
    .footer-contacts p, .footer-contacts p a{
        font-size: 16px;
    }
}
@media (max-width:475px){
    .footer__container {
        justify-content: flex-start;
    }
    .footer-solutions{
        margin-right: 10px;
    }
    .footer-contacts{
        text-align: start;
        margin-top: 0px;
    }
}

.green-ellipse {
    position: absolute;
    background-image: url('../img/back-green-ellipse.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 175px;
    filter: blur(50px);

}
.about-partner-ellipse{
    position: absolute;
    background-image: url('../img/about-partners-ellipse.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 325px;
}
.purple-ellipse{
    position: absolute;
    background-image: url('../img/back-purple-ellipse.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 1838px;
    /* height: 100%; */
    z-index: -1;
    filter: blur(50px);
    top: -50px;
}

.back-solutions-ellipse.about-contact-ellipse{
    top: 300px;
    right: -100px;
    filter: none;
}

.green-contact-ellipse{
    position: absolute;
    background-image: url('../img/green-contact-ellipse.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 1838px;
    /* height: 100%; */
    z-index: -1;
    filter: blur(50px);
    /* top: -150px; */
    right: -250px;
}
@media (max-width:1540px){
    .green-contact-ellipse{
        right: 0px;
    }
    .back-solutions-ellipse{
        left: -500px;
    }
}
@media (max-width:1100px){
    .back-solutions-ellipse{
        display: none;
    }
}

.back-solutions-ellipse{
    position: absolute;
    background-image: url('../img/back-solutions-ellipse.svg');
    background-repeat: no-repeat;
    width: 1600px;
    height: 1838px;
    /* height: 100%; */
    z-index: -1;
    filter: blur(50px);
    top: 500px;
}

.move-up {
    width: 46px;
    height: 46px;
    background-image: url('../img/more-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 9999;
}
.move-up._scroll {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 450px) {
  .move-up {
    width: 36px;
    height: 36px;
  }
}


/*
    NEWS DETAILS
*/
.page-news-details{
    background-image: url('../img/head_underline.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.news-details{
    background-color: #fff;
    color:#000;
}
.news-details__container{
    padding: 100px 20px;
}
.news-date{
    color: #6D6D6D;
    font-family: 'Montserrat Light';
    font-size: 18px;
}
.news-details-head-title{
    text-transform: none;
    font-family: 'Montserrat Bold';
}
.news-details__title{
    margin: 30px 0;
    color: #2AC87F;
    font-family: 'Montserrat Bold';
    font-size: 38px;
    line-height: 130%;
    text-align: start;
}
.news-details__text{
    padding-left: 35%;
}
.news-details__text p{
    margin-bottom: 30px;
}
.news-details__text ol li{
    margin-left: 45px;
}
@media (max-width: 1400px){
    .news-details__text{
        padding-left: 0;
    }
}

/*
    SOLUTIONS PAGE
*/
.page-head-solution_desc{
    font-size: 24px;
    margin-top: 30px;
    font-family: 'Montserrat Regular';
}
.solutions-desc{
    margin: 80px 0;
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
    align-items: baseline;
    padding: 0;
}

.solutions-desc div:nth-child(odd) {
    margin-right: 150px;
    max-width: 850px;
}
.offer .page-solutions__title{
    margin-bottom: 40px;
}
.solutions-desc .offer ul li{
    list-style-type: disc;
    list-style-position: inside;
}
.solutions-desc .offer ul li{
    padding-left: 30px;
}
.block-solution-1 {
    order: 1;
    margin-right: 80px;
}
.block-solution-2 {
    order: 2;
}
.advantages-head__info.block-solution-2{
    padding-right: 0;
}
.advantages-head__info .page-advantages__title{
    margin-bottom: 50px;
}
@media (max-width: 1540px) {
    .solutions-desc{
        margin: 40px 0;
        flex-direction: column;
        line-height: 150%;
    }
    
    .solutions-desc div:nth-child(odd) {
        margin-right: 0;
        max-width: 100%;
    }

    .block-solution-1 {
        order: 2;
        margin-right: 0;
    }
    .block-solution-2 {
        order: 1;
    }
    .page-head-solution_desc{
        font-size: 18px;
    }
    .offer .page-solutions__title{
        margin: 20px 0;
    }
}


.wpcf7-not-valid-tip,
.wpcf7-validation-errors, 
.wpcf7-acceptance-missing,
.wpcf7-response-output {
	display: none !important;
}

.wpcf7-not-valid {
	border:  2px solid red !important;
}