feat: add footer section
This commit is contained in:
@@ -1,3 +1,119 @@
|
||||
.Contacts {
|
||||
background: $color-lightgray;
|
||||
border-radius: 28px;
|
||||
padding: 160px;
|
||||
|
||||
.Header {
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-semi-bold;
|
||||
font-size: 60px;
|
||||
line-height: 100%;
|
||||
color: $color-text;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.Clients {
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
max-width: 1200px;
|
||||
margin-bottom: 160px;
|
||||
|
||||
.Client {
|
||||
|
||||
img {
|
||||
width: 300px;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.Form {
|
||||
background: $color-white;
|
||||
border-radius: 28px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
padding: 60px 50px;
|
||||
margin-bottom: 80px;
|
||||
|
||||
.Offer {
|
||||
flex: 2;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
|
||||
.Title {
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-semi-bold;
|
||||
font-size: 48px;
|
||||
line-height: 100%;
|
||||
color: $color-text-light;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.SubTitle {
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-light;
|
||||
font-size: 32px;
|
||||
line-height: 100%;
|
||||
color: $color-text-light;
|
||||
max-width: 720px;
|
||||
}
|
||||
}
|
||||
|
||||
.Inputs {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
.Map {
|
||||
position: relative;
|
||||
|
||||
iframe {
|
||||
border-radius: 28px;
|
||||
}
|
||||
|
||||
.Contacts{
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
top: -40px;
|
||||
right: 180px;
|
||||
border-radius: 28px;
|
||||
background: $color-white;
|
||||
width: 440px;
|
||||
height: 540px;
|
||||
padding: 40px 35px;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
align-items: flex-start;
|
||||
|
||||
.Title{
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-semi-bold;
|
||||
font-size: 48px;
|
||||
line-height: 100%;
|
||||
color: $color-text;
|
||||
text-align: right;
|
||||
margin-bottom: 32px;
|
||||
align-self: center;
|
||||
}
|
||||
.Address {
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-regular;
|
||||
font-size: 32px;
|
||||
line-height: 130%;
|
||||
color: $color-text;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user