/* -Шалом- */
*{
	margin: 0;
	padding: 0;
	border: 0;
}


*,*:before, *after{
	-moz-box-sizing; border-box: 
	-webkit-box-sizing: border-box;
	-box-sizing:border-box;
}

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

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

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webcit-text-size-adjust: 100%;
}

input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none; color: #c7c7c7;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0; border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

textarea {
resize: none;
}

/* - Шрифты - */

@font-face{
font-family: 'Gilroy';
font-style: normal;
font-weight: 400;
src: url('../fonts/gilroy-regular.woff'); 
}

@font-face{
font-family: 'Gilroy';
font-style: normal;
font-weight: 500;
src: url('../fonts/gilroy-medium.woff'); 
}


@font-face{
font-family: 'Gilroy';
font-style: normal;
font-weight: 600;
src: url('../fonts/gilroy-semibold.woff'); 
}

/* - end Шрифты - */


body{
font-family: 'Gilroy';
background: #111317;
color: #FFF;
}


a{
color: #D9D9D9;
cursor: pointer;
transition: 1s all;    
}

a:hover{
color: #5897ea; 
transition: 1s all;   
}

h1, h2, h3, h4, h5, p{
font-weight: 400;
color: #FFF;
font-family: 'Gilroy';
}

h1{
font-size: 48px;
font-weight: 500;
line-height: 135%;
margin-bottom: 20px;
}

h2{
font-size: 36px;
font-weight: 600;
line-height: 135%;
}

h3{
font-size: 24px;
line-height: 135%;
}


h4{
font-size: 20px;
line-height: 135%;
}

h5{
font-size: 14px;
line-height: 135%; 
}

p{
font-size: 16px;
line-height: 135%;  
}

li{
    color: #8C8F99;
    font-size: 20px;
    font-weight: 500;
    margin-right: 50px;
}

::-webkit-scrollbar{
    height: 4px;
    width: 9px;
}

::-webkit-scrollbar-track{
background: #f0f0f0;
border-radius: 0px;
}
::-webkit-scrollbar-track piece{
    background: #e3e3e3;
}

::-webkit-scrollbar-thumb{
    background: #37393C;
    border-radius: 0px;
}

.container{
    width: 990px;
    margin: 0px auto;
    padding: 0px 15px;
    box-sizing: border-box;
    position: relative;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #3F81FD;
    color: #fff;
    font-size: 18px;
    width: 200px;
    height: 50px;
    border-radius: 7px;
    cursor: pointer;
    justify-content: center;
    font-weight: 500;
    opacity: 1;
    transition:opacity 1s ease;
}

.btn:hover{
    opacity: 0.7;
    transition:opacity 1s ease;
}

.head {
    display: flex;
    flex-direction: row;
    margin-top: 33px;
    justify-content: space-between;
}

ul {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 25px;
}

.logo_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.logo_row img{
    width: 60px;
    height: 60px;
    margin-right: 7px;
}

.logo_text h4{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.logo_text h5{
    color: #D3D4D4;
    max-width: 130px;
}

.main{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 35px;
}

.main span{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}

.main h2{
    font-size: 42px;
    margin-bottom: 20px;
}

.main h4{
    color: #D3D4D4;
    margin-bottom: 25px;
    max-width: 610px;
}

#mainImg {
    position: absolute;
    z-index: -1;
    top: -135px;
    animation: moveUpDown 3s infinite ease-in-out;
    width: 860px;
}

@keyframes moveUpDown {
    0%, 100% {
        top: -135px; 
    }
    50% {
        top: -115px; 
    }
}

#imgSer {
    position: absolute;
    width: 360px;
    animation: floatUpDown 3s infinite ease-in-out;
    z-index: -1;
    right: 0px;
    top: 50px;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0); /* Исходное положение */
    }
    50% {
        transform: translateY(-20px); /* Сдвиг вверх на 20px */
    }
}

.window_row {
    display: flex;
    flex-direction: column;
    background: #111317;
    min-height: 380px;
    width: 100%;
    max-width: 720px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid #37393C;
    border-bottom: none;
    margin-top: 55px;
}

.window_head {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    border-bottom: 1px solid #37393C;
    padding-bottom: 10px;
}

.window_btn {
    width: 15px;
    height: 15px;
    background: #2A2929;
    border-radius: 50px;
    margin-right: 5px;
    margin-left: 15px;
    cursor: pointer;
}

.window_body {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 15px 10px;
    align-items: flex-start;   
}

