body {
    position: relative;
    background: rgba(255, 255, 255, 1.00);
    font-family: Quicksand;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: rgba(50, 50, 50, 1.00);
    text-align: left;
    word-break: break-word;
}

p {
    font-family: Quicksand;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: rgba(50, 50, 50, 1.00);
    text-align: left;
    margin-top: 15px;
}

ul {
    display: block;
    width: 100%;
    text-align: left;
    list-style: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding: 0px;
}

img {
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}

a {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-family: Quicksand;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    text-align: inherit;
    text-decoration: none;
    color: rgb( 255, 255, 255 );
    padding: 0px;
    margin: 0px;
    transition: all 0.5s;
}

a:hover {
    text-decoration: none;
}

.content {
    height: 100%;
    width: 100%;
    max-width: 1170px;
    text-align: center;
    margin: 0px auto;
    padding: 0px 30px;
}
.semi-content__wrap {
    width: calc(100% + 30px);
    margin-right: -30px;
  }
.semi-content {
    flex: 1 calc(50% - 30px);
    width:100%;
    padding-right: 30px;
}

.smallest {
    padding-top: 50px;
    padding-bottom: 50px;
}

.third-wrap-content {
    display: block;
    position: relative;
    width: calc(100% + 25px);
    text-align: center;
    margin-right: -25px;
    margin-bottom: 25px;
}

.third-content {
    display: inline-block;
    width: 24.7%;
    margin-bottom: 25px;
}

.third-content:nth-child(n) {
    padding-right: 25px;
}

.flex-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.section-dark {
    background-color: rgb( 15, 15, 15 );
}
  
  
.section-color {
    background-color: rgb( 25, 25, 25 );
}
h1,
h2,
h3,
h4,
.title {
    display: block;
    position: relative;
    width: 100%;
    font-family: Quicksand;
    text-align: left;
}

h1,
.title.general {
    font-size: 45px;
    line-height: 50px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1.00);
    z-index: 1;
}

h2,
.title.high {
   font-size: 45px;
    line-height: 50px;
    font-weight: bold;
    color: rgb( 175, 175, 175 );
}


h3,
.title.middle {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: rgba(100, 100, 100, 1.00);
}

h4,
.title.lower {
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    color: rgba(50, 50, 50, 1.00);
}


.title.light {
    color: rgba(255, 255, 255, 1.00);
}

.text {
    position: relative;
    font-family: Quicksand;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    color: rgba(50, 50, 50, 1.00);
    text-align: left;
    z-index: 1;
}


.text.light {
    color: rgba(255, 255, 255, 1.00);
}
.button {
    position: relative;
    display: block;
    width: auto;
    min-width: 160px;
    height: 100%;
    max-height: 50px;
    border: 2px solid rgb( 30, 210, 180 );
    border-radius: 7px;
    background-color: rgb( 30, 210, 180 );
    font-family: Quicksand;
    font-weight: bold;
    font-size: 13px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1.00);
    white-space: nowrap;
    cursor: pointer;
    padding: 0px 25px;
    transition: all 0.5s;
    z-index: 1;
}


.button:hover {
    background-color: rgb( 50, 50, 50 );
    border: 2px solid rgb( 50, 50, 50 );
    text-decoration: none;
}
.button.light {
    border: 2px solid rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 1.00);
    color: rgba(50, 50, 50, 1.00);
}

.button.light:hover {
    background: rgba(255, 255, 255, 0.00);
    color: rgba(255, 255, 255, 1.00);
}
.button.arrow {
    display: inline-block;
    min-width: 0px;
    height: 100%;
    max-height: 25px;
    border: none;
    border-radius: 0px;
    background: none;
    font-size: 13px;
    line-height: 25px;
    text-align: left;
    font-weight: bold;
  text-transform: uppercase;
    color: rgb( 255, 255, 255 );
    padding: 0px;
}


.button.arrow:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: calc(50% - 7.5px);
    left: 100%;
    width: 50px;
    height: 15px;
    background: url("../img/line-arrow.png") no-repeat center right;
    background-size: 50px 12px;
    opacity: 1;
    margin-left: 10px;
    transition: all 0.5s;
}

