/*-----------------------------*/
/*----------Main CSS-----------*/

@font-face {
    font-family: 'Exo2_bold'; 
    src: url(../fonts/Exo2_bold.ttf); 
}
@font-face {
    font-family: 'Roboto-Bold'; 
    src: url(../fonts/Roboto-Bold.ttf); 
}
@font-face {
    font-family: 'Roboto-Regular'; 
    src: url(../fonts/Roboto-Regular.ttf); 
}
body{
    font-size: 1rem;
    background: url(../img/bg-gray.webp);
    font-family: 'Roboto-Regular', sans-serif;
}
h1,h2,h3{
    font-family: 'Exo2_bold', sans-serif;
    color: #222;
}
h3{
    font-size: 1.5rem;
}
.h1_title h1{
    color: #fff;
}
p{
    color: #555;
}
a{
    text-decoration: none;
    color: #222;
}
a:hover{
    color: #222222;
}
ul{
     list-style: none;
}
section{
    padding: 80px 0 0 0;
}
h1{
    font-size: 3rem;
}
.error404_wrap{
    min-height: 15lh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error404{
    text-align: center;
}
.title_404{
    font-size: 36px;
    font-weight: 600;
    color: rgb(220,20,60);
}
.preloader {
  /*фиксированное позиционирование*/
  position: fixed;
  /* координаты положения */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* фоновый цвет элемента */
  background: #fff;
  /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
  z-index: 1001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: rgba(220,20,60);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}




.big_banner{
    display: flex;
    justify-content: center;
    align-items: center;
}
.white_shadow{
    box-shadow: 0 0 80px 80px rgb(255 255 255 / 80%);
    background: #ffffff;
}
.layer_blue{
    position: absolute;
    top: 0;
    left:0;
    background: rgba(0, 0, 255, .5);
}
.mobile{display: none;}
/*------------TOP LINE---------*/
.top_line{
    padding: 10px 0;
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    z-index: 1;
}
.top_line_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.top_line_wrap .menu{
    width: 33%
}
.top_line_wrap .menu .main_menu{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.main_menu .main_menu_item{
    font-weight: 600;
    padding: 0 0 5px 0;
    font-size: 1.2rem;
    text-transform:uppercase;
    border-bottom: 2px color #ffffff;
    transition: all .2s ease;
}
.main_menu .main_menu_item:hover{
    border-bottom: 2px solid rgba(220,20,60);
    transition: all .2s ease;
    
}
.main_menu .main_menu_item a:hover{
    color: #222;
}
.mob_menu{
    padding: 0;
}
.top_line_wrap .contacts{
    text-align: center;
    font-size: 1.2rem;
    line-height: 32px;
}
.top_line_wrap .contacts div, .net_uslugi_contacts_wrap div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.top_line_wrap .contacts{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whats{
    width: 32px;
    height: 32px;
}
.whats img{
    width: 100%;
    height: auto;
}
.top_line_wrap .contacts div .icons{
    padding:3px;
    width: 27px;
}
.top_line_wrap .contacts a{
   
}
/*-------------HEAD------------*/
.header{
    position: relative;
    height: auto;
}
.banner_wrap{
    position: relative;
    margin: 50px 0 0 0;
    height: 600px;
}
.img_layer{
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/banner.webp);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.data_layer{
    position: absolute;
    top:0;
    left:0;
    background-color: rgba(0,0,0,.5);
    width:100%;
    height: 100%;
    z-index: 0;
}
.banner_data{
   margin-top: 50px;
   padding: 0 50px;
}
.banner_data .phone{
    display: flex;
    align-items: center;
}
.banner_data .phone a{
    color: gold;
    font-family: 'Exo2_Bold', sans-serif;
    font-size: 1.4rem
}
.banner_data .phone .icons{
    width: 27px;
    height: 27px;
    margin-right: 3px;
}
.h1_title{
    color: #fff; 
}
.h1_title span{
    color: #fff;
}
.sub_title{
    color:#fff;
    font-size: 1.4rem;
    margin: 30px 0 10px;
}
.advantages{
    display: block;
    max-width: 80%;
    margin: auto;
}
.advantages_item{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 10px;
    margin-bottom: 35px;
    background-color: rgba(220,20,60,.7);
    border-radius: 5px;
    
}
.advantage_img{
    width: 60px;
    height: 60px;
    margin: 0 10px 0 0;
}
.advantage_img img{
    width: 100%;
}
.advantage_desc{
    color:#fff;
    font-size: 1rem
}

/*----------Main Info----------*/
.main_info{
    margin-top: 90px;
}

.uslugi{
    
}
.uslugi_list_items{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px
}
.uslugi_item{
    position: relative;
    width: 23%;
    min-width: 300px;
    margin-bottom: 25px;
    box-shadow: 3px 3px 5px 0px rgb(0 0 0 / 25%);
    
}
.uslugi_item:hover .uslugi_item_layer{
    
}
.uslugi_item .uslugi_item_top img{
    width: 100%;
}
.uslugi_item .uslugi_item_bottom{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 60px;
}
.uslugi_price{
    display: flex;
    align-items: center;
    justify-content: center;
    width:30%;
    text-align: center;
    background-color: #34a0da;
    height: 100%;
    font-weight: 600;
}
.uslugi_title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 100%;
    text-align: center;
    background-color: rgba(220,20,60);
    color: #fff;
    font-weight: 600;;
}
.uslugi_item_layer{
    position: absolute;
    top: 0;
    left:0;
    width:100%;
    height: 100%;
    background-color: rgba(255,255,255,.2);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: all .3s ease;
}
.uslugi_item_layer a{
    height:100%;
    width:100%;
    cursor: point;
}

.uslugi_item:hover .uslugi_item_layer{
    visibility: visible;
    transition: all .3s ease;
}
.btn{
    background-color: rgba(220,20,60);
    padding:8px 10px;
    color: #fff;
    transition: all .1s ease;
}
.btn:hover{
    background-color: rgba(255,255,255);
    transition: all .1s ease;
    border: 2px solid rgba(220,20,60);
}
.net_uslugi{
    padding: 30px 0;
}
.net_uslugi_wrap{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}
.net_uslugi_text{
    width:60%;
}
.net_uslugi_img{
    width:100%;
    background: url(../img/bg-arr-black.png) 500px 50px no-repeat;
}
.net_uslugi_img p{
    width: 50%;
    margin: auto;
    margin-top: 40px; 
}
.net_uslugi_contacts{
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    font-size: 36px;
    
}
.net_uslugi_contacts_wrap .phone{
    margin-bottom: 20px;
}
.net_uslugi_contacts_wrap .icons{
    width:60px;
    margin-right: 5px;
}
.otzivi{
    background-color:rgba(52, 160, 218, .7);
    width: 100%;
    height: auto;
    min-height: 480px;
}
.otzivi_wrap{
    padding: 30px 0;
}
.feedback_wrap{
    display: block;
    background-color: #fff;
    min-height: 300px;
    position: relative;
    border-style: solid;
    border-color: rgba(220,20,60);
    border-width: 2px;
}
.feedback_text{
    padding: 20px;
    line-height: 2;
    color: #555;
}
.feedback_photo{
    position: absolute;
    bottom: 0;
    text-align: center;
    width:100%;
}
.feedback_photo_img{
    width: 81px;
    height: 81px;
    border-radius: 50%;
    border-style: solid;
    border-color: rgba(220,20,60);
    border-width: 2px;
    margin: auto;
}
.feedback_photo_img img{
    width:100%;
    border-radius:50%;
}
.feedback_name{
    color: rgba(220,20,60);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px;
}
.owl-carousel{
    margin-top: 20px;
    z-index: 0;
}
.owl-nav{
    display: none;
}
.owl-dots{
    margin-top:20px;
}
.owl-dots span{
    background: #fff !important;
}
.owl-dots:hover span, .owl-dot.active span{
    background: rgba(220,20,60) !important;
}

.why_me{
    padding: 30px 0;
    position: relative;
}

.why_me_wrap{
    padding: 30px 0;
}
.why_me_item{
    margin-bottom: 60px;
    text-align: center;
}
.why_me_text{
    margin-top: 20px
}
.why_me_center_img{
    width: 95%;
    margin: auto;
}
.why_me_center_img img{
    width: 100%;
    height: auto;
    max-height: 560px;
}
.why_me_img_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.why_me_desc, .net_uslugi_text{
    color: #555;
}
.seo_text{
    padding:30px 0;
}
.seo_text li{
    color: #555;
    margin-bottom: 8px;
}
.seo_text img{
    max-width: 500px;
    width: 100%;
    height: auto;
    
}
#accordion_1{
    padding: 15px 0 45px 0;
}
.accordion-button{
    background: rgba(220,20,60) !important;
    color:#fff !important;
}
.accordion-button::after{
    background-image: url(../img/down_chevron.png);
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../img/down_chevron.png);
}
.price_muzh_cervice_list li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 8px 0;
}
.ouer_serv{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom:70px;
}
.ouer_serv li a{
   color: rgb(220, 20, 60); 
}
.primery_wrap{
    margin-bottom: 30px;
}
.works_img img{
    width: 100%;
    margin-bottom:10px;
}
/*------------Footer-----------*/
.footer{
    position: relative;
    background-color: rgba(52, 160, 218, .7);
    height: 500px;
    padding: 0px 0 0 0;
}
.foo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}
.footer_logo{
    margin-bottom: 10px;
}
.footer_contacts .phone{
    margin: 20px 0 10px 0; 
}
.footer_contacts div{
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}
.footer_contacts div img{
    margin-right: 5px;
    width:27px;
}
.footer_contacts div a{
    font-size: 1.2rem;
}

