/** * Сброс 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 .3s) { -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; } } /** * Переменные * **/ @fULight: 'UltraLight', Arial, sans-serif; /** * Bootstrap * **/ .container { margin-right: auto; margin-left: auto; &:after { content: ''; display: block; clear: both; } } .row { margin-left: -15px; margin-right: -15px; } [class*="col-"] { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } @media (min-width: 768px) { .container { width: 750px; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } } @media (min-width: 992px) { .container { width: 970px; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } } @media (min-width: 1200px) { .container { width: 1240px; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2-5 { width: 20%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } } .alpha { padding-left: 0; } .omega { padding-right: 0; } /** * Подключение шрифтов * **/ @font-face { font-family: "Excentra Pro - Light Italic"; src: url('../fonts/394865_0_0.eot'); src: url('../fonts/394865_0_0.eot?#iefix') format('embedded-opentype'), url('../fonts/394865_0_0.woff2') format('woff2'), url('../fonts/394865_0_0.woff') format('woff'), url('../fonts/394865_0_0.ttf') format('truetype'); } @font-face { font-family: "Logo"; src: url('../fonts/10732.otf'); } @font-face { font-family: "Excentra Pro"; src: url('../fonts/394865_1_0.eot'); src: url('../fonts/394865_1_0.eot?#iefix') format('embedded-opentype'), url('../fonts/394865_1_0.woff2') format('woff2'), url('../fonts/394865_1_0.woff') format('woff'), url('../fonts/394865_1_0.ttf') format('truetype'); } body { font-family: Oswald } /** * Общие классы * **/ .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; } button { cursor: pointer; } a { color: inherit; text-decoration: none; } .wrap { width: 1140px; margin: 0 auto; } body { background-color: #202020; } .header{ position: absolute; left: 0;top: 0;right: 0; z-index: 434; background-color: rgba(32, 32, 32, 0.4); border-bottom: 0!important; } .body-about .header { box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.4); background-color: #161616; position: relative; border-bottom: 0; &::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 1px; background-color: #ffffff; background-image: linear-gradient(to right, #ec77ab 0%, #7873f5 100%); // animation: background-header 2.0s infinite ease; } } @keyframes background-header { 100% { background-image: linear-gradient(to left, #ec77ab 0%, #7873f5 100%); } } .header { // padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.29); &-line { width: 1px; height: 40px; box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.3); background-color: #ffffff; opacity: 0.3; margin-right: 25px; } &-right, &-socs, & ul { display: flex; align-items: center; } ul { text-shadow: 0 2px 7px rgba(0, 0, 0, 0.2); color: #ffffff; font-family: "Excentra Pro"; font-size: 16px; font-weight: 300; a { margin-right: 30px; } } .wrap { display: flex; justify-content: space-between; align-items: center; } &-soc { svg { max-height: 20px; width: 30px; fill: white; } } } .header-logo, .footer-logo { color: #ffffff; font-family: "Logo"; font-size: 36px; font-weight: 400; line-height: 60px; text-shadow: 0 2px 1px rgba(0, 0, 0, 0.2); text-transform: uppercase; } .about { padding: 110px 0; &-flex { display: flex; justify-content: space-between; padding-bottom:130px; } &-right{ button{ width: 262px; height: 45px; box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.4); border-radius: 23px; background-color: #efefef; background-image: linear-gradient(to right, #ec77ab 0%, #7873f5 100%); margin: 0 auto; display: flex; align-items: center;color: #ffffff; font-family: "Excentra Pro"; font-size: 14px; justify-content: center; margin-top: 10px; } } &-form { &-ttl { color: #ffffff; font-family: Oswald; font-size: 32px; text-align: center; font-weight: 300; margin-bottom: 40px; } &-label { position: absolute; left: 20px; opacity: 0.4; color: #ffffff; font-family: "Excentra Pro"; font-size: 18px; font-weight: 300; top: 15px; /* Text style for "*" */ sup { color: #ff4949; } } &-input { position: relative; margin-bottom: 30px; textarea{ padding: 20px; padding-top: 15px; height: 150px; box-shadow: inset 1px 2px 8px 1px rgba(0, 0, 0, 0.25); border-radius: 3px; border: 1px solid #636363; width: 100%;color: #ffffff; font-family: "Excentra Pro"; font-size: 18px; font-weight: 300; background-color: #202020; } input { position: relative; z-index: 5; width: 100%; color: #ffffff; font-family: "Excentra Pro"; font-size: 18px; font-weight: 300; height: 50px; box-shadow: inset 1px 2px 8px 1px rgba(0, 0, 0, 0.25); border-radius: 3px; border: 1px solid #636363; padding-left: 20px; } } } &-left { span { opacity: 0.75; color: #ffffff; font-family: "Excentra Pro"; font-size: 22px; display: block; font-weight: 300; line-height: 30px; margin-bottom: 40px; margin-top: 40px; } } &-contact-item { display: flex; align-items: center; color: #ffffff; font-size: 20px; font-weight: 200; margin-bottom: 25px; img { margin-right: 15px; } span { margin: 0; font-family: Oswald; } } &-text { background-image: linear-gradient(-210deg, #ec77ab 0%, #7873f5 100%); background-clip: text; opacity: 0.85; color: #ffffff; font-family: "Excentra Pro"; margin-bottom: 130px; font-size: 24px; font-weight: 300; -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 38px; } &-right { padding: 50px; width: 585px; box-shadow: 0 3px 20px 1px rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.3); background-color: #202020; } } .footer{ position: relative; padding-top: 60px; padding-bottom: 35px; .wrap{ display: flex; flex-direction: column; align-items: center; ul{ opacity: 0.9; color: #ffffff; display: flex; justify-content: center; width: 100%; font-family: "Excentra Pro"; font-size: 16px; font-weight: 300; margin: 55px; a{ margin: 0 25px; } } } &-copy{ color: rgba(255, 255, 255, 0.3); font-size: 16px; width: 100%; text-align: center; font-weight: 200; padding-top: 35px;border-top: 2px solid rgba(255, 255, 255, 0.21); } &::after { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 1px; background-color: #ffffff; background-image: linear-gradient(to right, #ec77ab 0%, #7873f5 100%); // animation: background-header 2.0s infinite ease; } } .tel-fixed{ display: none; } .standart-ttl { color: #ffffff; font-size: 72px; font-weight: 500; line-height: 60px; margin-bottom: 70px; } .standart-ttl-shadow { text-shadow: -2px -2px 0px #202020; color: white; display: table; // margin: 20px auto; position: relative; z-index: 100; width: 100%; &::after { content: attr(data-content); position: absolute; left: 4px; top: 2px; display: block; z-index: -1; background: linear-gradient(-210deg, #ec77ab 0%, #7873f5 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } } .tel-fixed{ position: fixed; right: 60px; bottom: 60px; display: block; &-body{ width: 70px; height: 70px; box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.4); background-image: linear-gradient(-250deg, #ec77ab 0%, #7873f5 100%); display: flex; align-items: center; justify-content: center; position: relative; z-index: 54;border-radius: 50%; cursor: pointer; svg{ width: 25px; height: 25px; fill:white; } } &-layer { .pos_absc; max-width: 10000px; border-radius: 50%; transform-origin: center; &:first-child { width: 82px; height: 82px; border: 30px solid ; border-image: url(../imgs/border-1.png) 30; animation: circle-anim 2.4s infinite ease-in-out !important; // background-color: #ffffff; // opacity: 0.7; } &:nth-child(2) { width: 95px; height: 95px; border: 30px solid ; border-image: url(../imgs/border-2.png) 30; animation: circle-anim 2.4s infinite ease !important; } &:nth-child(3) { width: 109px; height: 109px; border: 30px solid ; border-image: url(../imgs/border-3.png) 30; animation: circle-anim 2.4s infinite ease !important; } } } @keyframes circle-anim { 0% {transform: rotate(0deg) scale(1) translateX(-50%) translateY(-50%);opacity: 1;} 30% {transform: rotate(0deg) scale(1) translateX(-50%) translateY(-50%);opacity: .1;} 100% {transform: rotate(0deg) scale(1) translateX(-50%) translateY(-50%); opacity: 1;}} .modal-parent{ position:fixed; left: 0;right: 0;top: 0;bottom: 0; background-color: rgba(0, 0, 0, 0.7); z-index: 10034; display: none; } .modal-dark{ position: absolute; left: 0;right: 0;top: 0;bottom: 0; z-index: 3; } .modal-body-flex{ display: flex; height: 100%; align-items: center; justify-content: center; } .modal-body{ position: relative; z-index: 4; box-shadow: 0 3px 12px 1px rgba(0, 0, 0, 0.7); border: 2px solid; border-image: url(../imgs/border.png) 2; background-color: #ffffff; h2{ color: #121212; font-family: Oswald; font-size: 24px; font-weight: 400; text-align: center; } p{ color: #717171; font-family: "Excentra Pro"; font-size: 14px; font-weight: 300; text-align: center; line-height: 24px; } input{ height: 40px; box-shadow: inset 1px 2px 5px rgba(0, 0, 0, 0.05); border-radius: 20px; background-color: #f8f8f8; margin-bottom: 15px; width: 100%; padding-left: 20px; } textarea{ height: 105px; box-shadow: inset 1px 2px 5px rgba(0, 0, 0, 0.05); border-radius: 20px; padding-left: 20px; padding-top: 15px; width: 100%; background-color: #f8f8f8; } button{ height: 45px; box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.07); border-radius: 23px; background-color: #f8f8f8; background-image: linear-gradient(to right, #ec77ab 0%, #7873f5 100%); display: flex; justify-content: center; color: #ffffff; font-family: "Excentra Pro"; font-size: 14px; font-weight: bold; margin-top: 15px; line-height: 24px; width: 100%; align-items: center; } } .modal-close{ position: absolute; right: 10px; cursor: pointer; top: 10px; } #modal-form{ .modal-body{ width: 400px; padding: 35px 40px; } .modal-form-flex { display: flex; } .modal-form-line{ width: 1px; flex-shrink: 0; margin: 0 40px; background-color: #e5e5e5; } h2{ margin-bottom: 35px; } .modal-form-right{ input:nth-child(2), input:nth-child(3){ width: calc(50% - 7.5px); } form{ display: flex; flex-wrap: wrap; justify-content: space-between; } } .modal-form-left{ width: 320px; flex-shrink: 0; } } #modal-feed{ .modal-body{ width: 405px; padding: 40px; h2{ margin-bottom: 35px; } } } #modal-text{ .modal-body{ width: 615px;padding-bottom: 40px; h2{ margin-bottom: 35px; padding: 40px;padding-bottom: 0; } .modal-text-text{ max-height: 570px; padding: 40px; padding-top: 0; overflow-y: auto; padding-bottom: 0; .simplebar-track.simplebar-vertical{ width: 20px; height: 570px; border-radius: 5px 0 0 5px;; background-color: #eaeaea; padding: 5px; } .simplebar-scrollbar{ width: 6px; border-radius: 3px; background-color: #c4c4c4; right: 7px; } } } } #modal-assets{ .modal-body{ width: 420px; padding: 40px; text-align: center; h2{ margin: 15px 0; } } } .owl-carousel div{ max-width: 10000000000000px; } .home-category{ width: 32.5%; height: 21vw; box-shadow: 0 3px 20px 1px rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); border: 1px solid #ffffff; background-color: #ffffff; cursor: pointer; margin-bottom: 20px; position: relative; &-ttl{ position: absolute; top: 30px; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); color: #ffffff; font-family: Oswald; font-size: 38px; font-weight: 500; left: 40px; } &-btn{ color: #ffffff; font-family: Oswald; font-size: 18px; font-weight: 400; width: 240px; height: 50px; border-radius: 3px; border: 1px solid #ffffff; position: absolute; left: 40px; bottom: 30px; display: flex; align-items: center; justify-content: center; .transition; &:hover{ background-color: rgba(0, 0, 0, 0.6); } img{ margin-left: 15px; } } &:hover{ border-image: url(../imgs/border.png) 1; } &-img{ position: absolute; height: 100%; top: 0;right: 0;bottom: 0;left: 0; img{ .c_img; } } &s{ display: flex; justify-content: space-between; flex-wrap: wrap; padding: 120px 20px; } } .standart-btn{ box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.7); border-radius: 23px; background-color: #efefef; color: #ffffff; font-family: "Excentra Pro"; font-size: 14px; font-weight: bold; line-height: 45px; padding: 0 35px; background-image: linear-gradient(to right, #ec77ab 0%, #7873f5 100%); } .d1-slid{ height: 750px; h2{ text-shadow: 0 12px 10px rgba(0, 0, 0, 1); color: #ffffff; font-family: Oswald; font-size: 48px; font-weight: 500; line-height: 64px; text-transform: uppercase; /* Text style for "О, кажись" */ letter-spacing: 2.88px; margin-bottom: 60px; } &er{ position: relative; .owl-nav button.owl-prev, .owl-nav button.owl-next{ position: absolute; top: 50%; z-index: 54; width: 50px; height: 50px; background-color: rgba(121, 121, 121, 0.3)!important; border-radius: 50%; span{color: transparent;} } .owl-nav button.owl-prev{ background-image: url(../imgs/arrow-prev.png)!important; background-position: 13px 13px !important; background-repeat: no-repeat!important; transform: translateY(-50%); left: calc(50% - 560px); } .owl-nav button.owl-next{ background-image: url(../imgs/arrow-prev.png)!important; background-position: 13px 13px !important; right: calc(50% - 560px); transform: rotate(180deg) translateY(50%); background-repeat: no-repeat!important; } .owl-dots { position: absolute;bottom: 110px; display: flex; width: 100%; justify-content: center; button{ width: 128px; height: 4px; box-shadow: 0 3px 7px 1px rgba(0, 0, 0, 0.3); border-radius: 3px 3px 0 0; background-color: #ffffff!important; margin:0 12.5px;.transition; opacity: 0.4; &.active,&:hover{ background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%)!important; opacity: 0.8!important; cursor: pointer; .transition; } } } &-shadow{ top: 0;right: 0;bottom: 0;left: 0; position: absolute; z-index: 2; background-color: rgba(0, 0, 0, 0.4); background-image: linear-gradient(to top, #202020 0%, rgba(32, 32, 32, 0) 35%, rgba(32, 32, 32, 0) 40%); } } &-img{ position: absolute; left: 0;right: 0;bottom: 0;top: 0; img{ .c_img; } } .wrap{ position: relative; z-index: 3; height: 100%; display: flex; align-items: center; text-align: center; flex-direction: column; justify-content: center; } } .category{ &-block{ padding-top: 100px; &-tv{ .wrap{ width: 40vw; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; } } } &-text{ opacity: 0.75; color: #ffffff; font-family: "Excentra Pro"; font-size: 20px; font-weight: 300; line-height: 34px; } &-element{ &-after{ left: -(31.7vw / 2); .category-element-text{ opacity: 0.1; font-style: italic; font-weight: 400 } } &-before{ right: -(31.7vw / 2); .category-element-text{ opacity: 0.1; font-style: italic; font-weight: 400 } } &-btn{ background-color: #ffffff; position: absolute; bottom: 3%; text-align: center; width: 40%; left: 50%; display: flex; padding-bottom: 4%; transform: translateY; height: 20%; background-clip: text; font-family: "Excentra Pro"; z-index: 4343; font-size: 18px; font-weight: bold; -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0); clip-path: polygon(50% 100%, 0 0, 100% 0); line-height: 24px; transform: translateX(-50%); align-items: center; text-align: center; span{ -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-image: linear-gradient(-210deg, #ec77ab 0%, #7873f5 100%); } justify-content: center; } & .category-element-img:hover .category-element-content{ opacity: 1; cursor: pointer; } &-content{ max-width: 142%; max-height: 150%; height: 142%; position: absolute; opacity: 0; .transition; left: -21%; right: -30%; top: -21%; bottom: -57%; bottom: -57%;transform: rotate(315deg); background-image: linear-gradient(-250deg, rgba(236, 119, 171, 0.85) 0%, rgba(120, 115, 245, 0.85) 100%); h2{ text-align: center; margin-top: 40%; color: #ffffff; font-family: Oswald; font-size: 30px; font-weight: 400; line-height: 40px; } } &-img{ position: absolute; box-shadow: 0 3px 20px 1px rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); overflow: hidden; background-color: #646464; transform: rotate(45deg); left: 15%;right: 15%;bottom: 15%;top: 15%; .transition; &:hover{ box-shadow: 0 3px 20px 1px rgba(0, 0, 0, 0.7); border: 1px solid #ffffff; } img{ transform: rotate(315deg); max-width: 142%; max-height: 150%; height: 142%; position: absolute; left: -21%; right: -30%; top: -21%; bottom: -57%; } } &-text{ text-shadow: 1px 2px 7px rgba(0, 0, 0, 0.7); color: #ffffff; font-family: Oswald; font-size: 34px; font-weight: 500; font-size: 2.1em; &-top{ &-left{ text-align: right; transform: rotate(-45deg); width: 50%; margin-top: 10%; } &-right{ text-align: left; transform: rotate(45deg); width: 50%; margin-top: -8%; position: absolute; right: 2%; } } &-bottom{ &-left{ text-align: right; transform: rotate(45deg); width: 50%; margin-top: 10%; position: absolute; bottom: 10%; left: 3%; } &-right{ transform: rotate(-45deg); width: 50%; margin-top: 10%; position: absolute; bottom: 10%; left: 47%; } } } &s{ margin: 150px 0; position: relative; &-theater{ height: 31.7vw; .category-element{ &:nth-child(2){ left: 17.2vw; } &:nth-child(3){ right: 17.2vw; } } } &-music{ height: calc(31.7vw * 2 + 1.6vw); .category-element{ top: 50%; transform: translateY(-50%); &:nth-child(2){ left: 17.2vw; } &:nth-child(3){ right: 17.2vw; } &:nth-child(4){ left: 50%; top: 51%; transform: translateX(-50%); } &:nth-child(5){ left: 50%; top: 0.5%; -webkit-clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); transform: translateX(-50%); } &:nth-child(6){ left: 0.7%; top: 25%; -webkit-clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); } &:nth-child(7){ right: 0.7%; top: 25%; -webkit-clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); } } } &-tv { height:31.7vw; .category-element { top: 50%; transform: translateY(-50%); &:nth-child(2) { left: 17.2vw; } &:nth-child(3) { right: 17.2vw; } // &:nth-child(4) { // left: 50%; // top: 51%; // // transform: translateX(-50%); // } // // &:nth-child(5) { // left: 50%; // top: 0.5%; // // transform: translateX(-50%); // } &:nth-child(4) { left: 0.7%; top: -1.2%; -webkit-clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); } &:nth-child(5) { right: 0.7%; top: -1.2%; -webkit-clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); clip-path: polygon(50% -20%, 76% 0, 120% 50%, 50% 100%, 0 50%, 0 0); } } } } width: 31.7vw; position: absolute; height: 31.7vw; } // 1.6% } .category-element-text-top-left{ position: absolute; } .category-element-text-top-right{ margin-top: 8% } .category-element-content h2{ display: none } .category-element-img{ border: 0!important; } .category-element-content{ transition:none; background: transparent; } .category-element-befores{ &::before{ content: ''; position: absolute; left: 97%; width: 75px; height: 75px; background-color: #343434; opacity: 0.5; width: 3vw; height: 3vw; bottom:37%; transform: rotate(45deg) } } .category-element-afters{ // background: red; &::after{ content: ''; position: absolute; left: 97%; width: 75px; height: 75px; background-color: #343434; opacity: 0.5; width: 3vw; height: 3vw; top:37%; transform: rotate(45deg) } } //.category-slider{ // h2{ // text-shadow: 0 5px 29px rgba(0, 0, 0, 0.5); //color: #ffffff; //font-family: Oswald; //font-size: 42px; //font-weight: 400; //line-height: 56px; //text-transform: none; // letter-spacing: 0.84px; // } //} /** * Адаптивка * **/ .tel-fixed{ z-index: 100; } .d1-slid .wrap{ max-width: 100%; } .category-element-text-top-left, .category-element-text-top-right, .category-element-text-bottom-left, .category-element-text-bottom-right{ white-space: nowrap; } @media only screen and(max-width: 1299px) { .category-element-text{ font-size: 1.6em; } .category-element-btn{ font-size: 14px; } } @media only screen and(max-width: 1199px) { .md-show { display: block !important; } .md-hide { display: none !important; } .wrap{ padding-left: 15px; padding-right: 15px; } .footer .wrap ul a { margin: 0 15px; } .home-category-ttl{ top: 10px; left: 15px; } .home-category-btn{ bottom: 10px; left: 15px; } } a{ cursor: pointer } @media only screen and(max-width: 991px) { .category-element-text{ font-size: 1.2em; } .sm-show { display: block !important; } .sm-hide { display: none !important; } .category-element-btn{ font-size: 12px; line-height: 12px; } .home-category{ width: 49%; height: 30vw; } .d1-slid h2{ font-size: 38px; line-height: normal; } .footer-copy{ padding-top: 15px; } .footer{ padding-top: 15px; padding-bottom: 15px; } .footer .wrap ul{ flex-wrap: wrap; li{ margin-bottom: 10px; } } .footer .wrap ul{ margin: 15px ; } .category-block-tv .wrap { width: 100%; margin-bottom: 40px; display: block; text-align: left; } .category-block{ padding-top: 30px; } } @media only screen and(max-width: 767px) { .about { padding: 30px 0; } .category-element-content{ opacity: 1!important } .about-text{ margin-bottom: 0; font-size: 18px; line-height: normal; } .xs-show { display: block !important; } .xs-hide { display: none !important; } .row { margin-left: -10px; margin-right: -10px; } .category-text{ font-size: 18px; line-height: normal; } .category-elements{ display: flex; margin: 30px 0; flex-direction: column; } .category-element{ width: 100%; position: relative; top: 0!important; left: 0!important; right: 0!important; bottom: 0!important; transform: none!important; height: calc(100vw - 0px); margin-bottom: 60px; } .category-elements{ height: auto!important; } [class*="col-"] { padding-left: 10px; padding-right: 10px; } .category-element-after, .category-element-before { display: none; } body{ overflow-x: hidden; } .category-block-tv .wrap { width: 100%; margin-bottom: 40px; display: block; text-align: left; } .category-block{ padding-top: 30px; } .category-element .category-element-text{ text-align: right; transform: rotate(-45deg); width: 50%; margin-top: 10%; bottom: auto!important; left: auto!important; &.category-element-text-top-right{ text-align: left!important; transform: rotate(45deg)!important; width: 50%!important; margin-top: 9%!important; position: absolute!important; right: 2%!important; } } .tel-fixed{ transform-origin: center; transform: scale(.7); right: 5px; bottom: 5px; } .d1-slid h2{ font-size: 32px; margin-bottom: 30px; } .d1-slider .owl-dots{ bottom: 30px; } .home-categorys{ padding: 30px 15px; } .d1-slid { height: 500px; } .home-category{ width: 100%; height: 60vw; } .about-flex{ padding-bottom: 30px; } .standart-ttl{ font-size: 36px; margin-bottom: 15px; line-height: normal; } .about-left>span{ font-size: 16px; margin: 15px 0; } .about-form-input{ margin-bottom: 15px; } .about-form-ttl{margin-bottom: 15px;} .about-right{ padding: 15px; } .header ul a{ display: none; } .about-flex{ flex-wrap: wrap; } .header-line{ display: none; } .footer .wrap ul{ flex-wrap: wrap; li{ margin-bottom: 10px; width: 100%; text-align: center; a{ margin: 0; } } } } @media only screen and(max-width: 375px) {} @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%; }