@media screen and (max-width: 480px){
body{
    position: relative;
    margin: 0;
    padding: 0;
}
.innerBlock{
    width: 90%;
    height: auto;
    margin: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
h1{
    
    color: black;
    font-size: calc(0.7em + 3vw);
    margin: 0;
    position: relative;
    z-index: 1;
    padding-bottom: 3vw;
}
h2 {
    
    color: black;
    font-size: calc(0.4em + 5vw);
    margin: 0;
    position: relative;
    z-index: 1;
    padding-bottom: 3vw;
}
h3{
    
    color: black;
    font-size: calc(0.5em + 2.5vw);
    position: relative;
    z-index: 1;
}
p{
    line-height: 1.5em;
    color: black;
    margin-top: 0;
    font-size: calc(0.3em + 2vw);
    position: relative;
    z-index: 1;
}
span{
    
    font-size: calc(0.2em + 3vw);
    color: #FFFFFF;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.Gradient {
    z-index: 1;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5.5%;
    right: 0%;
}

.header{
    width: 100%;
    height: auto;
    background-image: url('../images/bg360.png');
    position: relative;
    z-index: 2;
}
.headerBlock{
    top: 0;
    position: fixed;
    width: 100%;
    height: auto;
    background-color: black;
    z-index: 3;
}
.headerBlockNavigation{
    width: 100%;
    margin: 0;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.logo{
    height: 100%;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 2%;
}
.logo img{
    height: 100%;
    width: 100%;
    z-index: 2;
}
.navigation{
    width: 0;
    height: 0;
    display: none;
}
.navigation a{
    width: auto;
    height: auto;
    color: #FFFFFF;
    text-decoration: none;
    white-space: pre;
    font-size: calc(0.2em + 0.9vw);
}
.header .number{
    width: 0;
    height: 0;
    visibility: hidden;
    display: none;
}
.buttonsHeader{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.languageMenu{
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.languageButton{
    
    color:#FFFFFF;
    background:none;
}
.languageButton img{
    width: 3vw;
    z-index: 2;
}
.slideMenuLanguage{
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #000000;
}
.slideMenuLanguage span{
    border-bottom:1px solid #66666C;
    display: none;
}

.toggler{
    display: block;
    visibility: visible;
    position: absolute;
    right: 0;
    top: 0;
    height: 16vw;
    width: 16vw;
    cursor: pointer;
    opacity: 0;
    z-index: 4;
}
.hamburger{
    position:relative;
    height: 16vw;
    width: 16vw;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #FFFFFF;
    transition: 0.4s;
}
.hamburger > div{
    position: relative;
    top: 0;
    left: 0;
    background: black;
    height: 2px;
    width: 33%;
    transition: all  0.4s ease;
}
.hamburger > div::before,
.hamburger > div::after{
    content: '';
    position: absolute;
    top: -1.5vw;
    background: black;
    width: 100%;
    height: 2px;
    transition: all  0.4s ease;
}
.hamburger > div::after{
    top: 1.5vw;
}
.toggler:checked + .hamburger > div{
    background: none;
}
.toggler:checked + .hamburger{
    background: none;
}
.toggler:checked + .hamburger > div::before{
    top: 0;
    transform: rotate(45deg);
    background: #4F4F4F;
}
.toggler:checked + .hamburger > div::after{
    top: 0;
    transform: rotate(135deg);
    background: #4F4F4F;
}
.menu{
    display: block;
    visibility: visible;
    background: black;
    width: 0%;
    height: 120vh;
    z-index: 0;
    transition: all 0.4s ease;
    position: fixed;
    left: 0%;
}
.toggler:checked ~ .menu{
    width: 100%;
    left: 0%;
}
.menu >  div > ul{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    padding-left: 10px;
    visibility: hidden;
}
.menu > div > ul > li{
    list-style: none;
    padding: 0.5rem;
}
.menu > div > ul > li > a{
    width: auto;
    height: auto;
    font-family: 'Montserrat400';
    color: #FFFFFF;
    text-decoration: none;
    white-space: pre;
    font-size: calc(1em + 1vw);
}
.toggler:checked ~ .menu > div > ul{
    transition: visibility 0.4s ease;
    transition-delay: 0.1s;
    visibility: visible;
}

.toggler:checked ~ .menu > div > ul > li > a:hover{
    color: #F82525;
}

.heading{
    width: 90%;
    height: auto;
    margin: 0 5% 0 5%;
    display: flex;
    padding: 23.75% 0 9.38%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.heading h1{
    width: 100%;
    font-size: calc(1em + 3vw);
    
    color: #FFFFFF;
    white-space: normal;
}
.heading p {
    margin-top: calc(1vh + 2vw);
    color: #FFFFFF;
    width: 100%;
}
.heading .buttonSignUp{
    width: 67.8%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: #F82525;
    border-radius: 40px;
    padding: 5vw 7vw;
    margin-top: calc(2vh + 5vw);
}
.heading .buttonDown{
    margin-top: calc(2vh + 5vw);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start; 
}
.buttonDown button{
    width: 10%;
    border: 0px;
    background: none;
}
.buttonDown button img{
    width: 100%;
    height: auto;
}

.main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about{
    background-color: #FFFFFF;
    width: 100%;
    height: auto;
}
.about h2{
    font-size: calc(0.4em + 5vw);
}
.about h3{
    margin: calc(0.5vh + 1vw) 0;
}
.sheetAboutBlock{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.sheetAboutBlock div{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 2px solid #F8F9FA;
    padding: calc(1vh + 3vw) 0;
}
.area img{
    height: auto;
    width: 17%;
}
.area p{
    padding-top: 5%;
    padding-left: 0;
    margin: 0;
}
.offers{
    width: 100%;
    height: auto;
    padding-bottom: 6vw;
    background-color: black;
}
.offersBlock{
    width: 90%;
    height: auto;
    margin: 0 5%;
}
.offers .innerBlock h1 {
    width: 100%;
    color: #FFFFFF;
    padding-bottom: 2.89vw;
    margin-bottom: 0;
    border-bottom: 1px solid #4F4F4F;
}
.sheetOfferBlock{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
.offerBlock{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 6.95%;
    margin-top: 6.95%;
    border-bottom: 1px solid #4F4F4F;
}
.offerInfo{
    width: 100%;
}
.offerInfo p{
    color: white;
    font-size: calc(0.3em + 1.9vw);
    margin: 4.7% 0;
}
.offerList{
    width: 100%;
    height: auto;
    background: rgb(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 6.4% 4.05%;
    box-sizing: border-box;
}
.offerList ul{
    padding-left: 4.3%;
}
.offerList ul li{
    font-family: 'Montserrat600';
    font-weight: bold;
    margin: 2.13% 0;
    font-size: calc(0.3em + 1.92vw);
    color: #E0E0E0;
}
.offerList ul li::before {
    font-size: calc(0.2em + 2.9vw);
}
.buttonMoreInfo{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding-bottom: 0;
}
.buttonMoreInfo button{
    display: flex;
    width: 60%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    background-color: black;
    padding: 4vw 6vw;
}
.buttonMoreInfo span{
    
    color: #FFFFFF;
}
.tech{
    width: 100%;
    height: auto;
    background-color: #F8F9FA;
}
.technologiesBlock{
    width: 90%;
    height: auto;
    margin: 0 5%;
}
.sheetTechnologiesBlock{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 0;
}
.sheetTechnologiesBlock article{
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background-color: #FFFFFF;
    border-radius: 5px;
    margin-top: 1.5vw;
    padding: 4.63% 3.94%;
    box-sizing: border-box;
}
.sheetTechnologiesBlock article h3{
    margin: 0;
}
.sheetTechnologiesBlock article p{
    margin: 2.52% 0;
    font-size: calc(0.3em + 2vw);
    color: #4F4F4F;
}
.desktopList .icons{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1vw;
    align-items: center;
}
.mobileList .icons{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1vw;
    align-items: center;
}
.sheetTechnologiesBlock .webList p{
    width: 100%;
}
.webList .icons{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1vw;
    align-items: center;
}
.icons div{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.icons div img{
    width: 12vw;
    height: 12vw;
}
.sheetTechnologiesBlock article .icons p { 
    margin: 0;
    font-size: calc(0.2em + 2vw);
    padding-top: 1vh;
    color: #66666C;
}
.direction{
    width: 100%;
    height: auto;
    background: #FFFFFF;
}
.directionBlock{
    width: 90%;
    height: auto;
    padding: 0px 5%;
}
.directionBlock p{
    width: 100%;
}
.sheetDirections{
    width: 100%;
    height: auto;
    margin-top: 4vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.sheetDirections div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #66666C;
    border-radius: 100px;
    margin: 0 1vw 1vh 0;
    padding: 2% 2.4%;
}
.sheetDirections div:nth-child(6) ~ div{
    visibility: hidden;
    display: none;
}
.sheetDirections span{
    font-size: calc(0.2em + 1.7vw);
    color: black;
}
.company{
    width: 100%;
    height: auto;
    padding-bottom: 6vw;
    background-color: #F8F9FA;
}
.companyBlock{
    width: 90%;
    height: auto;
    margin: 0 5%;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 4vw;
}
.companyInfo{
    width: 100%;
    height: auto;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.companyInfo div{
    width: 100%;
    margin: 0;
}
.company .buttonMoreInfo{
    margin-top: 8.57%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    order: 1;
    padding-bottom: 0;
}
.company .buttonMoreInfo button{
    width: 67%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border: 1px solid black;
    border-radius: 40px;
    background-color: black;
    margin-top: 2vh;
    padding: 4vw 6vw; 
    margin-right: 0;
    margin-left: 3.48%;
}
.buttonMoreInfo img{
    width: 9%;
    height: auto;
}
.companyStatistics{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 0;
}
.companyStatistics div{
    width: 90%;
    position: relative;
    margin-top: 10.9%;
    padding-left: 3.48%;
}
.companyStatistics span {
    top: -30%;
    left: -13%;
    z-index: 0;
    position: absolute;
    font-weight: 700;
    font-family: 'Museo';
    font-size: calc(4em + 8vw);
}
.companyStatistics span + span{
    position: relative;
    color: black;
    font-size: calc(2em + 4vw);
    margin: 0;
}
.companyStatistics p{
    position: relative;
    color: #66666C;
    font-size: calc(0.2em + 2.2vw);
    margin: 0;
}
.contacts{
    padding-bottom: 6vw;
    width: 100%;
    height: auto;
}
.contacts .innerBlock{
    width: 90%;
    height: auto;
    margin: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contacts .telephones span{
    color: black;
    font-size: calc(0.7em + 4vw);
    margin: 0;
    position: relative;
    z-index: 1;
    padding-bottom: 3vw;
}
.telephones{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.telephones a {
    
    color: black;
    font-size: calc(0.3em + 3.2vw);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.telephones a p {
    font-size: calc(0.2em + 2.5vw);
}
.telephones a p{
    transition: 0.5s;
}
.telephones a p:hover{
    color:#F82525;
    
}
.number{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.number{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.number a img{
    width: 6.5vw;
    height: auto;
}
.formBlock{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 1vh;
}
form{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
form > *{
    background-color: #F8F9FA;
    border: 1px solid #F1F1F1;
    border-radius: 5px;
    
    line-height: 1.5em;
    color: black;
    font-size: calc(0.4em + 1.3vw);
    padding-left: 4vw;
    margin-top: 3.48%;
    outline: none;
}
.formBlock input{
    width: 100%;
    height: calc(0.4em + 11.45vw);
    box-sizing: border-box;
}   
textarea{
    grid-area: c;
    width: 100%;
    height: calc(6em + 17.54vw);
    resize: none;
    box-sizing: border-box;
    padding-top: 1vh;
}
.buttonsForm{
    margin-top: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
}
.buttonsForm .send{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 40px;
    background-color: #F82525;
    padding: 4vw 6vw;
    margin-top: 4vw;
}
.addFile{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    margin: 2vh 0;
}
.addFile svg {
    width: 4.5vw;
    height: 4.5vw;
    background-color: #F8F9FA;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 50%;
    padding: 3vw;
    text-align: center;
}
.addFile div{
    width: 100%;
    height: auto;
    padding: 3vw 4.5vw;
    background-color: #F8F9FA;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 50%;
    text-align: center;
}
.addFile span{
    color: #42424B;
    padding-left: 5%;
    font-size: calc(0.3em + 2vw);
    white-space: nowrap;
}
input[type=file]{
    width: 0;
    height: 0;
    visibility: hidden;
    display: none;
}
.footerBlockNavigation{
    width: 95%;
    height: auto;
    margin: 0 2.5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 0;
}
.footerBlockNavigation .logo{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.footerBlockNavigation .logo a img{
    width: 100%;
    height: auto;
}
.footerBlockNavigation .logo a + img{
    width: 0;
    height: 0;
    visibility: hidden;
    display: none;
}
.footer .number{
    width: 0;
    height: 0;
    visibility: hidden;
    display: none;
}
.footer .ratingBlock{
    width: 95%;
    height: auto;
    margin: calc(1vh + 1vw) 2.5% 0 2.5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.ratingBlock p{
    font-size: calc(0.3em + 2vw);
    margin: 0;
}
.rating{
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: calc(1vh + 1vw);
    flex-wrap: nowrap;
    white-space: nowrap;
}
.stars{
    width: auto;    
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-left: 3%;
}
.stars img{
    width: 3.5vw;
    height: auto;
    padding-right: 2%;
}
}