*{
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-appearance: none;
}
body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
img{
    vertical-align: bottom;
}
.dn{
    display: none !important;
}
.wrap{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
h2{
    font-family: Roboto;
    font-size: 40px;
    font-weight: 500;
    line-height: 135%;
    text-align: center;
    color: #000;
}
/* HEADER */
.header{
    position: relative;
    max-height: 760px;
    overflow: hidden;
}
.header > img{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: auto;
    min-height: 100%;
    object-position: center;
    object-fit: cover;
}
.header .nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}
.header .nav-bar .logo{
    width: 198px;
    height: 55px;
}
.header .nav-bar .info{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header .nav-bar .info a{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.header .nav-bar .info .tel:before{
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
    background: url(/img/tel.svg) no-repeat;
    background-size: 20px;
}
.header .nav-bar .info .mail{
    margin: 0 0 0 64px;
}
.header .nav-bar .info .mail:before{
    content: '';
    width: 20px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
    background: url(/img/mail.svg) no-repeat;
    background-size: 20px;
}
.header .nav-bar .info .lang-select{
    position: relative;
    margin-left: 64px;
}
.header .nav-bar .info .lang-select:before{
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: -32px;
}
.header .nav-bar .info .lang-select > div{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #fff;
    padding-left: 28px;
}
.header .nav-bar .info .lang-select .curr-lang{
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}
.header .nav-bar .info .lang-select .curr-lang:before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(/img/triangle.svg) no-repeat center;
    right: 0;
    top: 3px;
}
.header .nav-bar .info .lang-select .other-lang{
    position: absolute;
    bottom: -60px;
    padding: 8px 12px 8px 10px;
    background-color: #fff;
    color: #000;
    text-align: right;
    cursor: pointer;
    width: 69px;
    height: 40px;
    box-sizing: border-box;
    background-position: 9px 10px !important;
    opacity: 0;
    visibility: collapse;
}
.header .nav-bar .info .lang-select .other-lang.show{
    visibility: visible;
    opacity: 1;
}
.header .nav-bar .info .lang-select .other-lang:before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    top: -8px;
    left: 25px;
    transform: rotate(45deg);
}
.header .nav-bar .info .lang-select .en{
    background-image: url(/img/en.svg);
    background-repeat: no-repeat;
    background-position: left center;
}
.header .nav-bar .info .lang-select .ro{
    background-image: url(/img/ro.svg);
    background-repeat: no-repeat;
    background-position: left center;
}
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
}
.hero .hero-info p{
    font-family: Roboto;
    font-size: 52px;
    font-weight: 500;
    line-height: 123%;
    color: #fff;
}
.hero .hero-info p span{
    text-transform: uppercase;
    font-size: 40px;
    display: block;
}
.hero .form{
    margin: 130px 0 161px;
    width: 376px;
    min-width: 376px;
    background: #fff;
    padding: 40px 32px 32px;
    box-sizing: border-box;
}
.hero .form form{}
.hero .form p{
    font-family: Roboto;
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
    text-align: center;
    color: #2e2e2e;
    margin-bottom: 24px;
}
.hero .form input:not([type=checkbox]){
    border: 1px solid #DDE4EA;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: #A5B3C5;
    padding: 14px 12px;
    border-radius: 8px;
    width: calc(100% - 26px);
    margin-bottom: 8px;
}
.hero .form input.error{
    border: 1px solid red;
}
.hero .form input::placeholder{
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #A5B3C5;
}
.hero .form input[type=email]{
    margin-bottom: 14px;
}
.hero .form button{
    background: #00A583;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    text-align: center;
    color: #fff;
    padding: 14px;
    border: none;
    width: 100%;
    cursor: pointer;
    margin-top: 14px;
    border: none;
}
.hero .form button:hover{
    background: #058A6F;
}
.hero .form div{
    display: block;
}
.hero .form div label{
    font-family: Roboto;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
    color: #000;
    position: relative;
    cursor: pointer;
    display: block;
    padding-left: 28px;
}
.hero .form div label a{
    text-decoration: underline;
    color: #000;
    font-weight: 600;
}
input[type=checkbox] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    cursor: pointer;
    width: 0;
    height: 0;
    position: absolute;
}
  
