/* -Шалом- */
*{
	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: 'AvenirNextCyr';
    src:url('../fonts/avenirnextcyr-bold.woff2') format('woff2');
    font-weight: 600;
    line-height: 120%;
}

@font-face {
    font-family: 'AvenirNextCyr';
    src: url('../fonts/avenirnextcyr-regular.woff2') format('woff2');
    font-weight: 400;
    line-height: 120%;
    font-style: normal;
}


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


body{
font-family: 'AvenirNextCyr';
background: #f8f8f8;
color: #262626;
}


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

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

h1, h2, h3, h4, h5, p{
font-weight: 400;
color: #262626;
line-height: 130%;
}

h1{
font-size: 44px;
font-weight: 600;
margin-bottom: 32px;
}

h2{
font-size: 36px;
font-weight: 600;
}

h3{
font-size: 24px;
}


h4{
font-size: 20px;
}

h5{
font-size: 14px;
}

p{
font-size: 16px; 
}

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

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

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

.popup{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(242 242 242 / 97%);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease 0s;
}

.popup.active .popup_content{
    opacity: 1;
    transform: translate(0px, 0px);
}


.popup.active {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}

.popup_body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    transition: all 0.8s ease 0s;
}

.popup_content {
    display: flex;
    flex-direction: column;
    background-color: #f6f7f8;
    color: #333;
    width: 500px;
    height: 550px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 15px;
    position: relative;
    transition: all 0.8s ease 0s;
    opacity: 0;
    transform: translate(0px, -100%);
}

.popup_content svg{
    width: 30px;
    height: 30px;
    stroke: #333;
    top: 20px;
    right: 20px;
    position: absolute;
    cursor: pointer;
}

#screen {
  width: 100%;
  white-space: pre-wrap;
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 40px;
  user-select: none;
  min-height: 90vh;
  box-sizing: border-box;
}
.blink {
  animation: blink 1s infinite steps(2, start);
}
@keyframes blink {
  to { opacity: .2 }
}
.progress-bar-bg {
  width: 100%;
  background: #e3e3e3;
  border-radius: 8px;
  margin: 20px 0 10px 0;
  height: 24px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #39ff14, #0af);
  width: 0;
  transition: width 0.2s;
}

.btn {
    width: 250px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    background-color: #ffe64b;
    border-radius: 8px;
    transition: all 0.7s ease;
}

.btn:hover{
    background-color: #333;
    color: #f6f7f8;
}

.input_group {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    z-index: 1;
    flex-direction: column;
}

.input_group_all {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}


.input_request{
    width: 100%;
    max-width: 300px;
    height: 65px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid rgba(128,139,149,.32);
    font-size: 16px;
    transition: 0.3s;
    padding: 0px 16px;
    padding-top: 6px;
    outline: none;
    box-sizing: border-box;
}

.input_request:focus{
    border-color: #262626;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 40rem #f6f7f8 inset;
}

.styles_label {
    position: absolute;
    top: 24px;
    left: 16px;
    z-index: 0;
    color: #888888;
    font-size: 16px;
    transition: 0.3s;
    pointer-events: none;
}

.error_input {
    border-color: #fb233d;
}

.bg_greed{
    width: 100%;
    background-image: url(../img/bg_greed.svg);
    min-height: 555px;
    background-position-x: center;
    background-position-y: center;
    background-size: 33%;
}

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

.header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 30px 0px;
    align-items: center;
}

.header img{
    cursor: pointer;
    width: 50px;
    height: 50px;
}

#burger{
    width: 30px;
    height: 30px;
}

.head_menu{
    display: flex;
    flex-direction: row;
    margin-bottom: 25px;
}

.head_menu a{
    font-size: 18px;
    margin-right: 35px;
    color: #262626;
}

.menu_close{
    display: none;
}

.main {
    padding-top: 32px;
    display: flex;
    width: 100%;
    min-height: 488px;
    background-position-x: center;
    background-position-y: center;
    background-size: 100%;
    position: relative;
}

.main img {
    width: 240px;
    height: 253px;
}

.main_img{
    transform: rotate(16deg);
    position: absolute;
    right: 0px;
    top: 70px;
}

#imgAmim {
    position: absolute;
    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 */
    }
}

.m_text{
    display: flex;
    flex-direction: column;
    width: 65%;
    margin-top: 44px;
}

.m_text h4{
    margin-bottom: 32px;
    opacity: 0.8;
}

.btn{
    display: flex;
    width: 222px;
    height: 60px;
    background: #262626;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border-radius: 50px;
    opacity: 1;
    transition: 1s ease;
    color: #f8f8f8;
}

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

.m_chart{
    width: 280px;
    height: 300px;
    background: rgb(40 40 40 / 80%);
    border: 1px solid #535353;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 16px;
}

