html{
    scroll-behavior: smooth;
}

body.active{
    overflow: hidden;
}

.layout{
    margin: 0 auto;
    position: relative;
}

.wrapper{
    max-width: 75.05vw;
    margin: 0 auto;
    padding: 6.77vw 0 0;
}

.goods__slider{
    display: none;
}

.header{
    position: -webkit-sticky;
    position: sticky;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
}

.header > .wrapper{
    padding: 0;
}

.header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 3.13vw;
}

.header__logo{
    background-color: #EE7203;
    min-height: 4.9vw;
    align-self: flex-start;
    padding: 1.46vw .99vw 1.04vw;
}

.header__link{
    color: #fff;
    font-family: 'Cuprum', sans-serif;
    font-size: 1.15vw;
    margin-right: 3.44vw;
    position: relative;
    transition: .15s color;
}

.header__link:last-child{
    margin-right: 0;
}
.header__link::after{
    transition: .15s width, .15s background-color;
    content: "";
    position: absolute;
    left: 0;
    bottom: -63%;
    width: 0;
    height: .26vw;
    background-color: #fff;
}

.header__link.active::after{
    width: 100%;
}

.header__link:hover{
    color: #EE7203;
}

.header__link.active:hover::after{
    background-color: #EE7203;
}

.header__burger{
    display: none;
    width: 22px;
    height: 17px;
    cursor: pointer;
    position: relative;
}

.header__burger::before, .header__burger > span, .header__burger::after{
    background-color: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    content: "";
    transition: .15s transform;
}

.header__burger::before{
    top: 0;
}

.header__burger > span{
    top: 50%;
    transform: translateY(-50%);
    transition: .15s width;
}

.header__burger::after{
    bottom: 0;
}

.header__burger.active > span{
    width: 0;
}

.header__burger.active::before{
    transform: rotate(45deg);
    top: 50%;
}

.header__burger.active::after{
    transform: rotate(-45deg);
    bottom: 50%;
}

.header__nav.mobile{
    position: fixed;
    right: -100%;
    top:  5.86vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    background-color: #EEEEEE;
    align-items: flex-end;
    padding: 0 5.08vw 0 2.99vw;
    transition: .15s right;
}

.header__nav.mobile.active{
    right: 0;
}

.header__nav.mobile > .header__link{
    color: #000;
    font-size: 1.95vw;
    margin-bottom: 2.60vw;
    margin-right: 0;
}

.header__nav.mobile > .header__link.active::after{
    height: 100%;
    width: 0.13vw;
    top: 0;
    right: -10%;
    bottom: unset;
    left: unset;
    background-color: #EE7203;
}

.header__nav.mobile > .header__link:last-child{
    margin-bottom: 0;
}

.intro{
    position: relative;
    z-index: 2;
    padding: 17.5vw 0 17.55vw;
    background: url("../img/bg.jpg") no-repeat center /cover;
}

.intro__title{
    color: #fff;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 4.17vw;
    line-height: 4.95vw;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.intro__title::after{
    content: "";
    width: .73vw;
    height: 40%;
    position: absolute;
    right: -1.3vw;
    bottom: .57vw;
    background-color: #EE7203;
}

.intro__title > span{
    position: relative;
}

.intro__title > span::after{
    content: "";
    width: 103%;
    height: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #EE7203;
    z-index: -1;
}

.title{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 3.33vw;
    line-height: 3.75vw;
    margin-bottom: 3.13vw;
    color: #000;
    position: relative;
}

.title.vertical-line{
    padding-left: 2.08vw;
}

.title.horizontal-line{
    padding-bottom: 0.78vw;
}

.title.vertical-line::before{
    content: "";
    width: .83vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #EE7203;
}

.title.horizontal-line::before{
    content: "";
    width: 7.81vw;
    height: 0.73vw;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #EE7203;
}

.text{
    font-family: 'Cuprum', sans-serif;
    font-size: 1.15vw;
    line-height: 1.35vw;
    margin-bottom: 2.08vw;
}

.goods__items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.56vw 1.67vw;
}

.goods__item{
    display: flex;
    flex-direction: column;
    transition: .15s filter;
}