.button.arrow:hover:after {
    width: 90px;
    opacity: 1;
}
.button.arrow.light {
    color: rgba(255, 255, 255, 1.00);
}

.button.arrow.light:after {
    background: url("../images/arrow-light.svg") no-repeat center right;
}

.button.arrow.light:hover {
    color: rgba(255, 255, 255, 0.75);
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 100;
    padding-bottom: 10px;
}
.header.scrolled{
    background-color: rgb( 115, 75, 165 );
}

.header__content{
    align-items: center;
}
.header__logo{
    margin-top: 8px;
    z-index: 101;
}
.header__logo:hover{
    opacity: 0.5
}
.menu__list{
    padding-left: -25px;
}
.menu__list li{
    padding-left: 25px;
}
.menu__list a{
    padding-top: 15px;
    padding-bottom: 10px;
    font-weight: normal;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
}
.menu__list span{
    font-weight: normal;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
}
.menu__list a:hover{
    color: rgb(30,210,180);
}
.menu__list li{
    min-height: 50px;
}
.menu__list li.contact a{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(30,210,180);
    position:relative;
}
.menu__list li.contact a:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 8px;
    left: 0;
    border-bottom: 2px dotted rgb(30,210,180);
}
.sub-menu{
    position: absolute;
    width: 100%;
    left: 0;
    top: 50px;
    background-color: rgb( 100, 65, 140 );
    padding-bottom: 25px;
    transition: all 0.3s;
    display: none;
}
.sub-menu .content{
    padding: 0px 0px 0px 30px;
}
.sub-menu ul{
    justify-content: flex-end;
    margin-left: -45px;
    width: calc(100% + 15px)
}
.sub-menu ul li{
    margin-left: 45px;
    padding-top: 25px;
    padding-left: 0px !important;
}
.sub-menu ul a{
    padding-top: 0px;
    padding-bottom: 0px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    transition:all 0.3s;
}
.sub-menu ul a:hover{
    color: rgba(255,255,255,1);
}
.menu__list li:hover .sub-menu{
    display: flex;
}
.mobile-menu {
    position: absolute;
    right: 15px;
    top: 20px;
    display: none;
    cursor: pointer;
    z-index: 100;
}
.mobile-menu__button {
    display: block;
    position: relative;
    z-index: 101;
    width: 35px;
    cursor: pointer;
}

