41 lines
700 B
SCSS
Executable File
Vendored
41 lines
700 B
SCSS
Executable File
Vendored
@use "../abstracts/mixin" as *;
|
|
@use "../abstracts/variables" as *;
|
|
|
|
.contact_box {
|
|
position: relative;
|
|
padding: 15px 23px 15px 15px;
|
|
|
|
.logo-whatsapp {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
h2 {
|
|
font-family: Montserrat, serif;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
line-height: 1.17;
|
|
color: $text-dark-color;
|
|
margin-top: 0;
|
|
padding-right: 60px;
|
|
}
|
|
|
|
p {
|
|
font-family: Nunito, serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 1.57;
|
|
color: $text-secondary-color;
|
|
}
|
|
|
|
.read_more {
|
|
@include read_more_link;
|
|
}
|
|
}
|
|
@media (max-width: 768px) and (min-width: 423px) {
|
|
.contact_box p {
|
|
width: CALC(100% - 81px);
|
|
}
|
|
}
|