.footer_contacts .phone .whats{
    margin: 0 0 0 10px;
}

nav {
  background-color: #fff;
  height: 65px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 25px;
  left: 0;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span
{
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: rgba(220,20,60);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #36383F;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
    left:-85px;
  width: 180px;
  height: 400px;
  box-shadow: 0 0 10px #85888C;
  margin: -50px 0 0 -50px;
  padding: 35px;
  padding-top: 125px;
  background-color: #F5F6FA;
  -webkit-font-smoothing: antialiased;
  transform-origin: 10% 0%;
  transform: translate(-900%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}



/*-----------------------------*/
/*--------REsponsive CSS-------*/

/*
@media (max-width: 1400px) { ... }
@media (max-width: 1200px) { ... }
@media (max-width: 992px) { 
    .main_info{margin-top: 0;}
    .net_uslugi_img img{
        width: 80%;
    }
    .net_uslugi_img {
        width: 100%;
        background: url(../img/bg-arr-black.png) 434px 50px no-repeat;
    }
}
@media (max-width: 768px) {
    .top_line{display: none;}
    .desktop{display: none;}
    .uslugi_item{width: 48%;}
    .net_uslugi_contacts_wrap{margin-top: 20px;}
    .net_uslugi_text, .net_uslugi_contacts{width: 100%;}
    .net_uslugi_contacts_wrap{width: 100%;}
    .feedback_wrap{min-height: 380px;}
}
@media (max-width: 576px) {
    .top_line{display: none;}
    .desktop{display: none;}
    .main_info{margin-top: 0px;}
    .feedback_wrap{min-height: 355px;}
    .uslugi_item{width: 100%;}
    .why_me_sec_wrap .col{flex: 1 0 51%;}
}
@media (max-width: 425px) {
   
}
@media (max-width: 320px) {
    body{font-size: .9rem;}
    h1{font-size: 2.5rem;}
    .h1_title, .sub_title{text-align: center;}
    .banner_data .phone{justify-content: center;text-align: center;}
    .desktop{display: none;}
    .banner_data{padding: 5px;}
    .banner_wrap{}
    .advantages{max-width: 100%;}
    
    .net_uslugi_contacts{font-size: 30px;}
    
    .net_uslugi_contacts_wrap .icons{width: 35px;}
    .feedback_wrap{min-height: 375px;}
    .why_me_item{margin-bottom: 20px}
}*/


.phone_button{
    position: fixed;
    right: -21px;
    bottom: 15px;
    visibility: hidden;
}
.circlephone{
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    border: 2px solid blue;
    width: 100px;
    height: 100px;
    bottom: -12px;
    right: 23px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    opacity: .5;
    -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
    -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
    -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
    -o-animation: circle-anim 2.4s infinite ease-in-out !important;
    animation: circle-anim 2.4s infinite ease-in-out !important;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s;
}
.circle-fill{
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    background-color:blue;
    width: 75px;
    height: 75px;
    bottom: 0px;
    right: 35px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: circle-fill-anim 2.3s infinite ease-in-out;
    animation: circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s;
}
.img-circle{
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 50px;
    height: 50px;
    bottom: 12px;
    right: 44px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
}
.img-circleblock{
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 45px;
    height: 45px;
    background-image: url(../img/phone_button.png);
    background-position: center center;
    background-repeat: no-repeat;
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}


@-webkit-keyframes tossing {
    0%{
        transform: rotate(-8deg);
    }
    50%{
        transform: rotate(8deg);
    }
    100%{
        transform: rotate(-8deg);
    }
}
@-o-keyframes tossing {
    0%{
        transform: rotate(-8deg);
    }
    50%{
        transform: rotate(8deg);
    }
    100%{
        transform: rotate(-8deg);
    }
}
@-moz-keyframes tossing {
    0%{
        transform: rotate(-8deg);
    }
    50%{
        transform: rotate(8deg);
    }
    100%{
        transform: rotate(-8deg);
    }
}
@keyframes tossing {
    0%{
        transform: rotate(-8deg);
    }
    50%{
        transform: rotate(8deg);
    }
    100%{
        transform: rotate(-8deg);
    }
}

@-webkit-keyframes circle-anim {
    0%{
        -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
        -webkit-opacity: .3;
    }
    30%{
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        -webkit-opacity: .5;
    }
    100%{
       -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-opacity: .1;
    }
}
@-o-keyframes circle-anim {
    0%{
        transform: rotate(-8deg);
        opacity: .3;
    }
    50%{
        transform: rotate(8deg);
        opacity: .5;
    }
    100%{
        transform: rotate(-8deg);
        -o-opacity: .1;
    }
}
@-moz-keyframes circle-anim {
    0%{
        moz-transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .3;
        -moz-opacity: .3;
    }
    50%{
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -o-opacity: .5;
    }
    100%{
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -o-opacity: .1;
    }
}
@keyframes circle-anim {
   0%{
        transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .3;
    }

    30%{
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .5;
    }
    100%{
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .1;
    }
}

@-webkit-keyframes circle-fill-anim {
    0%{
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
    50%{
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .7;
    }
    100%{
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
}
@-o-keyframes circle-fill-anim {
    0%{
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
    50%{
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .7;
    }
    100%{
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
}
@-moz-keyframes circle-fill-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
    50%{
        -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
        opacity: .7;    
    }
    100%{
        moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
    
}
@keyframes circle-fill-anim {
    0%{
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
    50%{
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .7;
    }
    100%{
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .7;
    }
}




@media (min-width: 320px) { 
    body{font-size: .9rem;}
    h1{font-size: 2.5rem;}
    #menu{
        padding: 100px 25px 25px 25px;
        min-height:500px;
        height: auto;
    }
    .top_line_wrap .logo{width:50%}
    .top_line_wrap .logo img{width:100%;}
    .main_info{margin: 0;}
    .h1_title, .sub_title{text-align: center;}
    .banner_data .phone{justify-content: center;text-align: center;}
    .desktop{display: none;}
    .mobile{display: block}
    .banner_data{padding: 5px;}
    .banner_wrap{height: 470px;}
    .advantages{max-width: 100%;}
    .uslugi_list_items{justify-content: space-around;}
    .uslugi_item{width:100%;}
    .net_uslugi_contacts_wrap{width: 100%;margin-top: 20px}
    .net_uslugi_text, .net_uslugi_contacts{width: 100%;}
    .net_uslugi_contacts{font-size: 30px;}
    .net_uslugi_contacts_wrap .icons{width: 35px;}
    .net_uslugi_contacts_wrap .icons{width: 35px;}
    .feedback_wrap{min-height: 375px;}
    .why_me_item{margin-bottom: 20px}
    .why_me_sec_wrap .col{flex: 1 0 51%;}
    .phone_button{visibility: visible;}
    .seo_text img{width:100%; height:auto;margin-left:0 !important;}
    .top_line .contacts .whats{
        display: none;
    }
    .top_line_wrap .contacts{
        font-size: .6rem;
    }
}

@media (min-width: 576px){
    .banner_wrap{height: 400px;}
    .feedback_wrap{min-height: 310px;}
}

@media (min-width: 768px){
    body{font-size: 1rem;}
    .top_line_wrap .logo{width: 32%;}
    #menu{width:220px;}
    .uslugi_item{width:47%;}
    .feedback_wrap{min-height: 360px;}
    .why_me_sec_wrap .col{flex: 1 0 0%;}
    .seo_text img{width:50%; height: auto;}
    .top_line .contacts .whats{
        display: flex;
        padding-right: 16px;
    }
    .top_line_wrap .contacts{
        font-size: 1.2rem;
    }
}
@media (min-width: 992px){
    .banner_wrap{height: 600px}
    .top_line{display: block;}
    .desktop{display: block;}
    .mobile{display: none;}
    .feedback_wrap{min-height: 310px;}
    .feedback_wrap{min-height: 360px;}
    .net_uslugi_text{ width: 60%;}
    .net_uslugi_contacts{ width: 40%;}
    .net_uslugi_img{
        background: url(../img/bg-arr-black.png) 435px 50px no-repeat;
    }
    .net_uslugi_img img{width: 80%;}
    .advantages {max-width: 90%;}
}
@media (min-width: 1024px){
    .top_line_wrap .logo {
    width: 25%;
}
    .net_uslugi_contacts_wrap .phone a{width: 50%;font-size: 1.5rem;}
    .uslugi_item{width:32%; margin-bottom: 12px;}
    .net_uslugi_img {
        background: url(../img/bg-arr-black.png) 435px 50px no-repeat;}
        .phone_button{visibility: hidden;}

}
@media (min-width: 1200px){
    .net_uslugi_contacts {font-size: 36px;}
    .advantages {max-width: 80%;}
    .net_uslugi_img {
        background: url(../img/bg-arr-black.png) 500px 50px no-repeat;}


}
@media (min-width: 1440px){
    .top_line_wrap .logo {
        width: 20%;
    }
    .uslugi_item{width:23%; margin-bottom: 20px;}
    .net_uslugi_img {
        background: url(../img/bg-arr-black.png) 660px 50px no-repeat;}
    .net_uslugi_img img{width: 100%}
    .advantages {max-width: 75%;}
}
