File: //var/www/quadcode-jobs/resources/sass/components/_features.scss
.features {
padding: 30px 0;
padding-top: 0;
.container {
h2 {
margin-bottom: 18px;
@include breakpoint-down('lg') {
text-align: center;
font-size: 64px;
}
@include breakpoint-down('sm') {
font-size: 42px;
text-align: left;
line-height: 49px;
}
}
.features-content {
@include breakpoint-down('lg') {
display: flex;
flex-direction: column;
align-items: center;
}
@include breakpoint-down('sm') {
position: relative;
left: -28px;
width: calc(100% + 28px + 28px);
}
.features-block {
width: calc(50% - 20px);
height: 200px;
flex-shrink: 0;
position: relative;
padding: 35px 18px 36px 34px;
border-radius: 5px;
margin-top: 50px;
background-color: #F8FAFB;
float: left;
@include breakpoint-down('lg') {
width: 100%;
display: flex;
align-items: center;
padding: 32px;
//float: none;
margin-top: 10px;
}
@include breakpoint-down('sm') {
flex-direction: column;
align-items: flex-start;
//width: calc(100% + 54px);
position: relative;
padding: 35px 27px;
height: auto;
}
.block__icon {
width: 70px;
height: 70px;
position: absolute;
top: -30px;
right: 25px;
@include breakpoint-down('lg') {
width: 90px;
margin-right: 50px;
position: relative;
top: 0;
right: 0;
}
@include breakpoint-down('sm') {
width: 63px;
height: 63px;
flex-shrink: 0;
}
img {
@include breakpoint-down('lg') {
max-width: none;
width: 90px;
height: 90px;
}
@include breakpoint-down('sm') {
width: 63px;
height: 63px;
}
}
svg {
object-fit: contain;
}
}
.block__title {
font-size: 24px;
line-height: 32px;
font-weight: 700;
color: #F1162F;
@include breakpoint-down('sm') {
margin-top: 25px;
font-size: 21px;
}
}
.block__description {
font-size: 16px;
line-height: 22px;
margin-top: 8px;
@include breakpoint-down('lg') {
padding-right: 30px;
}
@include breakpoint-down('sm') {
padding-right: 0;
margin-top: 10px;
font-size: 14px;
line-height: 19px;
}
}
}
}
.button {
width: 310px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
background-color: #F1162F;
border-radius: 30px;
box-shadow: 0 10px 15px 0 rgb(241 22 47 / 12%);
color: #FFF;
font-weight: 600;
font-size: 18px;
cursor: pointer;
margin: 60px auto 0;
@include breakpoint-down('lg') {
margin: 40px auto 0;
}
@include breakpoint-down('sm') {
margin: 30px auto 0;
}
}
}
}