.mobile-menu__button span,
.mobile-menu__button span:before,
.mobile-menu__button span:after {
    display: block;
    width: 35px;
    height: 4px;
    background: rgb(255, 255, 255);
    position: absolute;
    border-radius: 5px;
    top: calc(50% - 1px);
    left: calc(50% - 17.5px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.mobile-menu__button span:before,
.mobile-menu__button span:after {
    content: '';
}

.mobile-menu__button span:before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.mobile-menu__button span:after {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
}

@media only screen and (max-width : 710px) {
    .mobile-menu {
        visibility: visible;
        display: block;
    }

    .menu__list.active {
        display: block;
    }
.sub-menu .content{
    padding: 0px 0px 0px 0px;
}
    .menu__list {
        display: none;
        position: fixed;
        top: -20px;
        left: 0px;
        width: 100%;
        height: auto;
        background-color: rgb( 115, 75, 165 );
        padding-top: 65px;
        padding-bottom: 25px;
        z-index: 91;
        overflow-y:scroll;
    }

    .menu__list li:last-child {
        height: auto;
    }

    .menu__list li {
        display: block;
        width: 100%;
        padding: 15px 0px;
        text-align: center;
    }

    .menu__list li {
        margin-left: 0px;
    }
    .sub-menu{
        position: relative;
        top: 0;
        background: transparent;
    }
    .sub-menu ul{
        margin-left: 0px;
        width: 100%;
    }
    .sub-menu ul li{
        margin-left: 0px;
        padding-left: 0px;
    }
}
.main__link{
    text-align: left;
    margin-left: -14px;
  }
  .main__link li.line{
    color: rgb(30,210,180);
    font-family: Quicksand;
    font-weight:normal;
    font-size: 15px;
  }
  .main__link li a{
    font-family: Quicksand;
    font-weight:normal;
    font-size: 15px;
      z-index: 1;
  }
  .main__link li.current a{
    color: rgb(200,200,200); 
  }
  .main__link li.last a{
    transition: 0.3s;
  }
  .main__link li.last a:hover{
    color: rgb(30,210,180);
    text-decoration: none;
  }
  .main__link li{
    margin-left: 14px;
    display: inline-block
  }
.contacts{
    padding-top: 55px;
    padding-bottom: 50px;
}
.footer__contacts input{
    height: 50px;
    width: 350px;
    border: 2px solid rgb(30,30,30);
    box-sizing: border-box;
    border-radius: 10px;
    background: rgb(30,30,30);
    font-size: 15px;
    font-family: "Quicksand";
    color: rgba( 255, 255, 255, 0.251 );
    padding:0px 20px;
    outline: none;
    margin-top: 30px;
}
.footer__contacts textarea{
    width: 100%;
    border: 2px solid rgb(30,30,30);
    border-radius: 10px;
    background: rgb(30,30,30);
    height: 100px;
    resize: none;
    font-size: 15px;
    font-family: "Quicksand";
    color: rgba( 255, 255, 255, 0.251 );
    outline: none;
    padding:20px 20px;
    margin-top: 25px;
}
.footer__contacts input:focus,
.footer__contacts textarea:focus{
    border: 2px solid rgb(75,75,75);
    color: rgb(255,255,255);
}

.footer__contacts button{
    display: block;
    margin: 0 auto;
    margin-top: 25px;
}
.contacts__title{
    text-align: center;
    text-transform: uppercase
}
@media only screen and (max-width : 1140px) {
    .footer__contacts input{
        width: 100%;
    }
}
.second-module{
    padding-bottom: 30px;
}
.second-module__list{
    margin-left: -20px;
}
.second-module__list li{
    margin-top: 30px;
    margin-left: 20px;
}
.second-module__list li li{
    margin-left: 0px;
}
.second-module__list li a{
    font-weight: bold;
    font-size: 20px;
}
.second-module__list li a:hover{
    color: rgb(30,210,180);
}
.second-sub__list li a{
    color: rgb(150,150,150);
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
}
.second-sub__list li a:hover{
    color: rgb(255,255,255);
}
.second-module__contacts{
    margin-top: 25px;
}
.second-module__contacts li{
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-top: 20px;
}
.second-module__contacts li img{
    margin-right: 10px;
}
.second-module__contacts li.map img{
    margin-right: 10px;
}
.second-module__contacts li a,
.second-module__contacts li span{
    font-size: 15px;
    font-weight: normal;
    line-height: 20px;
    color: rgb(255,255,255);
    cursor: pointer;
    transition: all 0.3s;
}
.second-module__contacts li a:hover,
.second-module__contacts li span:hover{
    color: rgb(30,210,180);
}
.soc-seti__list{
    justify-content: flex-start;
    margin-left: -15px;
}
.soc-seti__list li{
    margin-left: 15px !important;;
}
.soc-seti__list img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.5;
    transition: all 0.3s;
}
.soc-seti__list a{
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.502);
    border-radius: 50%;
    transition: all 0.3s;
}
.soc-seti__list a:hover img{
    opacity: 1;
}
.soc-seti__list li{
    margin-top: 0px !important;;
}
.second-sub__list li{
    margin-top: 25px;
}
.footer__text{
    margin-top: 25px;
    font-weight: normal;
    color: rgba(255,255,255,0.25);
}
.errorField{
    border: 2px solid rgb( 200, 50, 50 ) !important;
}
@media only screen and (max-width : 1132px) {
    .second-module__list li:not(:first-child){
        display: none;
    }
    .second-module__list li li:not(:first-child){
        display: flex;
    }
}

