This commit is contained in:
Roman Pyrih
2025-12-03 16:00:50 +01:00
parent abfc2094e6
commit 9602949e0e
5 changed files with 834 additions and 175 deletions

View File

@@ -38,6 +38,14 @@ strong {
column-gap: 50px;
align-items: center;
justify-content: space-between;
min-height: 390px;
@include respond-below(md) {
flex-direction: column;
padding-top: 50px;
text-align: center;
row-gap: 50px;
}
.c-col {
&-1 {
@@ -54,6 +62,10 @@ strong {
font-size: 55px;
line-height: 1;
letter-spacing: 2px;
@include respond-below(lg) {
font-size: 40px;
}
}
}
@@ -70,6 +82,10 @@ strong {
line-height: 1.6;
letter-spacing: 2px;
text-transform: uppercase;
@include respond-below(lg) {
font-size: 24px;
}
}
}
@@ -105,6 +121,10 @@ strong {
border-radius: 10px;
text-align: center;
@include respond-below(lg) {
padding: 14px 13px;
}
span {
display: inline-block;
color: $cWhite;
@@ -112,6 +132,10 @@ strong {
font-weight: 700;
font-size: 16px;
line-height: 1.2;
@include respond-below(lg) {
font-size: 14px;
}
}
}
}
@@ -142,6 +166,11 @@ strong {
display: flex;
flex-direction: row;
align-items: center;
@include respond-below(md) {
flex-direction: column;
}
.c-col {
&-1 {
width: 100%;
@@ -151,7 +180,21 @@ strong {
border-bottom: 1px solid #b79f87;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
padding: 45px 0 45px 60px;
padding: 45px 30px 45px 60px;
@include respond-below(lg) {
padding: 30px;
}
@include respond-below(md) {
max-width: unset;
text-align: center;
border-bottom: 0;
border-right: 1px solid #b79f87;
border-top-right-radius: 30px;
border-bottom-left-radius: 0;
padding: 30px 30px 60px 30px;
margin-bottom: -25px;
}
.box-text {
margin-bottom: 40px;
@@ -163,6 +206,10 @@ strong {
font-size: 24px;
line-height: 34px;
letter-spacing: -0.48px;
@include respond-below(lg) {
font-size: 20px;
}
}
ul {
width: 100%;
@@ -170,6 +217,17 @@ strong {
padding-left: 30px;
margin: 35px 0;
@include respond-below(lg) {
margin: 20px 0;
}
@include respond-below(md) {
display: flex;
flex-direction: column;
align-items: center;
max-width: unset;
}
li {
color: $cTxtBlack;
font-family: 'URW Form';
@@ -178,8 +236,16 @@ strong {
line-height: 34px;
letter-spacing: -0.48px;
@include respond-below(lg) {
font-size: 20px;
}
&:not(:last-child) {
margin-bottom: 15px;
@include respond-below(lg) {
margin-bottom: 5px;
}
}
}
}
@@ -191,6 +257,13 @@ strong {
flex-direction: column;
row-gap: 26px;
@include respond-below(lg) {
row-gap: 20px;
}
@include respond-below(md) {
align-items: center;
}
._radio {
display: inline-flex;
align-items: center;
@@ -224,6 +297,10 @@ strong {
border-radius: 20px;
border: 1px solid #dfdfdf;
padding: 13px;
@include respond-below(lg) {
font-size: 18px;
}
}
}
}
@@ -234,6 +311,9 @@ strong {
background: #f7f6f5;
border-radius: 14px 0 5px 22px;
@include respond-below(md) {
border-radius: 14px 14px 22px 22px;
}
input {
&[type='text'],
&[type='email'] {
@@ -505,6 +585,15 @@ strong {
line-height: 1;
text-align: center;
letter-spacing: 0.01em;
margin: 0;
@include respond-below(lg) {
font-size: 38px;
}
@include respond-below(md) {
font-size: 28px;
line-height: 1.5;
}
}
}
.box-text {
@@ -516,6 +605,10 @@ strong {
line-height: 1.37;
text-align: center;
letter-spacing: 0.01em;
@include respond-below(md) {
font-size: 20px;
}
}
}
}
@@ -531,7 +624,7 @@ strong {
#box-showrooms {
display: flex;
flex-direction: row;
column-gap: 70px;
column-gap: 60px;
nav#showrooms-nav {
margin-top: 105px;
@@ -572,7 +665,7 @@ strong {
#showrooms-lists {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
gap: 40px;
width: 100%;
.showrooms-list {
@@ -610,6 +703,9 @@ strong {
}
}
.showrooms-list-cards {
max-height: 500px;
overflow-y: auto;
ol {
padding: 0;
margin: 0;
@@ -636,7 +732,7 @@ strong {
font-family: $font3;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
line-height: 1.3;
text-align: center;
}
}
@@ -655,117 +751,122 @@ strong {
cursor: pointer;
}
}
}
}
}
}
}
.showroom-card--popup {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
backdrop-filter: blur(3px);
background: rgba(0, 0, 0, 0.2);
#showroom-popup.showroom-card--popup {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
backdrop-filter: blur(3px);
background: rgba(0, 0, 0, 0.2);
visibility: hidden;
opacity: 0;
visibility: hidden;
opacity: 0;
transition: all 50ms ease-in-out;
transition: all 50ms ease-in-out;
&.active {
visibility: visible;
opacity: 1;
}
&.active {
visibility: visible;
opacity: 1;
}
.showroom-card--popup-wrapper {
width: 650px;
margin-top: 120px;
background: $cWhite;
border-radius: 30px;
display: flex;
flex-direction: column;
overflow: hidden;
.showroom-card--popup-wrapper {
width: 650px;
margin-top: 120px;
background: $cWhite;
border-radius: 30px;
display: flex;
flex-direction: column;
overflow: hidden;
.popup--head {
display: flex;
flex-direction: row;
background: #1e2832;
padding: 40px 60px 35px 60px;
.popup--head {
display: flex;
flex-direction: row;
background: #1e2832;
padding: 40px 60px 35px 60px;
p {
color: $cWhite;
font-family: $font3;
font-weight: 600;
font-size: 20px;
line-height: 1;
margin: 0;
p {
color: $cWhite;
font-family: $font3;
font-weight: 600;
font-size: 20px;
line-height: 1;
margin: 0;
position: relative;
position: relative;
&:not(:last-child) {
padding-right: 25px;
margin-right: 25px;
&:not(:last-child) {
padding-right: 25px;
margin-right: 25px;
&::before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 3px;
width: 1px;
background: $cWhite;
}
}
}
}
.popup--body {
padding: 20px;
.popup--body-info {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
p,
a {
color: $cTxtBlack;
font-family: $font3;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
strong {
font-weight: 700;
}
}
.info-name {
p {
padding-left: 11px;
border-left: 5px solid #000;
}
}
.info-time {
}
.info-products {
img {
max-height: 30px;
}
}
}
.popup--body-map {
margin-top: 20px;
line-height: 0;
border-radius: 10px;
overflow: hidden;
}
}
}
&::before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 3px;
width: 1px;
background: $cWhite;
}
}
}
}
.popup--body {
padding: 20px;
.popup--body-info {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
p,
a {
color: $cTxtBlack;
font-family: $font3;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
strong {
font-weight: 700;
}
}
.info-name {
p {
padding-left: 11px;
border-left: 5px solid #000;
}
}
.info-time {
}
.info-products {
img {
max-height: 30px;
}
}
}
.popup--body-map {
margin-top: 20px;
line-height: 0;
border-radius: 10px;
overflow: hidden;
height: 200px;
.popup-map {
height: 100%;
}
}
}
}
}
}
@@ -773,9 +874,116 @@ strong {
}
.box-5 {
padding-bottom: 100px;
margin-bottom: 115px;
background: #161717;
.box-5--wrapper {
padding: 100px 0;
.c-row {
.box-title {
margin-bottom: 40px;
h2 {
color: $cWhite;
font-family: $font3;
font-weight: 300;
font-size: 40px;
line-height: 1;
text-align: center;
letter-spacing: 0.01em;
margin: 0;
@include respond-below(lg) {
font-size: 36px;
}
@include respond-below(md) {
font-size: 28px;
line-height: 1.5;
}
strong {
font-weight: 500;
}
}
}
.box-form {
form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.form-search {
display: flex;
flex-direction: row;
width: 100%;
max-width: 500px;
.row-input {
display: flex;
flex-direction: row;
border-bottom: 1px solid $cWhite;
gap: 10px;
width: 100%;
label {
margin: 0;
display: flex;
align-items: center;
img {
width: 16px;
filter: brightness(1) invert(1);
}
}
input {
width: 100%;
padding: 0;
margin-bottom: -1px;
background: transparent;
border: 0;
outline: none;
height: 48px;
color: $cWhite;
font-family: $font3;
font-weight: 300;
font-size: 18px;
&::placeholder {
color: #cdcdcd;
}
}
}
button {
background: $cWhite;
border: none;
border-radius: 0;
height: 48px;
color: #1e2832;
font-family: $font3;
font-weight: 300;
font-size: 18px;
line-height: 1;
margin-bottom: 0;
padding: 15px 30px;
min-width: fit-content;
outline: none;
cursor: pointer;
}
}
}
}
}
}
}
.box-6 {
padding-bottom: 100px;
.box-6--wrapper {
display: flex;
flex-direction: column;
@@ -790,11 +998,31 @@ strong {
justify-content: space-between;
gap: 40px;
@include respond-below(md) {
flex-direction: column;
}
.c-col {
&-1 {
@include respond-between(xs, md) {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-areas:
't1 t1'
't2 t3'
't4 t4';
}
@include respond-below(xs) {
display: flex;
flex-direction: column;
}
.text-1 {
margin-bottom: 20px;
@include respond-between(xs, md) {
grid-area: t1;
}
p {
color: #1e2832;
font-family: $font3;
@@ -806,6 +1034,9 @@ strong {
.text-2 {
margin-bottom: 40px;
@include respond-between(xs, md) {
grid-area: t2;
}
h2 {
color: #1e2832;
font-family: $font3;
@@ -824,6 +1055,9 @@ strong {
.text-3 {
margin-bottom: 40px;
@include respond-between(xs, md) {
grid-area: t3;
}
p {
color: #1e2832;
font-family: $font3;
@@ -834,6 +1068,9 @@ strong {
}
}
.text-4 {
@include respond-between(xs, md) {
grid-area: t4;
}
p {
color: #1e2832;
font-family: $font3;
@@ -847,12 +1084,22 @@ strong {
&-2 {
width: 100%;
max-width: 765px;
display: flex;
flex-direction: column;
.box-map {
height: 100%;
line-height: 0;
margin-bottom: 30px;
border-radius: 10px;
overflow: hidden;
@include respond-below(md) {
height: 250px;
}
#big-map {
height: 100%;
}
}
.box-info {
@@ -861,6 +1108,11 @@ strong {
align-items: center;
justify-content: space-between;
@include respond-below(sm) {
flex-direction: column;
row-gap: 40px;
text-align: center;
}
.box-info-left {
ul {
padding: 0;