/** Сброс CSS стилей * **/ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-appearance: none; -moz-appearance: none; appearance: none; max-width: 100%; } html { -webkit-text-size-adjust: none; } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; } body { &.__hidden { overflow: hidden; } } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } a {text-decoration: none;} input, textarea, button, select { resize: none; border: none; background-color: transparent; outline: none; padding: 0; } img { border: 0; vertical-align: top; } html,body { overflow-x: hidden; -webkit-overflow-scrolling: touch; } /** * Flex * **/ .flex_w { display: flex; flex-wrap: wrap; &.__ai_fs {align-items: flex-start;} &.__ai_fe {align-items: flex-end;} &.__ai_c {align-items: center;} &.__jc_sa {justify-content: space-around;} &.__jc_sb {justify-content: space-between;} &.__jc_c {justify-content: center;} } /** * Функции * **/ .radius(@radius: 5px) { -webkit-border-radius: @radius; -moz-border-radius: @radius; -ms-border-radius: @radius; -o-border-radius: @radius; border-radius: @radius; } .transition(@properties: all .6s) { -webkit-transition: @properties; -moz-transition: @properties; -ms-transition: @properties; -o-transition: @properties; transition: @properties; } .text-shadow (@string: 0 1px 3px rgba(0, 0, 0, 0.25)) { text-shadow: @string; } .box-shadow (@string) { -webkit-box-shadow: @string; -moz-box-shadow: @string; box-shadow: @string; } .box-shadow2 (@string, @string) { -webkit-box-shadow: @string, @string; -moz-box-shadow: @string, @string; box-shadow: @string, @string; } .drop-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) { -webkit-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha); -moz-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha); box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha); } .inner-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) { -webkit-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha); -moz-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha); box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha); } .box-sizing (@type: border-box) { -webkit-box-sizing: @type; -moz-box-sizing: @type; box-sizing: @type; } .border-radius (@radius: 5px) { -webkit-border-radius: @radius; -moz-border-radius: @radius; border-radius: @radius; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .opacity (@opacity: 0.5) { -webkit-opacity: @opacity; -moz-opacity: @opacity; opacity: @opacity; } .gradient (@startColor: #eee, @endColor: white) { background-color: @startColor; background: -webkit-gradient(linear, left top, left bottom, from(@startColor), to(@endColor)); background: -webkit-linear-gradient(top, @startColor, @endColor); background: -moz-linear-gradient(top, @startColor, @endColor); background: -ms-linear-gradient(top, @startColor, @endColor); background: -o-linear-gradient(top, @startColor, @endColor); } .horizontal-gradient (@startColor, @endColor) { background-color: @startColor; background-image: -webkit-gradient(linear, left top, right top, from(@startColor), to(@endColor)); background-image: -webkit-linear-gradient(left, @startColor, @endColor); background-image: -moz-linear-gradient(left, @startColor, @endColor); background-image: -ms-linear-gradient(left, @startColor, @endColor); background-image: -o-linear-gradient(left, @startColor, @endColor); } .vertical-gradient (@startColor, @endColor) { background-color: @endColor; background-image: -webkit-gradient(linear, top, bottom, from(@startColor), to(@endColor)); background-image: -webkit-linear-gradient(bottom, @startColor, @endColor); background-image: -moz-linear-gradient(bottom, @startColor, @endColor); background-image: -ms-linear-gradient(bottom, @startColor, @endColor); background-image: -o-linear-gradient(bottom, @startColor, @endColor); } .animation (@name, @duration: 300ms, @delay: 0, @ease: ease) { -webkit-animation: @name @duration @delay @ease; -moz-animation: @name @duration @delay @ease; -ms-animation: @name @duration @delay @ease; } .transition (@transition) { -webkit-transition: @transition; -moz-transition: @transition; -ms-transition: @transition; -o-transition: @transition; } .transform(@string){ -webkit-transform: @string; -moz-transform: @string; -ms-transform: @string; -o-transform: @string; transform: @string; } .scale (@factor) { -webkit-transform: scale(@factor); -moz-transform: scale(@factor); -ms-transform: scale(@factor); -o-transform: scale(@factor); transform: scale(@factor); } .rotate (@deg) { -webkit-transform: rotate(@deg); -moz-transform: rotate(@deg); -ms-transform: rotate(@deg); -o-transform: rotate(@deg); transform: rotate(@deg); } .skew (@deg, @deg2) { -webkit-transform: skew(@deg, @deg2); -moz-transform: skew(@deg, @deg2); -ms-transform: skew(@deg, @deg2); -o-transform: skew(@deg, @deg2); transform: skew(@deg, @deg2); } .translate (@x, @y:0) { -webkit-transform: translate(@x, @y); -moz-transform: translate(@x, @y); -ms-transform: translate(@x, @y); -o-transform: translate(@x, @y); transform: translate(@x, @y); } .translate3d (@x, @y: 0, @z: 0) { -webkit-transform: translate3d(@x, @y, @z); -moz-transform: translate3d(@x, @y, @z); -ms-transform: translate3d(@x, @y, @z); -o-transform: translate3d(@x, @y, @z); transform: translate3d(@x, @y, @z); } .perspective (@value: 1000) { -webkit-perspective: @value; -moz-perspective: @value; -ms-perspective: @value; perspective: @value; } .transform-origin (@x:center, @y:center) { -webkit-transform-origin: @x @y; -moz-transform-origin: @x @y; -ms-transform-origin: @x @y; -o-transform-origin: @x @y; } .background(@path, @position: center center, @repeat: no-repeat) { background: url(@path) @position @repeat; -webkit-background-size: cover; -moz-background-size: cover; -ms-background-size: cover; -o-background-size: cover; background-size: cover; } .text-overflow(@lineClamp, @lineHeight) { display: -webkit-box; display: -moz-box; -webkit-box-orient: vertical; -webkit-line-clamp: @lineClamp; overflow: hidden; height: @lineClamp * @lineHeight; } .placeholder-style(@placeholder-font, @placeholder-color) { &::-webkit-input-placeholder { font: @placeholder-font; color: @placeholder-color; } &::-moz-placeholder { font: @placeholder-font; color: @placeholder-color; } &:-moz-placeholder { font: @placeholder-font; color: @placeholder-color; } &:-ms-input-placeholder { font: @placeholder-font; color: @placeholder-color; } } /** * Подключение шрифтов * **/ /** * Общие классы * **/ .show {display: block !important;} .hide, .xs-show, .sm-show, .md-show { display: none !important; } .flf {float: left !important;} .flr {float: right !important;} .clear { display: block; clear: both; } .t_center {text-align: center;} .t_right {text-align: right;} .pos_rel {position: relative;} .ypos_ab { position: absolute; top: 50%; .translate(0, -50%); } .xpos_ab { position: absolute; left: 50%; .translate(-50%, 0); } .pos_absc { position: absolute; top: 50%; left: 50%; .translate(-50%, -50%); } .c_img { width: 100% !important; height: 100% !important; object-fit: cover; } .b_img { background-size: cover; background-position: center center; background-repeat: no-repeat; } .psevdo-item{ margin: 0!important; padding: 0!important; height: 0!important; opacity: 0!important; border: 0!important; min-height: auto!important; } .container{ width: 1840px; padding-left: 10px; padding-right: 10px; margin: 0 auto; } .header .container{ width: 1864px; } .header_logo img{ width: 284px; height: 108px; object-fit: contain; } .header{ padding-top:57px ; } .header_tel{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 19px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; &:hover{ color: #056A96; } img{ margin-right: 10px; width: 26px; height: 25px; } .transition } .header_title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 22px; font-style: normal; font-weight: 700; line-height: normal; margin-right: 59px; width: 481px; } .header_contacts{ display: flex; align-items: end; position: relative; top: -22px; justify-content: space-between; } .header_content{ display: flex; justify-content: space-between; } .header_blocks{ width: 1538px; } .header_locate{ display: flex; align-items: center; color: #000; text-align: center; font-family: "Times New Roman"; font-size: 19px; font-style: normal; font-weight: 400; line-height: normal; width: 358px; img{ margin-right: 10px; width: 26px; height: 25px; } } .header_mail{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 19px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; width: 209px; img{ margin-right: 10px; width: 26px; height: 25px; } } .header_tel{ margin-right: 40px; width: 207px; } .header_locate{ margin-right: 40px; } .header_soc{ display: flex; align-items: center; margin-left: 31px; a{ margin-right: 21px; &:hover{ opacity: 0.7; } &:last-child{ margin-right: 0; } .transition } img{ flex-shrink: 0; } } .header_nav{ display: flex; align-items: center; justify-content: space-between; } .header_links{ display: flex; align-items: center; } .header_btn{ border-radius: 12px; background: #E31E24; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; width: 286px; height: 62px; &:hover{ background-color: #056A96; } .transition } .generator_title{ width: 100%; height: 65px; display: flex; align-items: center; justify-content: center; background: #056A96; p{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; display: flex; justify-content: center; align-items: center; width: 100%; margin: 0 auto; } } .generator_nav-blocks{ min-height: 236px; border: 4px solid #056A96; margin-bottom: 18px; } .generator_nav{ margin-top: 34px; } .generator_title-arrow{ .transition; } .generator_title.active .generator_title-arrow{ transform:rotate(180deg) } .generator_nav-block ul li a{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; &:hover{ color: #056A96; } svg{ flex-shrink: 0; margin-right: 3px; } .transition } .generator_nav-title{ color: #000; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; margin-bottom: 26px; padding-left: 10px; } .generator_nav-block{ &:nth-child(1){ padding-right: 59px; border-right: 1px solid rgba(5, 106, 150, 0.7); margin-right: 54px; width: 378px; ul li{ margin-bottom: 31px; &:last-child{ margin-bottom: 0; } } } &:nth-child(2){ padding-right: 67px; border-right: 1px solid rgba(5, 106, 150, 0.7); margin-right: 32px; width: 360px; ul li{ margin-bottom: 31px; &:last-child{ margin-bottom: 0; } } } &:nth-child(3){ padding-right: 52px; border-right: 1px solid rgba(5, 106, 150, 0.7); margin-right: 50px; width: 372px; .generator_nav-list{ ul{ &:nth-child(1){ width: 161px; } &:nth-child(2){ width: 117px; } } } ul li{ margin-bottom: 14px; &:last-child{ margin-bottom: 0; } } } &:nth-child(4){ width: 504px; ul li{ margin-bottom: 31px; &:last-child{ margin-bottom: 0; } } } } .generator_nav-blocks{ padding-top: 21px; padding-left: 25px; padding-right: 47px; padding-bottom: 20px; display: flex; } .generator_nav-list{ display: flex; justify-content: space-between; align-items: start; } .generator_type-title{ border-radius: 12px; background: #056A96; width: 444px; height: 55px; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; br{ display: none; } } .generator_type-element{ width: 444px; min-height: 37px; color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; background: #D9D9D9; margin-bottom: 2px; display: flex; align-items: center; justify-content: start; padding-left: 26px; &:last-child{ margin-bottom: 0; } } .generator_types{ width: 444px; display: block; } .generator_type{ margin-bottom: 24px; &:last-child{ margin-bottom: 0; } } .generator_block{ display: flex; justify-content: space-between; } .generator_image{ position: relative; width: 1350px; max-height: 512px; img{ object-fit: cover; width: 100%; height: 100%; } } .generatorimage_btn{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; width: 340px; height: 62px; border-radius: 12px; background: #E31E24; position: absolute; bottom: 27px; right: 42px; &:hover{ background-color: #056A96; } .transition } .generator_nav{ margin-bottom: 34px; } .special_title{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 32px; font-style: normal; font-weight: 500; line-height: normal; width: 1818px; height: 68px; background: #E31E24; margin-bottom: 29px; } .special_blocks{ display: flex; flex-wrap: wrap; justify-content: space-between; } .special_block{ border-radius: 8px; border: 4px solid #056A96; width: 894px; padding: 15px 19px 28px 20px; margin-bottom: 43px; min-height: 432px; display: flex; flex-direction: column; justify-content: space-between; } .special_block-title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; width: 733px; margin: 0 auto 28px auto; span{ color: #056A96; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; } } .special_power{ display: flex; align-items: center; margin-bottom: 16px; justify-content: space-between; &:last-child{ margin-bottom: 0; } } .special_powers{ width: 500px; } .special_power_value{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; background: #E31E24; width: 111px; height: 52px; display: flex; align-items: center; justify-content: center; margin-right: 8px; } .special_power-price{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; width: 205px; height: 52px; background: #D9D9D9; display: flex; align-items: center; justify-content: center; } .special_power-buy{ color: #2F2F2F; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; display: flex; align-items: center; justify-content: center; width: 168px; height: 52px; border: 1px solid #000; background: transparent; margin-left: 8px; &:hover{ background-color: #056A96; color: #fff; border: 1px solid white; } .transition } .special_block-select{ display: flex; margin-bottom: 22px; } .special_callme_btn{ color: #056A96; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; border-radius: 9px; border: 3px solid #056A96; width: 326px; height: 47px; &:hover{ background: #056A96; border: 1px solid white; color: #fff; } .transition } .checkmodels_btn{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; width: 500px; min-height: 47px; border-radius: 9px; background: #056A96; &:hover{ color: #056A96; border: 3px solid #056A96; background: transparent; } .transition } .special_btns{ display: flex; align-items: center; justify-content: space-between; } .manufacturers_title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 32px; font-style: normal; font-weight: 500; line-height: normal; display: flex; align-items: center; justify-content: start; padding-left: 19px; background: #D9D9D9; width: 100%; height: 68px; margin-bottom: 52px; } .manufacturer_image{ width: calc(20% - 25px); max-height: 100px; object-fit: contain; width: auto; img{ max-height: 100px; max-width: 400px; } } .manufacturers_slider{ display: flex; align-items: center; justify-content: space-between; } .modelstitle{ color: #000; font-family: "Times New Roman"; font-size: 32px; font-style: normal; font-weight: 500; line-height: normal; background: #D9D9D9; width: 100%; height: 68px; display: flex; align-items: center; justify-content: start; padding-left: 19px; margin-bottom: 43px; } .manufacturers{ margin-bottom: 71px; } .models_block img{ width: 100%; height: 303px; object-fit: contain; margin-bottom: 30px; } .models_block{ width: 574px; border-radius: 8px; border: 4px solid #056A96; padding: 32px 21px 23px 26px; margin-bottom: 41px; } .models_block-title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; position: relative; margin-bottom: 41px; width: 470px; margin: 0 auto 41px auto; } .catalog_block-title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; position: relative; margin-bottom: 41px; margin: 0 auto 41px auto; } .modeltable{ margin-bottom: 27px; } .models_callme-btn{ width: 255px; height: 57px; display: flex; align-items: center; justify-content: center; background: #D9D9D9; color: #000; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; margin-right: 17px; &:hover{ background: #E31E24; color: #fff; } .transition } .models_request-btn{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; width: 255px; height: 57px; background: #E31E24; &:hover{ background: #D9D9D9; color: #000; } .transition } .models_block-btns{ display: flex; align-items: center; justify-content: space-between; } .models_blocks{ display: flex; justify-content: space-between; flex-wrap: wrap; } .modelsforhome{ margin-bottom: 49px; } .models_block{ display: flex;flex-direction: column; justify-content: space-between; } .modeltable{ flex-grow: 1; } .model_element{ display: flex; align-items: center; justify-content: space-between; } .model_element_specification{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; } .model_element-value{ color: #000; text-align: right; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; } .generator_description{ margin-bottom: 23px; } .generator_description .container{ width: 1836px; } .generator_description .container p{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; } .answers{ margin-bottom: 54px; } .answers_title{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; background: #056A96; width: 1820px; height: 65px; margin-bottom: 36px; } .answers_list{ li{ margin-bottom: 15px; &:last-child{ margin-bottom: 0; } a{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; text-decoration-line: underline; &:hover{ color: #056A96; } .transition } } } ::-webkit-input-placeholder {font-size: 16px;} ::-moz-placeholder {font-size: 16px;} :-moz-placeholder {font-size: 16px;} :-ms-input-placeholder {font-size: 16px;} :focus::-webkit-input-placeholder {opacity: 0;} :focus::-moz-placeholder {opacity: 0;} :focus:-moz-placeholder {opacity: 0;} :focus:-ms-input-placeholder {opacity: 0;} .form-at { width: 100%; //padding: 20px; box-sizing: border-box; overflow: hidden; font-size: 0; letter-spacing: 0; //background: #f9f9f9; //box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 10px 18px rgba(0,0,0,0.2); } .form-at * { box-sizing: border-box; font-family: Verdana, sans-serif; } .validate-input-at, .no-validate-input-at { width: 100%; position: relative; background-color: #fff; border: 2px solid #BFE2FF; border-radius: 2px; margin-bottom: 20px; } .validate-input-at.w-50, .no-validate-input-at.w-50 { width: calc(50% - 10px); display: inline-block; } .validate-input-at.w-50:first-child, .no-validate-input-at.w-50:first-child { margin-right: 20px; } .input-at { display: block; width: 100%; background: transparent; color: #000; } input.input-at { height: 50px; padding: 0 20px 0 20px; font-size: 16px; outline: none; border: none; } textarea.input-at { min-height: 170px; padding: 18px 20px; font-size: 16px; line-height: 22px; outline: none; border: none; resize: none; } textarea.input-at:focus, input.input-at:focus { border-color: transparent; } .focus-input-at { position: absolute; display: block; width: calc(100% + 2px); height: calc(100% + 2px); top: -1px; left: -1px; pointer-events: none; border: 2px solid #337AB7; border-radius: 2px; visibility: hidden; opacity: 0; transition: all 0.4s; transform: scaleX(1.1) scaleY(1.3); } .input-at:focus + .focus-input-at { visibility: visible; opacity: 1; transform: scale(1); } .form-at-btn { position: relative; display: block; padding: 0 40px; height: 50px; background-color: #337AB7; border-radius: 2px; font-size: 16px; font-weight: bold; color: #fff; text-transform: uppercase; line-height: 1.2; transition: all 0.4s; margin: 0 auto; outline: none; border: none; cursor: pointer; } .form-at-btn:hover { background-color: #333333; } .form-at-btn[disabled] { opacity: .6; cursor: not-allowed; } .alert-validate{ border-color: red; } .alert-validate:hover:before { visibility: visible; opacity: 1; } .error-at { color: red; padding: 10px 0; } .success-at { color: green; font-size: 28px; padding: 20px 0; text-align: center; } .form-at input[type=checkbox] { display:none; } .form-at input[type=checkbox] + label { display: block; position: relative; margin: 0 0 20px 34px; font-size: 13px; line-height: 24px; color: #333333; } .form-at input[type=checkbox] + label:before { box-sizing: border-box; position: absolute; content: ''; width: 26px; height: 26px; line-height: 22px; left: -34px; border: 2px solid #BFE2FF; border-radius: 2px; } .form-at input[type=checkbox]:checked + label:before{ content: '\2714'; color:#337AB7; font-size: 14px; text-align: center; font-weight: bold; border: 2px solid #337AB7; } @media (max-width: 768px) { .validate-input-at.w-50 { width: 100%; } .validate-input-at.w-50:first-child { margin-right: 0; } .alert-validate::before { visibility: visible; opacity: 1; } } .forma{ position: fixed!important; z-index: 100; .pos_absc; } .form-at{ h2{ font-size: 36px; line-height: normal; display: block; width: 100%; margin-bottom: 20px; } } .map{ position: relative; } .map_block{ position: relative; border-radius: 20px; background: #DBDBDB; width: 532px; padding: 22px 15px 10px 28px; p{ &:first-child{ margin-bottom: 0; } a{ .transition; &:hover{ color: #056A96; } } } strong{ color: #000; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; } p{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 400; line-height: normal; width: 422px; margin-bottom: 20px; &:last-child{ margin-bottom: 0; } } a{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 400; line-height: normal; display: block; } } .footer_title{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; margin-bottom: 28px; } .footer{ background: #056A96; padding: 34px 0 20px 0; } .footer_contact{ width: 460px; margin-right: 88px; a{ color: #FFF; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: end; margin-bottom: 18px; &:hover{ opacity: 0.7; } &:last-child{ margin-bottom: 0; } img{ margin-right: 18px; border-radius: 50%; } .transition } p{ color: #FFF; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: end; margin-bottom: 18px; img{ margin-right: 18px; } .transition } h5{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; margin-bottom: 15px; } } .footer_generators ul { list-style-type: disc; li{ margin-bottom: 25px; &:last-child{ margin-bottom: 0; } &::marker{ color: white; background: white; } a{ color: #FFF; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; text-transform: capitalize; position: relative; &:hover{ opacity: 0.7; } &::after{ content: ''; color: white; background-color: white; bottom: 0; left: 0; right: 0; height: 1px; position: absolute; } .transition } } } .footer_generators{ width: 375px; margin-right: 196px; h5{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; text-transform: capitalize; margin-bottom: 32px; } } .footer_services{ width: 375px; margin-right: 196px; h5{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; text-transform: capitalize; margin-bottom: 32px; } } .footer_services ul { list-style-type: disc; li{ margin-bottom: 25px; &:last-child{ margin-bottom: 0; } &::marker{ color: white; background: white; } a{ color: #FFF; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; text-transform: capitalize; position: relative; &:hover{ opacity: 0.7; } &::after{ content: ''; color: white; background-color: white; bottom: 0; left: 0; right: 0; height: 1px; position: absolute; } .transition } } } .omodal{ cursor: pointer; } .footer_blocks{ display: flex; } .footer_works{ h5{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; margin-bottom: 36px; } display: flex; flex-direction: column; text-align: center; a{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; position: relative; &:hover{ opacity: 0.7; } &::after{ content: ''; height: 1px; color: #FFF; background: #fff; position: absolute; left: 0; right: 0; bottom: 0; } .transition } } .footer_work-link{ margin-bottom: 10px; &:last-child{ margin-bottom: 0; } } .footer_soc{ display: flex; align-items: center; justify-content: center; margin-top: 19px; text-decoration: none; a{ margin-right: 12px; &::after{ content: none; } &:last-child{ margin-right: 0; } } } .footer_map-link{ color: #FFF; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; position: relative; width: 160px; &:hover{ opacity: 0.7; } &::after{ content: ''; color: #fff; background: #fff; left: 0; right: 0; bottom: 0; height: 1px; position: absolute; } .transition } .footer_blocks{ margin-bottom: 30px; } .footer_content{ padding-bottom: 40px; } .footer_line{ border-bottom: 1px solid #fff; width: 100%; height: 1px; margin-bottom: 14px; } .footer_copyright{ width: 711px; margin: 0 auto; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 14px; font-style: normal; font-weight: 600; line-height: normal; } .modelstitle_catalog{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 21px; } .generator_nav-catalog{ margin-bottom: 21px; } .header_burger{ display: flex; flex-direction: column; align-items: center; height: 38px; cursor: pointer; a{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 13px; font-style: normal; font-weight: 400; line-height: normal; } } .burger_element{ width: 28px; height: 3px; margin-bottom: 4px; border-radius: 1px; background: #000; &:last-child{ margin-bottom: 0; } } .header_contact-btn-mobile{ width: 227px; height: 43px; display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 500; line-height: normal; border-radius: 5px; background: #E31E24; } .header_nav-mobile{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; } .header_soc-mobile{ display: flex; align-items: center; img{ width: 43px; height: 43px; } a{ margin-right: 8px; &:last-child{ margin-right: 0; } } } .header_contact-mobile{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; } .header_info-mobile{ p{ display: flex; align-items: center; color: #000; font-family: "Times New Roman"; font-size: 14px; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 15px; img{ margin-right: 5px; } } a{ color: #000; font-family: "Times New Roman"; font-size: 14px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; img{ margin-right: 5px; } } } .header_mobile{ margin-bottom: 24px; } .generatormob{ display: none; } .special-block_image{ margin-right: 35px; } .special-block_image img{ object-fit: cover; } .header_mobile{ display: none; } .generator_title{ svg{ display: none; } } .footer_mobile{ display: none; } .hide-mob{ display: block; } .header-hide-mob{ display: flex; } .special_title{ br{ display: none; } } .dark{ position: fixed; left: 0; top: 0; bottom: 0; right: 0; z-index: 10000; background: rgba(0, 0, 0, 0.75); display: none; } .burger-menu { padding: 22px 19px 37px 15px; width: 70%; position: fixed; right: 0; z-index: 10001; top: 0; height: 100%; transform: translateX(100%); background: white; color: rgba(14, 31, 52, 0.8); transition: .6s ease all; } .burger-menu.active { transform: translateX(0%); } .special_block-element{ display: flex; align-items: center; justify-content: space-between; p{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 10px; } } .special_block-table{ margin-bottom: 15px; } /** * Сброс CSS стилей * **/ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-appearance: none; -moz-appearance: none; appearance: none; max-width: 100%; } html { -webkit-text-size-adjust: none; } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; } body { &.__hidden { overflow: hidden; } } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } a {text-decoration: none;} input, textarea, button, select { resize: none; border: none; background-color: transparent; outline: none; padding: 0; } img { border: 0; vertical-align: top; } html,body { overflow-x: hidden; -webkit-overflow-scrolling: touch; } /** * Flex * **/ .flex_w { display: flex; flex-wrap: wrap; &.__ai_fs {align-items: flex-start;} &.__ai_fe {align-items: flex-end;} &.__ai_c {align-items: center;} &.__jc_sa {justify-content: space-around;} &.__jc_sb {justify-content: space-between;} &.__jc_c {justify-content: center;} } /** * Функции * **/ .radius(@radius: 5px) { -webkit-border-radius: @radius; -moz-border-radius: @radius; -ms-border-radius: @radius; -o-border-radius: @radius; border-radius: @radius; } .transition(@properties: all .6s) { -webkit-transition: @properties; -moz-transition: @properties; -ms-transition: @properties; -o-transition: @properties; transition: @properties; } .text-shadow (@string: 0 1px 3px rgba(0, 0, 0, 0.25)) { text-shadow: @string; } .box-shadow (@string) { -webkit-box-shadow: @string; -moz-box-shadow: @string; box-shadow: @string; } .box-shadow2 (@string, @string) { -webkit-box-shadow: @string, @string; -moz-box-shadow: @string, @string; box-shadow: @string, @string; } .drop-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) { -webkit-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha); -moz-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha); box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha); } .inner-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) { -webkit-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha); -moz-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha); box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha); } .box-sizing (@type: border-box) { -webkit-box-sizing: @type; -moz-box-sizing: @type; box-sizing: @type; } .border-radius (@radius: 5px) { -webkit-border-radius: @radius; -moz-border-radius: @radius; border-radius: @radius; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .opacity (@opacity: 0.5) { -webkit-opacity: @opacity; -moz-opacity: @opacity; opacity: @opacity; } .gradient (@startColor: #eee, @endColor: white) { background-color: @startColor; background: -webkit-gradient(linear, left top, left bottom, from(@startColor), to(@endColor)); background: -webkit-linear-gradient(top, @startColor, @endColor); background: -moz-linear-gradient(top, @startColor, @endColor); background: -ms-linear-gradient(top, @startColor, @endColor); background: -o-linear-gradient(top, @startColor, @endColor); } .horizontal-gradient (@startColor, @endColor) { background-color: @startColor; background-image: -webkit-gradient(linear, left top, right top, from(@startColor), to(@endColor)); background-image: -webkit-linear-gradient(left, @startColor, @endColor); background-image: -moz-linear-gradient(left, @startColor, @endColor); background-image: -ms-linear-gradient(left, @startColor, @endColor); background-image: -o-linear-gradient(left, @startColor, @endColor); } .vertical-gradient (@startColor, @endColor) { background-color: @endColor; background-image: -webkit-gradient(linear, top, bottom, from(@startColor), to(@endColor)); background-image: -webkit-linear-gradient(bottom, @startColor, @endColor); background-image: -moz-linear-gradient(bottom, @startColor, @endColor); background-image: -ms-linear-gradient(bottom, @startColor, @endColor); background-image: -o-linear-gradient(bottom, @startColor, @endColor); } .animation (@name, @duration: 300ms, @delay: 0, @ease: ease) { -webkit-animation: @name @duration @delay @ease; -moz-animation: @name @duration @delay @ease; -ms-animation: @name @duration @delay @ease; } .transition (@transition) { -webkit-transition: @transition; -moz-transition: @transition; -ms-transition: @transition; -o-transition: @transition; } .transform(@string){ -webkit-transform: @string; -moz-transform: @string; -ms-transform: @string; -o-transform: @string; transform: @string; } .scale (@factor) { -webkit-transform: scale(@factor); -moz-transform: scale(@factor); -ms-transform: scale(@factor); -o-transform: scale(@factor); transform: scale(@factor); } .rotate (@deg) { -webkit-transform: rotate(@deg); -moz-transform: rotate(@deg); -ms-transform: rotate(@deg); -o-transform: rotate(@deg); transform: rotate(@deg); } .skew (@deg, @deg2) { -webkit-transform: skew(@deg, @deg2); -moz-transform: skew(@deg, @deg2); -ms-transform: skew(@deg, @deg2); -o-transform: skew(@deg, @deg2); transform: skew(@deg, @deg2); } .translate (@x, @y:0) { -webkit-transform: translate(@x, @y); -moz-transform: translate(@x, @y); -ms-transform: translate(@x, @y); -o-transform: translate(@x, @y); transform: translate(@x, @y); } .translate3d (@x, @y: 0, @z: 0) { -webkit-transform: translate3d(@x, @y, @z); -moz-transform: translate3d(@x, @y, @z); -ms-transform: translate3d(@x, @y, @z); -o-transform: translate3d(@x, @y, @z); transform: translate3d(@x, @y, @z); } .perspective (@value: 1000) { -webkit-perspective: @value; -moz-perspective: @value; -ms-perspective: @value; perspective: @value; } .transform-origin (@x:center, @y:center) { -webkit-transform-origin: @x @y; -moz-transform-origin: @x @y; -ms-transform-origin: @x @y; -o-transform-origin: @x @y; } .background(@path, @position: center center, @repeat: no-repeat) { background: url(@path) @position @repeat; -webkit-background-size: cover; -moz-background-size: cover; -ms-background-size: cover; -o-background-size: cover; background-size: cover; } .text-overflow(@lineClamp, @lineHeight) { display: -webkit-box; display: -moz-box; -webkit-box-orient: vertical; -webkit-line-clamp: @lineClamp; overflow: hidden; height: @lineClamp * @lineHeight; } .placeholder-style(@placeholder-font, @placeholder-color) { &::-webkit-input-placeholder { font: @placeholder-font; color: @placeholder-color; } &::-moz-placeholder { font: @placeholder-font; color: @placeholder-color; } &:-moz-placeholder { font: @placeholder-font; color: @placeholder-color; } &:-ms-input-placeholder { font: @placeholder-font; color: @placeholder-color; } } /** * Подключение шрифтов * **/ @font-face { font-family: "UltraLight"; src: url('/path_to_font.woff') format('woff'); font-weight: normal; font-style: normal; font-display: swap; } /** * Общие классы * **/ .show {display: block !important;} .hide, .xs-show, .sm-show, .md-show { display: none !important; } .flf {float: left !important;} .flr {float: right !important;} .clear { display: block; clear: both; } .t_center {text-align: center;} .t_right {text-align: right;} .pos_rel {position: relative;} .ypos_ab { position: absolute; top: 50%; .translate(0, -50%); } .xpos_ab { position: absolute; left: 50%; .translate(-50%, 0); } .pos_absc { position: absolute; top: 50%; left: 50%; .translate(-50%, -50%); } .c_img { width: 100% !important; height: 100% !important; object-fit: cover; } .b_img { background-size: cover; background-position: center center; background-repeat: no-repeat; } .psevdo-item{ margin: 0!important; padding: 0!important; height: 0!important; opacity: 0!important; border: 0!important; min-height: auto!important; } .container{ width: 1840px; padding-left: 10px; padding-right: 10px; margin: 0 auto; } .header .container{ width: 1866px; } .header_logo img{ width: 284px; height: 108px; object-fit: contain; } .header{ padding-top:57px ; } .header_tel{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 19px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; &:hover{ color: #056A96; } img{ margin-right: 10px; } .transition } .header_title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 22px; font-style: normal; font-weight: 700; line-height: normal; margin-right: 59px; width: 481px; } .header_contacts{ display: flex; align-items: end; position: relative; top: -22px; } .header_content{ display: flex; justify-content: space-between; position: relative; left: -12px; } .header_locate{ display: flex; align-items: center; color: #000; text-align: center; font-family: "Times New Roman"; font-size: 19px; font-style: normal; font-weight: 400; line-height: normal; width: 358px; img{ margin-right: 10px; } } .header_mail{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 19px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; width: 209px; .transition; &:hover{ color: #056A96; } svg{ margin-right: 10px; } } .header_tel{ margin-right: 40px; width: 207px; } .header_locate{ margin-right: 40px; } .header_soc{ display: flex; align-items: center; margin-left: 31px; a{ margin-right: 21px; &:hover{ opacity: 0.7; } &:last-child{ margin-right: 0; } .transition } img{ flex-shrink: 0; } } .header_nav{ display: flex; align-items: center; justify-content: space-between; } .header_btn{ border-radius: 12px; background: #E31E24; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; width: 286px; height: 62px; &:hover{ background-color: #056A96; } .transition } .generator_title{ width: 100%; height: 65px; display: flex; align-items: center; justify-content: center; background: #056A96; p{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; display: flex; justify-content: center; align-items: center; width: 100%; margin: 0 auto; } } .generator_nav-blocks{ min-height: 236px; border: 4px solid #056A96; margin-bottom: 18px; } .generator_nav{ margin-top: 34px; } .generator_nav-block ul li a{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; &:hover{ color: #056A96; } svg{ flex-shrink: 0; margin-right: 3px; position: relative; bottom: -1px; } .transition } .generator_nav-title{ color: #000; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; margin-bottom: 26px; padding-left: 10px; } .generator_nav-block{ &:nth-child(1){ padding-right: 59px; border-right: 1px solid rgba(5, 106, 150, 0.7); margin-right: 54px; width: 378px; ul li{ margin-bottom: 31px; &:last-child{ margin-bottom: 0; } } } &:nth-child(2){ padding-right: 67px; border-right: 1px solid rgba(5, 106, 150, 0.7); margin-right: 32px; width: 360px; ul li{ margin-bottom: 31px; &:last-child{ margin-bottom: 0; } } } &:nth-child(3){ padding-right: 52px; border-right: 1px solid rgba(5, 106, 150, 0.7); margin-right: 50px; width: 372px; .generator_nav-list{ ul{ &:nth-child(1){ width: 161px; } &:nth-child(2){ width: 117px; } } } ul li{ margin-bottom: 14px; &:last-child{ margin-bottom: 0; } } } &:nth-child(4){ width: 504px; ul li{ margin-bottom: 31px; &:last-child{ margin-bottom: 0; } } } } .generator_nav-blocks{ padding-top: 21px; padding-left: 25px; padding-right: 47px; padding-bottom: 20px; display: flex; } .generator_nav-list{ display: flex; justify-content: space-between; align-items: start; } .generator_type-title{ border-radius: 12px; background: #056A96; width: 444px; height: 55px; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; br{ display: none; } } .generator_type-element{ width: 444px; min-height: 35px; color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; background: #D9D9D9; margin-bottom: 2px; display: flex; align-items: center; justify-content: start; padding-left: 26px; &:last-child{ margin-bottom: 0; } } .generator_types{ width: 444px; } .generator_type{ margin-bottom: 24px; &:last-child{ margin-bottom: 0; } } .generator_block{ display: flex; justify-content: space-between; } .generator_image{ position: relative; img{ object-fit: cover; } } .generatorimage_btn{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; width: 340px; height: 62px; border-radius: 12px; background: #E31E24; position: absolute; bottom: 27px; right: 42px; &:hover{ background-color: #056A96; } .transition } .generator_nav{ margin-bottom: 34px; } .special_title{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 32px; font-style: normal; font-weight: 500; line-height: normal; width: 1818px; height: 68px; background: #E31E24; margin-bottom: 29px; } .special_blocks{ display: flex; flex-wrap: wrap; justify-content: space-between; align-items: start; } .special_block{ border-radius: 8px; border: 4px solid #056A96; width: 894px; padding: 15px 19px 28px 20px; margin-bottom: 43px; } .special_block-title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; width: 706px; margin: 0 auto 28px auto; span{ color: #056A96; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; } } .special_power{ display: flex; align-items: center; margin-bottom: 16px; &:last-child{ margin-bottom: 0; } } .special_power_value{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; background: #E31E24; width: 111px; height: 52px; display: flex; align-items: center; justify-content: center; margin-right: 8px; } .special_power-price{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; width: 205px; height: 52px; background: #D9D9D9; display: flex; align-items: center; justify-content: center; } .special_power-buy{ color: #2F2F2F; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; display: flex; align-items: center; justify-content: center; width: 168px; height: 52px; border: 1px solid #000; background: transparent; margin-left: 8px; &:hover{ background-color: #056A96; color: #fff; border: 1px solid white; } .transition } .fi span{ display: none; } .special_block-select{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; } .special_callme_btn{ color: #056A96; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; border-radius: 9px; border: 3px solid #056A96; width: 326px; height: 47px; &:hover{ background: #056A96; border: 1px solid white; color: #fff; } .transition } .checkmodels_btn{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; display: flex; align-items: center; justify-content: center; width: 500px; min-height: 47px; border-radius: 9px; background: #056A96; &:hover{ color: #056A96; border: 3px solid #056A96; background: transparent; } .transition } .special_btns{ display: flex; align-items: center; justify-content: space-between; } .manufacturers_title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 32px; font-style: normal; font-weight: 500; line-height: normal; display: flex; align-items: center; justify-content: start; padding-left: 19px; background: #D9D9D9; width: 100%; height: 68px; margin-bottom: 52px; } .manufacturer_image{ object-fit: contain; } .manufacturers_slider{ display: flex; align-items: center; justify-content: space-between; } .modelstitle{ color: #000; font-family: "Times New Roman"; font-size: 32px; font-style: normal; font-weight: 500; line-height: normal; background: #D9D9D9; width: 100%; height: 68px; display: flex; align-items: center; justify-content: start; padding-left: 19px; margin-bottom: 43px; } .manufacturers{ margin-bottom: 71px; } .models_block img{ width: 100%; height: 303px; object-fit: contain; margin-bottom: 30px; } .models_blocks{ align-items:stretch; } .models_block{ width: 574px; min-height: 0!important; border-radius: 8px; border: 4px solid #056A96; padding: 32px 21px 23px 26px; margin-bottom: 41px; } .models_block-title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; position: relative; margin-bottom: 41px; width: 470px; margin: 0 auto 41px auto; } .catalog_block-title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; position: relative; margin-bottom: 41px; width:100%; margin: 0 auto 41px auto; } .modeltable{ margin-bottom: 27px; } .models_callme-btn{ height: 57px; display: flex; align-items: center; justify-content: center; background: #D9D9D9; color: #000; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; width: calc(50% - 17px); &:hover{ background: #E31E24; color: #fff; } .transition } .models_request-btn{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; width: calc(50% - 17px); height: 57px; background: #E31E24; &:hover{ background: #D9D9D9; color: #000; } .transition } .models_block-btns{ display: flex; align-items: center; justify-content: space-between; } .models_blocks{ display: flex; justify-content: space-between; flex-wrap: wrap; align-items: stretch!important; } .modelsforhome{ margin-bottom: 49px; } .model_element{ display: flex; align-items: center; justify-content: space-between; } .model_element_specification{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; } .model_element-value{ color: #000; text-align: right; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; } .generator_description{ margin-bottom: 23px; } .generator_description .container{ width: 1836px; } .generator_description .container p{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; } .answers{ margin-bottom: 54px; } .answers_title{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; background: #056A96; width: 1820px; height: 65px; margin-bottom: 36px; } .answers_list{ li{ margin-bottom: 15px; &:last-child{ margin-bottom: 0; } a{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; text-decoration-line: underline; &:hover{ color: #056A96; } .transition } } } .map{ position: relative; } .map_block{ position: relative; border-radius: 20px; background: #DBDBDB; width: 532px; padding: 22px 15px 10px 28px; right: -729px; b{ color: #000; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; } p{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 400; line-height: normal; width: 489px; } a{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 400; line-height: normal; display: inline; } } .footer .container{ width: 1680px; } .footer_title{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; margin-bottom: 28px; } .footer{ background: #056A96; padding: 34px 0 20px 0; } .footer_contact{ width: 493px; margin-right: 50px; a{ color: #FFF; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: end; margin-bottom: 18px; &:hover{ opacity: 0.7; } &:last-child{ margin-bottom: 0; } img{ margin-right: 18px; } .transition } p{ color: #FFF; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: end; margin-bottom: 18px; img{ margin-right: 18px; } } h5{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; margin-bottom: 15px; } } .footer_generators ul { list-style-type: disc; li{ margin-bottom: 25px; &:last-child{ margin-bottom: 0; } &::marker{ color: white; background: white; } a{ color: #FFF; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; text-transform: capitalize; position: relative; &:hover{ opacity: 0.7; } &::after{ content: ''; color: white; background-color: white; bottom: 0; left: 0; right: 0; height: 1px; position: absolute; } .transition } } } .footer_generators{ width: 416px; margin-right: 100px; h5{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; text-transform: capitalize; margin-bottom: 32px; } } .footer_services{ width: 356px; margin-right: 100px; h5{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; text-transform: capitalize; margin-bottom: 32px; } } .footer_services ul { list-style-type: disc; li{ margin-bottom: 25px; &:last-child{ margin-bottom: 0; } &::marker{ color: white; background: white; } a{ color: #FFF; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; text-transform: capitalize; position: relative; &:hover{ opacity: 0.7; } &::after{ content: ''; color: white; background-color: white; bottom: 0; left: 0; right: 0; height: 1px; position: absolute; } .transition } } } .footer_blocks{ display: flex; } .footer_works{ h5{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; margin-bottom: 36px; } display: flex; flex-direction: column; text-align: center; width: 135px; a{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; position: relative; &:hover{ opacity: 0.7; } &::after{ content: ''; height: 1px; color: #FFF; background: #fff; position: absolute; left: 0; right: 0; bottom: 0; } .transition } } .footer_work-link{ margin-bottom: 10px; &:last-child{ margin-bottom: 0; } } .footer_soc{ display: flex; align-items: center; justify-content: center; margin-top: 19px; text-decoration: none; a{ margin-right: 12px; &::after{ content: none; } &:last-child{ margin-right: 0; } } } .map .container{ padding: 0; } .footer_map-link{ color: #FFF; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 400; line-height: normal; position: relative; width: 160px; &:hover{ opacity: 0.7; } &::after{ content: ''; color: #fff; background: #fff; left: 0; right: 0; bottom: 0; height: 1px; position: absolute; } .transition } .footer_blocks{ margin-bottom: 30px; } .footer_content{ padding-bottom: 40px; } .footer_line{ border-bottom: 1px solid #fff; width: 100%; height: 1px; margin-bottom: 14px; } .footer_copyright{ width: 711px; margin: 0 auto; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 14px; font-style: normal; font-weight: 600; line-height: normal; } .modelstitle_catalog{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 21px; } .generator_nav-catalog{ margin-bottom: 21px; } .header_burger{ display: flex; flex-direction: column; align-items: center; height: 38px; cursor: pointer; a{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 13px; font-style: normal; font-weight: 400; line-height: normal; } } .burger_element{ width: 28px; height: 3px; margin-bottom: 4px; border-radius: 1px; background: #000; &:last-child{ margin-bottom: 0; } } .burger_content{ display: flex; flex-direction: column; h3{ color: #000; font-family: "Times New Roman"; font-size: 26px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 21px; &:last-child{ margin-bottom: 0; } } } .burger_logoimg{ width: 140px; margin-bottom: 25px; } .burger_soc{ display: flex; align-items: center; img{ margin-right: 10px; &:last-child{ margin-right: 0; } } } .header_contact-btn-mobile{ width: 227px; height: 43px; display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 500; line-height: normal; border-radius: 5px; background: #E31E24; } .header_nav-mobile{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; } .header_soc-mobile{ display: flex; align-items: center; a{ margin-right: 8px; &:last-child{ margin-right: 0; } } } .header_contact-mobile{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; } .header_info-mobile{ p{ display: flex; align-items: center; color: #000; font-family: "Times New Roman"; font-size: 14px; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 15px; text-decoration: dashed; img{ margin-right: 5px; } } a{ color: #000; font-family: "Times New Roman"; font-size: 14px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; img{ margin-right: 5px; } } } .header_mobile{ margin-bottom: 24px; } .generatormob{ display: none; } .special-block_image img{ max-width: 314px; max-height: 227px; } .header_mobile{ display: none; } .generator_title{ svg{ display: none; } } .footer_mobile{ display: none; } .hide-mob{ display: block; } .header-hide-mob{ display: flex; } .special_title{ br{ display: none; } } .dark{ position: fixed; left: 0; top: 0; bottom: 0; right: 0; z-index: 10000; background: rgba(0, 0, 0, 0.75); display: none; } .burger-menu { padding: 22px 25px 25px 25px; width: 40%; position: fixed; right: 0; z-index: 10001; top: 0; height: 100%; transform: translateX(100%); background: white; color: rgba(14, 31, 52, 0.8); transition: .6s ease all; } .burger-menu.active { transform: translateX(0%); } .map{ position: relative; padding: 20px 0px; } .mapimg{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } .form-at { width: 100%; //padding: 20px; box-sizing: border-box; overflow: hidden; font-size: 0; letter-spacing: 0; //background: #f9f9f9; //box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 10px 18px rgba(0,0,0,0.2); } .form-at * { box-sizing: border-box; font-family: Verdana, sans-serif; } .validate-input-at, .no-validate-input-at { width: 100%; position: relative; background-color: #fff; border: 2px solid #BFE2FF; border-radius: 2px; margin-bottom: 20px; } .validate-input-at.w-50, .no-validate-input-at.w-50 { width: calc(50% - 10px); display: inline-block; } .validate-input-at.w-50:first-child, .no-validate-input-at.w-50:first-child { margin-right: 20px; } .input-at { display: block; width: 100%; background: transparent; color: #000; } input.input-at { height: 50px; padding: 0 20px 0 20px; font-size: 16px; outline: none; border: none; } textarea.input-at { min-height: 170px; padding: 18px 20px; font-size: 16px; line-height: 22px; outline: none; border: none; resize: none; } textarea.input-at:focus, input.input-at:focus { border-color: transparent; } .focus-input-at { position: absolute; display: block; width: calc(100% + 2px); height: calc(100% + 2px); top: -1px; left: -1px; pointer-events: none; border: 2px solid #337AB7; border-radius: 2px; visibility: hidden; opacity: 0; transition: all 0.4s; transform: scaleX(1.1) scaleY(1.3); } .input-at:focus + .focus-input-at { visibility: visible; opacity: 1; transform: scale(1); } .form-at-btn { position: relative; display: block; padding: 0 40px; height: 50px; background-color: #337AB7; border-radius: 2px; font-size: 16px; font-weight: bold; color: #fff; text-transform: uppercase; line-height: 1.2; transition: all 0.4s; margin: 0 auto; outline: none; border: none; cursor: pointer; } .form-at-btn:hover { background-color: #333333; } .form-at-btn[disabled] { opacity: .6; cursor: not-allowed; } .alert-validate{ border-color: red; } .alert-validate:hover:before { visibility: visible; opacity: 1; } .error-at { color: red; padding: 10px 0; } .success-at { color: green; font-size: 28px; padding: 20px 0; text-align: center; } .form-at input[type=checkbox] { display:none; } .form-at input[type=checkbox] + label { display: block; position: relative; margin: 0 0 20px 34px; font-size: 13px; line-height: 24px; color: #333333; } .form-at input[type=checkbox] + label:before { box-sizing: border-box; position: absolute; content: ''; width: 26px; height: 26px; line-height: 22px; left: -34px; border: 2px solid #BFE2FF; border-radius: 2px; } .form-at input[type=checkbox]:checked + label:before{ content: '\2714'; color:#337AB7; font-size: 14px; text-align: center; font-weight: bold; border: 2px solid #337AB7; } .forma{ position: fixed!important; z-index: 10001; background: #f9f9f9; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.2); padding: 20px; display: none; .pos_absc; } .form-at{ h2{ font-size: 36px; line-height: normal; display: block; width: 100%; margin-bottom: 20px; } } .form__footer { font-size: 36px; line-height: normal; display: block; color: black; width: 100%; margin-bottom: 20px; font-weight: 600; } .form-at .modal-close{ right: 20px; position: absolute; top: 25px; cursor: pointer; } .dark-modal{ position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 99; background: rgba(0, 0, 0, 0.6); display: none; } .forma.active{ display: block; } .header_logo-burger{ width: 170px; height: 64px; margin-bottom: 25px; } .header_burger-menu{ display: flex; flex-wrap: wrap; } .header_burger-btn{ width: 100%; height: 33px; display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 15px; font-style: normal; font-weight: 500; line-height: normal; border-radius: 5px; background: #E31E24; margin-right: 0; margin-bottom: 10px; } .header_burger-menu{ margin-top: 15px; } .burger-menu{ overflow: auto; } .price_title{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 54px; } .price-tr:nth-child(1){ display: flex; align-items: center; justify-content: space-between; background: #056A96; padding: 0; border: 0; &:nth-child(1){ .price-td{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; } } .price-tr-values{ margin: 0; width: 1633px; padding: 0; background: transparent; padding: 14px 20px 13px 35px; } } .price-tr-values{ display: flex; align-items: center; justify-content: space-between; padding: 6px 20px 5px 31px; background: #F5F5F5; margin-right: 14px; width: 1633px; } .price-td{ text-align: center; color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; } .price-tr-btn{ color: #F5F5F5; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; display: flex; align-items: center; justify-content: center; width: 153px; height: 39px; background: #E31E24; .transition; &:hover{ background-color: #056A96; } } .price_table-wr{ overflow: auto; } .price_table{ overflow-x: auto; overflow-y: hidden; width: auto; max-width: auto; } .price-td:nth-child(1){width: 28px;text-align: start;} .price-td:nth-child(2){width: 206px;} .price-td:nth-child(3){width: 180px;} .price-td:nth-child(4){width: 175px;} .price-td:nth-child(5){width: 175px;} .price-td:nth-child(6){width: 143px;} .price-td:nth-child(7){width: 107px;} .price-td:nth-child(8){width: 173px;} .price-td:nth-child(9){width: 121px;} .price-td:nth-child(10){width: 153px;} .price-tr_title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; margin-bottom: 14px; } .price-tr-block{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; &:last-child{ margin-bottom: 0; } } .price-tr{ border-bottom: 4px solid #056A96; border-right: 4px solid #056A96; border-left: 4px solid #056A96; padding-right: 14px; padding-bottom: 18px; padding-top: 19px; } .portfolio_title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 24px; } .portfolio_desc{ color: #000; text-align: justify; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 24px; } .portfolio_block-projects{ color: #056A96; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; margin-bottom: 42px; } .portfolio_block-title{ color: #056A96; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 25px; } .portfolio__block-image{ width: 579px; max-height: 415px; object-fit: cover; } .portfolio_block-content{ display: flex; justify-content: space-between; } .portfolio_block-info{ color: #000; text-align: justify; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 400; line-height: normal; width: 1199px; ul{ margin-bottom: 15px; } ul li::before{ content: '•'; margin-right: 5px; } } .portfolio_block-info p{ color: #000; text-align: justify; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 400; line-height: normal; width: 1198px; margin-bottom: 15px; &:last-child{ margin-bottom: 0; } } .portfolio_block-dop p{ color: #000; text-align: justify; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 15px; &:last-child{ margin-bottom: 0; } } .portfolio__list-item{ color: #000; text-align: justify; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 400; line-height: normal; } .portfolio_block-content{ margin-bottom: 20px; } .portfolio{ margin-bottom: 65px; } .portfolio__btn-order{ display: flex; align-items: center; justify-content: center; width: 500px; height: 47px; border-radius: 9px; background: #056A96; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; .transition; &:hover{ background: #E31E24; } } .portfolio_btns{ width: 1165px; display: flex; align-items: center; justify-content: space-between; margin: 0 auto; } .portfolio__btn-catalog{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; width: 500px; height: 47px; border-radius: 9px; background: #E31E24; .transition; &:hover{ background: #056A96; } } .portfolio_block-dop ul{ margin-bottom: 15px; li{ margin-bottom: 10px; &:last-child{ margin-bottom: 0; } } } .portfolio_block-dop ul li::before{ content: '•'; margin-right: 3px; display: inline-block; } .portfolio_block-dop{ color: #000; text-align: justify; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 29px; } .portfolio_block{ border-bottom: 1px dashed #000; padding-bottom: 41px; margin-bottom: 24px; &:last-child{ margin-bottom: 0; border: 0; padding-bottom: 0; } } .services{ margin-bottom: 110px; } .services_title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 35px; } .services_num{ color: #E31E24; text-align: center; font-family: "Times New Roman"; font-size: 64px; font-style: normal; font-weight: 500; line-height: normal; margin-right: 80px; } .services_block-title{ color: #056A96; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; } .services_block_desc-text{ margin-right: 40px; width: 1329px; p{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: normal; } } .services_block-desc{ display: flex; align-items: start; } .services_btn{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; background: #056A96; display: flex; align-items: center; justify-content: center; width: 254px; height: 62px; .transition; &:hover{ opacity: 0.8; } } .services_block{ display: flex; align-items: start; justify-content: end; padding-right: 15px; padding-bottom: 40px; padding-top: 20px; border-bottom:1px solid #056A96; &:nth-child(1){ padding-top: 0; } } .services_block-text{ width: 1625px; } .services__block_text-more{ display: flex; align-items: center; justify-content: center; flex-direction: column; cursor: pointer; margin-top: 12px; .transition; svg path{ .transition; } &:hover{ p{ color: #056A96; } svg path{ stroke: #056A96; } } p{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 300; line-height: 120.5%; /* 24.1px */ margin-bottom: 9px; .transition; } svg{ flex-shrink: 0; } } .services_contact-title{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 53px; } .services_contact .container{ width: 1346px; } .services_contact-content{ background:#F5F5F5; border: 3px solid #056A96; border-radius: 10px; } .services_form-inputs{ width: 474px; } .services_form-inputs input{ width: 474px; height: 60px; border: 1px solid #D9D9D9; background: #FFF; color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 300; line-height: normal; padding: 18px; margin-bottom: 35px; &:last-child{ margin-bottom: 0; } &::placeholder{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 300; line-height: normal; } } .services_contact-content{ padding: 55px 84px 125px 77px; } .services_form-content{ display: flex; justify-content: space-between; margin-bottom: 42px; } .services_form-textarea{ width: 617px; height: 250px; border: 1px solid #D9D9D9; background: #FFF; padding: 15px 20px 15px 20px; color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 300; line-height: normal; } .services_form-checkbox-content input { position: absolute; opacity: 0; cursor: pointer; } .services_form-text{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 300; line-height: normal; margin-left: 20px; } .services_form-checkbox-content{ display: flex; align-items: end; cursor: pointer; } .services_form-checkbox-content{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: italic; font-weight: 300; line-height: normal; } .checkmark_form { border: 1px solid #A6A2A2; background: #F5F5F5; width: 33px; height: 33px; position: relative; display: block; margin-right: 20px; flex-shrink: 0; } .services_form-send{ display: flex; justify-content: space-between; align-items: center; } .services_form-checkbox .checkmark_form::after { content: "✔"; position: absolute; display: none; .pos_absc; color: #056A96; font-size: 20px; height: 100%; } .services_form-checkbox input:checked ~ .checkmark_form:after { display: block; } .services_form-checkbox input:checked ~ .checkmark_form{ border: 1px solid #056A96; } .services_form-btn{ display: flex; align-items: center; justify-content: center; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; width: 357px; height: 45px; background: #056A96; cursor: pointer; .transition; &:hover{ opacity: 0.8; } } .services_contact{ margin-bottom: 110px; } .services_popular-ask{ width: 100%; } .services_hidden-moretext{ display: none; p{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: 120.5%; margin-bottom: 20px; &:last-child{ margin-bottom: 0; } } } .services_hidden-moretext{ margin-top: 20px; } .services_hidden-moretext.active{ display: block; } .services_popular-ask{ margin-right: 0; } .breadcrumbs_link{ color: #000; text-align: center; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 300; line-height: normal; text-decoration-line: underline; .transition; &:hover{ color: #056A96; text-decoration-color: #056A96; } } .breadcrumbs_block span{ color: #000; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 300; line-height: normal; margin-right: 7px; margin-left: 7px; } .breadcrumbs_active{ color: #056A96; font-family: "Times New Roman"; font-size: 16px; font-style: normal; font-weight: 300; line-height: normal; } .breadcrumbs{ margin-bottom: 45px; margin-top: 34px; } .article_content{ h2{ color: #056A96; font-family: "Times New Roman"; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 10px; } p{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: 161.9%; margin-bottom: 5px; } h3{ color: #000; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: 161.9%; margin-bottom: 7px; } ul{ margin-bottom: 7px; padding-left: 20px; } ul li{ list-style-type: disc; color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: 161.9%; } ol li{ color: #000; font-family: "Times New Roman"; font-size: 18px; font-style: normal; font-weight: 400; line-height: 161.9%; } } .article_block{ margin-bottom: 131px; } .container__contacts{ width: 1346px; margin: 0 auto; padding-left: 10px; padding-right: 10px; } .contacts__title{ color: #056A96; font-size: 24px; font-style: normal; font-weight: 500; line-height: normal; margin-bottom: 34px; text-align: center; } .contacts__map-main{ display: flex; align-items: start; justify-content: space-between; } .contacts__map{ width: 722px; height: 578px; img{ border-radius: 7px; border: 3px solid #056A96; width: 100%; height: 100%; object-fit: cover; } } .contacts__info{ width: 489px; } .contacts{ margin-bottom: 132px; } .breadcrumbs__contacts{ margin-bottom: 28px; } .contacts__info{ strong{ color: #000; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; } p{ color: #000; font-size: 20px; font-style: italic; font-weight: 400; line-height: normal; margin-bottom: 15px; &:last-child{ margin-bottom: 0; } } a{ color: #000; font-size: 20px; font-style: italic; font-weight: 400; line-height: normal; .transition; &:hover{ color: #056A96; } } } /** * Адаптивка * **/ @media only screen and (max-width: 1799px){ html { zoom: 0.65; } } @media only screen and(max-width: 1199px) { html { zoom: 1; } .md-show {display: block !important;} .md-hide {display: none !important;} .container{ width: 768px; } .generator_nav-blocks{ display: none; } .generator_block{ flex-direction: column; } .generator_types{ display: flex; align-items: start; justify-content: space-between; width: auto; } .generator_type{ width: calc(50% - 5px); } .generator_type-element{ font-size: 18px; } .generator_type-title{ font-size: 20px; } .generator_title { margin-bottom: 20px; } .generator_image img { object-fit: cover; width: 796px; height: 288px; } .generatorimage_btn{ width: 289px; font-size: 22px; height: 48px; } .special_title { font-size: 23px; br{ display: block; } } .header_btn{ width: calc(20% - 10px); font-size: 18px; height: 50px; } .special_block-title{ font-size: 22px; span{ font-size: 22px; } } .special_power_value { font-size: 20px; width: 80px; height: 41px; } .special_power-price { font-size: 22px; width: 170px; height: 41px } .special_power-buy{ width: 147px; height: 41px; } .special_callme_btn { width: calc(40% - 10px); border: 2px solid #056A96; } .checkmodels_btn{ width: calc(60% - 10px); font-size: 19px; } .manufacturers_title{ margin-bottom: 30px; font-size: 26px; } .manufacturers{ margin-bottom: 35px; } .modelstitle{ font-size: 26px; } .model_element_specification { font-size: 12px; } .model_element-value{ font-size: 12px; } .models_block { padding: 23px 10px 23px 10px; width: calc(50% - 5px); } .catalog_block-title { font-size: 16px; width: 271px; margin: 0 auto 10px auto; } .models_block img{ height: 191px; margin-bottom: 15px; } .models_block{ min-height: 560px; } .models_callme-btn { font-size: 18px; height: 45px; width: calc(50% - 10px); } .models_request-btn{ font-size: 18px; height: 45px; width: calc(50% - 10px); } .generator_description .container{ width: 767px; } .generator_description .container p{ font-size: 13.5px; } .answers_title{ font-size: 19px; } .answers_list li a{ font-size: 19px; } .map_block { padding: 15px 10px 10px 20px; width: 443px; } .map_block p{ font-size: 18px; } .map_block a{ font-size: 18px; } .models_block{ margin-bottom: 25px; } .modelsforhome{ margin-bottom: 0; } .answers{ margin-bottom: 25px; } .footer_blocks{ flex-direction: column; } .footer_contact{ margin-bottom: 20px; } .footer_works{ text-align: start; } .footer_works h5{ text-align: start; } .footer_generators{ margin-bottom: 25px; } .footer_title{ text-align: start; } .footer_contact h5 { font-size: 20px; } .footer_contact a { font-size: 18px; } .footer_services h5{ margin-bottom: 20px; } .footer_generators h5{ margin-bottom: 20px; } .footer_generators ul li a { font-size: 16px; } .footer_services h5 { font-size: 18px; } .footer_generators h5{ font-size: 18px; } .footer_services ul li a{ font-size: 16px; } .footer_services{ margin-bottom: 25px; } .footer_works h5{ margin-bottom: 20px; } .footer_works h5{ font-size: 18px; } .footer_works a{ font-size: 16px; } .footer_soc{ justify-content: start; } .footer_map-link{ font-size: 22px; } .footer_contact p{ font-size: 18px; } .footer_contact a{ margin-bottom: 10px; } .generator_title svg{ display: block; } .generator_title{ padding: 0px 25px; } .generator_title p{ justify-content: space-between; } .generator_title p{ font-size: 22px; } .footer_contact a img{ width: 25px; } .footer_contact p img{ width: 25px; } .footer_contact p{ margin-bottom: 10px; } .footer_content { padding-bottom: 25px; } .footer { padding-top: 25px; } .header .container{ width: 767px; } .header_title{ display: none; } .header_soc{ display: none; } .header_tel{ font-size: 16px; margin-right: 20px; } .header_locate{ font-size: 16px; margin-right: 20px; img{ flex-shrink: 0; } } .header_mail{ font-size: 16px; img{ flex-shrink: 0; } } .header_logo{ display: none; } .generator_nav{ margin-top: 25px; } .header_contacts{ align-items: center; top: 0; margin-bottom: 22px; position: static; } .header{ padding-top: 30px; } .mapimg{ object-fit: cover; } .generator_types{ flex-direction:row; } .generator_nav-block{ margin-right:0px!important; padding-right:0px!important; border-right:0px!important; margin-bottom:15px; } .generator_nav-block ul li { margin-bottom:15px!important; } .generator_nav-title{ margin-bottom:20px; font-size:17px; } .generator_nav-block ul li a{ font-size:14px; } .price-tr:nth-child(1):nth-child(1) .price-td { font-size: 17px; } .price-tr-values{ padding: 6px 12px 5px 12px; margin-right: 0; } .price-tr:nth-child(1) .price-tr-values{ padding: 14px 12px 13px 12px; } .price-td{ font-size: 18px; } .price-tr-block { align-items: start; } .price-tr{ padding-right: 0; } .price-tr_title { text-align: start; margin-left: 12px; font-size: 17px; } .price-tr:nth-child(1) .price-tr-values { width: 1107px; } .price-tr-values{width: 1107px;} .price_table{ width: 1280px; max-width: 1280px; } .price-tr-btn{ height: 32px; font-size: 18px; } .price_title { font-size: 17px; } .portfolio__block-image{ width: 100%; } .portfolio_block-content{ flex-direction: column; } .portfolio_block-projects{ margin-bottom: 28px; } .portfolio_block-info p { font-size: 15px; } .portfolio_block-dop p{ font-size: 15px; } .portfolio_block-dop{ font-size: 15px; } .portfolio__block-image{ margin-bottom: 15px; } .portfolio_block-title { font-size: 22px; } .portfolio_block-projects { font-size: 22px; margin-bottom: 15px; } .portfolio{ margin-bottom: 40px; } .portfolio__btn-order{ width: calc(50% - 15px); } .portfolio__btn-catalog{ width: calc(50% - 15px); } .portfolio_block{ padding-bottom: 15px; margin-bottom: 15px; } .map_block { right: -330px; } .services_block_desc-text p { font-size: 13px; } .services_block{ padding-right: 0; } .services_num { font-size: 55px; margin-right: 15px; } .services_block_desc-text{ width: 400px; margin-right: 20px; } .services_btn{ width: 118px; height: 49px; font-size: 18px; } .services_block_desc-text { width: 564px; } .services_block-title { font-size: 18px; } .services_title{ margin-bottom: 20px; } .services_contact .container{ width: 768px; } .services_contact-content { padding: 40px; } .services_contact-title { font-size: 18px; } .services_form-inputs input { width: 290px; padding: 10px 15px 10px 15px; font-size: 16px; } .services_form-textarea { width: 350px; height: auto; padding: 10px 15px 10px 15px; } .services_form-inputs{ width: 290px; } .services_form-inputs input::placeholder{ font-size: 16px; padding: 18px 10px 18px 10px; } .services_form-inputs input { height: 50px; } .services_form-btn { width: 220px; font-size: 20px; } .services_form-checkbox-content{ font-size: 16px; } .services_popular-ask{ width: 100%; margin-right: 0; } .article_content p { font-size: 17px; } .article_content h2 { font-size: 22px; } .article_content h3{ font-size: 18px; } .article_content ul li{ font-size: 17px; } .article_content ol li{ font-size: 17px; } .article_block{ margin-bottom: 50px; } .breadcrumbs { margin-bottom: 35px; margin-top: 30px; } .services_contact{ margin-bottom: 70px; } .services_title { font-size: 20px; } .checkmark_form { margin-right: 10px; } .container__contacts{ width: 768px; } .contacts__info p { font-size: 17px; } .contacts__info a{ font-size: 17px; } .contacts__info strong{ font-size: 17px; } .contacts__info { width: 288px; } .contacts__map{ width: 432px; height: 347px; } .contacts__title { font-size: 20px; } .contacts__title{ margin-bottom: 20px; } .contacts{ margin-bottom: 50px; } } @media only screen and(max-width: 991px) { .sm-show {display: block !important;} .sm-hide {display: none !important;} } @media only screen and(max-width: 767px) { .header-hide-mob{ display: none; } .answers_title{ padding:10px } .price-tr:nth-child(1){ padding-right:98px } .price-tr-values{ .price-tr-btn{ width:98px } width:auto; .price-td { font-size: 16px; } .price-td:nth-child(9) { width: 100px; } .price-td{ display:none; &:nth-child(3){display:block; width:130px } &:nth-child(9){display:block} } } .price_table{ width:100% } .hide-mob{ display: none; } .container{ width: 380px; } .header .container{ width: 380px; } .generator_title{ padding: 0px 14px 0px 14px; justify-content: space-between; cursor: pointer; } .generator_title p{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 500; line-height: normal; width: 258px; text-align: start; display: flex; align-items: center; justify-content: space-between; width: 100%; } .generator_nav-blocks{ display: none; padding-left: 15px; padding-right: 15px; } .generator_type-title{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; text-align: start; height: auto; min-height: 43px; br{ display: block; } } .generator_block{ flex-direction: column-reverse; } .generatorimage_btn{ position: static; margin-top: 32px; width: 100%; } .generator_image img{ width: 100%; height: 204px; } .generatordesk{ display: none; } .generatormob{ display: block; } .generator_title{ margin-bottom: 24px; } .generator_types{ margin-top: 25px; flex-direction: column; } .generator_type{ width: auto; } .generator_type-title{ width: 100%; height: auto; min-height: 43px; font-size: 20px; padding: 10px 14px 10px 14px; justify-content: start; margin-bottom: 10px; } .generator_type{ margin-bottom: 11px; } .generator_type-element{ font-size: 18px; } .special_title{ min-height: 83px; font-size: 20px; } .special_block-title{ font-size: 20px; margin: 0 auto 22px auto; span{ font-size: 20px; } } .special_block{ padding: 9px 15px 17px 16px; } .special_block-select{ flex-direction: column; } .special-block_image{ margin-bottom: 42px; img{ width: 290px; height: 221px; } } .special_power_value{ font-size: 16px; width: 66px; height: 31px; } .special_power-price{ width: 123px; height: 31px; font-size: 16px; } .special_power-buy{ width: 100px; height: 31px; } .special_callme_btn{ width: 299px; min-height: 47px; border-radius: 9px; border: 3px solid #056A96; background: #FFF; font-size: 16px; } .checkmodels_btn{ border-radius: 9px; background: #056A96; width: 299px; height: 47px; font-size: 15px; color: #FFF; } .special_btns{ flex-direction: column-reverse; } .checkmodels_btn{ margin-bottom: 10px; } .answers_title{ font-size: 20px; min-height: 89px; } .answers_list li a{ font-size: 16px; } .answers_title{ margin-bottom: 20px; } .special_block:last-child{ margin-bottom: 64px; } .special_block{ margin-bottom: 30px; border: 2px solid #056A96; } .map_block{ position: static; } .map{ height: auto; } .mapimg-mob{ display: none; } .map_block{ padding: 20px 15px 24px 15px; border-radius: 0; } .map_block b{ font-size: 20px; } .map_block { p{ font-size: 16px; } a{ font-size: 16px; } } .map iframe{ height: 447px; margin-bottom: -4px; } .header{ padding-top: 6px; } .generator_nav{ margin-top: 0; } .footer_mobile{ padding: 34px 0 17px 0; background: #056A96; } .footer_mob-content{ h2{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 700; line-height: normal; width: 332px; margin: 0 auto; margin-bottom: 12px; } p{ color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 600; line-height: normal; margin-bottom: 7px; } } .footer_mob-tel{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; a{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; color: #FFF; } img{ margin-right: 10px; } } .footer_mob-email{ display: flex; align-items: center; margin-bottom: 20px; a{ color: #FFF; font-family: "Times New Roman"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; display: flex; align-items: center; color: #FFF; } img{ margin-right: 10px; border-radius: 50%; } } .footer_soc-mob{ display: flex; align-items: center; img{ margin-right: 14px; &:last-child{ margin-bottom: 0; } } } .linefooter{ background: #FFF; height: 1px; width: 100%; } .footer_desc{ margin: 15px auto 0px auto; color: #FFF; text-align: center; font-family: "Times New Roman"; font-size: 14px; font-style: normal; font-weight: 600; line-height: normal; width: 330px; } .header_mobile{ display: block; } .generator_title{ svg{ display: block; } } .footer_mobile{ display: block; } .models_block{ padding: 8px 15px 13px 15px; } .models_block img{ width: 303.942px; height: 218.513px; margin-bottom: 10px; } .catalog_block-title{ font-size: 16px; width: 280px; margin-bottom: 5px; } .model_element_specification{ font-size: 13px; } .model_element-value{ font-size: 13px; } .models_callme-btn{ height: 33.126px; font-size: 16px; } .models_request-btn{ height: 33.126px; font-size: 16px; width: calc(50% - 10px); } .models_block{ min-height: 530px; width: 100%; } .modelstitle_catalog{ font-size: 16px; width: 257px; margin: 0 auto 21px auto; } .models_block img{ width: 100%; height: auto; max-height: none; } .mapimg{ height: 470px; } .generator_image{ width: 100%; max-height: 100%; } .burger-menu{ width: 60%; } .validate-input-at.w-50 { width: 100%; } .validate-input-at.w-50:first-child { margin-right: 0; } .alert-validate::before { visibility: visible; opacity: 1; } .price_title { font-size: 16px; } .portfolio_title{ display: none; } .portfolio_desc{ display: none; } .portfolio_block-projects{ font-size: 18px; width: 302px; margin: 0 auto; margin-bottom: 22px; } .portfolio_block-title{ font-size: 16px; color: #000; margin-bottom: 18px; } .portfolio_block-content{ flex-direction: column; } .portfolio__block-image{ width: 100%; height: 202px; margin-bottom: 20px; } .portfolio_block-info p{ font-size: 14px; } .portfolio_block-dop{ display: none; } .portfolio_btns{ flex-direction: column; } .portfolio__btn-order{ width: 100%; height: 44px; margin-bottom: 9px; } .portfolio__btn-catalog{ width: 100%; height: 44px; } .portfolio{ margin-bottom: 23px; } .portfolio_block{ padding-bottom: 11px; margin-bottom: 12px; } .portfolio_block-info{ font-size: 14px; } .mapimg{ position: static; } .generator_type-element{ width: 100%; } .generator_type{ width: 100%; } .map_block{ width: 100%; } .map .container { width: 100%; } .map{ padding: 0px; } .services_block-desc{ flex-direction: column; } .services_btn{ width: 100%; } .services_block{ display: block; } .services_num{ margin-right: 0; } .services_block-title { font-size: 18px; } .services_block_desc-text p{ margin-bottom: 12px; } .services_num{ text-align: start; } .services_block-title{ margin-bottom: 10px; } .services_block{ padding-bottom: 20px; } .services__block_text-more{ margin-bottom: 10px; } .services__block_text-more p{ margin-bottom: 4px; font-size: 14px; } .services__block_text-more svg{ flex-shrink: 0; width: 28px; height: 10px; } .services_num { font-size: 40px; } .services_title { margin-bottom: 10px; } .services_block_desc-text{ margin-right: 0; } .services_contact .container{ width: 375px; } .services_form-content{ flex-direction: column; } .services_form-checkbox-content { font-size: 16px; } .checkmark_form { margin-right: 10px; } .services_contact{ margin-bottom: 30px; } .services{ margin-bottom: 40px; } .services_form-inputs input { margin-bottom: 10px; } .services_form-content{ margin-bottom: 25px; } .services_contact-title{ font-size: 13px; } .services_contact-content{ padding: 15px; } .services_form-inputs input{ width: 100%; } .services_form-inputs{ width: 100%; } .services_form-textarea{ height: 150px; } .services_form-inputs input{ font-size: 14px; &::placeholder{ font-size: 14px; } } .services_form-textarea{ font-size: 13px; &::placeholder{ font-size: 13px; } } .services_form-inputs input:last-child { margin-bottom: 15px; } .services_form-send{ flex-direction: column; align-items: start; } .services_form-checkbox-content{ margin-bottom: 10px; } .services_form-btn{ width: 100%; } .services_contact-title{ margin-bottom: 20px; } .article_content h2 { font-size: 21px; } .article_content p{ font-size: 15px; } .article_content ul li{ font-size: 15px; } .article_content ol li{ font-size: 15px; } .breadcrumbs_link{ margin-bottom: 5px; display: inline-block; } .breadcrumbs { margin-bottom: 20px; margin-top: 20px; } .article_block{ margin-bottom: 30px; } .breadcrumbs_block span { margin-right: 4px; margin-left: 4px; } .article_content h3 { font-size: 16px; } .services_block-title{ font-size: 15px; } .services_title { font-size: 17px; } .contacts__map-main{ flex-direction: column; } .container__contacts{ width: 380px; } .contacts__map{ margin-bottom: 20px; } .contacts__info { width: 100%; } .contacts__info p{ font-size: 15px; } .contacts__info strong { font-size: 15px; } .contacts__info a { font-size: 15px; } .contacts__map { width: 380px; height: 290px; } .contacts{ margin-bottom: 30px; } } @media only screen and(max-width: 550px){ .header_contact-mobile{ flex-direction: column; align-items: end; } .header_contact-btn-mobile{ width: 100%; margin-bottom: 7px; } } @media only screen and(max-width: 375px) { .burger-menu{ width: 60%; } .burger_content h3 { font-size: 20px; } } @media only screen and(max-width: 320px) { } /** * Owl Carousel * **/ .owl-carousel { display: none; width: 100%; -webkit-tap-highlight-color: transparent; /* position relative and z-index fix webkit rendering fonts issue */ position: relative; z-index: 1; } .owl-carousel .owl-stage { position: relative; -ms-touch-action: pan-Y; touch-action: manipulation; -moz-backface-visibility: hidden; /* fix firefox animation glitch */ } .owl-carousel .owl-stage:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .owl-carousel .owl-stage-outer { position: relative; overflow: hidden; /* fix for flashing background */ -webkit-transform: translate3d(0px, 0px, 0px); } .owl-carousel .owl-wrapper, .owl-carousel .owl-item { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); } .owl-carousel .owl-item { position: relative; min-height: 1px; float: left; -webkit-backface-visibility: hidden; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; } .owl-carousel .owl-item img { display: block; width: 100%; } .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled { display: none; } .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot { cursor: pointer; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot { background: none; color: inherit; border: none; padding: 0 !important; font: inherit; } .owl-carousel.owl-loaded { display: block; } .owl-carousel.owl-loading { opacity: 0; display: block; } .owl-carousel.owl-hidden { opacity: 0; } .owl-carousel.owl-refresh .owl-item { visibility: hidden; } .owl-carousel.owl-drag .owl-item { -ms-touch-action: pan-y; touch-action: pan-y; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .owl-carousel.owl-grab { cursor: move; cursor: grab; } .owl-carousel.owl-rtl { direction: rtl; } .owl-carousel.owl-rtl .owl-item { float: right; } /* No Js */ .no-js .owl-carousel { display: block; } /* * Owl Carousel - Animate Plugin */ .owl-carousel .animated { animation-duration: 1000ms; animation-fill-mode: both; } .owl-carousel .owl-animated-in { z-index: 0; } .owl-carousel .owl-animated-out { z-index: 1; } .owl-carousel .fadeOut { animation-name: fadeOut; } @keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } /* * Owl Carousel - Auto Height Plugin */ .owl-height { transition: height 500ms ease-in-out; } /* * Owl Carousel - Lazy Load Plugin */ .owl-carousel .owl-item { /** This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong calculation of the height of the owl-item that breaks page layouts */ } .owl-carousel .owl-item .owl-lazy { opacity: 0; transition: opacity 400ms ease; } .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) { max-height: 0; } .owl-carousel .owl-item img.owl-lazy { transform-style: preserve-3d; } /* * Owl Carousel - Video Plugin */ .owl-carousel .owl-video-wrapper { position: relative; height: 100%; background: #000; } .owl-carousel .owl-video-play-icon { position: absolute; height: 80px; width: 80px; left: 50%; top: 50%; margin-left: -40px; margin-top: -40px; background: url("owl.video.play.png") no-repeat; cursor: pointer; z-index: 1; -webkit-backface-visibility: hidden; transition: transform 100ms ease; } .owl-carousel .owl-video-play-icon:hover { -ms-transform: scale(1.3, 1.3); transform: scale(1.3, 1.3); } .owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon { display: none; } .owl-carousel .owl-video-tn { opacity: 0; height: 100%; background-position: center center; background-repeat: no-repeat; background-size: contain; transition: opacity 400ms ease; } .owl-carousel .owl-video-frame { position: relative; z-index: 1; height: 100%; width: 100%; }