.popup{
    background: rgb(0,0,0);
    padding: 25px;
    position: fixed;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    display: none;
    z-index: 1000;
}
.active{
    display: block;
}
.popup__title,
.popup__text{
    text-align: center;
}
.popup__button{
    display: block;
    margin: 0 auto;
    background: transparent;
    margin-top: 30px;
}
.popup__button:hover{
    background-color: rgb( 30, 210, 180 );
    border-color:rgb( 30, 210, 180 );
}
.main{
    padding-top: 75px;
    background-image: url('../img/main__bg.png');
    background-position: center;
    background-size: cover;
}
.main__content{
    align-content: flex-end;
    align-items: center;
}
.main-images__item{
    position: relative;
    max-width: 445px;
    width: 100%;
    padding: 25px 25px;
    margin-bottom: 25px;
    flex-direction: column;
    box-shadow: 12.5px 21.651px 50px 0px rgba( 0, 0, 0,0.25 );
    cursor: pointer;
    overflow: hidden;
}
.main-about__button:hover{
    background-color: rgb( 30, 210, 180 );
    border-color:rgb( 30, 210, 180 );
}

.main-images__bg{
     position: absolute;
    top: 0;
    left: -9999px;
    right: -9999px;
    width: auto;
    height: 100%;
    max-width: none;
    min-width: 100%;
    margin: 0 auto;
}
.main__images.semi-content{
    padding-right: 0px;
}
.main__text{
    font-size: 20px;
}
.images-item__logo{
    z-index: 3;
    margin-bottom: 25px;
}
.images-item__button{
    margin-top: 25px;
    z-index: 3;
}
.images-item__title{
    z-index: 3;
}
.main-images__item:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba( 50, 50, 50,0.35 );
   z-index: 2;
}
.main-images__item:before{
   content:'';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background-color: rgba( 50, 50, 50,0.502 );
    z-index: 2;
    transition: all 0.3s;
}
.main-images__item:hover:before{
    width: 40px;
}
.main-images__item:hover{
    box-shadow: 12.5px 21.651px 50px 0px rgba( 0, 0, 0,0.40 );
}
.main-images__item:hover .button.arrow:after{
    width: 90px;
}
.main-images__list{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.main-info__buttons{
    justify-content: flex-start;
    margin-left: -25px;
}
.main-info__buttons li{
    margin-left: 25px;
    margin-top: 30px;
}
.main-about__button{
    background: none;
}
@media only screen and (max-width : 870px) {
    main.main{
        height: auto;
        padding-top: 100px;
    }
    .main .semi-content{
        flex: 1 100%;
    }
    .main-images__list{
        align-items: center;
        margin-top: 50px;
    }
}
.about-us{
    padding-top: 25px;
    padding-bottom: 25px;
    align-items: center;
}
.about-images__list{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-images__list li{
    margin-top: 25px;
}
.about-us__button{
    max-width: 165px;
    margin-top:30px;
}
.about-us__text{
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
}
@media only screen and (max-width : 810px) {
    .about-us .semi-content{
        flex: 1 100%;
        padding: 0px;
    }
    .about-us.flex-block{
        flex-wrap:wrap-reverse
    }
}
.industries{
    padding-top: 55px;
}
.industries__title{
    margin-bottom: 10px;
}
.industries__item{
    vertical-align: top;
}
.industries-item__title{
    color: rgb(255,255,255);
    font-size:15px;
    font-weight:bold;
    line-height:25px;
}
.industries-item__title span{
    padding: 8px 10px;
}
.industries-item__title.finance span{
    background: rgb(60,83,158);
}
.industries-item__title.healthcare span{
    background: rgb(76,158,60);
}
.industries-item__title.construction span{
    background: rgb(222,211,30);
}
.industries-item__title.wholesale span{
    background: rgb(181,40,40);
}
.industries-item__title.energy span{
    background: rgb(37,168,160);
}
.industries-item__title.education span{
    background: rgb(128,128,128);
}
.industries-item__title.transportation span{
    background: rgb(231,152,50);
}
.industries-item__title.entertainment span{
    background: rgb(216,64,179);
}
.industries-item__logo{
    display: block;
    padding-left: 20px;
}
.industries-item__text{
    padding-left: 20px;
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
}
.industries__item{
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.3s;
    cursor: pointer;
}
.industries__item:hover{
    box-shadow: 5px 8.66px 50px 0px rgba( 0, 0, 0,0.15);
}
.industries__list{
    margin-left: -20px;
    width:calc(100% + 20px);
    justify-content: flex-start;
}
@media only screen and (max-width : 1050px) {
    .industries__item.third-content{
        width: 30%;
    }
        .industries-item__title{
        padding-left: 20px;
}
}
@media only screen and (max-width : 915px) {
    .industries__item.third-content{
        width: 40%;
    }
}
@media only screen and (max-width : 750px) {
    .industries__item.third-content{
        width: 49%;
    }
}
@media only screen and (max-width : 600px) {
    .industries__item.third-content{
        width: 100%;
    }
}
.about{
    background-image: url('../img/about.png');
    background-size: cover;
    background-position: center;
    padding: 55px 0px;
}
.about__text{
    padding-left: 50px;
    font-family: 500;
    font-style: italic;
    margin-top: 35px;
}
.about__span.text{
    text-align: right;
    color: rgba( 255, 255, 255, 0.749 );
    font-weight:normal;
    margin-top: 35px;
}
@media only screen and (max-width : 550px) {
    .about__text{
        padding-left: 25px;
    }
}
@media only screen and (max-width : 400px) {
    .about__text{
        padding-left: 0px;
    }
}
.servisec{
    padding-top: 55px;
    padding-bottom: 55px;
}

.servisec__list{
    margin-left: -30px;
    margin-top: 30px;
}
.servisec__item{
    position: relative;
    width: calc(100% - 30px);
    max-height: 175px;
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    box-shadow: 12.5px 21.651px 50px 0px rgba( 0, 0, 0,0.25 );
    cursor: pointer;
    margin-left: 30px;
    overflow: hidden;
}
.servisec__item:hover{
    box-shadow: 12.5px 21.651px 50px 0px rgba( 0, 0, 0,0.40 );
}
.servisec-item__bg{
    position: absolute;
    top: 0;
    left: -9999px;
    right: -9999px;
    width: auto;
    height: 100%;
    max-width: none;
    min-width: 100%;
    margin: 0 auto;
}
.servisec-item__icon{
    z-index: 3;
    margin-bottom: 25px;
}
.servisec-item__button{
    margin-top: 25px;
    z-index: 3;
}
.servisec-item__title{
    z-index: 3;
}
.servisec__item:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba( 50, 50, 50,0.35 );   
    z-index: 2;
}
.servisec__item:before{
   content:'';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background-color: rgba( 50, 50, 50,0.502 );
    z-index: 1;
    transition: all 0.3s;
    z-index: 2;
}
.servisec__item:hover:before{
    width: 40px;
}
.servisec__item:hover .button.arrow:after{
    width: 90px;
}
@media only screen and (max-width : 788px) {
    .servisec .semi-content{
        flex: 1 100%;
    }

}
.main-about,
.main-contacts{
    padding-top: 90px;
    padding-bottom: 50px;
    background-image: -moz-linear-gradient( 15deg, rgb(30,210,180) 0%, rgb(115,75,165) 100%);
    background-image: -webkit-linear-gradient( 15deg, rgb(30,210,180) 0%, rgb(115,75,165) 100%);
    background-image: -ms-linear-gradient( 15deg, rgb(30,210,180) 0%, rgb(115,75,165) 100%);
  }
  .about-company{
    align-items: center;
  }
  .about-company__topText{
    margin-top: 25px;
  }
  .about-company__text{
    font-weight: normal;
    margin-top: 25px;
  }
  .about-company__img{
    position: relative;
  }
  .trends{
    padding-top:32px;
    padding-bottom: 50px;
    background-image: url('../img/trends.png');
    background-size: cover;
    background-position: center;
  }
  .trends-title__number{
    font-size: 90px;
    line-height: 75px;
    font-weight: bold;
    font-family: Quicksand;
    color: rgb(255,255,255);
    white-space: nowrap;
  }
  .trends-title__text{
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    font-family: Quicksand;
    color: rgb(255,255,255);
  }
  .trends-item__text{
    margin-top: 20px;
    font-weight: normal;
  }
  .trends-item__title{
    z-index: 1;
    position: relative;
  }
  .trends-item__title:after{
    content: '';
    position: absolute;
    top: -23px;
    left: -8px;
    width:100%;
      height: 152px;
    background-image: url('../img/trends-item.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
  }
  @media only screen and (max-width : 950px) {
    .about-company .semi-content{
      flex: 1 100%;
      padding-right: 0px;
    }
    .about-company__images{
      margin-top: 50px;
    }
  }
  @media only screen and (max-width : 1050px) {
    .trends__item.third-content{
      width: 30%;
    }
    .trends__list{
      justify-content: center;
    }
  }
  @media only screen and (max-width : 910px) {
    .trends__item.third-content{
      width: 49%;
    }
  }
  @media only screen and (max-width : 570px) {
    .trends__item.third-content{
      width: 100%;
    }
  }
  .main-industries{
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    background-image:url('../img/servicesitem_main.png');
    background-position: center;
    background-size: cover;
  }
  .main-industries:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient( 15deg, rgba(115,75,165,0.349) 0%, rgba(30,210,180,0.349) 100%);
    background-image: -webkit-linear-gradient( 15deg, rgba(115,75,165,0.349) 0%, rgba(30,210,180,0.349) 100%);
    background-image: -ms-linear-gradient( 15deg, rgba(115,75,165,0.349) 0%, rgba(30,210,180,0.349) 100%);
    z-index: 0;
  }
  .main__title,
  .main__button{
    margin-top: 25px;
  }
.main-industries__button{
  background: rgb(60,83,158);
  border-color: rgb(60,83,158);
  max-width:160px;
    margin-top: 25px;
}
.main-industries__content{
  justify-content: flex-start;
}
.main-industries__img{
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgb( 255, 255, 255 );
  z-index: 2; 
  margin-right: 34px;
}
.main-industries__img img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.solutions-item__title{
  position: relative;
  margin-left:-10px;
}
.item-title__number{
  position: absolute;
  top: -30px;
  left: 11px;
  color: rgb(225,225,225);
  font-size: 135px;
  font-weight: bold;
  line-height: 100px;
  z-index: -1;
}
.item-title__text{
  padding: 5px 10px;
  background: rgb(60,83,158);
  font-weight: bold;
}
.solutions-item__text{
  font-weight: normal;
  margin-top:25px;
}
.solutions__item{
  margin-top: 36px;
  width: 32.9%
}
.services-pages{
    background-image: url('../img/trends.png');
    background-position: center;
    background-size: cover;
  }
  .servivec-item__topText{
    margin-left: -10px;
  }
  .servivec-item__topText span{
    padding: 5px 10px;
    background-color: rgb( 50, 50, 50 );
    font-weight: bold;
  }
  .services-pages__item{
      margin-top: 25px;
      margin-bottom:0px;
  }
  .services-pages__list{
    justify-content: flex-start;
  }
  .services-item__text{
    font-weight: normal;
  }
  @media only screen and (max-width : 820px) {
    .services-pages__item,
    .solutions__item{
      width: 49.7%
    }
  }
  @media only screen and (max-width : 580px) {
    .services-pages__item,
    .solutions__item{
      width: 100%
    }
  }  
  .main-services{
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    background-image:url('../img/servicesitem_main.png');
    background-position: center;
    background-size: cover;
  }
  .main-services:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient( 15deg, rgba(115,75,165,0.349) 0%, rgba(30,210,180,0.349) 100%);
    background-image: -webkit-linear-gradient( 15deg, rgba(115,75,165,0.349) 0%, rgba(30,210,180,0.349) 100%);
    background-image: -ms-linear-gradient( 15deg, rgba(115,75,165,0.349) 0%, rgba(30,210,180,0.349) 100%);
    z-index: 0;
  }
  .main-services__img{
    height: 50px;
  }
  .main-services__text{
    margin-top: 25px;
    font-size: 20px;
  }
  .main-services__title,
  .main-services__button{
    margin-top: 25px;
  }
  .services-pages__item.arrow{
    width: 32.9%;
  }
  .servisec__item.arrow:after,
  .servisec__item.arrow:before{
    display: none;
  }
  .servisec__item.arrow{
    cursor: default;
    height: 175px;
    align-content: flex-start;
    flex-direction: column;
    justify-content: center;
    background-image: -moz-linear-gradient( 15deg, rgb(115,75,165) 0%, rgb(30,210,180) 100%);
    background-image: -webkit-linear-gradient( 15deg, rgb(115,75,165) 0%, rgb(30,210,180) 100%);
    background-image: -ms-linear-gradient( 15deg, rgb(115,75,165) 0%, rgb(30,210,180) 100%);
  }
  .servisec__item.arrow .servisec-item__img{
    height: 45px;
  }
  .servisec__item.arrow:hover{
    box-shadow: 12.5px 21.651px 50px 0px rgba( 0, 0, 0,0.25 );
  }
  @media only screen and (max-width : 820px) {
    .services-pages__item.arrow{
      width: 49.7%
    }
  }
  @media only screen and (max-width : 580px) {
    .services-pages__item.arrow{
      width: 100%
    }
  }
