1434 lines
34 KiB
CSS
1434 lines
34 KiB
CSS
main {
|
|
overflow: hidden;
|
|
}
|
|
main section.gray {
|
|
background: var(--inactive);
|
|
}
|
|
main .title_wrapper {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 50px;
|
|
}
|
|
main .title_wrapper h1,
|
|
main .title_wrapper h2,
|
|
main .title_wrapper h3,
|
|
main .title_wrapper h4,
|
|
main .title_wrapper h5 {
|
|
margin-bottom: 0;
|
|
line-height: 1;
|
|
}
|
|
main .title_wrapper .title_link {
|
|
font-weight: 600;
|
|
display: inline-block;
|
|
margin-left: 55px;
|
|
align-self: flex-end;
|
|
line-height: 24px;
|
|
}
|
|
main .title_wrapper .left {
|
|
display: flex;
|
|
}
|
|
main .title_wrapper .right {
|
|
display: flex;
|
|
}
|
|
main #main_slider {
|
|
height: 708px;
|
|
background: var(--gray-light);
|
|
padding: 0;
|
|
position: relative;
|
|
}
|
|
main #main_slider .container {
|
|
position: relative;
|
|
height: 100%;
|
|
background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 2px, transparent 20%);
|
|
}
|
|
main #main_slider .slider_active_title {
|
|
font-weight: bold;
|
|
font-size: 43px;
|
|
line-height: 63px;
|
|
letter-spacing: 2px;
|
|
color: #fff;
|
|
max-width: 560px;
|
|
position: absolute;
|
|
top: 176px;
|
|
left: 0;
|
|
text-transform: uppercase;
|
|
font-family: 'PF Din Display Pro Bold';
|
|
}
|
|
main #main_slider .slider_list {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
}
|
|
main #main_slider .slider_list .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;
|
|
}
|
|
main #main_slider .slider_list .slider_item: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);
|
|
}
|
|
main #main_slider .slider_list .slider_item .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';
|
|
}
|
|
main #main_slider .slider_list .slider_item .item_name:after {
|
|
content: "";
|
|
display: block;
|
|
width: 22px;
|
|
min-width: 22px;
|
|
height: 14px;
|
|
background: url("/images/icons/slider_arrow.svg") no-repeat center;
|
|
}
|
|
main #main_slider .slider_list .slider_item 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;
|
|
}
|
|
main #main_slider .slider_list .slider_item.active {
|
|
background: currentColor;
|
|
}
|
|
main #main_slider .slider_list .slider_item.active .item_name,
|
|
main #main_slider .slider_list .slider_item.active a {
|
|
transform: translateY(0px);
|
|
}
|
|
main #main_slider .slider_list .slider_item.active .item_name:after {
|
|
width: 44px;
|
|
background: url("/images/icons/slider_arrow-hover.svg") no-repeat center;
|
|
transform: rotate(-90deg) translate(15px, 15px);
|
|
}
|
|
main #main_slider .slider_list .slider_item:hover .item_name,
|
|
main #main_slider .slider_list .slider_item:hover a {
|
|
transform: translateY(0px);
|
|
}
|
|
main #main_slider .slider_list .slider_item:hover:after {
|
|
transform: translateY(0px);
|
|
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, currentColor 100%);
|
|
}
|
|
main #main_slider .slider_list .slider_navto {
|
|
width: 20%;
|
|
max-width: 20%;
|
|
height: 300px;
|
|
}
|
|
main #main_slider .slider_list .slider_navto 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;
|
|
}
|
|
main #main_slider .slider_list .slider_navto a: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("/images/icons/slider_arrow-blue.svg") no-repeat center;
|
|
}
|
|
main #main_slider .slider_list .slider_navto a:hover {
|
|
background: #04a8a4;
|
|
}
|
|
main #main_slider .slider_list .slider_navto a:hover:after {
|
|
width: 90px;
|
|
background: url("/images/icons/arrow-navto.svg") no-repeat center;
|
|
}
|
|
main #calc .container {
|
|
background: url("/images/calc-bg.jpg") no-repeat right center #EDEFF5;
|
|
padding: 70px 25px;
|
|
position: relative;
|
|
}
|
|
main #calc .container:after {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: -100%;
|
|
width: 100%;
|
|
left: auto;
|
|
background-color: inherit;
|
|
}
|
|
main #calc .calc_body {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
main #calc .calc_body .calc_settings {
|
|
width: 830px;
|
|
}
|
|
main #calc .calc_body .calc_settings .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;
|
|
}
|
|
main #calc .calc_body .calc_settings .settings_box:last-child {
|
|
margin-bottom: 20px;
|
|
}
|
|
main #calc .calc_body .calc_settings .settings_box p {
|
|
margin-bottom: 15px;
|
|
font-weight: 700;
|
|
}
|
|
main #calc .calc_body .calc_settings .settings_box p.min {
|
|
position: absolute;
|
|
top: 65px;
|
|
font-weight: 400;
|
|
left: 10px;
|
|
margin: 0;
|
|
}
|
|
main #calc .calc_body .calc_settings .settings_box p.max {
|
|
position: absolute;
|
|
top: 65px;
|
|
font-weight: 400;
|
|
right: 10px;
|
|
margin: 0;
|
|
}
|
|
main #calc .calc_body .calc_settings .settings_box .line {
|
|
position: relative;
|
|
width: 100%;
|
|
background: rgba(142, 148, 167, 0.4);
|
|
height: 5px;
|
|
z-index: 2;
|
|
}
|
|
main #calc .calc_body .calc_settings .settings_box .line .active_line {
|
|
background: var(--blue);
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 10px;
|
|
}
|
|
main #calc .calc_body .calc_settings .settings_box .line .dragble {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
transform: rotate(45deg) translate(-6px, 6px);
|
|
cursor: pointer;
|
|
background: var(--blue);
|
|
}
|
|
main #calc .calc_body .calc_result {
|
|
width: 350px;
|
|
align-items: stretch;
|
|
align-content: stretch;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
main #calc .calc_body .calc_result .result_box p {
|
|
font-weight: 700;
|
|
}
|
|
main #calc .calc_body .calc_result .result_box p.price {
|
|
font-size: 41px;
|
|
line-height: 1;
|
|
}
|
|
main #calc .calc_body .calc_result .result_box p.price sup {
|
|
font-weight: 300;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: #8E94A7;
|
|
vertical-align: super;
|
|
}
|
|
main #calc .calc_body .calc_result .button {
|
|
width: 100%;
|
|
align-self: center;
|
|
}
|
|
main #calc .calc_body .calc_result .secondary {
|
|
align-self: flex-end;
|
|
}
|
|
main .news_arrows {
|
|
display: flex;
|
|
align-content: center;
|
|
}
|
|
main .news_arrows button {
|
|
width: 97px;
|
|
height: 28px;
|
|
background-color: var(--blue);
|
|
box-sizing: border-box;
|
|
padding: 0 10px;
|
|
transition: 175ms background ease-in-out;
|
|
}
|
|
main .news_arrows button svg {
|
|
width: 8px;
|
|
height: 12px;
|
|
margin-left: auto;
|
|
}
|
|
main .news_arrows button svg path {
|
|
stroke: #fff;
|
|
transition: 175ms stroke ease-in-out;
|
|
}
|
|
main .news_arrows button:disabled,
|
|
main .news_arrows button.slick-disabled {
|
|
cursor: default;
|
|
background-color: var(--inactive);
|
|
background-position: center;
|
|
}
|
|
main .news_arrows button:disabled svg,
|
|
main .news_arrows button.slick-disabled svg {
|
|
margin-left: 0;
|
|
}
|
|
main .news_arrows button:disabled svg path,
|
|
main .news_arrows button.slick-disabled svg path {
|
|
stroke: #8E94A7;
|
|
}
|
|
main .news_list,
|
|
main .career_list {
|
|
display: flex;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
}
|
|
main .news_list .slick-list,
|
|
main .career_list .slick-list {
|
|
width: 100%;
|
|
}
|
|
main .news_list .slick-list .slick-track,
|
|
main .career_list .slick-list .slick-track {
|
|
white-space: nowrap;
|
|
display: flex;
|
|
padding-right: 100px;
|
|
}
|
|
main .news_list .slick-list .slick-track:after,
|
|
main .career_list .slick-list .slick-track:after {
|
|
content: "";
|
|
display: block;
|
|
width: 365px;
|
|
min-width: 365px;
|
|
height: 200px;
|
|
}
|
|
main .news_list .news_item,
|
|
main .career_list .news_item,
|
|
main .news_list .career_item,
|
|
main .career_list .career_item {
|
|
width: 365px;
|
|
min-width: 365px;
|
|
padding: 35px 20px;
|
|
background: #EDEFF5;
|
|
position: relative;
|
|
}
|
|
main .news_list .news_item p,
|
|
main .career_list .news_item p,
|
|
main .news_list .career_item p,
|
|
main .career_list .career_item p {
|
|
white-space: normal;
|
|
margin-bottom: 22px;
|
|
line-height: 24px;
|
|
transition: 175ms color ease-in-out;
|
|
}
|
|
main .news_list .news_item .news_date,
|
|
main .career_list .news_item .news_date,
|
|
main .news_list .career_item .news_date,
|
|
main .career_list .career_item .news_date {
|
|
margin-bottom: 35px;
|
|
}
|
|
main .news_list .news_item img,
|
|
main .career_list .news_item img,
|
|
main .news_list .career_item img,
|
|
main .career_list .career_item img {
|
|
display: block;
|
|
margin-bottom: 22px;
|
|
object-fit: cover;
|
|
}
|
|
main .news_list .news_item .news_title,
|
|
main .career_list .news_item .news_title,
|
|
main .news_list .career_item .news_title,
|
|
main .career_list .career_item .news_title,
|
|
main .news_list .news_item .career_title,
|
|
main .career_list .news_item .career_title,
|
|
main .news_list .career_item .career_title,
|
|
main .career_list .career_item .career_title {
|
|
color: #0C0C0C;
|
|
font-size: 24px;
|
|
line-height: 28px;
|
|
font-weight: 700;
|
|
}
|
|
main .news_list .news_item .news_link,
|
|
main .career_list .news_item .news_link,
|
|
main .news_list .career_item .news_link,
|
|
main .career_list .career_item .news_link,
|
|
main .news_list .news_item .career_link,
|
|
main .career_list .news_item .career_link,
|
|
main .news_list .career_item .career_link,
|
|
main .career_list .career_item .career_link {
|
|
margin-bottom: 0;
|
|
color: var(--blue);
|
|
}
|
|
main .news_list .news_item a,
|
|
main .career_list .news_item a,
|
|
main .news_list .career_item a,
|
|
main .career_list .career_item a {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 3;
|
|
}
|
|
main .news_list .news_item:after,
|
|
main .career_list .news_item:after,
|
|
main .news_list .career_item:after,
|
|
main .career_list .career_item:after {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: -24px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: -24px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: 175ms all ease-in-out;
|
|
}
|
|
main .news_list .news_item:hover,
|
|
main .career_list .news_item:hover,
|
|
main .news_list .career_item:hover,
|
|
main .career_list .career_item:hover {
|
|
z-index: 2;
|
|
}
|
|
main .news_list .news_item:hover:after,
|
|
main .career_list .news_item:hover:after,
|
|
main .news_list .career_item:hover:after,
|
|
main .career_list .career_item:hover:after {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
background: var(--green);
|
|
z-index: 0;
|
|
}
|
|
main .news_list .news_item:hover p,
|
|
main .career_list .news_item:hover p,
|
|
main .news_list .career_item:hover p,
|
|
main .career_list .career_item:hover p,
|
|
main .news_list .news_item:hover img,
|
|
main .career_list .news_item:hover img,
|
|
main .news_list .career_item:hover img,
|
|
main .career_list .career_item:hover img {
|
|
color: #fff;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
main .news_list .news_item:hover .news_date:after,
|
|
main .career_list .news_item:hover .news_date:after,
|
|
main .news_list .career_item:hover .news_date:after,
|
|
main .career_list .career_item:hover .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%);
|
|
}
|
|
main .news_list.masongry_columns,
|
|
main .career_list.masongry_columns {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
main .news_list.masongry_columns .column,
|
|
main .career_list.masongry_columns .column {
|
|
width: calc(50% - 15px);
|
|
}
|
|
main .news_list.masongry_columns .news_item,
|
|
main .career_list.masongry_columns .news_item,
|
|
main .news_list.masongry_columns .career_item,
|
|
main .career_list.masongry_columns .career_item {
|
|
width: 100%;
|
|
margin-bottom: 30px;
|
|
}
|
|
main .programs_list,
|
|
main .services_list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
main .programs_list .program_item,
|
|
main .services_list .program_item,
|
|
main .programs_list .service_item,
|
|
main .services_list .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;
|
|
}
|
|
main .programs_list .program_item:after,
|
|
main .services_list .program_item:after,
|
|
main .programs_list .service_item:after,
|
|
main .services_list .service_item: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;
|
|
}
|
|
main .programs_list .program_item a,
|
|
main .services_list .program_item a,
|
|
main .programs_list .service_item a,
|
|
main .services_list .service_item a {
|
|
height: 100%;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
padding: 36px 18px;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
main .programs_list .program_item a span,
|
|
main .services_list .program_item a span,
|
|
main .programs_list .service_item a span,
|
|
main .services_list .service_item a span {
|
|
display: inline-block;
|
|
}
|
|
main .programs_list .program_item:not(:nth-child(4n)),
|
|
main .services_list .program_item:not(:nth-child(4n)),
|
|
main .programs_list .service_item:not(:nth-child(4n)),
|
|
main .services_list .service_item:not(:nth-child(4n)) {
|
|
margin-right: 30px;
|
|
}
|
|
main .programs_list .program_item .program_name,
|
|
main .services_list .program_item .program_name,
|
|
main .programs_list .service_item .program_name,
|
|
main .services_list .service_item .program_name,
|
|
main .programs_list .program_item .service_name,
|
|
main .services_list .program_item .service_name,
|
|
main .programs_list .service_item .service_name,
|
|
main .services_list .service_item .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%;
|
|
}
|
|
main .programs_list .program_item .program_link,
|
|
main .services_list .program_item .program_link,
|
|
main .programs_list .service_item .program_link,
|
|
main .services_list .service_item .program_link,
|
|
main .programs_list .program_item .service_link,
|
|
main .services_list .program_item .service_link,
|
|
main .programs_list .service_item .service_link,
|
|
main .services_list .service_item .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;
|
|
}
|
|
main .programs_list .program_item img,
|
|
main .services_list .program_item img,
|
|
main .programs_list .service_item img,
|
|
main .services_list .service_item img {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
transform: translate(0, 0);
|
|
transition: 125ms all ease-in-out;
|
|
}
|
|
main .programs_list .program_item:hover:after,
|
|
main .services_list .program_item:hover:after,
|
|
main .programs_list .service_item:hover:after,
|
|
main .services_list .service_item:hover:after {
|
|
top: -35px;
|
|
right: -20px;
|
|
bottom: -35px;
|
|
}
|
|
main .programs_list .program_item:hover img,
|
|
main .services_list .program_item:hover img,
|
|
main .programs_list .service_item:hover img,
|
|
main .services_list .service_item:hover img {
|
|
transform: translate(20px, -35px);
|
|
}
|
|
main .programs_list .program_item:hover .program_name,
|
|
main .services_list .program_item:hover .program_name,
|
|
main .programs_list .service_item:hover .program_name,
|
|
main .services_list .service_item:hover .program_name,
|
|
main .programs_list .program_item:hover .service_name,
|
|
main .services_list .program_item:hover .service_name,
|
|
main .programs_list .service_item:hover .service_name,
|
|
main .services_list .service_item:hover .service_name {
|
|
transform: translateY(-30px);
|
|
}
|
|
main .programs_list .program_item:hover .program_link,
|
|
main .services_list .program_item:hover .program_link,
|
|
main .programs_list .service_item:hover .program_link,
|
|
main .services_list .service_item:hover .program_link,
|
|
main .programs_list .program_item:hover .service_link,
|
|
main .services_list .program_item:hover .service_link,
|
|
main .programs_list .service_item:hover .service_link,
|
|
main .services_list .service_item:hover .service_link {
|
|
opacity: 1;
|
|
transform: translate(-10px, -10px);
|
|
}
|
|
main .services_list {
|
|
justify-content: center;
|
|
}
|
|
main .services_list .service_item {
|
|
width: calc(33.333% - 20px);
|
|
}
|
|
main .services_list .service_item:after {
|
|
background: #f1f2f7;
|
|
}
|
|
main .services_list .service_item .service_name {
|
|
max-width: 50%;
|
|
}
|
|
main .services_list .service_item:not(:nth-child(3n)) {
|
|
margin-right: 30px;
|
|
}
|
|
main .services_list .service_item:nth-child(3n) {
|
|
margin-right: 0;
|
|
}
|
|
main .services_list .service_item:nth-child(4n) {
|
|
margin-right: 30px;
|
|
}
|
|
main .special_list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
main .special_list .special_item {
|
|
position: relative;
|
|
width: calc(50% - 18px);
|
|
min-width: calc(50% - 18px);
|
|
margin-bottom: 80px;
|
|
}
|
|
main .special_list .special_item a {
|
|
display: block;
|
|
color: #0C0C0C;
|
|
position: relative;
|
|
z-index: 2;
|
|
box-sizing: border-box;
|
|
padding: 25px calc(50% + 20px) 25px 20px;
|
|
}
|
|
main .special_list .special_item a .special_name {
|
|
font-size: 26px;
|
|
line-height: 35px;
|
|
font-weight: 700;
|
|
color: #0C0C0C;
|
|
margin-bottom: 25px;
|
|
display: block;
|
|
transition: all 220ms ease-in-out;
|
|
}
|
|
main .special_list .special_item a .speacial_text {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
font-weight: 700;
|
|
color: #0C0C0C;
|
|
transform: translate(0px, 0px);
|
|
transition: all 220ms ease-in-out;
|
|
}
|
|
main .special_list .special_item a .special_desc {
|
|
font-size: 15px;
|
|
line-height: 24px;
|
|
transform: translate(0px, 0px);
|
|
transition: all 220ms ease-in-out;
|
|
}
|
|
main .special_list .special_item a .special_link {
|
|
display: inline-block;
|
|
font-weight: 600;
|
|
opacity: 0;
|
|
transform: translate(10px, 10px);
|
|
transition: all 220ms ease-in-out;
|
|
color: #fff;
|
|
}
|
|
main .special_list .special_item: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;
|
|
}
|
|
main .special_list .special_item img {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 50%;
|
|
height: 100%;
|
|
right: 0;
|
|
object-fit: cover;
|
|
z-index: 1;
|
|
}
|
|
main .special_list .special_item:hover a .special_name {
|
|
color: #fff;
|
|
}
|
|
main .special_list .special_item:hover a .speacial_text,
|
|
main .special_list .special_item:hover a .special_desc {
|
|
transform: translate(0px, -10px);
|
|
color: #fff;
|
|
}
|
|
main .special_list .special_item:hover a .special_link {
|
|
opacity: 1;
|
|
color: #fff;
|
|
transform: translate(0px, 0px);
|
|
}
|
|
main .special_list .special_item:hover:after {
|
|
background: var(--green);
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
main .special_list.swiped {
|
|
flex-wrap: unset;
|
|
white-space: nowrap;
|
|
}
|
|
main .special_list.swiped .special_item {
|
|
margin-top: 30px;
|
|
margin-bottom: 30px;
|
|
margin-right: 30px;
|
|
}
|
|
main .special_list.swiped .special_item > * {
|
|
white-space: normal;
|
|
}
|
|
main .special_list.swiped .special_item a .special_link {
|
|
color: var(--blue);
|
|
opacity: 1;
|
|
}
|
|
main .special_list.swiped .special_item:hover a .special_link {
|
|
color: #fff;
|
|
}
|
|
main .brand_select {
|
|
max-width: 306px;
|
|
margin-left: auto;
|
|
margin-top: 35px;
|
|
margin-bottom: 35px;
|
|
}
|
|
main .special_detail .special_offer {
|
|
position: relative;
|
|
padding: 25px calc(100% - 390px) 0 25px;
|
|
margin-bottom: 45px;
|
|
}
|
|
main .special_detail .special_offer h2 {
|
|
font-size: 26px;
|
|
line-height: 35px;
|
|
color: #0C0C0C;
|
|
font-weight: 700;
|
|
margin-bottom: 25px;
|
|
}
|
|
main .special_detail .special_offer h2 span {
|
|
color: #A8026B;
|
|
font-size: 58px;
|
|
line-height: 58px;
|
|
}
|
|
main .special_detail .special_offer h2 mark {
|
|
color: #A8026B;
|
|
background: transparent;
|
|
}
|
|
main .special_detail .special_offer .button {
|
|
width: 100%;
|
|
margin-top: 40px;
|
|
}
|
|
main .special_detail .special_offer:after {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
z-index: 1;
|
|
left: 420px;
|
|
top: 15px;
|
|
bottom: 25px;
|
|
right: 0;
|
|
background: var(--inactive);
|
|
}
|
|
main .special_detail .special_offer img {
|
|
display: block;
|
|
height: 100%;
|
|
width: calc(100% - 502px);
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 2;
|
|
}
|
|
main .special_detail .special_offer-text {
|
|
margin-bottom: 80px;
|
|
padding: 0 25px;
|
|
}
|
|
main .special_detail .aside_container {
|
|
margin-top: 60px;
|
|
}
|
|
main .leasing_offer h3 {
|
|
padding: 0 25px;
|
|
margin-bottom: 15px;
|
|
}
|
|
main .leasing_offer .leasing_list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item {
|
|
width: calc(33.333% - 20px);
|
|
margin-bottom: 30px;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item:not(:nth-child(3n)) {
|
|
margin-right: 30px;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper {
|
|
display: block;
|
|
padding-bottom: 35px;
|
|
background: #fff;
|
|
transition: background-color 175ms ease-in-out;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 220px;
|
|
object-fit: cover;
|
|
margin-bottom: 30px;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper span {
|
|
display: block;
|
|
color: #000;
|
|
transition: color 175ms ease-in-out;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_model {
|
|
padding: 0 30px;
|
|
margin-bottom: 5px;
|
|
font-weight: 700;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_desc {
|
|
padding: 0 30px;
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover {
|
|
background: var(--green);
|
|
}
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover .leasing_model,
|
|
main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover .leasing_desc {
|
|
color: #fff;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 100px;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .image_slider {
|
|
height: 425px;
|
|
width: calc(100% - 560px);
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .image_slider .slide {
|
|
height: 100%;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .image_slider .slide img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .offer_desc {
|
|
width: 530px;
|
|
padding-bottom: 40px;
|
|
position: relative;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .offer_desc .offer_name {
|
|
font-size: 26px;
|
|
line-height: 35px;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
margin-bottom: 30px;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .offer_desc ul {
|
|
margin-bottom: 20px;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .offer_desc ul li {
|
|
line-height: 25px;
|
|
}
|
|
main .leasing_offer .leasing_offer-detail .offer_desc .button {
|
|
margin-top: 40px;
|
|
width: 390px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
main .faq_search {
|
|
margin-bottom: 40px;
|
|
}
|
|
main .faq_search .form_field {
|
|
width: 100%;
|
|
max-width: 635px;
|
|
margin-left: auto;
|
|
}
|
|
main .dropdown_blocks_list {
|
|
font-size: 15px;
|
|
line-height: 24px;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block:not(:last-child) {
|
|
border-bottom: 1px solid #EDEFF5;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block .block_header {
|
|
padding: 15px 0;
|
|
height: 70px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block .block_header p {
|
|
margin-bottom: 0;
|
|
margin-right: 20px;
|
|
font-weight: 700;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block .block_header p.with-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block .block_header p.with-icon img {
|
|
margin-right: 20px;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block .block_header button {
|
|
width: 22px;
|
|
height: 22px;
|
|
min-width: 22px;
|
|
cursor: pointer;
|
|
background: url("/images/icons/dropdown-blue.svg") no-repeat center;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block .block_body {
|
|
display: none;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block.open .block_header button {
|
|
background: url("/images/icons/close-blue.svg") no-repeat center;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block.open .block_body {
|
|
display: block;
|
|
margin-top: 25px;
|
|
}
|
|
main .dropdown_blocks_list .dropdown_block.open .block_body p {
|
|
margin-bottom: 35px;
|
|
}
|
|
main .dropdown_blocks_list.filled .dropdown_block.open .block_header {
|
|
background: var(--inactive);
|
|
color: var(--blue);
|
|
}
|
|
main .dropdown_blocks_list.filled .dropdown_block .block_body {
|
|
margin-top: 0;
|
|
}
|
|
main aside .aside_nav {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 30px 0;
|
|
}
|
|
main aside .aside_nav li {
|
|
margin-bottom: 8px;
|
|
}
|
|
main aside .aside_nav li 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;
|
|
}
|
|
main aside .aside_nav li a.active {
|
|
background: var(--green);
|
|
color: #fff;
|
|
}
|
|
main aside .button {
|
|
width: 100%;
|
|
}
|
|
main #order .container {
|
|
padding-bottom: 180px;
|
|
}
|
|
.model_container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
margin-top: 60px;
|
|
}
|
|
.model_container .col {
|
|
width: calc(50% - 15px);
|
|
}
|
|
.model_container .col .model_desc {
|
|
margin-top: 35px;
|
|
}
|
|
.model_container .col .model_desc p {
|
|
margin-bottom: 10px;
|
|
}
|
|
.model_container #calc {
|
|
background: var(--inactive);
|
|
padding: 35px 30px;
|
|
position: relative;
|
|
}
|
|
.model_container #calc:after {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
right: -100%;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: inherit;
|
|
}
|
|
.model_container #calc .calc_body {
|
|
flex-wrap: wrap;
|
|
}
|
|
.model_container #calc .calc_body .calc_settings {
|
|
width: 100%;
|
|
margin-bottom: 35px;
|
|
}
|
|
.model_container #calc .calc_body .calc_result {
|
|
width: 100%;
|
|
}
|
|
.model_container #calc .calc_body .calc_result .result_box {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.model_container #calc .calc_body .calc_result .result_box p {
|
|
font-weight: 400;
|
|
}
|
|
.model_container #calc .calc_body .calc_result .result_box.bolder {
|
|
margin-bottom: 35px;
|
|
}
|
|
.model_container #calc .calc_body .calc_result .result_box.bolder p {
|
|
font-weight: 700;
|
|
font-size: 26px;
|
|
line-height: 35px;
|
|
}
|
|
.model_container #calc .calc_body .calc_result .calc_footer {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 20px;
|
|
}
|
|
.model_container #calc .calc_body .calc_result .calc_footer .button {
|
|
width: calc(50% - 13px);
|
|
}
|
|
.model_container .aside_container {
|
|
width: 100%;
|
|
margin-top: 0px;
|
|
border-top: 1px solid #EDEFF5;
|
|
}
|
|
.model_container .aside_container aside {
|
|
width: 305px;
|
|
padding-top: 40px;
|
|
}
|
|
.model_container .aside_container article {
|
|
width: calc(100% - 305px);
|
|
padding-top: 40px;
|
|
border-left: 1px solid #EDEFF5;
|
|
}
|
|
.model_container .aside_container article .dropdown_blocks_list .dropdown_block {
|
|
padding: 0 40px;
|
|
}
|
|
.catalog_list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.catalog_list .catalog_item {
|
|
width: calc(33.333% - 20px);
|
|
margin-bottom: 110px;
|
|
}
|
|
.catalog_list .catalog_item:not(:nth-child(3n)) {
|
|
margin-right: 30px;
|
|
}
|
|
.catalog_list .catalog_item img {
|
|
width: 100%;
|
|
height: 220px;
|
|
object-fit: cover;
|
|
margin-bottom: 30px;
|
|
}
|
|
.catalog_list .catalog_item .item_class {
|
|
font-size: 26px;
|
|
line-height: 35px;
|
|
color: #0C0C0C;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
}
|
|
.catalog_list .catalog_item .item_model {
|
|
font-size: 14px;
|
|
}
|
|
.catalog_list .catalog_item .item_model b {
|
|
display: block;
|
|
font-size: 15px;
|
|
}
|
|
.catalog_list .catalog_item ul li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
line-height: 29px;
|
|
}
|
|
.catalog_list .catalog_item ul li p {
|
|
margin: 0;
|
|
}
|
|
.catalog_list .catalog_item ul li.pay {
|
|
font-weight: 700;
|
|
margin: 25px 0;
|
|
}
|
|
.catalog_list .catalog_item .item_footer {
|
|
text-align: right;
|
|
margin-top: 30px;
|
|
}
|
|
.requisites {
|
|
padding: 0 110px;
|
|
}
|
|
.requisites .requisites_row {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin-bottom: 25px;
|
|
}
|
|
.requisites .requisites_row p {
|
|
margin: 0;
|
|
max-width: calc(50% - 15px);
|
|
text-align: left;
|
|
}
|
|
.requisites .requisites_row p:first-child {
|
|
font-weight: 700;
|
|
margin-right: 30px;
|
|
width: 180px;
|
|
}
|
|
.requisites .button {
|
|
margin-top: 40px;
|
|
}
|
|
#choose_region {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#choose_region p {
|
|
margin-right: 30px;
|
|
max-width: 340px;
|
|
}
|
|
#choose_region .form_field {
|
|
width: 415px;
|
|
}
|
|
#map {
|
|
display: none;
|
|
width: 100%;
|
|
height: 615px;
|
|
margin: 45px 0;
|
|
background: var(--gray-light);
|
|
}
|
|
#map.visible {
|
|
display: block;
|
|
}
|
|
.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 rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
-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("/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("/images/pin-open.svg") no-repeat center;
|
|
}
|
|
.offices_list {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border-top: 1px solid #EDEFF5;
|
|
}
|
|
.offices_list#offices:not(.visible) {
|
|
display: none;
|
|
}
|
|
.offices_list .column {
|
|
width: calc(50% - 15px);
|
|
}
|
|
.offices_list .column .dropdown_block.open .block_body p {
|
|
margin-bottom: 8px;
|
|
}
|
|
.offices_list .column .dropdown_block.open .block_body a {
|
|
display: inline-block;
|
|
font-weight: 700;
|
|
margin: 20px 0 20px 28px;
|
|
}
|
|
.dosc_list .row {
|
|
margin-bottom: 35px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.dosc_list .row p {
|
|
margin-bottom: 0;
|
|
}
|
|
.dosc_list .row .doc_name {
|
|
font-weight: 700;
|
|
min-height: 56px;
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
margin-right: 30px;
|
|
max-width: 50%;
|
|
}
|
|
.dosc_list .row .doc_name span {
|
|
display: block;
|
|
font-weight: 400;
|
|
margin-top: 8px;
|
|
}
|
|
.dosc_list .row .doc_date {
|
|
margin-right: 30px;
|
|
margin-left: 30px;
|
|
white-space: nowrap;
|
|
}
|
|
.dosc_list .row .button {
|
|
width: 104px;
|
|
}
|
|
.contract_table {
|
|
margin-bottom: 80px;
|
|
}
|
|
.contract_table .table_row {
|
|
min-height: 80px;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
.contract_table .table_row .table_cell {
|
|
padding: 16px 8px;
|
|
border: 1px solid #EDEFF5;
|
|
width: 14%;
|
|
}
|
|
.contract_table .table_row .table_cell:nth-child(3) {
|
|
width: 16%;
|
|
}
|
|
.contract_table .table_row .table_cell p {
|
|
margin: 0;
|
|
}
|
|
.contract_table .table_row .table_cell p.closed {
|
|
color: var(--text_not_active);
|
|
}
|
|
.contract_table .table_row .table_cell p.opened {
|
|
color: var(--green);
|
|
}
|
|
.contract_table .table_row .table_cell b {
|
|
display: block;
|
|
}
|
|
.contract_table .table_header .table_cell {
|
|
border: 0;
|
|
color: var(--text_not_active);
|
|
font-weight: 700;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.contract_table .table_header .table_cell.caret {
|
|
cursor: pointer;
|
|
}
|
|
.contract_table .table_header .table_cell.caret:after {
|
|
content: "";
|
|
display: inline-block;
|
|
width: 16px;
|
|
min-width: 16px;
|
|
height: 16px;
|
|
margin-left: 6px;
|
|
background: url("/images/icons/icon-select.svg") no-repeat center;
|
|
}
|
|
.contract_table.schedule .show_more {
|
|
width: 100%;
|
|
height: 60px;
|
|
text-align: center;
|
|
background: var(--inactive);
|
|
color: var(--blue);
|
|
font-weight: 600;
|
|
}
|
|
.contract_table.schedule .table_row .table_cell {
|
|
width: 25%;
|
|
}
|
|
.contract_table.schedule .table_row .table_cell:nth-child(1),
|
|
.contract_table.schedule .table_row .table_cell:nth-child(2),
|
|
.contract_table.schedule .table_row .table_cell:nth-child(4) {
|
|
width: 14%;
|
|
}
|
|
.contract_table.schedule .table_row[data-status="overpayment-2"] {
|
|
background: rgba(28, 1, 169, 0.1);
|
|
}
|
|
.contract_table.schedule .table_row[data-status="overpayment-1"] {
|
|
background: rgba(168, 2, 107, 0.1);
|
|
}
|
|
.contract_table.schedule .table_row[data-status="paid"] {
|
|
background: rgba(4, 168, 164, 0.1);
|
|
}
|
|
.logo_list {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
margin: 35px 0;
|
|
}
|
|
.logo_list .logo_item {
|
|
width: calc(16.666% - 25px);
|
|
height: 97px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 15px 0;
|
|
}
|
|
.logo_list .logo_item img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
.leasing_offers_list {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 60px;
|
|
}
|
|
.leasing_offers_list .offer_item {
|
|
width: calc(33.333% - 20px);
|
|
padding-left: 80px;
|
|
position: relative;
|
|
}
|
|
.leasing_offers_list .offer_item p {
|
|
margin-bottom: 15px;
|
|
}
|
|
.leasing_offers_list .offer_item img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.leasing_offers_list .offer_item ul li:not(:last-child) {
|
|
margin-bottom: 6px;
|
|
}
|
|
.catalog_sort {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
margin-bottom: 65px;
|
|
}
|
|
.catalog_sort .sort_container {
|
|
margin-left: 40px;
|
|
position: relative;
|
|
}
|
|
.catalog_sort .sort_container button {
|
|
height: 40px;
|
|
padding: 0 20px 0 48px;
|
|
color: var(--blue);
|
|
}
|
|
.catalog_sort .sort_container button.i-filter {
|
|
background: url("/images/icons/icon-filter.svg") no-repeat 20px 50%;
|
|
}
|
|
.catalog_sort .sort_container button.i-sort {
|
|
background: url("/images/icons/icon-sort.svg") no-repeat 20px 50%;
|
|
}
|
|
.news_cotnainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.news_cotnainer .left {
|
|
width: 525px;
|
|
}
|
|
.news_cotnainer .left .image {
|
|
width: 100%;
|
|
height: 525px;
|
|
background: var(--gray-light);
|
|
margin-bottom: 30px;
|
|
}
|
|
.news_cotnainer .left .image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
.news_cotnainer .left .socials a {
|
|
width: 48px;
|
|
height: 48px;
|
|
margin-right: 15px;
|
|
}
|
|
.news_cotnainer .right {
|
|
width: calc(100% - 555px);
|
|
}
|
|
.news_cotnainer .right h1 {
|
|
margin-bottom: 20px;
|
|
}
|
|
.news_cotnainer .right .date {
|
|
display: block;
|
|
text-transform: uppercase;
|
|
margin-bottom: 35px;
|
|
}
|
|
.news_cotnainer .right p,
|
|
.news_cotnainer .right ul,
|
|
.news_cotnainer .right ol {
|
|
margin-bottom: 20px;
|
|
}
|