.goods__cover{
    background-color: #EEEEEE;
    padding: 1.30vw;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goods__text{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.15vw;
    line-height: 1.35vw;
    color: #fff;
    background-color: #EE7203;
    text-align: center;
    padding: 0.68vw;
}

.goods__text > img{
    margin-left: 0.52vw;
    transition: .15s margin-left;
}

.goods__item:hover{
    filter: brightness(0.9);
}

.goods__item:hover > .goods__text > img{
    margin-left: 1.3vw;
}

.engineering{
    padding-bottom: 6.77vw;
    background: url("../img/engineering.png") no-repeat 20% 77% /50% 65%;
}

.engineering__text{
    max-width: 62.99vw;
    margin-left: auto;
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    padding: 1.04vw 0.26vw 1.20vw 1.88vw;
}

.info__contacts{
    padding: 1.04vw;
    border: 1px solid #EE7203;
    max-width: 24.44vw;
    margin-left: auto;
    width: fit-content;
}

.contacts__subtitle{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.15vw;
    line-height: 1.35vw;
    margin-bottom: 0.52vw;
}

.contacts__items{
    margin-bottom: 0.52vw;
}

.contacts__items:last-child{
    margin-bottom: 0;
}

.contacts__item{
    font-family: 'Cuprum', sans-serif;
    font-size: 1.15vw;
    line-height: 1.35vw;
    color: #000;
    transition: .15s color;
}

.contacts__item{
    margin-right: 1.09vw;
    position: relative;
}

.contacts__item::after{
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    right: -10%;
    width: 0.05vw;
    background-color: #EE7203;
}

.contacts__item:last-child{
    margin-right: 0;
}

.contacts__item:last-child::after{
    display: none;
}

.contacts__item:hover{
    color: #EE7203;
}

.designing{
    display: flex;
    justify-content: space-between;
    gap: 1.46vw;
    padding-top: 1.56vw;
    border-top: 1px solid #BEBEBE;
}

.designing__info{
    background-color: #E6E6E6;
}

.designing__info{
    padding: 6.77vw 3.07vw 6.77vw 13.28vw;
}

.designing__cover{
    width: 50%;
    background: url("../img/designing.png") no-repeat center /cover #E6E6E6;
}

.designing__text{
    max-width: 32.86vw;
}

.building{
    padding-bottom: 6.77vw;
}

.building .title{
    width: fit-content;
    margin: 0 auto 3.13vw;
}

.building .info__contacts{
    margin-right: auto;
    margin-left: 0;
}

.building__inner{
    display: flex;
    justify-content: space-between;
    gap: 2.92vw;
}

.building__cover{
    width: 50%;
    background: url("../img/building.png") no-repeat center /cover;
}

.building__text{
    max-width: 35.78vw;
}

.service{
    display: flex;
    justify-content: space-between;
    gap: 1.46vw;
    padding-top: 1.56vw;
    border-top: 1px solid #BEBEBE;
}

.service__info{
    padding: 6.77vw 3.07vw 6.77vw 13.28vw;
    background-color: #E6E6E6;
}

.service__cover{
    width: 50%;
    background: url("../img/service.png") no-repeat center /cover #E6E6E6;
}

.service__text{
    max-width: 32.86vw;
}

.service .info__contacts{
    margin-right: auto;
    margin-left: 0;
}

.contacts{
    background-color: #000;
    border-bottom: 0.73vw solid #EE7203;
    padding-bottom: 8.02vw;
}

.contacts .title{
    color: #fff;
}

.contacts__inner{
    display: flex;
    gap: 1.56vw;
}

.contacts__column__title{
    font-family: 'Inter';
    font-size: 1.15vw;
    line-height: 1.35vw;
    margin-bottom: 1.04vw;
    font-weight: 700;
    color: #fff;
}

.contacts__column__item {
    display: block;
    font-family: 'Cuprum';
    font-size: 1.15vw;
    line-height: 1.35vw;
    margin-bottom: 1.04vw;
    color: #fff;
    width: fit-content;
    transition: .15s color;
}

a.contacts__column__item:hover{
    color: #EE7203;
}

.contacts__column__item:last-child{
    margin-bottom: 0;
}

.contacts__column__phones{
    margin-bottom: 1.04vw;
}

.contacts__column__phones > .contacts__column__item{
    display: inline;
}
.contacts__column__phones > .contacts__column__item:first-child{
    margin-right: 1.04vw;
    position: relative;
}

.contacts__column__phones > .contacts__column__item:first-child::after{
    content: "";
    position: absolute;
    top: 0;
    right: -10%;
    height: 100%;
    width: 0.05vw;
    background-color: #fff;
}