.window_body h3{
    font-size: 16px;
    font-weight: 500;
    color: #D3D4D4;
    margin-left: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.win_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.window_block {
    display: flex;
    flex-direction: column;
    width: 130px;
    align-items: center;
    cursor: pointer;
    opacity: 0.6;
    transition: 1s ease;
}

.window_block:hover{
    opacity: 1;
    transition: 1s ease;
}

.window_block img{
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}

.window_block h4{
    font-size: 14px;
    font-weight: 500;
}

.window_body a {
    background: #292B2E;
    display: flex;
    padding: 20px 30px;
    border-radius: 7px;
    margin: 10px 15px;
    font-size: 16px;
}

.bg_class {
    background: #fff;
    max-width: 1800px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    padding-bottom: 120px;
}



.art_row{
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 35px;
    text-align: left;
    align-items: flex-start;
}

.art_row h2{
    color: #262626;
    margin-bottom: 25px;
}

.art_row p {
    color: #595959;
    margin-bottom: 10px;
    font-size: 18px;
}

.art_row h4{
    color: #262626;
    margin: 10px 0px;
    font-weight: 600;
    font-size: 24px;
}

.art_offer{
    display: flex;
    flex-direction: column;
    margin: 25px 0px;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 15px;
    position: relative;
}

.art_offer h2{
    position: absolute;
    right: 100px;
    bottom: 10px;
    font-size: 100px;
}

.art_offer h5{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #262626;
    max-width: 550px;
}

.art_row ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    margin-bottom: 10px;
}

.art_row ul li {
    padding: 0;
    position: relative;
    padding-left: 10px;
    font-size: 18px;
    color: #595959;
    font-weight: 400;
    line-height: 25px;
    padding-bottom: 5px;
}

.main_contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}

.contact_row_all{
    display: flex;
    flex-direction: column;
}

.cr_3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 35px;
}

.contact_block_33{
    display: flex;
    flex-direction: column;
    width: 310px;
    height: 150px;
    border-radius: 15px;
    border: 1px solid #37393C;
    cursor: pointer;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
    transition: opacity 1s ease;
}

.contact_block_33 img{
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.2;
    transition: opacity 1s ease;
}

.contact_block_33 h5{
    color: #D3D4D4;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact_block_33 h3 {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.2;
    transition: opacity 2s ease;
}

.contact_block_33:hover img{
    opacity: 1;
    transition: opacity 1s ease;
}

.contact_block_33:hover h3{
    opacity: 1;
    transition: opacity 2s ease;
}

.w_50{
    width: 470px;
    height: 220px;
}

.w_50 h4{
    margin-bottom: 10px;
}

.w_50 img{
    opacity: 1;
}

.radius{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: #111317;
    height: 100px;
    margin: 0px auto;
    margin-top: -100px;
    max-width: 1800px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
    padding-bottom: 20px;
}

footer h5{
    margin-bottom: 15px;
    color: #D3D4D4;
    font-size: 16px;
}

.social{
    display: flex;
    flex-direction: row;
    margin-bottom: 35px;
}

.social_w{
    width: 100px;
}

.social img{
    width: 45px;
    height: 45px;
    margin-right: 35px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 1s ease;
    margin-bottom: 10px;
}

.social img:hover{
    opacity: 1;
    transition: opacity 1s ease;
}

.ft_link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
}

.ft_link a{
    color: #3e3b3b;
}

.ft_link p{
    color: #3e3b3b;
}


@media (max-width: 990px){

.container{
  width: 100%;
  padding: 0px 20px;
}

.head{
    flex-direction: column;
} 

ul {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

ul::-webkit-scrollbar{
    display: none;
}

ul li{
    min-width: auto;
}

#mainImg{
    width: 100%;
}

@keyframes moveUpDown {
    0%, 100% {
        top: 120px; 
    }
    50% {
        top: 160px; 
    }
}

.art_offer h2{
    position: absolute;
    right: 60px;
    bottom: 10px;
    font-size: 50px;
}

.cr_3 {
    display: flex;
    flex-direction: column;
}

.contact_block_33{
    margin-bottom: 35px;
}



}

@media (max-width: 550px){

.container{
  width: 100%;
  padding: 0px 10px;
}

.main{
    margin-top: 15px;
}

.main h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.main h4 {
    font-size: 17px;
}

.window_body h3{
    margin-left: 20px;
}

.window_block {
    width: 100px;
}

.window_block h4 {
    font-size: 12px;
    font-weight: 500;
}

#hideMob{
    overflow: hidden;
}

#imgSer {
    position: absolute;
    width: 290px;
    animation: floatUpDown 3s infinite ease-in-out;
    z-index: -1;
    right: -120px;
    top: 160px;
}

.window_body a {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.bg_class{
    border-radius: 20px;
}
.art_row {
    border-radius: 20px;
    padding: 15px 0px;
}

.art_offer h2{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 50px;
}

.contact_block_33{
    width: 100%;
    height: auto;
    padding: 30px 15px;
}

.radius{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

footer ul{
    display: flex;
    flex-direction: column;
}

footer ul li {
    margin-bottom: 25px;
    min-width: auto;
    margin-right: 0px;
    text-align: center;
}

}


}











