.contacts-module__list{
    justify-content: flex-start;
    align-items: center;
    margin-left: -95px;
}
.contact-module__item{
    margin-left: 95px;
}
.contact-module__item li{
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
    flex-wrap: nowrap;
}
.contact-module__item li span,
.contact-module__item li a{
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
    color: rgb(50,50,50);
}
.contact-module__item li img{
    margin-right: 11px;
    height: 20px;
}
.contacts-sub__list.soc-seti a{
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(50,50,50, 0.50);
    border-radius: 50%;
}
.contacts-sub__list.soc-seti img{
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.3s;
}
.contacts-sub__list.soc-seti li{
    margin-left: 15px;
}
.contact-module__item.socseti__list{
    margin-left: 80px;
}
.contacts-sub__list.soc-seti a:hover img{
    opacity: 1;
}
.contacts-module__button{
    width: 160px;
    margin-top: 25px;
}
.contact-module{
    padding-top: 25px;
}
.contact-module__item li a:hover{
    color: rgb(30,210,180);
}
.contacts-module__map iframe{
    margin-top: 50px;
    width: 100%;
    height: 250px;
}
.footer-contacts__text.light{
     color: rgba(255,255,255,0.25);
    margin-top: 25px;
}

.footer-contacts__mail {
    display: block;
    text-align: left;
}

