2021-11-28 09:28:21 +03:00

3208 lines
82 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

main {
overflow: hidden;
padding-top: 112px;
@media all and (max-width: 1280px) {
padding-top: 86px;
}
section {
//padding: 80px 0;
&.gray {
background: var(--inactive);
}
}
.title_wrapper {
display: flex;
justify-content: space-between;
margin-bottom: 50px;
@media all and (max-width: 1280px) {
margin-bottom: 20px;
}
@media all and (max-width: 768px) {
flex-wrap: wrap;
}
h1,
h2,
h3,
h4,
h5 {
margin-bottom: 0;
}
.section_title {
@media all and (max-width: 768px) {
&:not(:only-child) {
margin-right: 10px;
}
}
}
.title_link {
font-weight: 600;
display: inline-block;
margin-left: 55px;
align-self: flex-end;
line-height: 24px;
@media all and (max-width: 1280px) {
font-size: 13px;
margin-left: 12px;
line-height: 30px;
}
@media all and (max-width: 768px) {
margin-left: 0;
}
}
.left {
display: flex;
}
.right {
display: flex;
@media all and (max-width: 768px) {
width: 100%;
text-align: left;
margin-top: 8px;
p {
font-size: 10px;
line-height: 15px;
text-align: left;
}
}
}
}
// Главный слайдер
#main_slider {
height: 600px;
background: var(--gray-light);
padding: 0;
position: relative;
@media all and (max-width: 1279px) {
height: 395px;
}
.container {
position: relative;
height: 100%;
background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 10%), rgba(255, 255, 255, 10%) 1px, transparent 2px, transparent 20%);
@media all and (max-width: 768px) {
background: transparent;
}
}
.slider_active_title {
font-weight: bold;
font-size: 43px;
line-height: 63px;
letter-spacing: 2px;
color: #fff;
max-width: 560px;
position: absolute;
top: 55px;
left: 0;
text-transform: uppercase;
font-family: 'PF Din Display Pro Bold';
@media all and (max-width: 1279px) {
font-size: 20px;
line-height: 35px;
max-width: 280px;
top: 25px;
}
}
.slider_list {
position: absolute;
bottom: 0;
left: 0;
right: 0;
display: flex;
@media all and (max-width: 1279px) {
height: 135px;
}
@media all and (max-width: 768px) {
display: none;
}
.slider_item {
width: 20%;
max-width: 20%;
height: 300px;
padding: 15px 25px;
display: flex;
flex-wrap: wrap;
align-items: flex-end;
align-content: flex-end;
cursor: pointer;
position: relative;
overflow: hidden;
@media all and (max-width: 1279px) {
height: 135px;
padding: 15px 20px;
}
&:after {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
transform: translateY(100%);
transition: 175ms transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.item_name {
font-size: 24px;
line-height: 24px;
text-transform: uppercase;
color: #fff;
width: 100%;
display: flex;
height: 86px;
align-content: center;
align-items: center;
justify-content: space-between;
transition: 175ms transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
transform: translateY(57px);
position: relative;
z-index: 2;
margin-right: 15px;
font-family: 'PF Din Display Pro Bold';
@media all and (max-width: 1279px) {
font-size: 20px;
height: 80px;
}
&:after {
content: "";
display: block;
width: 22px;
min-width: 22px;
height: 14px;
background: url("/assets/images/icons/slider_arrow.svg") no-repeat center;
}
}
a {
display: inline-block;
line-height: 40px;
color: #fff;
font-weight: 600;
transition: 175ms transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
transform: translateY(57px);
position: relative;
z-index: 2;
@media all and (max-width: 1279px) {
font-size: 13px;
}
}
&.active {
background: currentColor;
.item_name,
a {
transform: translateY(0px);
}
.item_name:after {
width: 44px;
background: url("/assets/images/icons/slider_arrow-hover.svg") no-repeat center;
transform: rotate(-90deg) translate(15px, 15px);
@media all and (max-width: 1279px) {
transform: rotate(-90deg) translate(-15px, 15px);
}
}
}
&:hover {
.item_name,
a {
transform: translateY(0px);
}
&:after {
transform: translateY(0px);
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, currentColor 100%);
}
}
}
.slider_navto {
width: 20%;
max-width: 20%;
height: 300px;
a {
background: #fff;
width: 100%;
height: 100%;
clip-path: polygon(100% 0, 0% 100%, 100% 100%);
transition: 175ms background cubic-bezier(0.25, 0.46, 0.45, 0.94);
box-sizing: border-box;
padding: 0 25px;
display: flex;
align-items: flex-end;
justify-content: flex-end;
&:after {
content: "";
display: block;
width: 22px;
min-width: 22px;
height: 86px;
transition: 175ms all cubic-bezier(0.25, 0.46, 0.45, 0.94);
background: url("/assets/images/icons/slider_arrow-blue.svg") no-repeat center;
}
&:hover {
background: #04a8a4;
&:after {
width: 90px;
background: url("/assets/images/icons/arrow-navto.svg") no-repeat center;
}
}
}
}
}
}
// Калькулятор
#calc {
@media all and (max-width: 768px) {
background: #EDEFF5;
}
.container {
background: url("/assets/images/calc-bg.jpg") no-repeat right center #EDEFF5;
padding: 70px 25px;
position: relative;
&:after {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
right: -100%;
width: 100%;
left: auto;
background-color: inherit;
}
@media all and (max-width: 1279px) {
padding: 50px 25px;
}
@media all and (max-width: 1280px) {
background: #EDEFF5;
}
@media all and (max-width: 768px) {
padding: 25px 0;
}
}
.calc_body {
display: flex;
justify-content: space-between;
@media all and (max-width: 768px) {
display: block;
}
.calc_settings {
width: 830px;
@media all and (max-width: 1420px) {
width: calc(100% - 410px);
}
@media all and (max-width: 1280px) {
width: calc(50% - 15px);
}
@media all and (max-width: 768px) {
width: 100%;
}
.settings_box {
background: rgba(255, 255, 255, 0.6);
border-radius: 4px;
height: 57px;
margin-bottom: 80px;
position: relative;
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: space-between;
padding: 10px;
output[hidden] {
display: none;
}
&:last-child {
margin-bottom: 20px;
}
@media all and (max-width: 1280px) {
margin-bottom: 45px;
height: 48px;
padding: 8px;
}
p {
margin-bottom: 15px;
font-weight: 700;
@media all and (max-width: 1280px) {
font-size: 13px;
}
&.min {
position: absolute;
top: 65px;
font-weight: 400;
left: 10px;
margin: 0;
@media all and (max-width: 960px) {
display: none;
}
}
&.max {
position: absolute;
top: 65px;
font-weight: 400;
right: 10px;
margin: 0;
@media all and (max-width: 960px) {
top: 30px;
}
}
}
.line {
width: 100%;
background: rgb(142 148 167 / 40%);
@media all and (max-width: 960px) {
width: calc(100% - 55px);
}
}
.line, .rangeslider.rangeslider--horizontal {
position: relative;
height: 5px;
z-index: 2;
.active_line, .rangeslider__fill {
background: var(--blue);
position: absolute;
left: 0;
bottom: 0;
height: 10px;
}
.dragble, .rangeslider__handle {
width: 1px;
height: 16px;
cursor: pointer;
position: absolute;
top: 8px;
left: 0;
&:after {
content: "";
display: block;
transform: rotate(45deg) translate(-6px, 6px);
width: 16px;
height: 16px;
background: var(--blue);
}
}
}
}
}
.calc_result {
width: 350px;
align-items: stretch;
align-content: stretch;
display: flex;
flex-wrap: wrap;
@media all and (max-width: 1420px) {
width: 320px;
}
@media all and (max-width: 1280px) {
width: calc(50% - 15px);
}
@media all and (max-width: 768px) {
width: 100%;
margin-top: 35px;
}
.result_box {
width: 100%;
p {
font-weight: 700;
@media all and (max-width: 1280px) {
font-weight: 400;
font-size: 13px;
line-height: 20px;
margin-bottom: 20px;
}
@media all and (max-width: 768px) {
margin-bottom: 8px;
}
&.price {
font-size: 41px;
line-height: 1;
sup {
font-weight: 300;
font-size: 12px;
line-height: 18px;
color: #8E94A7;
vertical-align: super;
}
@media all and (max-width: 1279px) {
font-size: 32px;
}
@media all and (max-width: 1280px) {
font-size: 20px;
margin-bottom: 0;
font-weight: 700;
}
}
}
@media all and (max-width: 768px) {
width: 50%;
}
}
.button {
width: 100%;
align-self: center;
@media all and (max-width: 768px) {
margin-top: 30px;
margin-bottom: 15px;
}
}
.secondary {
align-self: flex-end;
}
}
}
}
.news_arrows {
display: flex;
align-content: center;
@media all and (max-width: 1280px) {
display: none !important;
}
button {
width: 97px;
height: 28px;
background-color: var(--blue);
box-sizing: border-box;
padding: 0 10px;
transition: 175ms background ease-in-out;
svg {
width: 8px;
height: 12px;
margin-left: auto;
path {
stroke: #fff;
transition: 175ms stroke ease-in-out;
}
}
&.prev {}
&.next {}
&:disabled,
&.slick-disabled {
cursor: default;
background-color: var(--inactive);
background-position: center;
svg {
margin-left: 0;
path {
stroke: #8E94A7;
}
}
}
}
}
#news {
.news_slider_wrapper {
@media all and (max-width: 768px) {
margin: 0 -16px;
}
}
}
.news_list,
.career_list {
display: flex;
white-space: nowrap;
width: 100%;
.slick-list {
// overflow: visible;
width: 100%;
.slick-track {
white-space: nowrap;
display: flex;
padding-right: 100px;
&:after {
content: "";
display: block;
width: 365px;
min-width: 365px;
height: 200px;
}
}
}
.news_item,
.career_item {
width: 365px;
min-width: 365px;
padding: 35px 20px;
background: #EDEFF5;
position: relative;
@media all and (max-width: 1280px) {
width: 214px;
min-width: 214px;
padding: 25px 15px;
}
@media all and (max-width: 768px) {
margin-right: 1px;
}
p {
white-space: normal;
margin-bottom: 22px;
line-height: 24px;
transition: 175ms color ease-in-out;
}
.news_date {
margin-bottom: 35px;
@media all and (max-width: 1280px) {
margin-bottom: 15px;
}
}
img {
display: block;
margin-bottom: 22px;
object-fit: cover;
@media all and (max-width: 1280px) {
height: 178px;
width: 100%;
margin-bottom: 15px;
}
}
.news_title,
.career_title {
color: #0C0C0C;
font-size: 24px;
line-height: 28px;
font-weight: 700;
@media all and (max-width: 1280px) {
font-size: 19px;
line-height: 26px;
margin-bottom: 15px;
}
}
.news_description,
.career_description {
}
.news_link,
.career_link {
margin-bottom: 0;
color: var(--blue);
@media all and (max-width: 1280px) {
font-weight: 700;
font-size: 13px;
}
}
a {
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
}
&:after {
content: "";
display: block;
position: absolute;
top: -24px;
left: 0;
right: 0;
bottom: -24px;
opacity: 0;
visibility: hidden;
transition: 175ms all ease-in-out;
}
&:hover {
z-index: 2;
&:after {
opacity: 1;
visibility: visible;
background: var(--green);
z-index: 0;
}
p,
img {
color: #fff;
z-index: 2;
position: relative;
}
.news_date {
&:after {
content: "";
position: absolute;
bottom: -8px;
height: 2px;
left: 0;
right: 0;
background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
}
}
}
&.masongry_columns {
display: flex;
justify-content: space-between;
.column {
width: calc(50% - 15px);
}
.news_item,
.career_item {
width: 100%;
margin-bottom: 30px;
}
@media all and (max-width: 768px) {
display: block;
.column {
width: 100%;
}
}
}
}
.programs_list,
.services_list {
display: flex;
flex-wrap: wrap;
@media all and (max-width: 1280px) {
justify-content: space-between;
}
.program_item,
.service_item {
margin-top: 40px;
margin-bottom: 40px;
width: calc(25% - 23px);
position: relative;
background: #EDEFF5;
transform-origin: left;
transition: all 175ms ease-in-out;
height: 390px;
@media all and (max-width: 1420px) {
overflow: hidden;
}
@media all and (max-width: 1280px) {
width: calc(50% - 15px);
margin-right: 0 !important;
margin-bottom: 30px;
margin-top: 0;
height: 258px;
overflow: hidden;
}
@media all and (max-width: 768px) {
width: 100%;
}
&:after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #eeeff4;
z-index: 0;
transition: all 125ms ease-in-out;
}
a {
height: 100%;
display: block;
box-sizing: border-box;
padding: 36px 18px;
position: relative;
z-index: 2;
@media all and (max-width: 1280px) {
padding: 24px 18px;
}
span {
display: inline-block;
}
}
&:not(:nth-child(4n)) {
margin-right: 30px;
}
.program_name,
.service_name {
font-weight: 700;
font-size: 26px;
line-height: 36px;
color: #000;
position: relative;
z-index: 2;
transform: translateY(0px);
transition: 125ms transform ease-in-out;
max-width: 70%;
@media all and (max-width: 1280px) {
font-size: 19px;
line-height: 26px;
}
}
.program_link,
.service_link {
position: absolute;
right: 0px;
bottom: -10px;
color: var(--blue);
font-weight: 600;
font-size: 15px;
line-height: 20px;
opacity: 0;
z-index: 2;
transform: translate(0, 0);
transition: 125ms all ease-in-out;
}
img {
position: absolute;
right: 0;
bottom: 0;
transform: translate(0, 0);
transition: 125ms all ease-in-out;
@media all and (max-width: 1420px) and (min-width: 1280px) {
max-width: 100%;
}
@media all and (max-width: 1280px) {
max-height: 120%;
}
}
&:hover {
@media all and (min-width: 1280px) {
overflow: visible;
&:after {
top: -35px;
right: -20px;
bottom: -35px;
}
img {
transform: translate(20px, -35px);
}
.program_name,
.service_name {
transform: translateY(-30px);
}
.program_link,
.service_link {
opacity: 1;
transform: translate(-10px, -10px);
}
}
}
}
}
.services_list {
justify-content: center;
@media all and (max-width: 1280px) {
justify-content: space-between;
}
.service_item {
&:after {
background: #f1f2f7;
}
.service_name {
max-width: 50%;
}
&:not(:nth-child(3n)) {
margin-right: 30px;
}
&:nth-child(3n) {
margin-right: 0;
}
&:nth-child(4n) {
margin-right: 30px;
}
width: calc(33.333% - 20px);
@media all and (max-width: 1280px) {
width: calc(50% - 15px);
img {
max-height: 100%;
}
}
@media all and (max-width: 768px) {
width: 100%;
}
}
}
.special_list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.special_item {
position: relative;
width: calc(50% - 18px);
min-width: calc(50% - 18px);
margin-bottom: 80px;
a {
display: block;
color: #0C0C0C;
position: relative;
z-index: 2;
box-sizing: border-box;
padding: 25px calc(50% + 20px) 25px 20px;
.special_name {
font-size: 26px;
line-height: 35px;
font-weight: 700;
color: #0C0C0C;
margin-bottom: 25px;
display: block;
transition: all 220ms ease-in-out;
}
.speacial_text {
display: block;
margin-bottom: 10px;
font-weight: 700;
color: #0C0C0C;
transform: translate(0px, 0px);
transition: all 220ms ease-in-out;
}
.special_desc {
font-size: 15px;
line-height: 24px;
transform: translate(0px, 0px);
transition: all 220ms ease-in-out;
}
.special_link {
display: inline-block;
font-weight: 600;
opacity: 0;
transform: translate(10px, 10px);
transition: all 220ms ease-in-out;
color: #fff;
}
}
&:after {
content: "";
display: block;
position: absolute;
top: 20px;
bottom: 30px;
right: 30px;
left: 30%;
transition: all 220ms ease-in-out;
background: var(--inactive);
z-index: 0;
}
img {
display: block;
position: absolute;
top: 0;
bottom: 0;
width: 50%;
height: 100%;
right: 0;
object-fit: cover;
z-index: 1;
}
&:hover {
@media all and (min-width: 1280px) {
a {
.special_name {
color: #fff;
}
.speacial_text,
.special_desc {
transform: translate(0px, -10px);
color: #fff;
}
.special_link {
opacity: 1;
color: #fff;
transform: translate(0px, 0px);
}
}
&:after {
background: var(--green);
top: 0;
left: 0;
bottom: 0;
}
}
}
@media all and (max-width: 1280px) {
width: calc(50% - 15px);
min-width: calc(50% - 15px);
margin-bottom: 30px;
a {
padding: 30px 0 0 0;
display: flex;
flex-wrap: wrap;
.special_name {
font-size: 19px;
line-height: 26px;
}
.special_desc {
font-size: 13px;
line-height: 20px;
width: 100%;
}
.speacial_text {
width: 100%;
}
.special_link {
opacity: 1;
transform: translate(0,0);
color: var(--blue);
}
img {
position: relative;
width: 100%;
height: 155px;
object-fit: cover;
object-position: center;
}
}
&:after {
width: 182px;
top: 0;
left: auto;
right: 0;
height: 120px;
}
}
@media all and (max-width: 768px) {
width: 100%;
min-width: 100%;
margin-bottom: 25px;
}
}
&.swiped {
flex-wrap: unset;
white-space: nowrap;
.special_item {
margin-top: 30px;
margin-bottom: 30px;
margin-right: 30px;
> * {
white-space: normal;
}
a {
.special_link {
color: var(--blue);
opacity: 1;
}
}
&:hover {
a .special_link {
color: #fff;
}
}
}
}
}
.brand_select {
max-width: 306px;
margin-left: auto;
margin-top: 35px;
margin-bottom: 35px;
@media all and (max-width: 768px) {
max-width: 100%;
margin-top: 10px;
margin-bottom: 25px;
}
}
.special_detail {
.special_offer {
position: relative;
padding: 25px calc(100% - 390px) 0 25px;
margin-bottom: 45px;
h2 {
font-size: 26px;
line-height: 35px;
color: #0C0C0C;
font-weight: 700;
margin-bottom: 25px;
span {
color: #A8026B;
font-size: 58px;
line-height: 58px;
}
mark {
color: #A8026B;
background: transparent;
}
}
.button {
width: 100%;
margin-top: 40px;
}
&:after {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 420px;
top: 15px;
bottom: 25px;
right: 0;
background: var(--inactive);
}
img {
display: block;
height: 100%;
width: calc(100% - 502px);
position: absolute;
right: 0;
bottom: 0;
z-index: 2;
object-fit: cover;
}
@media all and (max-width: 1420px) {
padding-left: 0;
}
@media all and (max-width: 1280px) {
padding: 0 calc(50% + 15px) 0 0;
h2 {
font-size: 19px;
line-height: 26px;
width: 100%;
order: 2;
margin-bottom: 0;
span {
font-size: 19px;
line-height: 26px;
}
}
img {
width: calc(50% - 15px);
}
&:after {
left: calc(50% - 120px);
z-index: -1;
}
}
@media all and (max-width: 768px) {
padding: 0;
display: flex;
flex-wrap: wrap;
img {
order: 1;
width: 100%;
position: relative;
height: 155px;
margin-bottom: 10px;
}
.list-column {
order: 3;
margin-top: 20px;
margin-bottom: 30px;
}
button.button {
order: 4;
margin-top: 0;
}
&:after {
width: 182px;
left: auto;
right: 0;
top: 0;
bottom: 50px;
z-index: -1;
}
}
}
.special_offer-text {
margin-bottom: 80px;
padding: 0 25px;
@media all and (max-width: 768px) {
padding: 0;
margin-bottom: 40px;
}
}
.aside_container {
margin-top: 60px;
@media all and (max-width: 768px) {
margin-top: 30px;
padding-top: 30px;
border-top: 1px solid #EDEFF5;
}
}
}
.leasing_offer {
h3 {
padding: 0 25px;
margin-bottom: 15px;
font-size: 26px;
line-height: 35px;
@media all and (max-width: 768px) {
padding: 0;
font-size: 17px;
line-height: 24px;
}
}
.leasing_list {
display: flex;
flex-wrap: wrap;
.leasing_item {
width: calc(33.333% - 20px);
margin-bottom: 30px;
&:not(:nth-child(3n)) {
margin-right: 30px;
}
.item_wrapper {
display: block;
padding-bottom: 35px;
background: #fff;
transition: background-color 175ms ease-in-out;
img {
display: block;
width: 100%;
height: 220px;
object-fit: cover;
margin-bottom: 30px;
}
span {
display: block;
color: #000;
transition: color 175ms ease-in-out;
}
.leasing_model {
padding: 0 30px;
margin-bottom: 5px;
font-weight: 700;
}
.leasing_desc {
padding: 0 30px;
}
&:hover {
background: var(--green);
.leasing_model,
.leasing_desc {
color: #fff;
}
}
}
}
@media all and (max-width: 1280px) {
overflow-x: scroll;
flex-wrap: unset;
margin-right: -80px;
.leasing_item {
min-width: 210px;
margin-right: 5px !important;
.item_wrapper {
padding-bottom: 12px;
img {
margin-bottom: 12px;
height: 135px;
}
.leasing_model,
.leasing_desc {
padding: 0 18px;
}
}
}
}
@media all and (max-width: 768px) {
margin: 0 -16px;
padding: 0 16px;
}
}
.leasing_offer-detail {
display: flex;
justify-content: space-between;
margin-top: 100px;
.image_slider {
height: 425px;
width: calc(100% - 560px);
.slide {
height: 100%;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
}
.offer_desc {
width: 530px;
padding-bottom: 40px;
position: relative;
.offer_name {
font-size: 26px;
line-height: 35px;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 30px;
}
ul {
li {
line-height: 25px;
}
margin-bottom: 20px;
}
.button {
margin-top: 40px;
width: 390px;
position: absolute;
bottom: 0;
left: 0;
}
}
@media all and (max-width: 1280px) {
.image_slider {
height: 300px;
}
.image_slider, .offer_desc {
width: calc(50% - 15px);
.button {
position: relative;
}
}
}
@media all and (max-width: 768px) {
margin-top: 18px;
display: block;
.image_slider {
width: 100%;
height: 168px;
}
.offer_desc {
width: 100%;
padding-bottom: 0;
.offer_name {
font-size: 19px;
line-height: 26px;
margin-bottom: 13px;
}
.button {
width: 100%;
position: relative;
}
}
}
}
}
.faq_search {
margin-bottom: 40px;
.form_field {
width: 100%;
max-width: 635px;
margin-left: auto;
}
}
.dropdown_blocks_list {
&.zero-margin {
margin-left: -30px;
border-left: 1px solid #EDEFF5;
border-right: 1px solid #EDEFF5;
.dropdown_block {
border-bottom: 0 !important;
position: relative;
&:after {
content: "";
display: block;
width: auto;
height: 1px;
background: #EDEFF5;
position: absolute;
bottom: 0;
left: 32px;
right: 32px;
}
.block_header {
padding-left: 30px;
padding-right: 30px;
}
.block_body {
margin-left: 85px;
max-width: 755px;
overflow: hidden;
}
}
@media all and (max-width: 1279px) {
border: 0;
margin-left: 0;
.dropdown_block {
&:after {
left: 0;
right: 0;
}
.block_header {
padding-left: 5px;
padding-right: 5px;
}
.block_body {
margin-left: 0;
padding-left: 5px;
}
}
}
}
.dropdown_block {
&:not(:last-child) {
border-bottom: 1px solid #EDEFF5;
}
&.bt {
border-bottom: 0;
border-top: 1px solid #EDEFF5;
}
.block_header {
padding: 15px 0;
height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
p {
margin-bottom: 0;
margin-right: 20px;
font-weight: 700;
&.with-icon {
display: inline-flex;
align-items: center;
img {
margin-right: 20px;
}
}
}
button {
width: 22px;
height: 22px;
min-width: 22px;
cursor: pointer;
background: url("/assets/images/icons/dropdown-blue.svg") no-repeat center;
}
}
.block_body {
display: none;
.company {
display: flex;
margin-bottom: 30px;
.title {
text-transform: uppercase;
font-size: 26px;
line-height: 35px;
font-weight: 700;
}
ul {
margin-left: 80px;
li {
line-height: 1.5;
margin-bottom: 6px;
}
}
}
}
&.open {
.block_header {
button {
background: url("/assets/images/icons/close-blue.svg") no-repeat center;
}
}
.block_body {
display: block;
margin-top: 25px;
p {
margin-bottom: 35px;
}
@media all and (max-width: 768px) {
//margin-top: 0;
p {
margin-bottom: 15px;
}
}
}
}
}
&.filled {
.dropdown_block {
&.open {
.block_header {
background: var(--inactive);
color: var(--blue);
}
}
.block_body {
}
}
}
}
aside {
.aside_nav {
list-style: none;
padding: 0;
margin: 0 0 30px 0;
li {
margin-bottom: 8px;
a {
display: flex;
align-items: center;
min-height: 56px;
color: #000;
font-size: 15px;
line-height: 23px;
font-weight: 700;
box-sizing: border-box;
padding: 0 15px;
&.active {
background: var(--green);
color: #fff;
font-weight: 700;
}
}
}
@media all and (max-width: 1280px) {
display: flex;
margin-left: -16px;
margin-right: -16px;
overflow-x: auto;
padding-left: 16px;
padding-right: 16px;
li {
background: #EDEFF5;
margin-bottom: 0;
a {
white-space: nowrap;
font-size: 13px;
line-height: 20px;
min-height: 40px;
font-weight: 400;
}
}
}
}
.button {
width: 100%;
}
}
#order {
.container {
padding-bottom: 180px;
@media all and (max-width: 1280px) {
padding-bottom: 60px;
}
}
@media all and (max-width: 768px) {
background: #EDEFF5;
.container {
padding: 40px 0 0 0;
}
}
}
}
// Detail Car
.model_container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 60px;
.col {
width: calc(50% - 15px);
img {
max-width: 100%;
}
.model_desc {
margin-top: 35px;
p {
margin-bottom: 10px;
}
}
}
#calc {
background: var(--inactive);
padding: 35px 30px;
position: relative;
&:after {
content: "";
display: block;
position: absolute;
top: 0;
right: -100%;
bottom: 0;
width: 100%;
background: inherit;
}
.calc_body {
flex-wrap: wrap;
.calc_settings {
width: 100%;
margin-bottom: 35px;
}
.calc_result {
width: 100%;
.result_box {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
p {
font-weight: 400;
}
&.bolder {
margin-bottom: 35px;
p {
font-weight: 700;
font-size: 26px;
line-height: 35px;
}
}
}
.calc_footer {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
.button {
width: calc(50% - 13px);
padding: 0;
font-weight: 400;
}
}
}
}
}
.aside_container {
width: 100%;
margin-top: 0px;
border-top: 1px solid #EDEFF5;
aside {
width: 305px;
padding-top: 40px;
}
article {
width: calc(100% - 305px);
padding-top: 40px;
border-left: 1px solid #EDEFF5;
.dropdown_blocks_list {
.dropdown_block {
padding: 0 40px;
}
}
}
}
@media all and (max-width: 768px) {
margin-top: 20px;
.col {
width: 100%;
margin-bottom: 10px;
img {
margin: 0 -16px;
width: calc(100% + 32px);
}
.model_desc {
margin-top: 12px;
}
#calc {
margin: 0 -16px;
padding: 25px 16px;
.calc_body {
.calc_result {
.result_box {
&.bolder {
p {
font-size: 19px;
line-height: 26px;
}
}
}
.calc_footer {
margin-top: 0;
display: block;
button {
width: 100%;
margin-bottom: 0;
&:first-child {
margin-top: 0;
}
}
}
}
}
}
}
.aside_container {
border-top: 0;
aside {
display: none;
}
article {
width: 100%;
border: 0;
padding-top: 0;
.dropdown_blocks_list .dropdown_block {
padding: 0;
}
}
}
}
}
// Catalog
.catalog_list {
display: flex;
flex-wrap: wrap;
@media all and (max-width: 1280px) {
justify-content: space-between;
width: 100%;
}
.catalog_item {
width: calc(33.333% - 20px);
margin-bottom: 110px;
&:not(:nth-child(3n)) {
margin-right: 30px;
}
img {
width: 100%;
height: 220px;
object-fit: cover;
margin-bottom: 30px;
}
.item_class {
font-size: 26px;
line-height: 35px;
color: #0C0C0C;
font-weight: 700;
margin-bottom: 8px;
}
.item_model {
font-size: 14px;
b {
display: block;
font-size: 15px;
}
}
ul {
li {
display: flex;
justify-content: space-between;
line-height: 29px;
p {
margin: 0;
}
&.pay {
font-weight: 700;
margin: 25px 0;
}
}
}
.item_footer {
text-align: right;
margin-top: 30px;
}
}
@media all and (max-width: 1280px) {
.catalog_item {
width: calc(50% - 15px);
margin-right: 0 !important;
margin-bottom: 66px;
.item_class {
font-size: 19px;
line-height: 26px;
}
.item_model {
font-size: 13px;
margin-top: 10px;
b {
font-size: 13px;
}
}
ul {
li {
line-height: 20px;
margin-bottom: 10px;
&.pay {
margin: 15px 0;
}
}
}
}
}
@media all and (max-width: 768px) {
.catalog_item {
width: 100%;
img {
margin-left: -16px;
margin-right: -16px;
width: calc(100% + 32px);
}
ul li {
margin-bottom: 0px;
}
}
}
}
// Реквезиты
.requisites {
padding: 0 110px;
.requisites_row {
display: flex;
justify-content: flex-start;
margin-bottom: 25px;
p {
margin: 0;
max-width: calc(50% - 15px);
text-align: left;
&:first-child {
font-weight: 700;
margin-right: 30px;
width: 180px;
}
}
}
.button {
margin-top: 40px;
}
@media all and (max-width: 1420px) {
padding: 0;
}
@media all and (max-width: 1280px) {
.requisites_row {
display: block;
margin-bottom: 8px;
p {
width: 100%;
margin-bottom: 8px;
}
}
.button {
width: 286px;
}
}
}
// Контакты
#choose_region {
display: flex;
align-items: center;
p {
margin-right: 30px;
max-width: 340px;
}
.form_field {
width: 415px;
}
}
#officeViewToggle {
@media all and (max-width: 1280px) {
justify-content: flex-end;
}
.tab {
@media all and (max-width: 768px) {
width: 50%;
text-align: center;
}
}
}
#map {
display: none;
width: 100%;
height: 615px;
margin: 45px 0;
background: var(--gray-light);
&.visible {
display: block;
}
@media all and (max-width: 1280px) {
height: 320px;
margin: 20px 0;
}
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1010;
display: block;
padding: 1px;
text-align: left;
white-space: normal;
background: var(--blue);
color: #fff;
-webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
padding: 30px 20px;
max-width: 500px;
}
.popover .close {
position: absolute;
top: 8px;
right: 8px;
width: 24px;
height: 24px;
font-size: 0;
cursor: pointer;
background: url("/assets/images/icons/close-white.svg") no-repeat center;
}
.popover p {
margin: 5px 0;
}
.popover .arrow {
position: absolute;
left: 0;
right: 0;
bottom: -25px;
margin: auto;
width: 43px;
height: 54px;
background: url("/assets/images/pin-open.svg") no-repeat center;
}
.offices_list {
display: flex;
justify-content: space-between;
border-top: 1px solid #EDEFF5;
margin-top: 30px;
&#offices:not(.visible) {
display: none;
}
.column {
width: calc(50% - 15px);
.dropdown_block.open {
.block_body {
p {
margin-bottom: 8px;
}
a {
display: inline-block;
font-weight: 700;
margin: 20px 0 20px 28px;
}
}
}
}
@media all and (max-width: 768px) {
display: block;
padding-top: 35px;
margin-top: 35px;
.column {
width: 100%;
}
}
}
// Документы
.dosc_list {
.row {
margin-bottom: 35px;
display: flex;
align-items: center;
justify-content: space-between;
p {
margin-bottom: 0;
}
.doc_name {
font-weight: 700;
min-height: 56px;
display: inline-flex;
flex-wrap: wrap;
align-items: center;
margin-right: 30px;
max-width: 50%;
&.full {
max-width: 100%;
span {
width: 100%;
}
}
a {
text-decoration: underline;
font-weight: 700;
&:hover {
text-decoration: none;
}
}
span {
display: block;
font-weight: 400;
margin-top: 8px;
}
}
.doc_date {
margin-right: 30px;
margin-left: 30px;
white-space: nowrap;
}
.button {
width: 104px;
}
}
&.medium-icon {
.row {
margin-bottom: 15px;
width: 100%;
}
.doc_name {
min-height: 40px;
background-size: 32px;
padding-left: 48px;
}
}
&.acts_list-checkbox {
.row {
margin-bottom: 15px;
width: 100%;
.doc_name {
background-size: 32px;
padding-left: 0;
background-position: 30px 50%;
min-height: 32px;
max-width: none;
font-weight: 400;
input[type="checkbox"]+label:before {
margin-right: 56px;
}
&:not(.i-pdf) {
min-height: 0;
input[type="checkbox"]+label:before {
margin-right: 16px;
}
}
}
}
}
@media all and (max-width: 768px) {
.row {
position: relative;
flex-wrap: wrap;
.doc_name {
max-width: 100%;
width: 100%;
}
.button:not(.download-icon) {
margin-left: 55px;
margin-top: 8px;
width: 96px;
}
.button.download-icon {
position: absolute;
right: 0;
top: 0;
bottom: 0;
margin: auto;
width: 24px;
padding: 0;
}
}
}
}
// Таблица договоров в лк
.contract_table {
margin-bottom: 80px;
.table_row {
min-height: 80px;
display: flex;
width: 100%;
.table_cell {
padding: 16px 8px;
border: 1px solid #EDEFF5;
width: 14%;
min-width: 14%;
&:nth-child(3) {
width: 16%;
min-width: 16%;
}
&:nth-child(5) {
word-break: break-all;
}
p {
margin: 0;
&.closed {
color: var(--text_not_active);
}
&.opened {
color: var(--green);
}
}
b {
display: block;
}
}
}
.table_header {
.table_cell {
border: 0;
color: var(--text_not_active);
font-weight: 700;
display: flex;
align-items: center;
&.caret {
cursor: pointer;
&:after {
content: "";
display: inline-block;
width: 16px;
min-width: 16px;
height: 16px;
margin-left: 6px;
background: url("/assets/images/icons/icon-select.svg") no-repeat center;
}
&.reverse {
&:after {
transform: scaleY(-1);
}
}
}
}
}
&.schedule {
@media all and (max-width: 1279px) {
align-items: flex-start;
}
.show_more {
width: 100%;
height: 60px;
text-align: center;
background: var(--inactive);
color: var(--blue);
font-weight: 600;
@media all and (max-width: 1279px) {
margin-bottom: 15px;
}
}
.table_row {
.table_cell {
width: 25%;
//min-width: 25%;
min-width: 14%;
&:nth-child(1),
&:nth-child(2),
&:nth-child(4) {
width: 14%;
min-width: 14%;
}
}
&[data-status="notpaid"] {
background: rgb(168 2 107 / 10%);
}
&[data-status="overpayment-2"] {
background: rgb(28 1 169 / 10%);
}
&[data-status="overpayment-1"] {
background: rgb(168 2 107 / 10%);
}
&[data-status="paid"] {
background: rgb(4 168 164 / 10%);
}
.toggle_cell {
display: none;
}
@media all and (max-width: 1279px) {
position: relative;
.table_cell {
width: 100%;
padding-right: 45px;
&:nth-child(1),
&:nth-child(2),
&:nth-child(3),
&:nth-child(4),
&:nth-child(5),
&:nth-child(6) {
width: 100%;
text-align: left;
font-size: 13px;
line-height: 20px;
padding-top: 0;
border: none;
margin: 5px 0;
&:before {
content: attr(data-title);
display: inline-block;
margin-right: 6px;
font-weight: 600;
height: auto;
position: static;
background: transparent;
}
}
&:nth-child(3) {
margin: 0;
font-weight: 400;
}
}
.toggle_cell {
display: block;
position: absolute;
width: 16px;
height: 16px;
position: absolute;
right: 15px;
top: 28px;
background: url("/assets/images/icons/toggle-cell.svg") no-repeat center;
border: 0;
outline: none;
}
}
@media all and (max-width: 1279px) {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
&:not(.opened) {
.table_cell:nth-child(4),
.table_cell:nth-child(5),
.table_cell:nth-child(6) {
display: none;
}
}
&.opened {
.toggle_cell {
transform: rotate(180deg);
}
}
.table_cell {
&:nth-child(1),
&:nth-child(2) {
width: 50%;
margin-top: 0;
margin-bottom: 0;
font-weight: 700;
&::before {
font-weight: 700;
}
}
&:nth-child(2) {
text-align: right;
}
&:nth-child(3),
&:nth-child(4) {
display: flex;
justify-content: space-between;
align-items: flex-end;
font-weight: 700;
&:before {
font-weight: 400;
font-size: 13px;
line-height: 20px;
max-width: 55%;
margin-right: 20px;
}
}
&:nth-child(3) {
margin-top: 10px;
margin-bottom: 8px;
}
&:nth-child(5) {
display: flex;
justify-content: space-between;
padding-top: 15px;
margin-top: 15px;
border-top: 1px solid #EDEFF5;
margin-left: -15px;
margin-right: -15px;
padding-left: 15px;
padding-right: 60px;
width: calc(100% + 30px);
}
&:nth-child(5),
&:nth-child(6) {
font-size: 13px;
line-height: 20px;
margin-bottom: 0;
margin-top: 10px;
&:before {
display: none;
}
}
}
}
@media all and (max-width: 768px) {}
}
}
@media all and (max-width: 1279px) {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.table_row {
width: calc(50% - 15px);
margin-bottom: 30px;
border: 1px solid #EDEFF5;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 25px 15px;
&.table_header {display: none;}
.table_cell {
border: 0;
padding: 0;
width: 100%;
font-size: 13px;
line-height: 20px;
padding: 0;
&:nth-child(1),
&:nth-child(4) {
font-size: 10px;
line-height: 15px;
width: 50%;
text-align: left;
}
&:nth-child(2),
&:nth-child(5) {
font-size: 10px;
line-height: 15px;
width: 40%;
text-align: right;
}
&:nth-child(3) {
font-weight: 700;
margin: 15px 0;
width: 100%;
}
&:nth-child(6) {
width: 40%;
margin-top: 15px;
padding-top: 15px;
position: relative;
&:before {
content: "";
position: absolute;
top: 0;
left: -15px;
right: 0;
width: auto;
height: 1px;
background: #EDEFF5;
}
}
&:nth-child(7) {
display: flex;
align-items: center;
width: 60%;
text-align: right;
justify-content: flex-end;
margin-top: 15px;
padding-top: 15px;
position: relative;
&:before {
content: "";
position: absolute;
top: 0;
right: -15px;
left: 0;
width: auto;
height: 1px;
background: #EDEFF5;
}
.price {
margin-left: 15px;
}
}
}
}
}
@media all and (max-width: 768px) {
.table_row {
width: 100%;
margin-bottom: 15px;
}
}
}
// Блок с логотипами
.logo_list {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
margin: 35px 0;
.logo_item {
width: calc(16.666% - 25px);
height: 97px;
display: flex;
align-items: center;
justify-content: center;
margin: 15px 0;
img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
}
}
// Лизинговое предложение
.leasing_offers_list {
display: flex;
justify-content: space-between;
margin-top: 60px;
.offer_item {
width: calc(33.333% - 20px);
padding-left: 80px;
position: relative;
p {
margin-bottom: 15px;
}
img {
position: absolute;
top: 0;
left: 0;
}
ul {
li {
&:not(:last-child) {
margin-bottom: 6px;
}
}
}
}
}
// Сортировка
.catalog_sort {
display: flex;
align-items: center;
justify-content: flex-end;
margin-bottom: 65px;
.sort_container {
margin-left: 40px;
position: relative;
button {
height: 40px;
padding: 0 20px 0 48px;
color: var(--blue);
&.i-filter {
background: url("/assets/images/icons/icon-filter.svg") no-repeat 20px 50%;
}
&.i-sort {
background: url("/assets/images/icons/icon-sort.svg") no-repeat 20px 50%;
}
}
}
}
// Страница новости
.news_cotnainer {
display: flex;
justify-content: space-between;
.left {
width: 525px;
.image {
width: 100%;
height: 525px;
background: var(--gray-light);
margin-bottom: 30px;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
.socials {
a {
width: 48px;
height: 48px;
margin-right: 15px;
}
}
}
.right {
width: calc(100% - 555px);
h1 {
margin-bottom: 20px;
}
.date {
display: block;
text-transform: uppercase;
margin-bottom: 35px;
}
p, ul, ol {
margin-bottom: 20px;
}
}
}
// Личный кабинет - Календарь
.calendar_wrapper {
#calendar_month {
margin-left: auto;
max-width: 235px;
padding-left: 32px;
display: block;
background: url("/assets/images/icons/icon-date.svg") no-repeat 8px 50%, url("/assets/images/icons/icon-select.svg") no-repeat calc(100% - 16px) 50%;
@media all and (max-width: 960px) {
margin-left: 0;
max-width: 284px;
}
@media all and (max-width: 768px) {
max-width: 100%;
}
}
.calendar_nav {
display: none;
@media all and (max-width: 768px) {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 15px;
button {
max-width: 48%;
height: 28px;
font-size: 10px;
color: var(--blue);
padding: 0;
&:first-child:before {
content: "<";
display: inline-block;
width: 20px;
height: 28px;
line-height: 28px;
text-align: left;
}
&:last-child:after {
content: ">";
display: inline-block;
width: 20px;
height: 28px;
line-height: 28px;
text-align: right;
}
}
}
}
.calendar_grid {
margin-top: 30px;
.grid_header {
display: flex;
flex-wrap: wrap;
.grid_cell {
padding: 15px;
text-transform: uppercase;
font-weight: bold;
font-size: 15px;
line-height: 23px;
color: #0C0C0C;
width: 14.2%;
}
}
.grid_body {
display: flex;
flex-wrap: wrap;
border: 1px solid #E0E0E0;
.grid_week {
width: 100%;
display: flex;
}
.grid_cell {
padding: 15px;
width: 14.282%;
height: 150px;
border: 1px solid #E0E0E0;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
align-items: stretch;
.cell_header {
color: #87878E;
align-self: flex-start;
text-transform: capitalize;
span {
font-size: 26px;
line-height: 35px;
font-weight: 700;
color: #000;
padding-right: 4px;
}
}
.cell_body {
align-self: flex-end;
p {
color: #000;
span {
display: block;
font-weight: 700;
}
}
}
&.disabled {
background: #EDEFF5;
opacity: 0.4;
}
&.current {
background: var(--blue);
.cell_header {
color: #fff;
span {color: inherit;}
}
.cell_body p {color: #fff;}
}
}
}
@media all and (max-width: 960px) {
position: relative;
margin-right: -80px;
.grid_header {
width: 22px;
position: absolute;
left: 0;
top: 0;
.grid_cell {
width: 100%;
height: 72px;
padding: 14px 0;
text-align: center;
font-size: 13px;
line-height: 20px;
}
}
.grid_body {
margin-left: 30px;
overflow-x: auto;
.grid_week {
width: auto;
}
.grid_cell {
height: 72px;
padding: 10px;
width: 33.333%;
min-width: 256px;
font-size: 13px;
line-height: 20px;
align-items: flex-start;
//display: block;
.cell_header {
span {font-size: 13px;line-height: 20px;}
}
.cell_body {
width: 100%;
p {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
}
}
}
}
@media all and (max-width: 768px) {
margin-top: 15px;
margin-right: 0;
.grid_body {
.grid_week {
width: 100%;
flex-wrap: wrap;
&:not(.active) {
display: none;
}
.grid_cell {
display: flex;
width: 100%;
}
}
}
}
}
}
.calendar_payment {
display: flex;
.day {
color: #87878E;
font-size: 26px;
line-height: 35px;
font-weight: 700;
margin-right: 50px;
span {
display: block;
font-size: 50px;
line-height: 1;
color: #000;
}
}
.payment_table {
display: table;
margin-top: 12px;
.table_row {
display: table-row;
.table_cell {
display: table-cell;
padding: 2px 10px;
a {
font-weight: 700;
}
}
&.table_header {
.table_cell {
color: #87878E;
padding: 12px 10px;
}
}
}
}
@media all and (max-width: 768px) {
display: block;
}
}
// Личный кабинет - Акты
.acts_wrapper {
display: flex;
justify-content: space-between;
.acts_list-checkbox, .reconciliation_form {
width: ~"calc(50% - 10px)";
}
@media all and (max-width: 768px) {
flex-wrap: wrap;
.acts_list-checkbox {
width: 100%;
order: 1;
margin-bottom: 40px;
}
.reconciliation_form {
order: 2;
width: 100%;
}
}
}
main .dropdown_blocks_list .dropdown_block .block_body {
.transaction_detail {
margin: 30px 0;
p {
margin-bottom: 10px;
}
ul {
max-width: 60%;
display: flex;
flex-wrap: wrap;
li {
width: 50%;
}
}
}
}
.dropdown_block + .dosc_list {
margin-top: 20px;
@media all and (max-width: 768px) {
margin-top: 0;
padding-top: 20px;
border-top: 1px solid #EDEFF5;
}
}