.mc_line {
    width: 100%;
    border-bottom: 1px solid #383838;
    margin: 16px 0px;
}

.mc_row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.m_chart h3{
    font-size: 22px;
    font-weight: 600;
}

.m_chart h5{
    margin-bottom: 12px;
}

.row_tag{
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    opacity: 0.7;
}

.tag {
    background: #262626;
    height: 24px;
    width: fit-content;
    border-radius: 20px;
    color: #f8f8f8;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 12px;
}

.row_contact{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.row_contact a{
    margin-left: 15px;
    font-size: 16px;
}

.offer_row{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
}

.offer_row img{
    width: 450px;
    margin-right: 20px;
}

.offer_row h2{
    font-size: 32px;
    margin-bottom: 25px;
}

.off_row {
    margin: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.off_block {
    display: flex;
    flex-direction: row;
    width: 49%;
    margin-bottom: 45px;
}

.off_block img{
    width: 65px;
    height: 65px;
}

.off_text h4{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.off_text p{
    font-size: 12px;
}

.ser_row{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.ser_block{
    display: flex;
    flex-direction: column;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    border-top: 1px solid #efefef;
    box-sizing: border-box;
    padding: 50px 20px 20px 20px;
    width: 33%;
    cursor: pointer;
    position: relative;
}

.ser_block img{
    width: 55px;
    height: 55px;
    margin-bottom: 30px;
}

.ser_block h4{
    font-weight: 600;
    margin-bottom: 25px;
}

.ser_block h5{
    font-size: 12px;
    opacity: 0;
    transition: opacity 1s ease;
}

.ser_block.act_ser.ser_block h5{
    opacity: 1;
    transition: opacity 1s ease;
    animation: opMig 1s infinite ease-in-out;
}

.ser_block.act_ser .ser_reit{
    opacity: 1;
    transition: opacity 1s ease;
}

.ser_block:hover.ser_block h5{
    opacity: 1;
    transition: opacity 1s ease;
    animation: opMig 1s infinite ease-in-out;
}

@keyframes opMig {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.bt{
    border-top: none;
}

.ser_reit{
    position: absolute;
    top: 55px;
    right: 25px;
    opacity: 0.1;
    transition: opacity 1s ease;
}

.ser_block:hover .ser_reit{
    opacity: 1;
    transition: opacity 1s ease;
}

.headers{
    margin: 35px 0px;
}

.headers h2{
    font-size: 30px;
    margin-bottom: 25px;
}

article p{
    margin-bottom: 30px;
    line-height: 140%;
}

article h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

article ul li{
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 140%;
}

.art_img {
    width: 100%;
    display: flex;
    background: linear-gradient(90deg, #6f9988 0%, #53687e 100%);
    min-height: 240px;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.art_img img{
    max-width: 300px;
    height: auto;
}

.bb_art {
    border-bottom: 1px solid #000;
    opacity: 0.1;
    margin: 44px 0px;
}

.contact_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cont_bl{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 35px;
    min-width: 240px;
}

.cont_bl:hover.cont_bl h5{
    animation: opMig 1s infinite ease-in-out;
}

.cont_bl img{
    width: 45px;
    height: 45px;
    margin-bottom: 30px;
}

.cont_bl h4{
    font-weight: 600;
    margin-bottom: 30px;
}

.cont_bl h5{
    font-size: 12px;
    opacity: 0.3;
}

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

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

.question h3 {
    font-size: 20px;
    line-height: 120%;
    z-index: -1;
    font-weight: 400;
}

.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;
}

.answer p {
    font-size: 16px;
    line-height: 125%;
    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);
}

.capture_row{
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    min-height: 350px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 70px;
}

.cap_off{
    display: flex;
    width: 65%;
    height: 290px;
    flex-direction: column;
    font-size: 40px;
    color: #7d7d7d;
    justify-content: center;
    line-height: 140%;
}

.cap_enter{
    display: flex;
    width: 35%;
    height: 290px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cap_enter p{
    margin-bottom: 20px;
    text-align: center;
}

.border_zinc{
    --tw-border-opacity: 1;
    border-color: rgb(24 24 27 / var(--tw-border-opacity, 1));
}

.border_all{
    border-color: #262626;
    border-style: solid;
    border-width: 0;
    box-sizing: border-box;
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
}

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

.rw_img {
    width: 33%;
    box-sizing: border-box;
    border: 5px solid #f2f2f2;
    opacity: 0.5;
    transition: opacity 1s ease, filter 0.7s;
    filter: grayscale(1); /* или 100% */
    position: relative;
}

.rw_img:hover{
    opacity: 1;
    filter: grayscale(0);
    transition: opacity 1s ease;
    transition: opacity 1s ease, filter 0.7s;
}

.rew_row img{
    width: 100%;
    height: auto;
}

.rw_img:hover .rwi_bg{
    opacity: 1;
    transition: opacity 1s ease;
}

.rw_info{
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 120px;
    height: 30px;
}

.rw_info h4{
    margin-left: 15px;
    font-size: 12px;
    z-index: 1;
    margin-top: 7px;
}

.rwi_bg{
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    z-index: 0;
    opacity: 0.2;
    transition: opacity 1s ease;
}

.headers_ser {
    margin: 35px 0px;
}

.headers_ser h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.headers_ser p {
    opacity: 0.8;
}

.list_row{
    display: flex;
    flex-direction: column;
    background: #fff;
    min-height: 420px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 30px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.list_block{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
}

.list_block.close .lb_info{
    display: none;
}

.list_block.close .lb_head img{
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}

.lb_head{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-sizing: border-box;
    padding-bottom: 25px;
    border-bottom: 1px solid #f8f8f8;
}

.ld_img{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ld_img h3{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.ld_img img{
    width: 35px;
    height: 35px;
    margin-right: 20px;
    
}

.list_block.close .ld_img img{
    transform: rotate(0deg);
}

#arrow{
    width: 30px;
    height: 30px;
    transition: transform 0.5s ease;
}

.lb_info{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    box-sizing: border-box;
    border-bottom: 1px solid #f8f8f8;
}

.lb_info h3{
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
}

.lb_info p{
    margin-bottom: 25px;
}

.lb_info li{
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

footer{
    background: #262626;
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    box-sizing: border-box;
    padding: 30px;
}

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

.f_c h4{
    color: #f8f8f8;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.fc_img img{
    width: 50px;
    height: 50px;
    margin-right: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 1s ease;
}

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

.f_ul ul{
    display: flex;
    flex-direction: row;
    margin-top: 35px;
}

.f_ul a{
    color: #f8f8f8;
    margin-right: 55px;
    font-size: 17px;
}

.frw {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    width: 100%;
    justify-content: space-between;
    opacity: 0.6;
}

.frw_logo{
    color: #f8f8f8;
    display: flex;
}

.frw_logo img{
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.frw_info{
    color: #f8f8f8;
    display: flex;
}

.key_link{
    display: flex;
    flex-wrap: wrap;
    margin-top: -15px;
    margin-bottom: 15px;
}

.key_link a{
    background: #262626;
    height: 24px;
    width: fit-content;
    border-radius: 20px;
    color: #f8f8f8;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 25px;
    font-size: 12px;
    opacity: 0.5;
}

.key_link a:hover{
    opacity: 1;
}

.lb_link{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 40px;
}

.lb_link a {
    display: flex;
    flex-direction: row;
    margin-right: 30px;
    align-items: center;
    color: #262626;
    cursor: pointer;
}

.lb_link a img{
    margin-right: 10px;
}

@media (max-width: 990px){

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

.input_group{
    width: 100%;
    max-width: 360px;
}

.input_request{
    max-width: 360px;
}

.bg_greed {
    background-size: 120%;
}

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

.m_text{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    margin-top: 44px;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
} 

.main_img{
    position: relative;
    top: 0px;
}

#imgAmim {
    position: relative;
    animation: floatUpDown 3s infinite ease-in-out;
    z-index: -1;
    top: 10px;
    width: 180px;
    height: 190px;
}

.ser_block{
    width: 50%;
}




}

@media (max-width: 550px){

.popup_content{
    padding: 20px 10px;
}

#screen{
    padding: 10px;
}

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

.head_menu a{
    margin-right: 0px;
    margin-bottom: 25px;
}    

.m_text h1{
    font-size: 36px;
    max-width: 290px;
}

.m_text h4{
    font-size: 18px;
}

.row_contact{
    flex-direction: column;
}

.row_contact .btn{
    margin-bottom: 30px;
}

.off_block{
    width: 100%;
}

.list_row{
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 30px 20px;
}

.ser_block{
    width: 100%;
    border: 1px solid #efefef;
    border-bottom: none;
    padding: 60px 20px;
}

.ser_reit{
    top: 65px;
}

.art_img img{
    max-width: 250px;
    height: auto;
}

.capture_row{
    flex-direction:column;
}

.cap_off{
    width: 100%;
    height:auto;
    margin-bottom: 60px;
}

.cap_enter{
    width: 100%;
    height:auto;
    margin-bottom: 60px;
}

.rw_img{
    width: 100%;
}

footer{
    padding: 30px 0px;
}

.fc_img{
    margin-bottom: 25px;
}

.f_ul ul {
    display: flex;
    flex-direction: column;
}

.f_ul ul li{
    margin-bottom: 25px;
}

.f_ul a{
    margin-right: 0px;
    margin-bottom: 25px;
}




}


}




}











