.contact-module__item a {
    text-transform: uppercase;
}

.second-module__contacts .flex-block.mail span {
    vertical-align: top;
}

/*COOKIE*/
* + .simple__list {
    margin-top: 15px;
}
.simple__list li {
    position: relative;
    padding-left: 25px;
    color: rgba(50, 50, 50, 1.00);
}
.simple__list li:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 10px;
    height: 2px;
    background: rgb(30,210,180);
}

* + h2 {
    margin-top: 25px;
}


* {
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #020202;
    z-index: 9999;
    -webkit-box-shadow: 0 0 75px rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 0 75px rgba(0, 0, 0, .25);
    box-shadow: 0 0 75px rgba(0, 0, 0, .25);
}
.cookie__content {
    
}
.cookie__w50 {
    padding: 25px 0;
    display: -webkit-flex;
    -moz-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
}
.cookie__w50 p {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}
.cookie__w50 p:first-of-type {
    font-size: 45px;
    line-height: 50px;
    color: #afafaf;
    font-weight: 600;
}
.cookie__w50 p:last-of-type {
    margin: 0 0 20px 0;
}
.cookie__w50 p > a {
    color: #1ed2b4;
    text-decoration: underline;
}
.cookie__w50 p > a:hover {
    text-decoration: none;
}
.cookie__button {
    float: right;
    border: 2px solid #1ed2b4;
    background: transparent;
    color: #fff;
    font-size: 12px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    width: 160px;
    min-width: 160px;
    height: 50px;
    cursor: pointer;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.cookie__button:hover {
    background: #1ed2b4;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

@media (max-width: 730px) {
    .cookie {
        
    }
    .cookie__content {
        width: 100%;
        background-size: cover;
    }
    .cookie > .content {
        overflow: hidden;
    }
    .cookie__w50 {
        padding: 15px 0;
        width: auto;
        float: none;
    }
    .cookie__w50 p {
        font-size: 12px;
        line-height: 20px;
    }
    .cookie__w50 p:first-of-type {
        font-size: 26px;
        line-height: 34px;
    }
    .cookie__w50 p:last-of-type {
        margin: 0 0 12px 0;
    }
    .cookie__button {
        width: 140px;
        min-width: 140px;
        height: 40px;
    }
    .cookie__button:hover {
        background: transparent;
        color: #fff;
    }
}