.hero .form div label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #DDE4EA;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
}
  
.hero .form div input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 10px;
    width: 4px;
    height: 11px;
    border: solid #00A583;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* / HEADER */
/* SERVICES */
.services{
    background: rgba(196, 196, 196, 0.15);
    padding: 100px 0;
}
.services .items{
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-top: 100px;
}
.services .items .item{
    background: #fff;
    box-shadow: 0px 6px 16px 0px #24282F14;
    width: 100%;
    padding: 32px 20px;
}
.services .items .item img{
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    display: block;
}
.services .items .item p{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
    color: #000;
}
/* / SERVICES */
/* IMG-RIGHT */
.img-right{
    padding: 100px 0;
}
.img-right .wrap{
    max-width: 960px;
}
.img-right h2{
    max-width: 650px;
    margin: 0 auto 45px;
}
.img-right .block{
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}
.img-right p{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #000;
}
.img-right img{
    width: 100%;
    max-width: 360px;
}
/* / IMG-RIGHT */
/* ADVANTAGES */
.advantages{
    background: rgba(196, 196, 196, 0.15);
    padding: 65px 0 80px;
}
.advantages h2{
    max-width: 500px;
    margin: 0 auto 45px;
}
.advantages .items{
    display: flex;
    gap: 30px 38px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 90px;
}
.advantages .item{
    width: calc(25% - 30px);
}
.advantages img{
    width: 60px;
    height: 60px;
    margin: 0 auto 32px;
    display: block;
}
.advantages p{
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
    color: #000;
}
/* / ADVANTAGES */
/* IMG-LEFT */
.img-left{
    padding: 100px 0;
}
.img-left .wrap{
    max-width: 936px;
}
.img-left h2{
    max-width: 680px;
    margin: 0 auto 45px;
}
.img-left .block{
    display: flex;
    justify-content: space-between;
    gap: 70px;
    align-items: stretch;
}
.img-left img{
    width: 100%;
    max-width: 360px;
    object-fit: cover;
    min-height: 100%;
    object-position: 80% top;
}
.img-left ul{
    list-style: none;
}
.img-left li{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #000;
    position: relative;
}
.img-left li:not(:last-child){
    margin-bottom: 14px;
}
.img-left li:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #00A583;
    border-radius: 50%;
}
/* / IMG-LEFT */
/* NUMBERS */
.numbers{
    background: rgba(196, 196, 196, 0.15);
    padding: 100px 0;
}
.numbers h2{
    color: #000;
    margin: 0 auto 60px;
}
.numbers .items{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 80px;
    margin: 0 auto;
}
.numbers .item{
    width: 30%;
    position: relative;
}
.numbers .item:nth-child(1){
    order: 1;
}
.numbers .item:nth-child(2){
    order: 2;
}
.numbers .item:nth-child(3){
    order: 3;
}
.numbers .item:nth-child(4){
    order: 5;
    margin-right: 18%;
}
.numbers .item:nth-child(5){
    order: 4;
    margin-left: 17%;
}
.numbers .item:before{
    position: absolute;
    content: '';
    top: 46px;
    right: -38%;
    width: 62%;
    height: 30px;
    background: url(/img/arrow.svg) no-repeat;
    background-position: right;
}
.numbers .item:nth-child(3):before{
    content: none;
}
.numbers .item:nth-child(4):before{
    transform: rotate(180deg);
    height: 117px;
    top: -41px;
    right: -11%;
    background-position: top right;
    width: 31%;
}
.numbers .item:nth-child(4):after{
    content: '';
    position: absolute;
    top: -41px;
    right: -11%;
    width: 4px;
    height: 104px;
    background: #00A583;
}
.numbers .item:nth-child(5):before{
    transform: rotate(180deg);
}
.numbers .circle{
    margin: 0 auto 30px;
    width: 122px;
    height: 122px;
    box-shadow: 0px 6px 16px 0px rgba(36, 40, 47, 0.08);
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.numbers span{
    font-family: Roboto;
    font-size: 52px;
    font-weight: 500;
    line-height: 54px;
    text-align: center;
    color: #00A583;
}
.numbers p{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
    color: #000;
    max-width: 300px;
    margin: 0 auto;
}
/* / NUMBERS */
/* CONTACTS */
.contacts{
    padding: 100px 0;
}
.contacts .wrap{
    max-width: 990px;
    display: flex;
    gap: 52px;
}
.contacts .img{
    position: relative;
}
.contacts .img:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/logo.svg) no-repeat center;
}
.contacts .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contacts h2{
    text-align: left;
    color: #000;
    margin-bottom: 16px;
}
.contacts p{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    position: relative;
    color: #000;
    padding-left: 36px;
}
.contacts p:not(:last-child){
    margin-bottom: 24px;
}
.contacts p a{
    color: #000;
    text-decoration: none;
}
.contacts .location:before,
.contacts .tel:before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 20px;
    background: url(/img/location_green.svg) no-repeat;
    background-size: 20px;
}
.contacts .tel:before{
    background: url(/img/tel_green.svg) no-repeat;
    background-size: 20px;
}
/* / CONTACTS*/
/*FOOTER*/
.footer{
    background: #343434;
    padding: 40px 0
}
.footer .wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer .files a{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #fff;
    text-decoration: none;
    display: block;
}
.footer .files a:not(:last-child){
    margin-bottom: 8px;
}
.footer .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    row-gap: 8px;
}
.footer .info a,
.footer .info p{
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #fff;
    text-decoration: none;
    position: relative;
    display: block;
}
.footer .info .tel:before,
.footer .info .mail:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: -34px;
}
.footer .info .tel:before{
    background: url(/img/tel.svg) no-repeat center;
}
.footer .info .mail:before{
    background: url(/img/mail.svg) no-repeat center;
}
.footer .info .copyright{
    color: #898989
}
/* / FOOTER*/
/* MEDIA QUERIES */
@media (max-width: 1080px) {
    .hero .hero-info p{
        font-size: 40px;
    }
    .hero .hero-info p span{
        font-size: 34px;
    }
}
@media (max-width: 1000px){
    .contacts .wrap{
        gap: 40px;
    }
    .contacts h2{
        font-size: 36px;
    }
    .numbers .item:before{
        right: -33%;
        width: 50%;
    }
}
@media (max-width: 900px) {
    .hero .hero-info p{
        font-size: 34px;
    }
    .hero .hero-info p span{
        font-size: 30px;
    }
}
@media (max-width: 840px){
    .services .items{
        flex-wrap: wrap;
        margin-top: 60px;
    }
    .services .items .item{
        width: calc(50% - 56px);
    }
    .advantages .item{
        width: calc(50% - 30px);
    }
    .contacts{
        padding: 60px 0;
    }
    .contacts .wrap{
        gap: 30px;
    }
    .contacts .img img{
        max-width: 100%;
        object-fit: cover;
        object-position: right top;
        min-height: 100%;
    }
    .contacts h2{
        font-size: 32px;
    }
    .hero .form{
        width: 330px;
        min-width: 330px;
    }
    .hero .hero-info p{
        font-size: 30px;
    }
    .hero .hero-info p span{
        font-size: 28px;
    }
}
@media (max-width: 770px){
    .header .nav-bar .info .mail{
        margin: 0 0 0 40px;
    }
    .header .nav-bar .info .lang-select{
        margin-left: 40px;
    }
    .header .nav-bar .info .lang-select:before{
        left: -20px;
    }
}
@media (max-width: 700px){
    .header{
        height: auto;
        max-height: none;
    }
    .hero{
        flex-wrap: wrap;
        gap: 0;
    }
    .hero .hero-info p{
        text-align: center;
        margin-top: 50px;
    }
    .hero .form{
        width: 330px;
        max-width: 100%;
        min-width: auto;
        margin: 40px auto 80px;
        height: auto;
    }
    .phones{
        display: flex;
        flex-direction: column;
        align-content: flex-end;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .header .nav-bar .info .mail{
        margin: 0;
    }
    .header .nav-bar .info .lang-select:before{
        height: 48px;
        top: -13px;
    }
    .contacts .wrap{
        flex-wrap: wrap;
    }
    .contacts .img{
        width: 100%;
    }
    .contacts .img img{
        margin: 0 auto;
        display: block;
    } 
    .img-right .block{
        flex-wrap: wrap;
    }
    .img-right img{
        margin: 0 auto;
    }
    .img-left .block{
        gap: 50px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .img-left .block .img{
        margin: 0 auto
    }
    .img-left ul{
        margin: 0 auto;
        padding-left: 16px;
    }
    .numbers .item{
        width: 50%;
    }
    .numbers .item:nth-child(4){
        margin-right: 0;
        order: 3;
    }
    .numbers .item:nth-child(3){
        order: 4;
    }
    .numbers .item:nth-child(5){
        margin-left: 0;
        order: 5;
    }
    .numbers .item:before {
        right: -18%;
        width: 40%;
    }
    .numbers .item:nth-child(5):before{
        display: none;
    }
    .numbers .item:nth-child(3):before{
        position: absolute;
        content: '';
        top: 46px;
        left: -20%;
        width: 40%;
        height: 30px;
        background: url(/img/arrow.svg) no-repeat;
        background-position: right;
        transform: rotate(180deg);
    }
    .numbers .item:nth-child(2):before,
    .numbers .item:nth-child(4):before{
        width: 20%;
        height: 152%;
        top: 59px;
        right: 0;
        background-position: top right;
        transform: rotate(180deg);
        border-bottom: 4px solid #00A583;
    }
    .numbers .item:nth-child(2):after,
    .numbers .item:nth-child(4):after{
        content: '';
        position: absolute;
        top: 60px;
        right: 0;
        background: #00A583;
        width: 4px;
        height: 145%;
    }
    .numbers .item:nth-child(4):before{
        left: 0;
        transform: none;
        background-position: bottom right;
        border-bottom: 0;
        border-top: 4px solid #00A583;
    }
    .numbers .item:nth-child(4):after{
        left: 0;
    }
    .numbers p{
        max-width: 230px;
    }
}
@media (max-width: 540px){
    .header .nav-bar .logo{
        margin: 0 auto;
    }
    .header .nav-bar .info{
        width: 100%;
        justify-content: flex-end;
    }
    .phones{
        flex-direction: row;
    }
    .header .nav-bar .info a{
        font-size: 0;
        width: 40px;
        height: 40px;
    }
    .header .nav-bar .info a:before{
        left: 0!important;
        right: 0;
        margin: auto;
    }
    .header .nav-bar .info .lang-select{
        margin-left: 20px;
    }
    .header .nav-bar .info .lang-select:before{
        height: 30px;
        left: -15px;
        top: -2px;
    }
}
@media (max-width: 500px){
    h2{
        font-size: 30px;
    }
    .contacts h2{
        font-size: 30px;
    }
    .services .items .item,
    .advantages .item{
        width: 100%;
    }
    .footer .wrap{
        flex-wrap: wrap;
    }
    .footer .files{
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }
    .footer .files a{
        text-align: center;
    }
    .footer .info{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .numbers .item{
        width: 100%;
    }
    .numbers .item:before{
        position: absolute;
        content: '';
        top: auto!important;
        right: 0!important;
        left: 0!important;
        bottom: -54px!important;
        width: 40px!important;
        height: 30px!important;
        background: url(/img/arrow.svg) no-repeat!important;
        background-position: right!important;
        transform: rotate(90deg)!important;
        border: none!important;
        margin: 0 auto;
    }
    .numbers .item:after{
        display: none!important;
    }
}
@media (max-width: 400px){
    .header .nav-bar .logo{
        width: 134px;
    }
    .header .nav-bar .info .lang-select .curr-lang:before{
        display: none;
    }
    .header .nav-bar .info .lang-select .curr-lang{
        padding-right: 0;
    }
    .header .nav-bar .info .lang-select .other-lang{
        padding: 8px 6px 8px 6px;
        width: 60px;
        background-position: 7px 10px !important;
    }
    .header .nav-bar .info .lang-select .other-lang:before{
        left: 23px;
    }
}
/* / MEDIA QUERIES */