guild_front/src/pages/CompanyInfo/companyInfo.scss
2024-02-15 17:01:50 +03:00

267 lines
4.5 KiB
SCSS

.company-info {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #f1f1f1;
&__content {
display: flex;
flex-direction: column;
flex: 1;
color: #000000;
padding: 50px 0 0;
@media (max-width: 1375px) {
padding-top: 120px;
}
}
&__title {
font-weight: 500;
font-size: 48px;
color: #000000;
line-height: 48px;
max-width: 745px;
margin: 0 auto;
text-align: center;
span {
color: #52b709;
font-weight: 700;
}
@media (max-width: 500px) {
font-size: 35px;
}
}
&__subTitle {
max-width: 735px;
margin: 0 auto;
text-align: center;
font-size: 22px;
line-height: 32px;
@media (max-width: 500px) {
font-size: 18px;
}
}
.arrow-element {
width: 48px;
height: 48px;
background-color: #d3e4bc;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
@media (max-width: 850px) {
display: none;
}
}
.arrow-down {
margin: 35px auto 45px;
img {
transform: rotate(90deg);
}
@media (max-width: 500px) {
margin: 15px auto;
}
}
&__info {
padding-top: 85px;
&__img {
margin: 20.5px 0;
display: flex;
justify-content: center;
}
&__items {
display: flex;
column-gap: 17px;
.info__item {
padding: 32px 40px;
border-radius: 12px;
background-color: white;
width: 50%;
font-size: 15px;
line-height: 22px;
color: #000000;
ul {
padding-left: 18px;
}
@media (max-width: 700px) {
width: 100%;
}
@media (max-width: 600px) {
padding: 15px;
}
}
@media (max-width: 700px) {
flex-direction: column;
row-gap: 10px;
}
}
&__total {
display: flex;
flex-direction: column;
row-gap: 12px;
margin: 20px auto 70px;
max-width: 1000px;
@media (max-width: 700px) {
margin: 10px auto 30px;
text-align: center;
row-gap: 5px;
}
span {
color: #52b709;
font-weight: 700;
}
&__title {
font-size: 21px;
line-height: 48px;
}
&__text {
display: flex;
flex-direction: column;
font-size: 18px;
line-height: 22px;
row-gap: 20px;
@media (max-width: 700px) {
row-gap: 8px;
}
}
}
@media (max-width: 500px) {
padding-top: 30px;
}
}
&__counting-block {
padding: 27px 185px 26px 45px;
border-radius: 12px;
background: white;
width: 100%;
display: flex;
flex-direction: column;
row-gap: 16px;
position: relative;
@media (max-width: 1125px) {
padding-right: 45px;
}
@media (max-width: 850px) {
padding: 20px 25px;
}
@media (max-width: 780px) {
row-gap: 5px;
padding: 15px;
}
&__head {
display: flex;
justify-content: space-between;
align-items: center;
@media (max-width: 850px) {
justify-content: space-evenly;
}
@media (max-width: 750px) {
text-align: center;
img {
display: none;
}
}
}
&__bottom {
display: flex;
flex-direction: column;
row-gap: 12px;
.title-bottom {
font-size: 21px;
font-weight: 700;
line-height: 48px;
}
.subtitle-bottom {
color: #000000;
font-weight: 500;
font-size: 18px;
line-height: 22px;
}
span {
color: #52b709;
}
@media (max-width: 780px) {
text-align: center;
row-gap: 5px;
}
}
.counting-block__info {
display: flex;
flex-direction: column;
row-gap: 12px;
@media (max-width: 850px) {
row-gap: 5px;
}
}
.counting-block {
&__title {
font-size: 18px;
font-weight: 500;
color: #000000;
line-height: 22px;
}
&__subTitle {
color: #6f6f6f;
font-size: 12px;
line-height: 20px;
}
}
.counting-block-img {
position: absolute;
right: -140px;
top: -55px;
@media (max-width: 1440px) {
right: -25px;
}
@media (max-width: 1210px) {
right: 25px;
}
@media (max-width: 1125px) {
display: none;
}
}
}
}