* {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -moz-highlight-color: transparent !important;
    -ms-highlight-color: transparent !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-rendering: optimizeLegibility !important;
	-webkit-text-size-adjust: none !important;
	-moz-text-size-adjust: none !important;
	-ms-text-size-adjust: none !important;
	-webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
::selection {
    background: #D40E21 !important;
    color: #ffffff !important;
}
::-moz-selection {
    background: #D40E21 !important;
    color: #ffffff !important;
}
::-webkit-selection {
    background: #D40E21 !important;
    color: #ffffff !important;
}
.noise-bg::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10999;
    pointer-events: none !important;
    background: transparent url(../img/noise-bg.jpg);
    background-repeat: repeat;
    animation: anima 0.3s steps(9) infinite both;
    -webkit-animation: anima 0.3s steps(9) infinite both;
    opacity: 0.15;
}
@keyframes anima {
    0% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}
.js-scroll {
    opacity: 0;
    transition: opacity 300ms;
    -webkit-transition: opacity 300ms;
    transition-delay: 0.5s;
}
.js-scroll.scroll-effect {
    opacity: 1;
}
.scroll-effect.slide-in-bottom {
    animation: slide-in-bottom 0.8s ease-in-out both;
    -webkit-animation: slide-in-bottom 0.8s ease-in-out both;
}
@keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(80px);
      transform: translateY(80px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  .global-bg::after {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background-image: linear-gradient(180deg, transparent 85%, rgba(15, 28, 46, 0.85) 100%);
    pointer-events: none !important;
    overflow: hidden;
}
.hidde-menu {
    opacity: 0;
    visibility: hidden;   
}
@media screen and (min-width: 981px) {
    body {
        width: 100%;
        height: auto;
        /* max-width: 100%;
        max-height: 100vh; */
        padding: 0;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        cursor: default;
        background-color: #252525;
    }
    .preloader {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background: #252525 url(../img/preload-bg.svg) center center no-repeat;
        background-size: 20%;
        pointer-events: none !important;
        z-index: 11000;
    }
    .mobile-bord {
        display: none;
    }
    .contacts-ico {
        width: 5%;
        height: auto;
        position: fixed;
        right: 1.5%;
        bottom: 6%;
        z-index: 10100;
        cursor: pointer;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    .contacts-ico img {
        width: 100%;
        height: auto;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .contacts-ico img:hover {
    filter: drop-shadow(0 0 5px #ff0019);
    }
    .contacts-cont {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: -100%;
        left: 0;
        text-align: center;
        padding: 8% 0;
        background-image: linear-gradient(180deg, #252525, #3b2121);
        z-index: 1995;
        -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.23, 1);
        -moz-transition: all 1s cubic-bezier(0.5, 1, 0.23, 1);
        transition: all 1s cubic-bezier(0.5, 1, 0.23, 1);
        box-shadow: 0px -4px 10px -2px #181818;
        -webkit-box-shadow: 0px -4px 10px -2px #181818;
   }
   .contacts-cont-hidde {
       visibility: hidden;
    }
   .contacts-cont-animations {
       bottom: 0 !important;
   }
    .contacts-cont p {
        width: 40%;
        color: #e9d2d2;
        font-size: 2.9vw;
        font-weight: 800;
        padding: 1% 0;
        margin: 0 30%;
   }
   .contacts-cont-p-border {
    border-bottom: 1px solid #D40E21;
   }
    .header {
        width: 100%;
        height: auto;
        min-height: 100vh;
        position: relative;
        display: block;
        background-image: url(../img/bg-hader.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    @media screen and (max-height: 550px) {
        .header {
            min-height: 549px;
        }
    }
    .header-section {
        width: 85%;
        height: auto;
        position: absolute;
        left: 7.5%;
        bottom: 15%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
        z-index: 100;
    }
    .header-left-cont {
        width: 50%;
        height: auto;
        margin-right: 5%;
    }
   .headline-header {
        width: 100%;
        height: auto;
        font-size: 8.5vw;
        color: #e9d2d2;
        font-weight: 800;
        padding: 0;
        margin: 0;
        text-align: left;
        display: block;
    }
    .header-section p {
        color: #e9d2d2;
        font-size: 1.6vw;
        font-weight: 400;
        text-align: left;
        display: block;
        padding: 0;
        margin: 0;
    }
    .hedaer-icons {
        display: none !important;
    }
    .hedaer-icons-img-rem-margin {
        margin-left: 0 !important;
    }
    .header-section-right-img {
        width: 38vw;
        height: auto;
        padding: 2%;
        background-image: url(../img/bg-ds.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .logo, .mob-menu-btn-text {
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    .topbar {
        width: 85%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2% 7.5%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2200;
        background-color: rgba(37, 37, 37, 0.65);
        -webkit-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
    }
    .topbar img {
        width:  13.2vw;
        height: auto;
        z-index: 1900;
    }
    .mob-menu {
        width: auto;
        height: auto;
        display: block;
        cursor: pointer;
        white-space: nowrap !important;
        z-index: 2100;
        position: relative;
        font-size: 0;
    }
    .mob-menu-btn-text {
        width: auto;
        height: auto;
        vertical-align: middle;
        display: inline-block;
        font-size: 1.5vw;
        font-weight: 600;
        color: #D40E21;
    }
    .mob-menu-btn-line {
        width: 2.8vw;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
    }
    .mob-menu-btn-line div {
        height: 0.16vw;
        margin: 8px 0;
        background-color: #D40E21;
        -webkit-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        -moz-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
    }
    .size0 {
        width: 100%;
    }
    .size2 {
        width: 100%;
    }
    .change .size0 {
          -webkit-transform: rotate(-405deg) translate(-9px, 0px);
          transform: rotate(-405deg) translate(-9px, 0px);
    }
    .change .size2 {
          -webkit-transform: rotate(405deg) translate(-7px, 2px);
          transform: rotate(405deg) translate(-7px, 2px);
    }
    .nav {
        width: 100%;
        height: 100vh;
        font-weight: 800;
        position: fixed;
        top: 0px;
        left: -100%;
        z-index: 2000;
        background-color: rgba(37, 37, 37, 0.95);
        -webkit-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        -moz-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
   }
    .nav-animations {
        left: 0 !important;
    }
    .nav-box {
        width: 85%;
        height: auto;
        margin: 0 7.5%;
        padding: 0px;
        position: absolute;
        top: 55%;
        font-size: 5vw;
        transform: translate(0%, -45%);
        -webkit-transform: translate(0%, -45%);
        -moz-transform: translate(0%, -45%);
        text-align: right;
        box-sizing: border-box;
    }
    .nav ul {
        width: auto;
        height: auto;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .nav ul li {
        list-style-type: none;
        padding: 10px 0px;
    }
    .nav ul li a {
        width: auto;
        height: auto;
        text-decoration: none;
        color: #D40E21;
        padding: 10px 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .nav a:hover {
        color: #ffffff !important;
    }
    .nav ul:hover a {
        color: #6b1c1c;
    }
    .digi-serv-bg {
        width: 100%;
        height: auto;
        background-image: url(../img/bg-dserv.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        /* overflow: auto; */
        padding-top: 1px;
        margin-top: -1px;
    }
    .oth-bg {
        width: 100%;
        height: auto;
        background-image: linear-gradient(180deg, #252525, #3b2121);
        padding-top: 1px;
        margin-top: -1px;
    }
    .about-bg {
        width: 100%;
        height: auto;
        background-color: #252525;
        padding-bottom: 5%;
        padding-top: 1px;
        margin-top: -1px;
    }
    .headline-digi-serv {
        width: 85%;
        height: auto;
        margin: 15% 7.5% 6% 0;
        padding: 0 0 5% 7.5%;
        color: #e9d2d2;
        font-size: 5.3vw;
        font-weight: 800;
        text-align: left;
        position: relative;
        border-bottom: 1px solid #D40E21;
}
    .digi-serv-sections {
        width: 85%;
        height: auto;
        margin: 0 7.5%;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        align-content: flex-start;
    }
    .digi-serv-content {
        width: 41.5%;
        height: auto;
        color: #e9d2d2;
        font-size: 1.3vw;
        font-weight: 400;
        text-align: center;
        padding: 4%;
        margin: 0.5% 0;
        background-color: rgba(0, 0, 0, 0.25);
    }
    .digi-serv-content img {
        width: 8.3vw;
        height: auto;
    }
    .digi-serv-content-txt {
        width: 100%;
        height: auto;
    }
    .digi-serv-content-txt h3 {
        display: block;
        margin: 0;
        padding: 3% 0;
        color: #e69739;
        font-weight: 800;
        font-size: 1.9vw;
    }
    .digi-serv-content-txt p {
        display: block;
        margin: 0;
        padding: 0;
    }
    .headline-oth {
        width: 85%;
        height: auto;
        margin: 15% 7.5% 3% 0;
        padding: 0 0 5% 7.5%;
        color: #e9d2d2;
        font-size: 5.3vw;
        font-weight: 800;
        text-align: left;
        position: relative;
        border-bottom: 1px solid #D40E21;
    }
    .content-oth {
        width: 85%;
        height: auto;
        margin: 0 7.5%;
        padding: 0;
        color: #e9d2d2;
        font-size: 1.3vw;
        font-weight: 400;
        text-align: left;
    }
    .content-oth p {
        padding: 5% 0;        
        margin: 0;
        border-bottom: 1px inset #7e7272;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .content-oth p:hover {
        padding-left: 2%;        
    }
    .no-border {
        border-bottom: none !important;
    }
    .headline-about {
        width: 85%;
        height: auto;
        margin: 15% 7.5% 4% 0;
        padding: 0 0 5% 7.5%;
        color: #e9d2d2;
        font-size: 5.3vw;
        font-weight: 800;
        text-align: left;
        position: relative;
        border-bottom: 1px solid #D40E21;
    }
    .content-about {
        width: 85%;
        height: auto;
        margin: 0 7.5%;
        padding: 0;
        color: #e9d2d2;
        font-size: 1.3vw;
        font-weight: 400;
        text-align: left;
    }
    .content-about img {
        width: 85%;
        height: auto;
        overflow-x: unset;
    }
    .content-about p {
        padding: 2% 0;
        width: 75%;
        text-align: left;
    }
    .footer {
        width: 85%;
        height: auto;
        padding: 2.5% 7.5%;
        margin: 0;
        font-size: 1.1vw;
        text-align: left;
        font-weight: 400;
        color: #e9d2d2;
        background-color: #252525;
        border-top: 1px solid #616161;
    }
}

/* --- mob --- */

@media screen and (max-width: 980px) {

    body {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        cursor: default;
        background-color: #252525;
    }
    .preloader {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background: #252525 url(../img/preload-bg.svg) center center no-repeat;
        background-size: 60%;
        pointer-events: none !important;
        z-index: 11000;
    }
    .mobile-bord {
        width: 1px;
        height: 100vh;
        background-color: #D40E21;
        right: 19%;
        top: 0;
        position: absolute;
        box-sizing: border-box;
   }
   .contacts-ico {
        width: 15%;
        height: auto;
        position: fixed;
        right: 2.5%;
        bottom: 2.5%;
        z-index: 10100;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
}
   .contacts-ico img {
        width: 100%;
        height: auto;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
}    
    .contacts-ico img:hover {
        filter: drop-shadow(0 0 5px #ff0019);
}
    .contacts-cont {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: -100%;
        left: 0;
        text-align: center;
        padding: 35% 0;
        background-image: linear-gradient(180deg, #252525, #3b2121);
        z-index: 1995;
        -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.23, 1);
        -moz-transition: all 1s cubic-bezier(0.5, 1, 0.23, 1);
        transition: all 1s cubic-bezier(0.5, 1, 0.23, 1);
        box-shadow: 0px -4px 10px -2px #181818;
        -webkit-box-shadow: 0px -4px 10px -2px #181818;
}   
    .contacts-cont-hidde {
    visibility: hidden;
 }
    .contacts-cont-animations {
        bottom: 0 !important;
}
    .contacts-cont p {
        width: 65%;
        color: #e9d2d2;
        font-size: 2.3vmax;
        font-weight: 800;
        padding: 2% 0;
        margin: 0 17.5%;
}
    .contacts-cont-p-border {
        border-bottom: 1px solid #D40E21;
   }
    .header {
        width: 100%;
        height: 100vh;
        position: relative;
        display: block;
        background-image: url(../img/bg-hader.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        border-bottom: 1px solid #D40E21;
    }
    .header-section {
        width: 90%;
        height: auto;
        position: absolute;
        left: 5%;
        bottom: 20%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
        z-index: 100;
    }
    .header-left-cont {
        width: 82%;
        height: auto;
    }
   .headline-header {
        width: 100%;
        height: auto;
        font-size: 7.4vmax;
        color: #e9d2d2;
        font-weight: 800;
        padding: 0;
        margin: 0;
        text-align: left;
        display: block;
    }
    .header-section p {
        color: #e9d2d2;
        font-size: 1.9vmax;
        font-weight: 400;
        text-align: left;
        display: block;
        padding: 0;
        margin: 0;
    }
    .hedaer-icons {
        width: 12.8%;
        height: auto;
        position: absolute;
        top: 45%;
        right: 3%;
        transform: translate(0, -55%);
        -webkit-transform: translate(0, -55%);
    }
    .hedaer-icons img {
        width: 100%;
        height: auto;
        display: block;
        padding: 1%;
        margin-top: 15%;
    }
    .hedaer-icons-img-rem-margin {
        margin-left: 0 !important;
    }
    .header-section-right-img {
        display: none !important;
    }
    .logo, .mob-menu-btn-text {
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    .topbar {
        width: 90%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5% 5%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2200;
        background-color: rgba(37, 37, 37, 0.65);
        -webkit-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
    }
    .topbar img {
        width:  17vmax;
        height: auto;
        z-index: 1900;
    }
    .mob-menu {
        width: auto;
        height: auto;
        display: block;
        cursor: pointer;
        white-space: nowrap !important;
        z-index: 2100;
        position: relative;
    }
    .mob-menu-btn-text {
        width: auto;
        height: auto;
        vertical-align: middle;
        display: inline-block;
        font-size: 2.6vmax;
        font-weight: 600;
        color: #D40E21;
    }
    .mob-menu-btn-line {
        width: 9.1vmin;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
    }
    .mob-menu-btn-line div {
        height: 0.31vmax;
        margin: 8px 0;
        background-color: #D40E21;
        -webkit-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        -moz-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
    }
    .size0 {
        width: 100%;
    }
    .size2 {
        width: 100%;
    }
    .change .size0 {
          -webkit-transform: rotate(-405deg) translate(-9px, 0px);
          transform: rotate(-405deg) translate(-9px, 0px);
    }
    .change .size2 {
          -webkit-transform: rotate(405deg) translate(-7px, 2px);
          transform: rotate(405deg) translate(-7px, 2px);
    }
    .nav {
        width: 100%;
        height: 100vh;
        font-weight: 800;
        position: fixed;
        top: 0px;
        left: -100%;
        z-index: 2000;
        background-color: rgba(37, 37, 37, 0.95);
        -webkit-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        -moz-transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
        transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
   }
   .nav-animations {
        left: 0 !important;
    }
    .nav-box {
        width: 88%;
        height: auto;
        margin: 0 6%;
        padding: 0px;
        position: absolute;
        top: 55%;
        transform: translate(0%, -45%);
        -webkit-transform: translate(0%, -45%);
        -moz-transform: translate(0%, -45%);
        text-align: right;
        box-sizing: border-box;
    }
    .nav-box ul {
        width: auto;
        height: auto;
        font-size: 2.9vmax;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .nav-box ul li {
        list-style-type: none;
        padding: 10px 0px;
    }
    .nav ul li a {
        width: auto;
        height: auto;
        text-decoration: none;
        color: #D40E21;
        padding: 10px 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .nav a:hover {
        color: #ffffff !important;
    }
    .nav ul:hover a {
        color: #6b1c1c;
    }
    .digi-serv-bg {
        width: 100%;
        height: auto;
        background-image: url(../img/bg-dserv.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 1px;
        margin-top: -1px;
    }
    .oth-bg {
        width: 100%;
        height: auto;
        background-image: linear-gradient(180deg, #252525, #3b2121);
        padding-top: 1px;
        margin-top: -1px;
    }
    .about-bg {
        width: 100%;
        height: auto;
        background-color: #252525;
        padding-bottom: 5%;
        padding-top: 1px;
        margin-top: -1px;
    }
    .headline-digi-serv {
        width: 90%;
        height: auto;
        margin: 25% 5% 10% 0;
        padding: 0 0 8% 5%;
        color: #e9d2d2;
        font-size: 3.2vmax;
        font-weight: 800;
        text-align: left;
        position: relative;
        border-bottom: 1px solid #D40E21;
    }
    .digi-serv-sections {
        width: 90%;
        height: auto;
        margin: 0 5%;
        display: block;
    }
    .digi-serv-content {
        width: 92%;
        height: auto;
        color: #e9d2d2;
        font-size: 1.7vmax;
        font-weight: 400;
        text-align: center;
        padding: 4% 4% 6% 4%;
        margin: 5% 0;
        background-color: rgba(0, 0, 0, 0.25);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .digi-serv-content img {
        width: 8vmax;
        height: auto;
    }
    .digi-serv-content-txt {
        width: 100%;
        height: auto;
    }
    .digi-serv-content-txt h3 {
        display: block;
        margin: 0;
        padding: 3%;
        color: #e69739;
        font-weight: 800;
        font-size: 2.5vmax;
    }
    .digi-serv-content-txt p {
        display: block;
        margin: 0;
        padding: 0;
    }
    .headline-oth {
        width: 90%;
        height: auto;
        margin: 20% 5% 2% 0;
        padding: 0 0 8% 5%;
        color: #e9d2d2;
        font-size: 3.2vmax;
        font-weight: 800;
        text-align: left;
        position: relative;
        border-bottom: 1px solid #D40E21;
    }
    .content-oth {
        width: 90%;
        height: auto;
        margin: 0 5%;
        padding: 0;
        color: #e9d2d2;
        font-size: 1.7vmax;
        font-weight: 400;
        text-align: left;
    }
    .content-oth p {
        padding: 6% 0;        
        margin: 0;
        border-bottom: 1px inset #7e7272;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .no-border {
        border-bottom: none !important;
    }
    .headline-about {
        width: 90%;
        height: auto;
        margin: 25% 5% 6% 0;
        padding: 0 0 8% 5%;
        color: #e9d2d2;
        font-size: 3.2vmax;
        font-weight: 800;
        text-align: left;
        position: relative;
        border-bottom: 1px solid #D40E21;
    }
    .content-about {
        width: 90%;
        height: auto;
        margin: 0 5%;
        padding: 0;
        color: #e9d2d2;
        font-size: 1.7vmax;
        font-weight: 400;
        text-align: left;
    }
    .content-about img {
        width: 100%;
        height: auto;
        overflow-x: unset;
    }
    .content-about p {
        padding: 2% 0;
        width: 100%;
    }
    .footer {
        width: 90%;
        height: auto;
        padding: 6% 5%;
        margin: 0;
        font-size: 1.4vmax;
        text-align: left;
        font-weight: 400;
        color: #e9d2d2;
        position: relative;
        background-color: #252525;
        border-top: 1px solid #616161;
    }   
}
@media screen and (min-width: 320px) and (max-width: 1023px) and (orientation: landscape) {
    .mobile-bord {
        width: 1px;
        height: 100vh;
        background-color: #D40E21;
        right: 15%;
        top: 0;
        position: absolute;
        box-sizing: border-box;
   }
   .topbar {
       padding: 2% 5%;
   }
   .contacts-ico {
        width: 8%;
        height: auto;
        position: fixed;
        right: 3.9%;
        bottom: 5%;
        z-index: 1900;
}
   .contacts-ico img {
        width: 100%;
        height: auto;
    }
    .hedaer-icons {
        display: none;
    }
    .contacts-cont {
        padding: 3%;
        z-index: 1050;
    }
    .contacts-cont p {
        width: 50%;
        margin: 0 25%;
}
    .footer {
        padding: 3.5% 5%;
    }
}