html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
* {
    -webkit-tap-highlight-color: transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

input, select {
    vertical-align:middle;
}
*,
*::after,
*::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;   
}
a{
    color: inherit;
    text-decoration: none;
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
html,body{
    color: #FFF;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px; /* 175% */
    scroll-behavior: smooth;
    background: #0A0A0A;
}
.body{
    min-width: 320px;
}
.body.no-scroll{
    overflow: hidden;
}
main.sections{
    overflow: hidden;
}
.container{
    max-width: 1220px;
    padding: 0 15px;
    margin: 0 auto;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 13px 0 14px;
    background-color: #0A0A0A;
    z-index: 99;
}
.header__logo{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 176px;
}
.header__logo img{
    width: 100%;
}
.header .container{
    max-width: 1792px;
}
.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__burder{
    display: none;
}
.header__menu{
    display: flex;
    align-items: center;
    gap: 35px;
}
.header__link{
    color: #E7E7E7;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    text-transform: uppercase;
}
.header__link:hover{
    color: #626262;
}
@media (max-width: 1390px) {
    .header__menu{
        gap: 19px;
    }
}
@media (max-width: 1250px) {
    .header__link{
        font-size: 12px;
        line-height: 12px;
    }
    .header__logo{
        width: 150px;
    }
}
@media (max-width: 1120px) {
    .header__link{
        font-size: 7.467px;
        line-height: 7.467px;
    }
    .header__logo{
        width: 93px;
    }
}
@media (max-width: 780px) {
    .header__burger{
        display: flex;
        width: 32px;
        height: 22px;
        position: absolute;
        top: 19px;
        right: 20px;
        z-index: 10;        
        cursor: pointer;
    }
    .header__burger span{
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 2px;
        border-radius: 6px;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header__burger:before,
    .header__burger:after{
        content: '';
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 2px;
        border-radius: 6px;
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header__burger:before{
        top: 0;
    }
    .header__burger:after{
        bottom: 0;
    }
    .header__burger.active:before{
        background-color: #fff;
        top: 50%;
        transform: translateY(-50%)  rotate(-44.91deg);
        width: 37px;
        left: 1px;
    }
    .header__burger.active:after{
        background-color: #fff;
        top: 50%;
        transform: translateY(-50%)  rotate(44.91deg);
        width: 37px;
        right: 1px;
    }
    .header__burger.active span{
        transform: scale(0);
    }
    .header__burger{
        transition: all 0.2 ease;
    }
    .header nav{
        position: fixed;
        top: 61px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0A0A0A;
        padding: 23px 38px 60px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: all 0.1s ease;
        gap: 40px;
        z-index: 1;
    }
    .header.active nav{
        transform: translateX(0%);
    }
    .header__logo{
        position: relative;
        z-index: 2;
    }
    .header__menu{
        flex-direction: column;
        align-items: start;
        gap: 35px;
    }
    .header__link {
        font-size: 23px;
        line-height: 14px;
    }
    .header .container {
        max-width: 1792px;
        padding: 0 25px;
    }
}






.feedback{
    margin-top: 65px;
    padding: 137px 0 150px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.feedback .container{
    max-width: 1421px;
}
.feedback::before{
    position: absolute;
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), url('../img/feedback.webp') lightgray 100% no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -200px;
    z-index: -2;
}
.feedback__inner{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.feedback__block{
    width: 100%;
    max-width: 524px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 58px;
}
.feedback__title{
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 75.5px;
    text-transform: capitalize;
    margin-left: 4px;
}
.feedback__sub-title{
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
    text-transform: capitalize;
    margin-left: 4px;
}
.feedback__form{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.50);
    box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.25);
    padding: 54px 40px 63px;
    position: relative;
}
.feedback__form-send,
.feedback__form-nosend {
    position: absolute;
    font-size: 18px;
    line-height: normal;
    bottom: 20px;
    left: 50px;
    opacity: 0;
    pointer-events: none;
    transition: all 1s ease;
}
.feedback__form-send {
    color: green;
}
.feedback__form-nosend {
    color: rgb(128, 0, 0);
}
.feedback__form-send.active,
.feedback__form-nosend.active{
    opacity: 1;
}
.feedback__form-span{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feedback__form-span:nth-of-type(2){
    margin-top: 19px;
}
.feedback__form-span:nth-of-type(3){
    margin-top: 25px;
}
.feedback__form-label{
    color: #FFF;
    font-family: "Open Sans",sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.feedback__form-input,
.feedback__form-textarea{
    color: rgba(54, 54, 54, 0.50);
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 12px 15px 18px;
    height: 57px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
    outline: none;
    width: 100%;
}
.feedback__form-input::placeholder,
.feedback__form-textarea::placeholder{
    color: rgba(54, 54, 54, 0.50);
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.feedback__form-textarea{
    resize: none;
    height: 93px;
}
.feedback__form-btn{
    margin-top: 41px;
    margin-left: 6px;
    border-radius: 5px;
    background: #FFF;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 8px 10px 7px;
    width: 100%;
    max-width: 250px;
    border: none;
    outline: none;
    cursor: pointer;
}
.feedback__form-btn:active{
    background: #626262;
}
@media (max-width: 1366px) {
    .feedback .container {
        max-width: 837px;
    }
    .feedback{
        margin-top: 36px;
    }
    .feedback::before{
        bottom: -120px;
    }
    .feedback__block{
        gap: 31px;
        max-width: 279px;
    }
    .feedback__title{
        font-size: 24.002px;
        line-height: 40.27px;
    }
    .feedback__sub-title{
        font-size: 21.335px;
        line-height: 28.269px;
    }
    .feedback__form{
        padding: 29px 21px 34px;
    }
    .feedback__form-label{
        font-size: 10.668px;
    }
    .feedback__form-span{
        gap: 2px;
    }
    .feedback__form-span:last-of-type{
        margin-top: 14px;
    }
    .feedback__form-send,
    .feedback__form-nosend {
        font-size: 12px;
        bottom: 10px;
        left: 20px;
    }
    .feedback__form-input, .feedback__form-textarea {
        font-size: 10.668px;
        padding: 6px 8px 9px;
        height: 30px;
        border-radius: 2.667px;
        border: 0.533px solid rgba(0, 0, 0, 0.10);
        box-shadow: 0px 1.067px 2.134px 0px rgba(0, 0, 0, 0.10);
    }
    .feedback__form-input::placeholder,
    .feedback__form-textarea::placeholder{
        font-size: 10.668px;
    }
    .feedback__form-textarea {
        resize: none;
        height: 50px;
    }
    .feedback__form-btn{
        margin-top: 21px;
        margin-left: 3px;
        padding: 4px;
        height: 26px;
        font-size: 13.334px;
        max-width: 133px;
    }
    .feedback__form-span:last-of-type {
        margin-top: 13px;
    }
}
@media (max-width: 620px) {
    .feedback {
        margin-top: 25px;
        padding: 59px 0 14px;
    }
    .feedback::before {
        background-position: -522px -70px;
    }
    .feedback__inner{
        flex-direction: column;
        align-items: center;
        gap: 77px;
    }
    .feedback .container {
        padding: 0 11px;
    }
    .feedback__block{
        max-width: 400px;
    }
    .feedback__title {
        font-size: 24px;
        margin-left: 25px;
    }
    .feedback__form-input, .feedback__form-textarea {
        font-size: 13.521px;
        padding: 8px 10px 12px;
        height: 30px;
        border-radius: 3.38px;
        border: 0.676px solid rgba(0, 0, 0, 0.10);
        box-shadow: 0px 1.352px 2.704px 0px rgba(0, 0, 0, 0.10);
        height: 38px;
    }
    .feedback__form-input::placeholder,
    .feedback__form-textarea::placeholder{
        font-size: 13.521px;
    }
    .feedback__form-textarea {
        height: 63px;
    }
    .feedback__form-span {
        gap: 3px;
    }
    .feedback__form-textarea::placeholder{
        max-width: 140px;
    }
    .feedback__form-span:nth-of-type(2) {
        margin-top: 14px;
    }
    .feedback__form-span:last-of-type {
        margin-top: 17px;
    }
    .feedback__form-btn {
        margin-top: 27px;
        margin-left: 0;
        padding: 5px;
        height: 33px;
        font-size: 16.901px;
        max-width: 168px;
    }
}






.footer{
    margin-top: 55px;
}
.footer .container {
    max-width: 1565px;
}
.footer__inner{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.footer__logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: max-content;
    max-width: 170px;
}
.footer__logo img{
    width: 100%;
}
.footer__content-name{
    font-size: 20px;
    line-height: 14px; /* 70% */
    text-transform: capitalize;
    font-weight: 500;
}
.footer__content-box{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__content-link{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 77.778% */
    text-transform: capitalize;
}
.footer__content-block{
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 45px;
}
.footer__content-item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__content-item:hover svg path{
    fill: #626262;
}
.footer__content-item:nth-of-type(2):hover  svg path{
    stroke: #626262;
    fill: transparent;
}
.footer__bottom{
    margin-top: 90px;
    border-top: 1px solid #8E8E8E;
    padding-top: 6px;
}
.footer__rights{
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; /* 292.308% */
    text-transform: capitalize;
}
@media (max-width: 1366px) {
    .footer {
        margin-top: 29px;
        overflow: hidden;
    }
    .footer__logo{
        width: 146px;
    }
    .footer__content-block {
        margin-top: 23px;
        gap: 25px;
    }
    .footer__content-item svg{
        height: 23px;
        width: auto;
    }
    .footer__content-name{
        font-size: 11px;
        line-height: 11px;
    }
    .footer__content-box{
        margin-top: 10px;
        gap: 8px;
    }
    .footer__content-link{
        font-size: 10px;
        gap: 6px;
    }
    .footer__content-link svg{
        width: 14px;
        max-height: 20px;
    }
    .footer__bottom{
        margin-top: 49px;
        padding-top: 3px;
    }
    .footer__rights{
        font-size: 10px;
        line-height: 20px;
    }
}
@media (max-width: 620px) {
    .footer {
        margin-top: 50px;
    }
    .footer__logo {
        width: 146px;
        min-width: 146px;
    }
    .footer__inner{
        flex-direction: column;
        align-items: start;
        gap: 70px;
    }
    .footer__content-name {
        font-size: 18px;
        line-height: 12px;
    }
    .footer__content-link{
        font-size: 15px;
        gap: 6px;
    }
    .footer__content{
        width: 100%;
    }
    .footer__content-box{
        margin-top: 25px;
        gap: 15px;
    }
    .footer__content-link{
        gap: 9px;
    }
    .footer__content-block {
        width: 100%;
        justify-content: space-between;
        margin-top: 45px;
        gap: 5px;
    }
    .footer__content-link svg{
        width: 23px;
        max-height: 20px;
    }
    .footer__content-item svg {
        height: 30px;
        width: auto;
    }
    .footer__bottom {
        margin-top: 59px;
        padding-top: 13px;
        padding-bottom: 10px;
    }
    .footer__bottom .container{
        padding: 0px 20px;
    }
}