/* -Шалом- */
*{
	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;
}

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

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

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


body{
font-family: "Open Sans", sans-serif;
background: #f8f8f8;
color: #282828;
}


a{
color: #282828;
cursor: pointer;
transition: 1s all;
opacity: 0.6;    
}

a:hover{
opacity: 1;
transition: 1s all;   
}

h1, h2, h3, h4, h5, p{
font-weight: 400;
color: #282828;
}

h1{
font-size: 48px;
font-weight: 600;
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;
}



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

header {
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-top: 35px;
    justify-content: space-between;
    margin-bottom: 35px;
}

.mob_header{
    display: none;
}

#burger{
    display: none;
}

nav ul{
    display: flex;
    flex-direction: row;
}

nav ul li{
    margin-right: 35px;
    font-size: 16px;
    color: #282828;
}

.logo_row{
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.logo_row h4{
    font-size: 18px;
    font-weight: 600;
}

.logo_row p{
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
}

.bg_class {
    background: linear-gradient(90deg, #303030 0%, #24222a 100%);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    max-width: 1800px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #E3F1EF;
    position: relative;
}

.bg_gr{
    background: #edfff7;
    max-height: 170px;
    min-height: 170px;
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0px;
    filter: blur(130px);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 540px;
}

.main h1{
    color: #f8f8f8;
}

.main h4{
    color: #f8f8f8;
    max-width: 575px;
}

.main_btn{
    width: 100%;
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.btn {
    width: 100%;
    max-width: 220px;
    height: 55px;
    border-radius: 33px;
    background: #ffffff;
    color: #2c2c2c;
    font-size: 16px;
    opacity: 1;
    transition: opacity 1s ease;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gr{
    background: #e1ecec;
    color: #282828;
    opacity: 0.6;
    margin-left: 30px;
}

.header_info{
    margin-top: 30px;
    margin-bottom: 30px;
}

.header_info h2{
    margin-bottom: 25px;
}

.header_info h4{
    font-size: 16px;
}

.servis_row {
    display: flex;
    flex-wrap: wrap;
}

.servis_block {
    width: 200px;
    height: 200px;
    background: #303030;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-right: 40px;
    cursor: pointer;
}

.servis_block img{
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    opacity: 0.7;
    transition: opacity ease 1s;
}

.servis_block h4{
    color: #f8f8f8;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.7;
}

.servis_block:hover.servis_block img{
    -webkit-animation: animimg 1.5s ease;
    animation: animimg 1.5s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    opacity: 1;
    transition: opacity ease 1s;
}

.servis_block:hover.servis_block h4{
    opacity: 1;
    transition: opacity ease 1s;
}

@-webkit-keyframes animimg {
  15% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  30% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  40% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  65% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes animimg {
  15% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  30% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  40% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  65% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}



article{
    display: flex;
    flex-direction: column;
}

article h4{
    margin-bottom: 15px;
    font-weight: 600;
}

article h5{
    margin-bottom: 20px;
    font-weight: 400;
}

article p{
    margin-bottom: 25px;
    line-height: 150%;
    opacity: 0.8;
}

.bor_r {
    width: 100%;
    border-bottom: 1px solid #ededed;
    margin-bottom: 35px;
}

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

.question {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #ebeaea;
  padding-bottom: 10px;
  cursor: pointer;
  justify-content: space-between;
}

.question h3 {
    font-size: 18px;
    line-height: 120%;
    z-index: -1;
    font-weight: 500;
    margin-bottom: 10px;
}

.question_svg{
  width: 24px;
  height: 24px;
  z-index: -1;
}

.question svg{
    z-index: -1;
    transition: 0.5s ease-out;
    width: 24px;
    height: 24px;
}

.answer {
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  display: flex;
  padding: 0px;
  box-sizing: border-box;
  transition: 0.8s ease-out;
  border-bottom: 0px solid #ebeaea;
}

.answer p {
    font-size: 14px;
    line-height: 150%;
    padding: 20px 10px;
    opacity: 0.8;
}

.accordion.active .answer{
   border-bottom: 1px solid #ebeaea;
   overflow: hidden;
   margin-bottom: 10px;
}

.accordion.active .question svg{
    transform: rotate(180deg);
}

.bg_footer{
    background: linear-gradient(90deg, #303030 0%, #24222a 100%);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    max-width: 1800px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 90px;
}

footer{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 40px 0px;
}

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

.ft_row .logo_row{
    cursor: pointer;
}

.ft_row .logo_row h4{
    color: #f8f8f8;
    font-size: 22px;
}

.ft_row .logo_row p{
    color: #f8f8f8;
    font-size: 18px;
    opacity: 0.8;
}

.ft_cont img{
    width: 35px;
    height: auto;
    margin-right: 15px;
    cursor: pointer;
    opacity: 0.7;
}

.ft_cont img:hover{
    opacity: 1;
}

.ft_link{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-top: 35px;
}

.ft_link a{
    font-size: 14px;
    opacity: 0.2;
    margin-right: 20px;
    color: #fff;
}

.en_block{
    display: flex;
    width: 100%;
    flex-direction: row;
    background: linear-gradient(90deg, #303030 0%, #24222a 100%);
    min-height: 450px;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 30px;
    margin: 35px 0px;
}

.et_text{
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-top: 50px;
}

.et_text h2{
    color: #f8f8f8;
    margin-bottom: 25px;
}
.et_text h4{
    color: #f8f8f8;
    margin-bottom: 25px;
    font-size: 17px;
}
.et_text h5{
    color: #f8f8f8;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 12px;
    border: 1px solid #f2f5fa;
    width: 130px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}
.et_text p{
    color: #f8f8f8;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.7;
}

.emogzi_col {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg_em{
    background: #589766;
    max-height: 97px;
    min-height: 88px;
    position: absolute;
    top: 100px;
    width: 100%;
    right: 0px;
    filter: blur(90px);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.emogzi_col h2{
    font-size: 260px;
    transform: rotate(7deg);
    margin-top: 20px;
}

#emoji {
   transition: opacity 1s ease-in-out;
}

.cont_row{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin: 150px 0px;
}

.cont_row h2{
    font-size: 26px;
    margin-bottom: 25px;
}

.cont_row h4{
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 580px;
}

.cont_btn{
    display: flex;
    flex-direction: row;
}

.c_btn{
    width: 220px;
    height: 60px;
    background: #000;
    display: flex;
    flex-direction: row;
    border-radius: 50px;
    color: #f8f8f8;
    font-size: 20px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: opacity 1s ease;
    opacity: 1;
}

.c_btn:hover{
    opacity: 0.6;
    transition: opacity 1s ease;
}

.c_btn img{
    width: 30px;
    height: 30px;
    margin-right: 6px;
}


@media (max-width: 990px){

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

#burger{
    display: flex;
    cursor: pointer;
}

nav{
    display: none;
}

.mob_header{
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.mob_header.active{
    display: flex;
}

.mob_header header{
    flex-direction: column;
}

.mob_header nav{
    display: flex;
}

.mob_header nav ul{
    flex-direction: column;
}

.mob_header nav ul li{
    margin-right: 0px;
    margin-bottom: 35px;
}

.en_block{
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
}
.emogzi_col{
    width: 100%;
}

.et_text{
    align-items: center;
    width: 100%;
}

}

@media (max-width: 550px){

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

.main_btn{
    flex-direction: column;
    align-items: center;
}

.gr{
    margin-left: 0px;
    margin-top: 25px;
}

.main{
    min-height: 600px;
}

.servis_row{
    justify-content: center;
}

.servis_block{
    width: 150px;
    height: 150px;
    border-radius: 33px;
    margin-right: 20px;
}

.servis_block img{
    width: 70px;
    height: 70px;
}

.en_block{
    border-radius: 22px;
    padding: 40px 10px;
}

.servis_block h4{
    text-align: center;
}

.emogzi_col h2{
    font-size: 100px;
}

.en_block .btn{
    margin-bottom: 15px;
}

.ft_row{
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.ft_row .logo_row{
    margin-bottom: 35px;
}

.ft_row .logo_row h4{
    font-size: 16px;
}

.ft_row .logo_row p{
    font-size: 12px;
}

.cont_btn {
    flex-direction: column;
}

.c_btn {
    margin-right: 0px; 
    margin-bottom: 10px;
}


}











































