1181 lines
18 KiB
SCSS
1181 lines
18 KiB
SCSS
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Lato:wght@300;400;700&display=swap");
|
|
@import "variables";
|
|
@import "_mixins";
|
|
|
|
.container {
|
|
@include respond-above(xl) {
|
|
max-width: 1300px;
|
|
}
|
|
}
|
|
|
|
.page-content {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.box-01 {
|
|
padding: 120px 0 200px;
|
|
#scontainer-53 {
|
|
.tiles {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
width: 100%;
|
|
max-width: 900px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
|
|
.tile {
|
|
position: relative;
|
|
flex: 1;
|
|
text-align: center;
|
|
min-width: 150px;
|
|
|
|
&:not(:last-child) {
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: -15px;
|
|
bottom: 0;
|
|
width: 1px;
|
|
background: $cBlack;
|
|
}
|
|
}
|
|
|
|
img {
|
|
margin-bottom: 30px;
|
|
}
|
|
p {
|
|
color: $cTxtBlack;
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
line-height: 26px;
|
|
letter-spacing: 0.05em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(lg) {
|
|
padding: 120px 0;
|
|
}
|
|
|
|
@include respond-below(md) {
|
|
#scontainer-53 {
|
|
.tiles {
|
|
row-gap: 60px;
|
|
column-gap: 50px;
|
|
|
|
.tile {
|
|
&:not(:last-child) {
|
|
&::before {
|
|
right: -25px;
|
|
}
|
|
}
|
|
&:nth-child(3) {
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(sm) {
|
|
#scontainer-53 {
|
|
.tiles {
|
|
.tile {
|
|
&:nth-child(2) {
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
&:nth-child(3) {
|
|
&::before {
|
|
display: block;
|
|
}
|
|
}
|
|
&:nth-child(4) {
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(xs) {
|
|
#scontainer-53 {
|
|
.tiles {
|
|
row-gap: 30px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-02 {
|
|
margin-bottom: 110px;
|
|
|
|
.tiles {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-areas:
|
|
"tile1 tile2"
|
|
"tile4 tile3";
|
|
.tile {
|
|
&_1 {
|
|
grid-area: tile1;
|
|
}
|
|
&_2 {
|
|
grid-area: tile2;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: 50px 80px;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 50%;
|
|
height: 1px;
|
|
background: $cBlack;
|
|
}
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 1px;
|
|
height: 50%;
|
|
background: $cBlack;
|
|
}
|
|
}
|
|
&_3 {
|
|
grid-area: tile3;
|
|
}
|
|
&_4 {
|
|
grid-area: tile4;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: 50px 80px;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 50%;
|
|
height: 1px;
|
|
background: $cBlack;
|
|
}
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 1px;
|
|
height: 50%;
|
|
background: $cBlack;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
font-weight: 400;
|
|
font-size: 25px;
|
|
line-height: 30px;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 30px;
|
|
}
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 23px;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-between(md, lg) {
|
|
.tiles {
|
|
.tile {
|
|
&_1,
|
|
&_3 {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(md) {
|
|
.tiles {
|
|
grid-template-columns: 1fr;
|
|
grid-template-areas:
|
|
"tile1"
|
|
"tile2"
|
|
"tile3"
|
|
"tile4";
|
|
.tile {
|
|
&_1,
|
|
&_3 {
|
|
text-align: center;
|
|
}
|
|
&_2,
|
|
&_4 {
|
|
padding: 50px 0;
|
|
&::before {
|
|
display: none;
|
|
}
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-03 {
|
|
margin-bottom: 100px;
|
|
.row {
|
|
position: relative;
|
|
// height: 720px;
|
|
|
|
@include respond-below(sm) {
|
|
height: 500px;
|
|
}
|
|
|
|
.first-col {
|
|
position: absolute;
|
|
height: 100%;
|
|
|
|
img {
|
|
inset: 0 15px;
|
|
height: 100%;
|
|
width: 100%;
|
|
max-width: fit-content;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
.col-12 {
|
|
.col-data {
|
|
width: 100%;
|
|
max-width: 800px;
|
|
height: 100%;
|
|
padding: 100px 80px 100px 80px;
|
|
background: rgba(244, 244, 244, 0.9);
|
|
|
|
h2 {
|
|
font-weight: 400;
|
|
font-size: 25px;
|
|
line-height: 30px;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
ul {
|
|
li {
|
|
&:first-child {
|
|
border-top: 1px solid $cBlack;
|
|
}
|
|
border-bottom: 1px solid $cBlack;
|
|
|
|
&.active {
|
|
h3 {
|
|
&::before {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
}
|
|
h3 {
|
|
position: relative;
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 23px;
|
|
text-transform: uppercase;
|
|
margin: 0;
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
padding-right: 40px;
|
|
width: fit-content;
|
|
cursor: pointer;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
right: 0;
|
|
width: 19px;
|
|
height: 19px;
|
|
background-image: url("/upload/filemanager/Icons/arrow_right_black.svg");
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
transition: all 150ms ease-in;
|
|
}
|
|
}
|
|
p {
|
|
display: none;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 19px;
|
|
letter-spacing: 0.07em;
|
|
padding-bottom: 0;
|
|
margin-bottom: 20px;
|
|
|
|
a.btn7 {
|
|
display: flex;
|
|
align-items: center;
|
|
width: fit-content;
|
|
margin-top: 30px;
|
|
border: 1px solid $cBlack;
|
|
background: transparent;
|
|
padding: 6px 20px;
|
|
|
|
font-weight: 300;
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
letter-spacing: 0.05em;
|
|
text-transform: uppercase;
|
|
color: #343431;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(sm) {
|
|
padding: 50px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-04 {
|
|
margin-bottom: 130px;
|
|
|
|
.tiles {
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-columns: 1fr max(500px);
|
|
column-gap: 30px;
|
|
align-items: center;
|
|
|
|
.tile {
|
|
&-1 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 70px;
|
|
|
|
.tile-row {
|
|
position: relative;
|
|
width: fit-content;
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: 50px;
|
|
align-items: center;
|
|
padding-top: 30px;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 7px;
|
|
right: 0;
|
|
height: 1px;
|
|
background-color: $cBlack;
|
|
}
|
|
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 7px;
|
|
height: 50%;
|
|
width: 1px;
|
|
background-color: $cBlack;
|
|
z-index: -1;
|
|
}
|
|
|
|
h3 {
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
letter-spacing: 0.15em;
|
|
text-transform: uppercase;
|
|
writing-mode: vertical-rl;
|
|
text-orientation: mixed;
|
|
transform: rotate(180deg);
|
|
margin: 0;
|
|
padding: 15px 0;
|
|
background-color: $cWhite;
|
|
}
|
|
ul {
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: 100px;
|
|
li {
|
|
display: flex;
|
|
flex-direction: row;
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
letter-spacing: 0.15em;
|
|
text-transform: uppercase;
|
|
|
|
writing-mode: vertical-rl;
|
|
text-orientation: mixed;
|
|
transform: rotate(180deg);
|
|
margin: 0 0 0 -15px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&-2 {
|
|
h2 {
|
|
font-size: 25px;
|
|
line-height: 1;
|
|
font-weight: 300;
|
|
letter-spacing: 0.15em;
|
|
text-transform: uppercase;
|
|
max-width: fit-content;
|
|
background: $cWhite;
|
|
margin-bottom: 70px;
|
|
|
|
strong {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 19px;
|
|
letter-spacing: 0.07em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include respond-below(xl) {
|
|
.tiles {
|
|
gap: 50px;
|
|
|
|
.tile {
|
|
&-1 {
|
|
.tile-row {
|
|
column-gap: 15%;
|
|
ul {
|
|
width: 100%;
|
|
column-gap: 50px;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
}
|
|
&-2 {
|
|
p {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(lg) {
|
|
.tiles {
|
|
grid-template-columns: 1fr;
|
|
.tile {
|
|
&-1 {
|
|
flex-direction: row;
|
|
column-gap: 100px;
|
|
justify-content: space-evenly;
|
|
.tile-row {
|
|
ul {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
row-gap: 50px;
|
|
}
|
|
}
|
|
}
|
|
&-2 {
|
|
grid-row: 1;
|
|
|
|
h2 {
|
|
margin-bottom: 30px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(md) {
|
|
.tiles {
|
|
.tile {
|
|
&-1 {
|
|
.tile-row {
|
|
column-gap: 30px;
|
|
ul {
|
|
column-gap: 50px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(sm) {
|
|
h2 {
|
|
padding-left: 0;
|
|
margin-left: 0;
|
|
text-align: center;
|
|
max-width: unset;
|
|
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
.tiles {
|
|
padding-left: 0;
|
|
&::before {
|
|
display: none;
|
|
}
|
|
.tile {
|
|
&-1 {
|
|
flex-direction: column;
|
|
|
|
.tile-row {
|
|
column-gap: 30px;
|
|
|
|
ul {
|
|
column-gap: 50px;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(xs) {
|
|
.tiles {
|
|
.tile {
|
|
&-1 {
|
|
}
|
|
|
|
.tile-row {
|
|
flex-direction: column;
|
|
row-gap: 30px;
|
|
width: 100%;
|
|
|
|
h3 {
|
|
transform: none;
|
|
writing-mode: initial;
|
|
text-orientation: initial;
|
|
}
|
|
ul {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
|
|
row-gap: 50px;
|
|
padding-left: 30px;
|
|
column-gap: 30px;
|
|
li {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-05 {
|
|
margin-bottom: 120px;
|
|
|
|
.tiles {
|
|
display: flex;
|
|
flex-direction: row;
|
|
.tile {
|
|
&-1 {
|
|
padding: 70px;
|
|
width: 100%;
|
|
max-width: 580px;
|
|
background: rgba(#f4f4f4, 0.9);
|
|
|
|
h2 {
|
|
font-weight: 300;
|
|
font-size: 25px;
|
|
line-height: 30px;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 35px;
|
|
padding-bottom: 35px;
|
|
border-bottom: 1px solid #cbcbcb;
|
|
}
|
|
p {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 26px;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
}
|
|
&-2 {
|
|
position: relative;
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 150px;
|
|
background: rgba(#f4f4f4, 0.9);
|
|
}
|
|
img {
|
|
width: 100%;
|
|
max-width: fit-content;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(md) {
|
|
.tiles {
|
|
flex-direction: column-reverse;
|
|
|
|
.tile {
|
|
&-1 {
|
|
max-width: unset;
|
|
}
|
|
&-2 {
|
|
&::before {
|
|
top: auto;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 150px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(xs) {
|
|
.tiles {
|
|
.tile {
|
|
&-1 {
|
|
padding: 30px 40px;
|
|
|
|
h2 {
|
|
margin-bottom: 30px;
|
|
padding-bottom: 30px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-06 {
|
|
margin-bottom: 100px;
|
|
|
|
.scontainer-content {
|
|
> .row {
|
|
&:nth-child(1) {
|
|
h2 {
|
|
margin-bottom: 30px;
|
|
padding-bottom: 30px;
|
|
border-bottom: 1px solid $cBlack;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.tiles {
|
|
display: grid;
|
|
grid-template-columns: 500px 620px;
|
|
column-gap: 30px;
|
|
justify-content: space-between;
|
|
|
|
.tile {
|
|
.tile-head {
|
|
margin-bottom: 50px;
|
|
|
|
h4 {
|
|
font-weight: 300;
|
|
font-size: 20px;
|
|
line-height: 26px;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 10px;
|
|
}
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 26px;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
}
|
|
|
|
&-1 {
|
|
.tile-data {
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: 40px;
|
|
|
|
ul {
|
|
li {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
column-gap: 10px;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 14px;
|
|
line-height: 17px;
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-2 {
|
|
.tile-data {
|
|
display: flex;
|
|
flex-direction: row;
|
|
column-gap: 28px;
|
|
align-items: flex-end;
|
|
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 25px;
|
|
letter-spacing: 0.05em;
|
|
text-transform: uppercase;
|
|
|
|
writing-mode: vertical-rl;
|
|
text-orientation: mixed;
|
|
transform: rotate(180deg);
|
|
margin: 0;
|
|
padding-top: 7px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include respond-below(xl) {
|
|
.tiles {
|
|
grid-template-columns: 400px 620px;
|
|
}
|
|
}
|
|
|
|
@include respond-below(lg) {
|
|
.tiles {
|
|
grid-template-columns: 1fr;
|
|
row-gap: 50px;
|
|
|
|
.tile {
|
|
&-1 {
|
|
.tile-head {
|
|
margin-bottom: 0;
|
|
h4 {
|
|
text-align: center;
|
|
}
|
|
}
|
|
.tile-data {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
&-2 {
|
|
grid-row: 1;
|
|
padding-bottom: 0;
|
|
|
|
img {
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.tile-data {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(md) {
|
|
.tiles {
|
|
flex-direction: column-reverse;
|
|
row-gap: 50px;
|
|
|
|
padding-right: 0;
|
|
border-right: none;
|
|
|
|
.tile {
|
|
&-1 {
|
|
max-width: unset;
|
|
}
|
|
&-2 {
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-07 {
|
|
position: relative;
|
|
background: rgba(244, 244, 244, 0.9);
|
|
margin-bottom: 40px;
|
|
|
|
.col-12 {
|
|
position: initial;
|
|
}
|
|
|
|
.tiles {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
.tile {
|
|
&-1 {
|
|
width: 100%;
|
|
max-width: 610px;
|
|
padding-right: 55px;
|
|
padding-top: 90px;
|
|
padding-bottom: 50px;
|
|
|
|
h2 {
|
|
font-size: 25px;
|
|
line-height: 1;
|
|
font-weight: 300;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 45px;
|
|
padding-bottom: 45px;
|
|
border-bottom: 1px solid $cBlack;
|
|
|
|
strong {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
padding-left: 20px;
|
|
list-style: number;
|
|
|
|
li {
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 26px;
|
|
letter-spacing: 0.05em;
|
|
text-indent: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
p.btn-more {
|
|
position: relative;
|
|
display: inline-block;
|
|
color: $cTxtDark;
|
|
padding: 6px 50px 2px 20px;
|
|
margin-bottom: 0;
|
|
text-transform: uppercase;
|
|
border: 1px solid $cBlack;
|
|
background: $cWhite;
|
|
transition: all 250ms ease;
|
|
cursor: pointer;
|
|
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
background-image: url("/upload/filemanager/Icons/arrow_right_black.svg");
|
|
background-size: 19px;
|
|
right: 15px;
|
|
width: 18px;
|
|
height: 18px;
|
|
line-height: 0;
|
|
transform: rotate(90deg);
|
|
transition: all 250ms ease;
|
|
}
|
|
|
|
&:hover {
|
|
color: $cTxtWhite;
|
|
background: $cBlack;
|
|
|
|
&::after {
|
|
filter: invert(1);
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
&::after {
|
|
transform: rotate(-90deg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&-2 {
|
|
.tile-wrapper {
|
|
position: relative;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 140px;
|
|
background: rgba(244, 244, 244, 0.9);
|
|
}
|
|
|
|
@include respond-above(md) {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 50vw;
|
|
}
|
|
}
|
|
img {
|
|
width: 100%;
|
|
max-width: fit-content;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
object-position: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(xl) {
|
|
.tiles {
|
|
.tile {
|
|
&-1 {
|
|
}
|
|
&-2 {
|
|
.tile-wrapper {
|
|
right: -56px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include respond-below(lg) {
|
|
.tiles {
|
|
.tile {
|
|
&-1 {
|
|
}
|
|
&-2 {
|
|
.tile-wrapper {
|
|
right: -145px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(md) {
|
|
.tiles {
|
|
row-gap: 50px;
|
|
flex-direction: column-reverse;
|
|
padding: 50px 0;
|
|
|
|
.tile {
|
|
&-1 {
|
|
max-width: unset;
|
|
padding: 0;
|
|
}
|
|
&-2 {
|
|
.tile-wrapper {
|
|
right: 0;
|
|
|
|
&::before {
|
|
top: auto;
|
|
right: 0;
|
|
height: 140px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-08 {
|
|
display: none;
|
|
|
|
.tiles {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 80px;
|
|
padding-top: 60px;
|
|
width: 100%;
|
|
max-width: 900px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
|
|
.tile {
|
|
position: relative;
|
|
|
|
&:not(:last-child) {
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: calc(-80px / 2);
|
|
height: 1px;
|
|
background: $cBlack;
|
|
}
|
|
}
|
|
.tile-img {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 250px;
|
|
min-width: 250px;
|
|
}
|
|
.tile-data {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
column-gap: 50px;
|
|
|
|
@include respond-below(md) {
|
|
flex-direction: column;
|
|
row-gap: 50px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
h2 {
|
|
font-weight: 700;
|
|
font-size: 25px;
|
|
line-height: 30px;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 30px;
|
|
}
|
|
h5 {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 19px;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 15px;
|
|
}
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
letter-spacing: 0.07em;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
@include respond-below(xl) {
|
|
.tiles {
|
|
column-gap: 80px;
|
|
|
|
.tile {
|
|
&:not(:last-child) {
|
|
&::before {
|
|
right: -40px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include respond-below(lg) {
|
|
.tiles {
|
|
grid-template-columns: 1fr;
|
|
|
|
.tile {
|
|
&:not(:last-child) {
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
.col-12 {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
gap: 50px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include respond-below(sm) {
|
|
.tiles {
|
|
.tile {
|
|
.col-12 {
|
|
flex-direction: column-reverse;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-09 {
|
|
text-align: center;
|
|
|
|
img {
|
|
width: 100%;
|
|
max-width: 380px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.btn8 {
|
|
width: 100%;
|
|
max-width: 380px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 10px 20px;
|
|
|
|
font-weight: 300;
|
|
font-size: 30px;
|
|
line-height: 36px;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
@include respond-below(lg) {
|
|
.btn8 {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
@include respond-below(md) {
|
|
.btn8 {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
@include respond-below(sm) {
|
|
}
|
|
}
|
|
|
|
footer.gap_big_top {
|
|
padding-top: 0 !important;
|
|
}
|