@import "nice-select.css"; @import "anim.css"; /** * Сброс 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; } @font-face { font-family: "Gilroy"; src: url('../fonts/Gilroy-Medium\ \(1\).ttf'); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: "Gilroy"; src: url('../fonts/Gilroy-Semibold\ \(1\).ttf'); font-weight: 600; font-style: normal; font-display: swap; } @font-face { font-family: "Gilroy"; src: url('../fonts/Gilroy-Regular\ \(1\).ttf'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: "Gilroy"; src: url('../fonts/Gilroy-Bold.ttf'); font-weight: 700; font-style: normal; font-display: swap; } /////----------- @font-face { font-family: "Montserrat"; src: url('../fonts/Montserrat-Regular\ \(1\).ttf'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: "Montserrat"; src: url('../fonts/Montserrat-Medium.ttf'); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: "Montserrat"; src: url('../fonts/Montserrat-SemiBold\ \(1\).ttf'); font-weight: 600; font-style: normal; font-display: swap; } @font-face { font-family: "Montserrat"; src: url('../fonts/Montserrat-Bold\ \(1\).ttf'); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: "Montserrat"; src: url('../fonts/Montserrat-Light.ttf'); font-weight: 300; font-style: normal; font-display: swap; } @font-face { font-family: "Montserrat"; src: url('../fonts/Montserrat-ExtraBold.ttf'); font-weight: 800; font-style: normal; font-display: swap; } ///--------- @font-face { font-family: "Days One"; src: url('../fonts/DaysOne-Regular.ttf'); font-weight: 400; font-style: normal; font-display: swap; } ///--------- @font-face { font-family: "Days One"; src: url('../fonts/DaysOne-Regular.ttf'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: "Cera Pro"; src: url('../fonts/CeraPro-Regular\ \(1\).ttf'); font-weight: 400; 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; } body { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; background-color: #FFFFFF; color: #0E1F34; } .container { width: 1300px; padding-left: 10px; padding-right: 10px; margin: 0 auto; } //// Header .header { position: absolute; left: 0; right: 0; z-index: 50; .container { display: flex; align-items: center; justify-content: space-between; } } .header__r { display: flex; align-items: center; } .header__logo { cursor: pointer; margin-right: 57px; } .header__social { display: flex; align-items: center; margin-right: 32px; } .header__social-block { margin-right: 20px; &:last-child { margin-right: 0; } svg { cursor: pointer; path { .transition; } } &:hover { svg { path { fill: #0E1F34; } } } } .header-link { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 24px; color: #FFFFFF; margin-right: 32px; .transition; &:last-child { margin-right: 0; } &:hover { color: #0E1F34; } } .header-link2 { .transition; font-size: 14px; } .header__l { display: flex; align-items: center; } .header-btn { background: #0E1F34; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 12px; width: 162px; height: 44px; font-family: 'Gilroy'; font-style: normal; font-weight: 700; font-size: 13px; line-height: 22px; text-align: center; display: flex; margin-right: 20px; align-items: center; justify-content: center; color: #FFFFFF; cursor: pointer; .transition; &:hover { color: #0E1F34; background-color: #FFFFFF; } } .header__lang { display: flex; cursor: pointer; align-items: center; .transition; span { margin-right: 8px; .transition; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 11px; line-height: 24px; color: #FFFFFF; } svg { path { .transition; } } &:hover { span { color: #0E1F34; } svg { path { stroke: #0E1F34; } } } } .header__burger { width: 30px; margin-left: 20px; .transition; cursor: pointer; div { width: 100%; height: 2px; background-color: #FFFFFF; margin-bottom: 8px; border-radius: 79px; .transition; &:last-child { margin-bottom: 0; } } &:hover { div { background-color: #0E1F34; } } } .d1 { position: relative; height: 670px; .container { position: relative; z-index: 14; padding-top: 160px; h1 { margin-bottom: 42px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 50px; line-height: 120%; color: #FFFFFF; } } } .d1__bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; right: 0; object-fit: cover; } .d1__head { display: flex; } .d1__head--item { padding: 12px 36px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 24px; cursor: pointer; text-align: center; color: #FFFFFF; background: rgba(14, 31, 52, 0.2); backdrop-filter: blur(2px); border-radius: 15px 15px 0px 0px; } .d1__head--item.active { background: #0E1F34 !important; } .d1__head--item { .transition; &:hover { background: #0E1F34; } } .d1__info { width: 1280px; background: #FFFFFF; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); padding: 36px 34px; border-radius: 0px 23px 23px 23px; display: flex; align-items: center; justify-content: space-between; } .nice-select.open .list { width: 100%; } .color-text span, .company__text span, .rev__head span { background-position-y: -254px; } .d1__info--block { position: relative; cursor: pointer; padding-bottom: 5px; .nice-select { border: 0 !important; height: auto; padding-left: 0; line-height: normal !important; } width: 190px; flex-grow: 1; margin-right: 24px; padding-right: 24px; .nice-select { width: 100%; } border-right: 1px solid rgba(14, 31, 52, 0.1); &:nth-last-child(2) { border: none; margin-right: 0; } h2 { font-family: 'Gilroy'; font-style: normal; font-weight: 600; margin-bottom: 5px; font-size: 14px; line-height: 24px; letter-spacing: 0.02em; color: #0E1F34; } } .d1__info-searh { width: 54px; background: #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 14px; height: 54px; cursor: pointer; border: 1px solid #049AA4; display: flex; align-items: center; justify-content: center; .transition; svg { path { .transition; } } &:hover { background-color: #FFFFFF; border: 1px solid #049AA4; svg { path { fill: #049AA4; } } } } ////// special .special { margin-top: 80px; h2 { margin-bottom: 35px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; color: #0E1F34; } } .special__block { background: #FFFFFF; padding: 6px 8px 25px 8px; width: 296px; box-shadow: 0px 10px 50px rgba(44, 44, 44, 0.06), 0px 8px 28px rgba(29, 29, 29, 0.06); border-radius: 20px; } .special__img { position: relative; img { width: 100%; height: 186px; object-fit: cover; margin-bottom: 22px; } } .spec__img-info { position: absolute; top: 18px; width: calc(100% - 28px) !important; width: 252px; display: flex; align-items: center; justify-content: space-between; left: 15px; } .spec__info-stat { display: flex; align-items: center; } .spec__info-stat1 { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 11px; line-height: 18px; text-align: center; color: #FFFFFF; background: #049AA4; border-radius: 20px; padding: 3px 20px; position: relative; z-index: 5; } .spec__info-new { background: #FFFFFF; display: flex; align-items: flex-end; position: relative; left: -29px; padding: 5px 15px 5px 45px; left: -28px; z-index: 2; color: #009E23; span { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 12px; line-height: 14px; &::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #009E23; left: 34px; top: 10px; } } } .spec__heart { cursor: pointer; background: rgba(14, 31, 52, 0.06); backdrop-filter: blur(5px); border-radius: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; .transition; } .special__content { padding: 0px 15px; h3 { margin-bottom: 13px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 18px; line-height: 22px; letter-spacing: 0.02em; color: #0E1F34; } } .spec__map { display: flex; margin-bottom: 20px; align-items: center; img { margin-right: 8px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 16px; color: rgba(14, 31, 52, 0.8); } } .spec__item-block { display: flex; align-items: center; margin-right: 35px; margin-bottom: 10px; &:last-child { margin-right: 0; margin-bottom: 0; } span { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 18px; color: #0E1F34; } } .spec__items { display: flex; flex-wrap: wrap; } .special__img { img { border-radius: 12px; } } .spec__item-img { background: rgba(14, 31, 52, 0.04); backdrop-filter: blur(5px); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-right: 10px; } .special__content { display: flex; flex-direction: column; justify-content: space-between; height: 100%; } .spec__old-sum { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 14px; margin-bottom: 5px; display: flex; align-items: center; text-decoration-line: line-through; color: rgba(14, 31, 52, 0.6); } .spec__sum { display: flex; align-items: center; span { font-family: 'Gilroy'; font-style: normal; font-weight: 700; font-size: 20px; line-height: 18px; display: flex; align-items: center; color: #0E1F34; } } .spec__valut { margin-left: 12px; background: rgba(4, 154, 164, 0.1); backdrop-filter: blur(5px); border-radius: 8px; display: flex; cursor: pointer; justify-content: center; .transition; align-items: center; width: 56px; height: 32px; span { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-size: 16px; line-height: 18px; margin-right: 10px; display: flex; align-items: center; color: #049AA4; } &:hover { background: rgba(4, 154, 164, 0.3); } } .spec__bot { margin-top: 20px; } .spec__btn { width: 224px; height: 50px; border: 1px solid #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; .transition; font-family: 'Gilroy'; font-style: normal; font-weight: 600; margin-top: 32px; font-size: 14px; line-height: 22px; text-align: center; color: #0E1F34; &:hover { color: #FFFFFF; background-color: #049AA4; border: 1px solid #049AA4; } } .spec__heart { svg { path { .transition; } } &.active { svg { path { fill: red; } } } } .special { .container { position: relative; z-index: 10; } } ///// about .about { background: rgba(14, 31, 52, 0.02); padding-top: 266px; margin-top: -200px; padding-bottom: 80px; } .color-text { span { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 110px; line-height: 100px; background-image: url(../imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; } } .about__head { display: flex; align-items: center; margin-bottom: 55px; justify-content: space-between; h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; color: #0E1F34; width: 720px; } } .about__blocks { display: flex; flex-wrap: wrap; justify-content: space-between; } .about__block { width: 296px; display: flex; flex-direction: column; span { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 18px; color: #FFFFFF; background: #049AA4; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; } img { width: 44px; height: 44px; margin-top: 5px; margin-bottom: 15px; } h3 { margin-bottom: 12px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 18px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 20px; margin-bottom: 22px; letter-spacing: 0.02em; color: rgba(14, 31, 52, 0.6); } } .about-more { font-family: 'Cera Pro'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; .transition; color: #049AA4; &:hover { color: #0E1F34; } } .stat__block span { display: block } .rev__img { display: block; } .rev__play { * { .transition(); } &:hover { .r1, .r2, .r3 { width: 72px; height: 72px; } } } ///// chart .chart { margin-top: 104px; .container { display: flex; align-items: flex-end; position: relative; justify-content: space-between; } } .chart__graf { width: 926px; .owl-nav .disabled { display: none !important; } } .chart__graf-block { display: flex; align-items: flex-end; } .chart__graf-block { position: relative; width: 142px; h3 { font-family: 'Gilroy'; font-style: normal; font-weight: 700; font-size: 20px; line-height: 18px; display: flex; position: absolute; .xpos_ab; bottom: -38px; align-items: center; text-align: center; color: #0E1F34; } } .charts { position: relative; border-radius: 8px; margin-right: 10px; width: 42px; display: flex; align-items: center; justify-content: center; padding: 15px; span { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 14px; white-space: nowrap; top: 63px; position: absolute; transform: rotate(-90deg); color: #FFFFFF; } &:last-child { margin-right: 0; } } .chart__1 { background: #049AA4; height: 102px; } .chart__2 { height: 155px; background: #F1F2F3; span { color: #0E1F34 !important; } } .chart__pt { height: 290px; } .owl-item { .charts { height: 0px; transition: all 1s ease; overflow: hidden; } } .animated { .owl-item { &.active { .charts { &.chart__1 { background: #049AA4; height: 102px; } &.chart__2 { height: 155px; } &.chart__3 { height: 290px; } } } } } .chart__3 { height: 290px; background: #0E1F34; } .chart__pt { display: flex; align-items: flex-end; } .chart__name--block { display: flex; align-items: center; margin-bottom: 20px; p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; color: #0E1F34; } &:last-child { margin-bottom: 0; } div { width: 8px; height: 8px; background: #049AA4; margin-right: 10px; border-radius: 50%; } } .chart__name--block2 { div { background: rgba(14, 31, 52, 0.06); } } .chart__name--block3 { div { background: #0E1F34; } } .chart__text-item { position: absolute; left: -283px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 92px; top: -97px; line-height: 110px; color: rgba(14, 31, 52, 0.06); line-height: 87px; } .chart { position: relative; margin-top: 100px; } ///// company .company { padding-top: 109px; position: relative; margin-top: 100px; padding-bottom: 140px; } .company__name { display: flex; align-items: center; justify-content: space-between; h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 36px; color: #0E1F34; } } .company__text { span { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 126px; line-height: 1.2; background-image: url(../imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; } } .company__p { p { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 24px; line-height: 30px; color: rgba(14, 31, 52, 0.6); &:last-child { position: relative; right: -56px; } } } .company__text-more { display: flex; align-items: flex-end; } .company__btn { margin-left: 100px; width: 240px; height: 50px; background: #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 16px; cursor: pointer; font-family: 'Gilroy'; font-style: normal; font-weight: 600; display: flex; align-items: center; justify-content: center; font-size: 14px; line-height: 22px; text-align: center; color: #FFFFFF; .transition; border: 1px solid #049AA4; &:hover { border: 1px solid #049AA4; background-color: #FFFFFF; color: #049AA4; } } .company__blocks { margin-top: 70px; display: flex; justify-content: space-between; } .company__block { border-radius: 20px; display: flex; padding-top: 36px; padding-bottom: 40px; align-items: center; flex-direction: column; justify-content: center; position: relative; width: 270px; p { width: 210px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 12px; line-height: 18px; text-align: center; color: rgba(14, 31, 52, 0.7); margin-top: 16px; } h3 { margin-top: 22px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 18px; display: flex; align-items: center; text-align: center; color: #0E1F34; } } .somp__number { display: flex; align-items: center; justify-content: center; border-radius: 50%; width: 20px; height: 20px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 18px; background: #049AA4; position: absolute; .xpos_ab; color: #FFFFFF; top: -11px; } .bg__company { position: absolute; max-width: 1000000px; top: 0; left: 50%; transform: translateX(-50%); } .company { height: 811px; .container { position: relative; z-index: 10; } } .cr { position: absolute; } .cr1 { background: #0E1F34; width: 195px; height: 195px; top: -44px; left: -350px; border-radius: 50%; } .cr2 { width: 64px; height: 64px; right: -274px; top: -89px; background: #049AA4; border-radius: 50%; } .cr3 { border-radius: 50%; bottom: -156px; right: -300px; width: 116px; height: 116px; background: #049AA4; } .company { margin-bottom: 100px; .container { position: relative; } } /// form .form { h2 { margin-bottom: 45px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; text-align: center; color: #0E1F34; } textarea { width: 820px; border: 1px solid rgba(14, 31, 52, 0.1); border-radius: 16px; padding: 13px 28px; font-family: 'Gilroy'; font-style: normal; height: 88px; margin-top: 22px; margin-bottom: 35px; font-weight: 600; font-size: 14px; line-height: 24px; letter-spacing: 0.01em; color: rgba(14, 31, 52, 0.7); } .company__btn { width: 208px; height: 50px; margin-left: 0; } } .form-ul { display: flex; align-items: center; margin-bottom: 42px; justify-content: space-between; li { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; color: #0E1F34; position: relative; &::before { content: ""; position: absolute; width: 8px; height: 8px; top: 5px; left: -17px; border-radius: 50%; background: #049AA4; } } } .form__conteiner { display: flex; flex-direction: column; align-items: center; } .form__inp { input { width: 260px; height: 50px; border: 1px solid rgba(14, 31, 52, 0.1); border-radius: 16px; padding: 13px 28px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; margin-right: 20px; font-size: 14px; line-height: 24px; letter-spacing: 0.01em; color: rgba(14, 31, 52, 0.7); &:last-child { margin-right: 0; } } } .form__link { display: flex; margin-top: 22px; align-items: center; p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 26px; text-align: center; color: rgba(14, 31, 52, 0.8); a { color: #049AA4; } } } .form .container { position: relative; } .form__item { position: absolute; background: #049AA4; width: 700px; height: 700px; border-radius: 50%; left: -888px; top: 185px; } ///// reviews .rev__head { display: flex; align-items: center; justify-content: space-between; h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; color: #0E1F34; } span { position: relative; top: 33px; left: 51px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 160px; background-image: url(../imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; line-height: 160px; } } .cr1, .cr2, .cr3, .form__item, .form-kr1, .form-kr2, .rev__cr{ transition: all 3s linear; } .reviews { padding-bottom: 100px; padding-top: 100px; margin-top: 80px; height: 738px; position: relative; .container { position: relative; z-index: 10; } } .rev__bg { position: absolute; top: 0; max-width: 100000px; left: 50%; transform: translateX(-50%); } .rev__blocks { display: flex; justify-content: space-between; } .rev__img { border-radius: 20px; width: 392px; position: relative; height: 272px; img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; } } .rev__play { width: 108px; height: 108px; cursor: pointer; position: absolute; z-index: 10; .pos_absc; div { .pos_absc; border-radius: 50%; flex-shrink: 0; } } .rev--img--bg { position: absolute; top: 0; background: rgba(0, 0, 0, 0.2); border-radius: 20px; left: 0; right: 0; width: 100%; height: 100%; z-index: 5; } .r1 { border: 1px solid rgba(255, 255, 255, 0.8); width: 72px; height: 72px; } .r2 { border: 1px solid rgba(255, 255, 255, 0.4); width: 92px; height: 92px; } .r3 { border: 1px solid rgba(255, 255, 255, 0.2); width: 108px; height: 108px; } .rev__but-play { left: 59px !important; } .rev__block { width: 392px; h3 { margin-top: 20px; margin-bottom: 15px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 18px; color: #0E1F34; } } .rev__inform { display: flex; align-items: center; justify-content: space-between; span { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; text-align: right; color: #0E1F34; } } .rev__sity { display: flex; align-items: center; img { margin-right: 10px; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; color: #0E1F34; } } .rev__cr { position: absolute; right: -111px; top: 25px; width: 54px; height: 54px; background: #049AA4; border-radius: 50%; } ///// stat .stat { h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; text-align: center; margin-bottom: 45px; color: #0E1F34; } } .stat__blocks { display: flex; justify-content: space-between; } .stat__block { width: 400px; img { box-shadow: 0px 10px 50px rgba(44, 44, 44, 0.06), 0px 8px 28px rgba(29, 29, 29, 0.06); border-radius: 20px; width: 400px; height: 254px; margin-bottom: 35px; } h3 { margin-bottom: 15px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 24px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 20px; color: rgba(14, 31, 52, 0.8); } span { margin-top: 18px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; color: #0E1F34; } } .stat { margin-top: 85px; margin-bottom: 80px; } ////////// .scrol-top { position: fixed; width: 50px; height: 50px; border-radius: 50%; background: #049AA4; box-shadow: 0px 14px 29px rgba(135, 149, 170, 0.54); display: flex; align-items: center; right: 76px; cursor: pointer; justify-content: center; bottom: 70px; .transition; border: 1px solid #049AA4; svg { path { .transition; } } &:hover { border: 1px solid #049AA4; background-color: white; svg { path { fill: #049AA4; } } } } ////////// //// footer .footer__top { display: flex; padding: 28px 0px; background: rgba(14, 31, 52, 0.02); .container { display: flex; align-items: center; justify-content: space-between; } } .footer__sub { display: flex; align-items: center; } .footer__sub-name { margin-right: 40px; h2 { margin-bottom: 5px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 26px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 26px; color: #0E1F34; } } .footer__form { display: flex; align-items: center; input { width: 280px; height: 50px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 24px; letter-spacing: 0.01em; color: rgba(14, 31, 52, 0.7); border: 1px solid rgba(14, 31, 52, 0.4); border-radius: 16px; padding: 13px 28px; margin-right: 20px; } .company__btn { width: 238px; margin-left: 0; height: 50px; } } .footer__bot { .container { display: flex; align-items: center; } span { margin-top: 20px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 26px; color: #0E1F34; } } .foot-polit { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 26px; color: #049AA4; } .footer__social { h3 { margin-bottom: 20px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 22px; color: #0E1F34; } } .footer__socials { display: flex; align-items: center; } .footer__socials-block { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #049AA4; border: 1px solid #049AA4; cursor: pointer; .transition; margin-right: 20px; &:last-child { margin-right: 0; } svg { path { .transition; } } &:hover { svg { path { fill: #049AA4; } } background-color: #FFFFFF; border: 1px solid #049AA4; } } .foot__text { display: flex; flex-direction: column; } .footer__list { display: flex; align-items: flex-start; } .footer__list { width: 900px; display: flex; justify-content: space-between; } .footer__social { margin-right: 140px; } .footer__bot { padding-top: 42px; padding-bottom: 50px; } .footer__list-block { h3 { margin-bottom: 20px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 22px; color: #0E1F34; } li { margin-bottom: 10px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; .transition; font-size: 13px; line-height: 22px; color: rgba(14, 31, 52, 0.8); &:last-child { margin-bottom: 0; } } a { .transition; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 22px; color: rgba(14, 31, 52, 0.8); &:hover { color: #000000; } } } .scrol-top { z-index: 100; } .stat__block img { object-fit: cover; } /////// .dark { position: fixed; left: 0; top: 0; bottom: 0; right: 0; z-index: 10000; background: rgba(0, 0, 0, 0.75); display: block; } .modal { position: relative; width: 418px; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; background-color: white; padding: 38px } .modal1 { .pos_absc; position: fixed; z-index: 1000001; } .modal2 { .pos_absc; position: fixed; width: 100%; z-index: 1000001; background-image: url(../imgs/bg/modal-bg.png); background-repeat: no-repeat; top: 53px; .modal__contents { display: flex; padding-top: 23px; padding-bottom: 23px; flex-direction: column; align-items: center; span { margin-bottom: 6px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 32px; text-align: center; color: #FFFFFF; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 22px; text-align: center; color: #FFFFFF; } } } .burger-menu { padding: 30px; width: 300px; position: fixed; right: 0; z-index: 10001; top: 0; .transition(); transform: translateX(100%); &.active { transform: translateX(0%); } bottom: 0; background: white; color: rgba(14, 31, 52, 0.8); } /////////// .burger__wr { display: flex; align-items: center; justify-content: center; flex-direction: column; } .burger-menu__social { display: flex; align-items: center; margin-top: 20px; margin-bottom: 20px; } .burger__social--block { margin-right: 10px; cursor: pointer; svg { path { .transition; } } &:last-child { margin-right: 0; } &:hover { svg { path { fill: #049AA4; } } } } .burger__link { display: flex; flex-direction: column; align-items: center; a { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 24px; color: #0E1F34; .transition; &:last-child { margin-bottom: 0; } &:hover { color: #049AA4; } } } .burger__btn { margin-top: 15px; width: 162px; height: 44px; background: #0E1F34; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 12px; font-family: 'Gilroy'; font-style: normal; font-weight: 700; font-size: 13px; line-height: 22px; display: flex; align-items: center; justify-content: center; .transition; border: 1px solid #0E1F34; text-align: center; color: #FFFFFF; &:hover { background-color: white; color: #0E1F34; border: 1px solid #0E1F34; } } .owl-carousel { div { max-width: 100000px; } } .owl-item { opacity: 0; .transition(); &.active { opacity: 1; } } .owl-carousel .owl-stage-outer { overflow: visible !important; } .owl-prev { position: absolute; .pos_absc; width: 32px; height: 32px; background: #0E1F34 !important; display: flex; align-items: center; justify-content: center; border: 1px solid #0E1F34 !important; border-radius: 10px; z-index: 100 !important; .transition; left: -52px; svg { path { .transition; } } &:hover { border: 1px solid #0E1F34 !important; background-color: white !important; svg { path { fill: #0E1F34 !important; } } } } .stat { .owl-next { top: 131px !important; } .owl-prev { top: 131px !important; } } .chart { .owl-prev { background: #049AA4 !important; border: 1px solid #049AA4 !important; &:hover { background-color: #FFFFFF !important; svg { path { fill: #049AA4 !important; } } } } .owl-next { background: #049AA4 !important; border: 1px solid #049AA4 !important; &:hover { background-color: #FFFFFF !important; svg { path { fill: #049AA4 !important; } } } } } .owl-next { position: absolute; .pos_absc; width: 32px; height: 32px; background: #0E1F34 !important; display: flex; align-items: center; justify-content: center; border-radius: 10px; z-index: 100 !important; border: 1px solid #0E1F34; right: -85px; .transition; left: auto; svg { path { .transition; } } &:hover { border: 1px solid #0E1F34 !important; background-color: white !important; svg { path { fill: #0E1F34 !important; } } } } .owl-dots { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 42px; .owl-dot { background: rgba(4, 153, 164, 0.5) !important; width: 4px !important; height: 4px !important; border-radius: 50% !important; margin-right: 5px; &:last-child { margin-right: 0; } } } .owl-dot.active { background: #049AA4 !important; border-radius: 4px !important; width: 30px !important; height: 4px !important; } .spec__info-sale { span { color: #E42828; &::after { background-color: #E42828; } } } .spec__info-fail { span { color: rgba(14, 31, 52, 0.6); &::after { background-color: rgba(14, 31, 52, 0.6); } } } .company { height: 784px; padding-bottom: 0; margin-bottom: 50px; } //// chips .chips { h2 { margin-bottom: 70px; font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-size: 34px; line-height: 36px; color: #0E1F34; } .container { position: relative; } .company__btn { margin-left: 0; } } .chips__text-item { position: absolute; right: -287px; top: -10px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 72px; line-height: 81px; text-align: right; color: rgba(14, 31, 52, 0.06); } .chips__items { display: flex; justify-content: space-between; } .cinps__item { position: relative; z-index: 10; height: 110px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 18px; display: flex; flex-direction: column; justify-content: flex-end; color: #0E1F34; &:nth-child(2n) { justify-content: flex-start; } } .chips-line { position: absolute; } .chips__voln { position: relative; } .cinps__item:nth-child(1) { width: 280px; } .cinps__item:nth-child(2) { width: 295px; } .cinps__item:nth-child(3) { width: 290px; } .cinps__item:nth-child(4) { width: 285px; } .cinps__item:nth-child(5) { width: auto; } .cr3 { bottom: -92px; } .chips__info { margin-top: 80px; p { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 20px; line-height: 30px; width: 625px; color: rgba(14, 31, 52, 0.6); span { color: #0E1F34; } } } .chips__info { display: flex; align-items: center; justify-content: space-between; } .reviews { margin-top: 100px; } .form--new { display: flex; align-items: center; justify-content: space-between; width: 820px; p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; margin-right: 27px; line-height: 24px; letter-spacing: 0.01em; color: #0E1F34; } input { border: 1px solid rgba(14, 31, 52, 0.1); border-radius: 16px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; padding: 13px 28px; cursor: pointer; line-height: 24px; letter-spacing: 0.01em; color: rgba(14, 31, 52, 0.7); width: 260px; height: 50px; } .nice-select { border: 1px solid rgba(14, 31, 52, 0.1) !important; border-radius: 16px !important; font-family: 'Gilroy'; font-style: normal; font-weight: 600; padding: 13px 28px !important; cursor: pointer; line-height: 24px; letter-spacing: 0.01em; color: rgba(14, 31, 52, 0.7) !important; width: 260px !important; height: 50px !important; } } .form__inp { display: flex; align-items: center; justify-content: space-between; width: 820px; input { margin-right: 0; } } .form__inp { margin-bottom: 25px; } .form--new { margin-bottom: 30px; } .form { margin-top: 80px; .container { position: relative; } } .burger__btn { cursor: pointer; } .company { margin-bottom: 100px; } .cr3 { bottom: -160px; } .form__item { top: -415px; } .form-kr1 { position: absolute; right: -388px; top: -14px; background: #0E1F34; width: 195px; height: 195px; border-radius: 50%; } .form-kr2 { width: 116px; height: 116px; background: #049AA4; border-radius: 50%; bottom: 0; position: absolute; left: -343px; } .form__link p a { .transition; &:hover { color: #0E1F34; } } .foot-polit { .transition; &:hover { color: #0E1F34; } } .stat-line { bottom: -79px; position: absolute; } .stat { position: relative; } .company__blocks { align-items: flex-start; } .close { position: absolute; right: -78px; top: 0; } .modal1 { h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 24px; line-height: 32px; margin-bottom: 10px; color: #0E1F34; } .modal-text { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 22px; margin-bottom: 18px; color: rgba(14, 31, 52, 0.6); } input { height: 50px; width: 100%; border: 1px solid rgba(14, 31, 52, 0.1); border-radius: 16px; padding: 13px 30px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 13px; line-height: 24px; letter-spacing: 0.01em; color: rgba(14, 31, 52, 0.7); margin-bottom: 12px; &:last-child { margin-bottom: 0; } } button { background: #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 16px; height: 50px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; cursor: pointer; width: 100%; line-height: 22px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 20px; border: 1px solid #049AA4; color: #FFFFFF; .transition; &:hover { color: #049AA4; background-color: #FFFFFF; border: 1px solid #049AA4; } } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 20px; color: rgba(14, 31, 52, 0.8); a { color: #049AA4; .transition; &:hover { color: #0E1F34; } } } } .close { cursor: pointer; } .selectChanger { svg, img { .transition(); } } .selectChanger.active svg, .selectChanger.active img { transform: rotate(180deg); } .modal { display: none; } .selectChanger { position: relative; &-list { position: absolute; display: none; left: 0; overflow: hidden; top: 100%; text-align: center; border-radius: 10px; background: white; max-width: 10000px; padding: 2px 0; span { cursor: pointer; .transition(); &:hover { background: #f6f6f6; } display: block; margin: 0; color: #0E1F34; padding: 2px 15px; } border: 1px solid rgba(14, 31, 52, 0.02); } } .company__block p { font-size: 14px; } .company__btn:hover { background: #0E1F34 !important; border-color: transparent !important; color: white !important; } .header-btn:hover { background: #049AA4 !important; border-color: transparent !important; color: white !important; } .header { padding-top: 20px; padding-bottom: 20px; position: absolute; left: 0; right: 0; z-index: 50; .container { display: flex; align-items: center; justify-content: space-between; } } .buy__bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; right: 0; object-fit: cover; } .buy { padding-top: 158px; position: relative; height: 587px; .container { position: relative; z-index: 10; } h1 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 42px; line-height: 130%; text-align: center; color: #FFFFFF; margin-bottom: 18px; } } .buy-head { background: rgba(14, 31, 52, 0.4); } .buy__items { display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(3px); flex-direction: column; border-radius: 20px; padding: 30px; } .buy__names { display: flex; align-items: center; } .buy-name { margin-right: 30px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 22px; cursor: pointer; .transition; color: rgba(255, 255, 255, 0.6); &:last-child { margin-right: 0; } &:hover, &.active { color: #FFFFFF; } } .diplomas__block { display: block; } .info-content { display: none; } .header__logo { &:nth-child(1) { display: block; } &:nth-child(3) { display: none; } } .header { .transition(); } .header-fixed { position: fixed !important; .header__logo { &:nth-child(1) { display: none; } &:nth-child(3) { display: block; } } } .header-white { .header-fixed; } .object__imgs .owl-carousel { width: 648px !important; .owl-item { .spec__info-stat, .spec__heart { opacity: 0; .transition() } &.active { .spec__info-stat, .spec__heart { opacity: 1; .transition() } } opacity: 1 !important; } } .object__imgs { border-radius: 20px; overflow: hidden; } .buy__line { width: 760px; height: 1px; background-color: rgba(255, 255, 255, 0.2); margin: 23px 0px; position: relative; } .buy-name.active { position: relative; &::after { content: ""; position: absolute; background: #FFFFFF; width: 120%; max-width: 120%; bottom: -23px; .xpos_ab; height: 4px; border-radius: 10px 10px 0px 0px; } } .buy__names .active { color: #FFFFFF !important; } .buy__navs { display: flex; align-items: center; } .buy__nav { border: 1px solid #FFFFFF; border-radius: 20px; cursor: pointer; padding: 3px 18px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 18px; text-align: center; color: #FFFFFF; margin-right: 12px; .transition; &:last-child { margin-right: 0; } &:hover, &.active { background-color: #ffffff2e; } } .product__block { display: flex; align-items: center; justify-content: space-between; } .product__imgs { width: 612px; } .product-blocks--text { width: 581px; } .product__imgs { display: flex; } .product__blocks-img { width: 136px; display: flex; flex-direction: column; margin-right: 12px; a { margin-bottom: 12px; &:last-child { margin-bottom: 0; } } img { height: 94px; object-fit: cover; cursor: pointer; border-radius: 12px; } } .product-gl--img { position: relative; width: 464px; height: 306px; border-radius: 12px; s img { width: 100%; height: 100%; cursor: pointer; object-fit: cover; } .spec__img-info { top: 12px; } } .product__block { background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; padding: 22px; } .product-blocks--text { h2 { margin-bottom: 15px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 24px; line-height: 22px; letter-spacing: 0.02em; color: #0E1F34; } } .product__map { display: flex; align-items: center; img { margin-right: 8px; } span { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 16px; color: rgba(14, 31, 52, 0.8); } } .product__info--item { display: flex; margin-top: 22px; align-items: center; } .product__item-icons { display: flex; align-items: center; margin-right: 25px; &:last-child { margin-right: 25px; } span { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 18px; color: #0E1F34; } } .prod-ict { background: rgba(14, 31, 52, 0.04); backdrop-filter: blur(5px); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-right: 10px; } .product__block-text { margin-top: 15px; margin-bottom: 15px; p { width: 100%; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 20px; letter-spacing: 0.02em; color: rgba(14, 31, 52, 0.6); } } .product__block-link { font-family: 'Cera Pro'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; .transition; color: #049AA4; &:hover { color: #0E1F34; } } .products__head { margin-bottom: 40px; display: flex; align-items: center; div { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; color: #FFFFFF; } } .product-sorting { color: #049AA4 !important; cursor: pointer; .transition; &:hover { color: #0E1F34; } } .product__block { margin-bottom: 30px; &:last-child { margin-bottom: 0; } } .products { position: relative; margin-top: -165px; } .products__sub { display: flex; align-items: center; position: relative; border-radius: 20px; width: 100%; margin: 32px 0px; height: 138px; padding: 40px 48px; } .bg-form { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; right: 0; } .prod__wr { position: relative; z-index: 5; display: flex; align-items: center; } .prod-sub__info { display: flex; width: 322px; flex-direction: column; h2 { margin-bottom: 5px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 26px; color: #FFFFFF; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; width: 100%; line-height: 26px; color: #FFFFFF; } } .prod-form { display: flex; align-items: center; margin-left: 30px; input { width: 260px; height: 50px; border: 1.2px solid #FFFFFF; border-radius: 12px; padding: 13px 28px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 24px; letter-spacing: 0.01em; margin-right: 20px; color: #FFFFFF; &::placeholder { color: #FFFFFF; } } button { background: #FFFFFF; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 14px; width: 210px; height: 50px; cursor: pointer; .transition; font-family: 'Cera Pro'; font-style: normal; font-weight: 500; font-size: 15px; line-height: 22px; text-align: center; color: #049AA4; &:hover { color: #FFFFFF; background-color: #049AA4; } } } .prod-phoen { position: absolute; .xpos_ab; left: auto; right: -136px; } .product__navigat { display: flex; align-items: center; margin-top: 32px; margin-bottom: 42px; justify-content: center; } .prod__nav--item { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background-color: transparent; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; text-align: center; color: #049AA4; margin-right: 5px; .transition; cursor: pointer; svg { path { .transition; } } &:hover { color: #FFFFFF; background-color: #049AA4; svg { path { fill: #FFFFFF; } } } } .product__sub2 { border-radius: 20px; display: flex; margin-bottom: 80px; align-items: center; } .product__sub2--text { width: 790px; background: #0E1F34; border-radius: 20px 0px 0px 20px; padding: 42px 48px; height: 100%; h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 26px; color: #FFFFFF; } p { margin-top: 5px; margin-bottom: 15px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 26px; color: #FFFFFF; } a { background: #FFFFFF; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 16px; width: 224px; height: 50px; display: flex; align-items: center; justify-content: center; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; text-align: center; color: #0E1F34; cursor: pointer; .transition; &:hover { color: #FFFFFF; background-color: #049AA4; } } } .burger__wr{ ul{ text-align: center; margin-bottom: 20px; } li{ margin-bottom: 10px; } } .product2__img { height: 100%; width: 790px; position: relative; .prod2-bg { height: 100%; width: 100%; object-fit: cover; border-radius: 0px 20px 20px 0px; } } .prod-bg-line { position: absolute; z-index: 3; top: 0; left: 0; right: 0; height: 100%; width: 100%; background: linear-gradient(90.15deg, #0E1F34 0.14%, rgba(14, 31, 52, 0.770205) 42.76%, rgba(14, 31, 52, 0) 88.95%), url(aerial-panoramic-view-cancun-beach-city-hotel-zone-mexico-caribbean-coast-landscape.jpg), rgba(0, 0, 0, 0.02); } .pr-phon1 { position: absolute; z-index: 10; right: 35px; top: 42px; } .pr-phon2 { position: absolute; z-index: 5; top: 60px; right: 80px; } .prod__wr { position: relative; z-index: 5; height: 204px; } .prod-line { position: absolute; right: -275px; max-width: 100000px; bottom: -78px; } .products .container { position: relative; } .prod-cr1 { background: #049AA4; width: 116px; height: 116px; border-radius: 50%; position: absolute; top: 548px; right: -345px; } .product-gl--img img, .product-gl--img a{ border-radius: 10px; } .prod-cr2 { background: #049AA4; width: 300px; height: 300px; position: absolute; top: 1191px; left: -489px; border-radius: 50%; } .info-content{ margin-top: 10px;font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 24px; color: rgba(14, 31, 52, 0.7); } .product__block { position: relative; z-index: 10; } .prod-cr3 { position: absolute; top: 1413px; right: -416px; width: 200px; height: 200px; background: #0E1F34; border-radius: 50%; } .prod-cr4 { width: 200px; height: 200px; background: #0E1F34; border-radius: 50%; bottom: 673px; position: absolute; left: -432px; } .prod-cr5 { width: 300px; position: absolute; bottom: 699px; right: -521px; height: 300px; background: #049AA4; border-radius: 50%; } .product-sorting { margin-left: 10px; } .bg-form { border-radius: 20px; } .header-white { background-color: #FFFFFF; padding-top: 20px; padding-bottom: 20px; box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.06); .container { display: flex; align-items: center; justify-content: space-between; } .header__social-block { svg { cursor: pointer; } } .header-link { color: #0E1F34; } .header-link2 { color: #0E1F34; } .header__lang span { color: #0E1F34; cursor: pointer; } .header__burger { div { background-color: #0E1F34; } } .header__burger:hover { div { background-color: #049AA4; } } .header-btn { cursor: pointer; .transition; &:hover { background-color: #049AA4; color: #FFFFFF; } } } .header-white .header-link { .transition; &:hover { color: #049AA4; } } .header-white .header-link2 { .transition; &:hover { color: #049AA4; } } .header__social-block:hover { svg { path { fill: #049AA4; } } } .header__lang:hover { span { color: #049AA4; } svg { path { stroke: #049AA4; } } } .navigator { margin-top: 32px; margin-bottom: 30px; .container { display: flex; align-items: center; } a { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 22px; color: rgba(48, 48, 48, 0.6); .transition; &:hover { color: #049AA4; } } .active { color: #049AA4; } } .navigator-item { margin: 0px 10px; } .object__info { width: 964px; } .object__imgs img { position: relative; width: 648px; height: 416px; border-radius: 20px; object-fit: cover; } .object__imgs { display: flex; align-items: center; justify-content: center; } .object-img { position: relative; } .spec__img-info { z-index: 10; } .objects__wrap { margin-top: 40px; } .object__info { width: 964px; h2,h1 { margin-bottom: 32px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; color: #303030; } } .object__prew-block { display: flex; margin-bottom: 32px; img { margin-bottom: 15px; width: 50px; height: 50px; } h3 { margin-bottom: 5px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 18px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 16px; letter-spacing: 0.02em; color: rgba(14, 31, 52, 0.6); } } .object__prew { max-width: 160px; margin-right: 34px; } .object__text { background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; padding: 20px 35px 55px 35px; p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 24px; margin-bottom: 31px; &:last-child { margin-bottom: 0; } color: #0E1F34; span { font-weight: 600; } } } .object-list { position: relative; left: 32px; margin-top: 52px; h3 { margin-bottom: 25px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; color: #0E1F34; } } .object-list__wr { display: flex; ul { width: 370px; margin-right: 90px; li { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 16px; line-height: 22px; position: relative; color: #303030; margin-bottom: 15px; padding-left: 25px; &:last-child { margin-bottom: 0; } &::after { position: absolute; content: ""; width: 10px; height: 2px; background-color: #049AA4; top: 11px; left: 0; } } } } .object-auction { background: rgba(4, 153, 164, 0.103); border-radius: 20px; margin: 52px 0px; padding: 32px 32px 32px 51px; h3 { margin-bottom: 20px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; position: relative; margin-bottom: 5px; &:last-child { margin-bottom: 0; } &::after { position: absolute; content: ""; background: #049AA4; width: 6px; height: 6px; top: 9px; left: -18px; border-radius: 50%; } } } .object-map { position: relative; } .object-map__info { position: absolute; background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 14px; width: 153px; height: 118px; padding: 22px 24px; left: 25px; bottom: 25px; } .object-items { display: flex; align-items: center; margin-bottom: 10px; &:last-child { margin-bottom: 0; } span { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 18px; color: #0E1F34; } div { background: #049AA4; width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; } } .object-items:nth-child(2) { div { background: rgba(87, 99, 115, 0.6); } } .object-items:nth-child(3) { div { background: #0E1F34; } } .object__form { background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; width: 290px; padding: 32px 25px; input { width: 238px; height: 50px; padding: 13px 28px; font-family: 'Gilroy'; border: 1px solid rgba(14, 31, 52, 0.1); border-radius: 16px; font-style: normal; font-weight: 600; font-size: 13px; line-height: 24px; letter-spacing: 0.01em; color: rgba(14, 31, 52, 0.7); margin-bottom: 12px; &:last-child { margin-bottom: 0; } } p { margin-top: 20px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 20px; text-align: center; color: rgba(14, 31, 52, 0.8); a { color: #049AA4; .transition; &:hover { color: #0E1F34; } } } } .objects__wrap { display: flex; justify-content: space-between; align-items: flex-start; } .spec__s { margin-top: 12px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 16px; color: rgba(14, 31, 52, 0.7); margin-bottom: 18px; } .obj-btn1 { background: #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 16px; height: 50px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; text-align: center; color: #FFFFFF; width: 238px; border: 1px solid #049AA4; .transition; margin-bottom: 15px; &:hover { color: #049AA4; background-color: transparent; border: 1px solid #049AA4; } } .obj-btn2 { width: 238px; border: 1px solid #049AA4; border-radius: 16px; height: 50px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; text-align: center; color: #FFFFFF; text-align: center; .transition; color: #049AA4; &:hover { color: #ffffff; background-color: #049AA4; border: 1px solid #049AA4; } } .special2 { margin-bottom: 80px; } .navigator { .container { position: relative; } } .nav-head { position: absolute; transform: rotate(-90deg); top: 189px; right: -332px; span { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 60px; line-height: 100px; background-image: url(../imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; } } .navigator-item1 { position: absolute; width: 64px; height: 64px; background: #049AA4; border-radius: 50%; right: -214px; top: -62px; z-index: 6; } .header-white { position: absolute; top: 0; left: 0; z-index: 10; right: 0; width: 100%; } .navigator { margin-top: 120px; } .obj-items1 { position: absolute; top: 59px; right: 0; z-index: 5; } .obj-items2 { position: absolute; width: 195px; height: 195px; background: #0E1F34; border-radius: 50%; left: -416px; top: 190px } .obj-items3 { position: absolute; top: 652px; max-width: 10000px; left: 0; } .object__imgs { position: relative; z-index: 10; } .objects__wrap { position: relative; z-index: 10; } .obj-items4 { border-radius: 50%; width: 700px; background: #049AA4; height: 700px; position: absolute; top: 1297px; left: -617px; } .obj-items5 { width: 116px; height: 116px; background: #049AA4; border-radius: 50%; right: -59px; top: 1117px; position: absolute; } .object-auction p::after { left: 2px; } .object-auction p { padding-left: 20px; } .object-auction { padding: 32px 32px 32px 32px; } .objects .container { position: relative; } .obj-items3 { .xpos_ab; } .obj-items4 { left: -917px; } .obj-items5 { right: -329px; } .obj-items1 { position: absolute; top: -113px; right: -255px; z-index: 5; } .sale { margin-top: 145px; h1 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 42px; line-height: 130%; margin-bottom: 45px; color: #353535; } } .sale__blocks { display: flex; flex-wrap: wrap; justify-content: space-between; } .sale__block { background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; width: 620px; padding: 32px; margin-bottom: 30px; p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 24px; color: rgba(14, 31, 52, 0.7); } } .sale__block2 { background: rgba(4, 153, 164, 0.116); } .sale__head { display: flex; align-items: center; margin-bottom: 20px; h2 { margin-left: 18px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; color: #0E1F34; } } .job-bg { position: absolute; right: 0; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; } .job { height: 660px; margin-top: 50px; position: relative; .container { padding-top: 100px; padding-bottom: 150px; position: relative; z-index: 5; } h2 { margin-bottom: 40px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 42px; line-height: 130%; color: #FFFFFF; } } .job__blocks { display: flex; justify-content: space-between; } .job__block { padding: 32px 22px 42px 22px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(3px); width: 290px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; h3 { margin-top: 18px; margin-bottom: 18px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 18px; text-align: center; color: #FFFFFF; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 13px; line-height: 20px; text-align: center; letter-spacing: 0.02em; color: #FFFFFF; } } .job__form { margin-bottom: 60px; margin-top: -86px; position: relative; z-index: 10; .container { display: flex; align-items: center; background: #049AA4; border-radius: 20px; padding: 43px 48px; } h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 26px; width: 142px; color: #FFFFFF; } input { width: 240px; border: 1.2px solid rgba(255, 255, 255, 0.8); border-radius: 12px; padding: 13px 28px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 24px; letter-spacing: 0.01em; color: rgba(255, 255, 255, 0.7); &::placeholder { color: rgba(255, 255, 255, 0.7); } } button { background: #FFFFFF; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 14px; cursor: pointer; padding: 15px 47px; font-family: 'Cera Pro'; font-style: normal; font-weight: 500; font-size: 15px; line-height: 22px; text-align: center; color: #049AA4; .transition; &:hover { color: #FFFFFF; background-color: #0E1F34; } } } .job__form-wr { width: 1005px; margin-left: 40px; display: flex; align-items: center; button { margin-left: 20px; } } .job__inp { display: flex; align-items: center; input { margin-right: 20px; &:last-child { margin-right: 0; } } } .sale-item1 { width: 64px; height: 64px; background: #049AA4; border-radius: 50%; position: absolute; right: -210px; top: -82px; z-index: 5; } .sale .container { position: relative; } .sale-item2 { position: absolute; top: -91px; right: -336px; } .sale-item3 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 130px; line-height: 100px; position: absolute; background-image: url(../imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; top: 123px; right: -272px; transform: rotate(-90deg); } .sale-item4 { position: absolute; bottom: -143px; left: -309px; } .job { .container { position: relative; } } .sale-item5 { position: absolute; bottom: -116px; right: -285px; } .job__form-wr { display: flex; align-items: center; } .article { .container { position: relative; } } .article__info { width: 900px; } .article__themes { width: 328px; } .article__prew { height: 400px; width: 100%; border-radius: 20px; box-shadow: 0px 10px 50px rgba(44, 44, 44, 0.06), 0px 8px 28px rgba(29, 29, 29, 0.06); position: relative; .article-prew--img { position: relative; top: 0; left: 0; right: 0; width: 100%; height: 100%; border-radius: 20px; object-fit: cover; } } .article-prew__text { position: absolute; z-index: 10; bottom: 0; width: 100%; padding-bottom: 42px; padding-left: 30px; padding-right: 30px; .art-it { font-family: 'Gilroy'; font-style: normal; font-weight: 600; width: 86px; font-size: 13px; line-height: 18px; color: #FFFFFF; background: #049AA4; padding: 5px 17px; border-radius: 5px 15px 5px 15px; } } .article-shadow { position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; border-radius: 20px; background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); z-index: 5; } .article-prew__head { display: flex; margin-top: 20px; width: 100%; align-items: flex-end; justify-content: space-between; h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; color: #FFFFFF !important; } span { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 18px; text-align: right; color: #FFFFFF; } } .article__text { padding-left: 30px; margin-top: 32px; margin-bottom: 45px; p { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; margin-bottom: 30px; color: rgba(48, 48, 48, 0.8); position: relative; &:last-child { margin-bottom: 0; } &:nth-child(2)::after { background: #049AA4; width: 4px; height: 70px; position: absolute; content: ""; .ypos_ab; left: -29px; border-radius: 0px 15px 15px 0px; } } } .article { .sale-item2 { top: -119px; } } .article__text2 { background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; padding: 38px 32px; margin-bottom: 40px; p { margin-bottom: 30px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 22px; color: #303030; &:last-child { margin-bottom: 0; } span { font-weight: 600; } } } .article-home { h2 { margin-bottom: 20px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; color: #303030; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 22px; margin-bottom: 30px; color: rgba(48, 48, 48, 0.8); } } .article-home { &:last-child { margin-bottom: 0; } ul{ margin-bottom: 25px; } h3 { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 22px; color: rgba(48, 48, 48, 0.8); margin-bottom: 8px; } li { margin-bottom: 5px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; padding-left: 15px; line-height: 22px; position: relative; color: rgba(48, 48, 48, 0.8); &:last-child { margin-bottom: 0; } &::after { content: ""; position: absolute; background: #049AA4; width: 4px; height: 4px; border-radius: 50%; .ypos_ab; left: 0; } } } .article__meta { margin-top: 42px; margin-bottom: 42px; border-radius: 20px; border: 1px solid #049AA4; padding: 32px; width: 100%; p { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; color: rgba(48, 48, 48, 0.8); } } .art__img { height: 456px; width: 100%; margin-bottom: 32px; img { width: 100%; height: 100%; object-fit: cover; } } .article__inform { background: rgba(4, 153, 164, 0.11); border-radius: 20px; padding: 32px; margin-bottom: 32px; h2 { margin-bottom: 20px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; color: #303030; } li { margin-bottom: 5px; font-family: 'Gilroy'; padding-left: 15px; font-style: normal; font-weight: 400; font-size: 14px; line-height: 22px; color: rgba(48, 48, 48, 0.8); position: relative; &::after { position: absolute; content: ""; background: #049AA4; width: 4px; height: 4px; border-radius: 50%; top: 8px; left: 0; } } } .article__p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 22px; color: rgba(48, 48, 48, 0.8); } .art__img2 { margin-top: 42px; position: relative; } .art__shadow { position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; border-radius: 20px; background: linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)); } .article__info { h1 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; margin-bottom: 20px; color: #303030; } } .article__why { p { margin-bottom: 18px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 22px; color: rgba(48, 48, 48, 0.8); &:last-child { margin-bottom: 0; } } blockquote { position: relative; border: 1px solid #049AA4; border-radius: 20px; width: 100%; margin-top: 61px; margin-bottom: 30px; padding: 35px 32px; p { font-family: 'Gilroy'; font-style: italic; font-weight: 600; font-size: 15px; line-height: 22px; color: #049AA4; } &::after { position: absolute; top: -27px; content: ""; width: 50px; height: 50px; background: #049AA4; border-radius: 50%; background-image: url(../imgs/icons/quote.svg); background-repeat: no-repeat; background-position: center; } } } .page-template-page-blog{ overflow: hidden; } .article__content{ z-index: 6!important; } .ya-share2{ z-index: 43; position: relative; *{ max-width: 100000px; } } a{color: inherit} .article__num { margin-top: 32px; margin-bottom: 32px; background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; padding: 32px; li { position: relative; margin-bottom: 5px; padding-left: 21px; &:last-child { margin-bottom: 0; } } ol { margin-bottom: 20px; position: relative; counter-reset: num; li { &::after { position: absolute; content: counter(num) '.'; counter-increment: num; display: inline-block; left: 0; color: #049AA4; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 22px; } } } ul { position: relative; li::after { content: ""; position: absolute; background-color: #049AA4; height: 2px; width: 8px; left: 0; top: 8px; } } } .article-line { display: flex; margin-top: 50px; justify-content: space-between; align-items: center; } .aricle__share { cursor: pointer; display: flex; align-items: center; .transition; span { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 22px; color: #049AA4; .transition; } svg { margin-left: 15px; path { .transition; } } &:hover { span { color: #0E1F34; } svg { path { fill: #0E1F34; } } } } .article__soc { display: flex; align-items: center; span { margin-right: 25px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 22px; color: #303030; } } .article__socials { display: flex; align-items: center; } .article__social-block { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; background: #049AA4; margin-right: 20px; .transition; svg { path { .transition; } } &:last-child { margin-right: 0; } &:hover { background-color: #0E1F34; } } .article__content { display: flex; justify-content: space-between; } .article__themes { width: 328px; } .article-thems--head { display: flex; margin-bottom: 20px; align-items: center; h2 { margin-right: 12px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 22px; color: #303030; } span { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 13px; line-height: 18px; padding: 5px 17px; text-align: center; color: #FFFFFF; background: #049AA4; border-radius: 5px 15px 5px 15px; } } .article-thems__block { img { border-radius: 20px; width: 100%; height: 240px; object-fit: cover; } h3 { margin-top: 20px; margin-bottom: 15px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 24px; color: #303030; } p { margin-top: 12px; margin-bottom: 14px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 20px; color: rgba(48, 48, 48, 0.8); } span { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; text-align: right; color: #232220; } } .article-thems__block { margin-bottom: 30px; &:last-child { margin-bottom: 0; } } .aticle-themes__btn { cursor: pointer; display: flex; align-items: center; justify-content: center; width: 296px; height: 50px; border: 1px solid #049AA4; border-radius: 14px; font-family: 'Cera Pro'; font-style: normal; font-weight: 500; font-size: 15px; line-height: 22px; text-align: center; color: #049AA4; margin-top: 32px; .transition; &:hover { color: #ffffff; background-color: #049AA4; } } .article__content { position: relative; z-index: 5; } .products__sub { position: relative; z-index: 5; } .article-kr1 { background: #0E1F34; width: 195px; height: 195px; border-radius: 50%; left: -407px; top: 105px; position: absolute; } .article .container { position: relative; } .article-kr2 { width: 300px; height: 300px; background: #049AA4; border-radius: 50%; position: absolute; left: -512px; top: 1030px; } .article-kr3 { border-radius: 50%; position: absolute; left: -394px; top: 1909px; background: #0E1F34; width: 200px; height: 200px; } .article-kr4 { background: #049AA4; width: 116px; height: 116px; right: -338px; top: 889px; position: absolute; border-radius: 50%; } .art__img img { border-radius: 20px; } .company2 { min-height: 610px; padding-bottom: 60px; position: relative; .container { position: relative; display: flex; align-items: flex-end; padding-top: 257px; } } .bg-company { position: absolute; top: 0; left: 0; right: 0; object-fit: cover; width: 100%; height: 100%; } .company2__info { width: 453px; h1 { margin-bottom: 30px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; color: #FFFFFF; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; color: #FFFFFF; } } .company2__head { position: absolute; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 134px; line-height: 100px; right: -146px; color: #FFFFFF; } .comp2__cr { position: absolute; width: 402px; height: 402px; z-index: 10; top: 0; left: 0; border-radius: 50%; background: #0E1F34; top: -38px; left: -516px; } .header-white { z-index: 50; } .comp2__cr2 { position: absolute; border-radius: 50%; right: -306px; top: -79px; background: #049AA4; width: 300px; height: 300px; } .comp__cr3 { position: absolute; width: 116px; height: 116px; border-radius: 50%; background: #049AA4; right: -353px; bottom: 48px; } .compan-line { top: 53px; position: absolute; right: -344px; z-index: 10; } .we-team { margin-top: 80px; margin-bottom: 80px; h2 { margin-bottom: 45px; font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-size: 34px; line-height: 36px; color: #0E1F34; } .container { position: relative; } } .we-team__blocks { display: flex; align-items: center; } .we-team__block { width: 296px; img { border-radius: 0px 150px 150px 150px; margin-bottom: 25px; } h3 { margin-bottom: 5px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 18px; line-height: 22px; text-align: center; letter-spacing: 0.02em; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 16px; text-align: center; letter-spacing: 0.02em; color: rgba(14, 31, 52, 0.8); } } .we-team-text { position: absolute; background-image: url(../imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 80px; line-height: 100px; top: 182px; right: -390px; transform: rotate(-90deg); } .features { position: relative; height: 660px; .container { position: relative; z-index: 10; padding-top: 100px; } h2 { margin-bottom: 105px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 40px; color: #FFFFFF; } } .features__bg { position: absolute; top: 0; right: 0; width: 1920px; height: 100%; object-fit: cover; left: 50%; transform: translateX(-50%); max-width: 100000px; } .features__blocks { display: flex; justify-content: space-between; } .features__block { max-width: 475px; margin-right: 120px; p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 20px; letter-spacing: 0.02em; margin-top: 30px; color: #FFFFFF; } } .features__block { max-width: 474px; &:last-child { margin-bottom: 0; } } .features__block:nth-last-child(2) { margin-right: 55px; } .features__head { position: relative; h3 { font-family: 'Days One'; font-style: normal; min-height: 60px; font-weight: 400; font-size: 24px; line-height: 30px; color: #FFFFFF; z-index: 10; position: relative; } img { position: absolute; top: -26px; left: -30px; } } .diplomas__blocks { display: flex; align-items: center; } .diplomas__block { width: 200px; height: 294px; position: relative; img { border-radius: 6px; width: 100%; height: 100%; object-fit: cover; } h3 { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 18px; display: flex; align-items: center; text-align: center; color: #FFFFFF; position: absolute; z-index: 10; .xpos_ab; bottom: 12px; } } .dip__shadow { width: 100%; height: 100%; position: absolute; top: 0; left: 0; right: 0; background: linear-gradient(359.57deg, #0E1F34 0.39%, rgba(255, 255, 255, 0) 61.64%); border-radius: 6px; } .diplom-bg { position: absolute; top: 0; left: 0; right: 0; height: 100%; width: 100%; } .diplomas { height: 685px; position: relative; margin-top: -150px; .container { padding-top: 110px; padding-bottom: 150px; z-index: 10; position: relative; } } .dip-item { position: absolute; background: #049AA4; border-radius: 50%; width: 54px; height: 54px; right: -98px; top: 138px; } .tour { margin-top: 80px; h2 { margin-bottom: 25px; font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-size: 34px; line-height: 36px; color: #0E1F34; } p { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 20px; line-height: 30px; color: rgba(14, 31, 52, 0.6); } } .tour__blocks { display: flex; justify-content: space-between; } .tour-line { margin-top: 70px; margin-bottom: 45px; } .tour__block { width: 298px; h3 { margin-bottom: 12px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 18px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 20px; letter-spacing: 0.02em; color: rgba(14, 31, 52, 0.6); } } .tour__form { width: 100%; height: 150px; border-radius: 20px; } .tour__bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; right: 0; object-fit: cover; border-radius: 20px; } .tour-form__wr { padding: 36px 48px; display: flex; align-items: center; position: relative; z-index: 5; justify-content: space-between; h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 26px; width: 241px; color: #FFFFFF; } } .tour__form-info { display: flex; button { background: #FFFFFF; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 14px; width: 160px; height: 50px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-family: 'Cera Pro'; font-style: normal; font-weight: 500; font-size: 15px; line-height: 22px; text-align: center; color: #049AA4; margin-left: 20px; .transition; &:hover { background-color: #0E1F34; color: #FFFFFF; } } } .tour__input-block { display: flex; flex-direction: column; margin-right: 0; p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 26px; text-align: end; margin-top: 10px; position: relative; right: 75px; color: #FFFFFF; a { font-weight: 700; color: #FFFFFF; .transition; &:hover { color: #0E1F34; } } } } .tour__form { margin-top: 80px; } .tour--input { display: flex; align-items: center; input { margin-right: 20px; border: 1.2px solid #FFFFFF; border-radius: 12px; height: 50px; padding: 13px 28px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 24px; letter-spacing: 0.01em; color: #FFFFFF; width: 236px; &:last-child { margin-right: 0; } &::placeholder { color: #ffffff; } } } .tour__form { position: relative; } .tour_item1 { width: 700px; height: 700px; background: #049AA4; border-radius: 50%; position: absolute; right: -909px; top: -471px; z-index: 10; } .tour .container { position: relative; } .company3 { .company__p { position: relative; left: -349px; } } .reviews2 { margin-bottom: 80px; padding-top: 0; margin-top: 39px; padding-bottom: 0; height: auto; } .company3 { margin-bottom: 0; .bg__company { height: 100%; } .container { padding-bottom: 80px; } } .tour2 { height: 554px; position: relative; h1 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 80px; line-height: 80px; margin-bottom: 30px; color: #FFFFFF; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 24px; line-height: 22px; color: #FFFFFF; } .container { display: flex; flex-direction: column; position: relative; padding-top: 156px; } .comp__cr3 { bottom: -110px; } } .bg-tor2 { position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; object-fit: cover; } .tour2__form .container { border-radius: 20px; background: #0E1F34; button { color: #0E1F34; &:hover { background-color: #049AA4; color: #ffffff; } } .tour__input-block p { position: absolute; bottom: -37px; right: auto; margin-top: 0; a { &:hover { color: #049AA4; } } } .tour__input-block { position: relative; } } .tour2__form { margin-top: -75px; } .chips2 { margin-top: 80px; .chips__voln { margin-top: 60px; } } .advantages { margin-top: 100px; } .advantages__blocks { display: flex; flex-direction: column; } .advantages__block { display: flex; align-items: center; margin-bottom: 50px; justify-content: space-between; &:last-child { margin-bottom: 0; } .container { display: flex; align-items: center; justify-content: space-between; } } .advantages__block2 { background: rgba(14, 31, 52, 0.02); padding-top: 60px; padding-bottom: 60px; } .advantages__text { width: 600px; h2 { margin-bottom: 25px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 24px; color: #0E1F34; } } .advantages__img { width: 615px; height: 425px; img { border-radius: 20px; height: 100%; width: 100%; object-fit: cover; } } .advantages__block-row .container { flex-direction: row-reverse; p { margin-bottom: 20px; &:last-child { margin-bottom: 0; } } } .advantages { margin-bottom: 80px; } .adv-item1 { width: 195px; height: 195px; background: #0E1F34; position: absolute; border-radius: 50%; left: -314px; } .advantages__block { .container { position: relative; } } .adv-item2 { width: 64px; height: 64px; background: #049AA4; border-radius: 50%; right: 0; position: absolute; right: -289px; } .info3 { position: relative; .container { padding-top: 67px; padding-bottom: 67px; position: relative; display: flex; align-items: center; justify-content: center; z-index: 10; } } .info3__bg { position: absolute; top: 0; left: 0; right: 0; width: 100%; height: auto; } .info3__block { width: 840px; padding: 32px; background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 20px; margin-bottom: 25px; &:last-child { margin-bottom: 0; } } .info3__block { cursor: pointer; } .info__top { .transition; svg { .transition; path { .transition; } } } .info3__arr { .transition; } .info__top.active { svg { transform: rotate(180deg); } } .info3__text { width: 684px; h2 { margin-bottom: 18px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; color: #0E1F34; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 24px; color: rgba(14, 31, 52, 0.7); } } .info__top { display: flex; align-items: center; justify-content: space-between; } .info3__arr { cursor: pointer; } .info3__text-item { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 160px; line-height: 160px; text-align: right; transform: rotate(-90deg); background-image: url(../imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; position: absolute; bottom: 171px; right: -159px; } .form-adv { margin-bottom: 100px; } .blog-search { margin-top: 160px; h1 { margin-bottom: 40px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 42px; line-height: 130%; color: #353535; } } .blog-search-item { display: flex; align-items: center; input { width: 280px; padding: 13px 28px; border: 1.2px solid rgba(48, 48, 48, 0.4); border-radius: 12px; font-family: 'Gilroy'; margin-right: 15px; font-style: normal; font-weight: 600; font-size: 14px; line-height: 24px; letter-spacing: 0.01em; color: rgba(48, 48, 48, 0.7); &::placeholder { color: rgba(48, 48, 48, 0.7); } } button { display: flex; align-items: center; justify-content: center; background: #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 14px; height: 54px; .transition; cursor: pointer; width: 54px; &:hover { background-color: #0E1F34; } } } .blog-serch__result { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; } .blog__left { display: flex; align-items: center; } .blog__search-num { font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; color: #303030; margin-right: 10px; } .blog__serch-popular { cursor: pointer; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; .transition; color: #049AA4; &:hover { color: #0E1F34; } } .blog__tegs { display: flex; align-items: center; } .blog__teg2 { background-color: #FFA800; padding: 5px 15px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 13px; line-height: 18px; cursor: pointer; text-align: center; color: #FFFFFF; border-radius: 5px 15px 5px 15px; } .blog__teg { margin-right: 12px; background: #049AA4 !important; padding: 5px 15px; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 13px; line-height: 18px; cursor: pointer; text-align: center; color: #FFFFFF; border-radius: 5px 15px 5px 15px; .transition; &:hover { background-color: #0E1F34; } svg { margin-left: 10px; } } .blog-search .container { position: relative; } .blog { margin-top: 25px; margin-bottom: 80px; } .blog__blocks1 { width: 328px; } .blog__blocks2 { width: 568px; img { height: 400px !important; width: 100%; object-fit: cover; margin-bottom: 20px; border-radius: 20px; } h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 22px; line-height: 28px; color: #303030; } } .blog__block { width: 100%; margin-bottom: 30px; &:last-child { margin-bottom: 0; } img { height: 240px; width: 100%; object-fit: cover; border-radius: 20px; } h2 { margin-bottom: 12px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 24px; color: #303030; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 15px; line-height: 20px; color: rgba(48, 48, 48, 0.8); } } .blog__head { display: flex; margin-bottom: 15px; margin-top: 20px; align-items: center; justify-content: space-between; } .blog__teg { border-radius: 5px 15px 5px 15px; padding: 5px 15px; background: #049AA4; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 13px; line-height: 18px; text-align: center; color: #FFFFFF; } .blog__teg2 { background: #FFA800; } .blog__contents { display: flex; justify-content: space-between; } .blog__btn { margin: 0 auto; margin-top: 40px; width: 224px; height: 50px; font-family: 'Cera Pro'; font-style: normal; font-weight: 500; font-size: 15px; line-height: 22px; text-align: center; color: #049AA4; border: 1px solid #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; .transition; &:hover { background-color: #049AA4; color: #FFFFFF; } } .blog-item1 { position: absolute; width: 195px; height: 195px; border-radius: 50%; background: #0E1F34; top: -74px; left: -397px; } .blog .container { position: relative; } .blog-item2 { position: absolute; border-radius: 50%; width: 300px; height: 300px; top: 835px; left: -481px; background: #049AA4; } .blog-item3 { position: absolute; border-radius: 50%; background: #0E1F34; left: -481px; top: 185px; width: 200px; left: -395px; height: 200px; } .politics { margin-top: 130px; h2 { margin-bottom: 32px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 42px; line-height: 130%; color: #353535; } p { margin-bottom: 30px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 24px; color: rgba(48, 48, 48, 0.8); } h3 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 38px; color: #303030; margin-bottom: 20px; } } .politics { .container { position: relative; } } .pol-item1 { position: absolute; border-radius: 50%; background: #0E1F34; width: 195px; height: 195px; left: -422px; top: 196px; } .pol-item2 { position: absolute; border-radius: 50%; background: #049AA4; width: 700px; height: 700px; left: -929px; top: 704px; } .pol-item3 { position: absolute; border-radius: 50%; background: #0E1F34; width: 200px; height: 200px; left: -444px; bottom: 300px; } .pol-item4 { position: absolute; border-radius: 50%; background: #049AA4; width: 64px; height: 64px; right: -312px; bottom: 138px; } .pol-item5 { position: absolute; border-radius: 50%; background: #0E1F34; width: 200px; height: 200px; right: -370px; top: 1622px; } .pol-item6 { width: 116px; height: 116px; background: #049AA4; position: absolute; border-radius: 50%; right: -343px; top: 604px; } .faworites { margin-top: 150px; h1 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 42px; line-height: 130%; color: #353535; } .special__content { height: auto; } .container { position: relative; } } .faworites__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; } .fawor__clear { cursor: pointer; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 14px; line-height: 18px; color: #049AA4; .transition; &:hover { color: #0E1F34; } } .faworites__blocks { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 30px; } .special__block { margin-bottom: 30px; cursor: pointer; .transition(); &:hover{ box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.3); } } .faw__item1 { width: 300px; height: 300px; background: #049AA4; position: absolute; left: -506px; top: 633px; border-radius: 50%; } .faw__item2 { width: 200px; height: 200px; background: #0E1F34; position: absolute; border-radius: 50%; right: -411px; bottom: -145px; } .fv-imgs { width: 100%; bottom: 0; position: absolute; } .fav { position: relative; } .menu { position: relative; .menu__bg { left: 0; top: 0; height: 100%; width: 60vw; object-fit: cover; } } .menu .container { display: flex; justify-content: space-between; align-items: flex-end; position: absolute; height: 100%; } .menu__left { position: relative; left: -87px; h2 { margin-bottom: 50px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 100px; line-height: 90%; text-transform: uppercase; color: #FFFFFF; } } .menu__contact { display: flex; } .menu__block { padding: 28px; background: rgba(0, 0, 0, 0.14); backdrop-filter: blur(3px); border-radius: 20px; margin-right: 25px; div { background: #FFFFFF; border-radius: 50%; width: 8px; height: 8px; margin-bottom: 15px; } span { margin-bottom: 5px; font-family: 'Gilroy'; font-style: normal; font-weight: 500; font-size: 13px; line-height: 18px; display: flex; align-items: center; color: #FFFFFF; } a { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 22px; color: #FFFFFF; .transition; &:hover { color: #0E1F34; } } p { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 22px; color: #FFFFFF; } } .menu__right { h2 { margin-bottom: 85px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 95px; line-height: 160px; background-image: url(../imgs/bg/menu-text.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; } } .menu__right-info { margin-bottom: 50px; span { margin-bottom: 10px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 16px; display: flex; align-items: center; color: rgba(14, 31, 52, 0.6); } h3 { margin-bottom: 10px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 18px; line-height: 32px; color: #0E1F34; } a { .transition; font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 14px; line-height: 18px; color: #049AA4; &:hover { color: #0E1F34; } } } .menu__right-content { margin-bottom: 90px; h3 { margin-bottom: 20px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 14px; line-height: 16px; display: flex; align-items: center; color: rgba(14, 31, 52, 0.6); } p { display: flex; align-items: center; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 16px; line-height: 24px; color: #0E1F34; margin-bottom: 15px; &:last-child { margin-bottom: 0; } span { margin-right: 5px; color: #049AA4 !important; } } } .menu__right-socials { display: flex; flex-direction: column; p { margin-bottom: 20px; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 22px; color: #0E1F34; } } .menu-socials { display: flex; align-items: center; } .menu-social-block { width: 46px; height: 46px; cursor: pointer; background: #0E1F34; border-radius: 50%; display: flex; align-items: center; margin-right: 20px; justify-content: center; .transition; &:hover { background-color: #049AA4; } &:last-child { margin-right: 0; } } .menu-line { position: absolute; right: -75px; top: 229px; } .menu { position: relative; } .menu__right h1 { position: relative; z-index: 5; } .error { position: relative; height: 1000px; h2 { font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 34px; line-height: 42px; margin-bottom: 20px; color: #FFFFFF; } p { font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 16px; line-height: 16px; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.8); a { color: rgba(255, 255, 255, 0.8); text-decoration-line: underline; .transition; &:hover { color: #0E1F34; } } } } .error-bg { width: 100%; top: 0; left: 0; right: 0; object-fit: cover; position: absolute; height: 100%; } .error-logo { position: absolute; z-index: 10; left: 320px; top: 180px; } .err__head { position: absolute; z-index: 10; top: 640px; left: 320px; } .menu { .container { position: relative; z-index: 10; } } .menu__bg { position: absolute; left: auto !important; right: 40%; max-width: 100000px; } .sale-item3 { line-height: normal; top: 92px; } .selectChanger { z-index: 4; } .selectChanger-list span { white-space: nowrap; } .blog__teg { margin-bottom: 10px; display: none; &:nth-child(1), &:nth-child(2), &:nth-child(3), &:nth-child(4), &:nth-child(5) { display: block; } } .blog__more { display: block; } .blog__tegs { max-width: 700px; flex-wrap: wrap; &.active { .blog__teg { display: block; } .blog__more { display: none; } } } .products__head { z-index: 12; position: relative; } .object-img { cursor: pointer; } .object__img-arr { width: 32px; height: 32px; background: #049AA4; display: flex; align-items: center; justify-content: center; cursor: pointer; transform: rotate(-180deg); .transition; position: absolute; .ypos_ab; left: -73px; border-radius: 12px; &:hover { background-color: #0E1F34; } } .object__img-arr2 { right: -78px; left: auto; } .obj--wr__img { position: relative; } .sale-item5 { bottom: -140px; } .header-fixed { background-color: #FFFFFF; padding-top: 20px; padding-bottom: 20px; box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.06); .header__social-block svg { path { fill: #0E1F34; } } .header-link { color: #0E1F34; &:hover { color: #049AA4; } } .header__lang span { color: #0E1F34; &:hover { color: #049AA4; } } .header__lang { svg { path { stroke: #0E1F34; &:hover { stroke: #049AA4; } } } } .header__burger div { background-color: #0E1F34; &:hover { background-color: #049AA4; } } .header__social-block svg:hover { path { fill: #049AA4; } } } .error-imgs { position: absolute; z-index: 10; top: 80px; left: 36px; } .error-text { position: absolute; } .menu__right, .menu__left { padding-bottom: 85px; padding-top: 175px; } .header__social-block { display: flex; align-items: center; } .features__bg, .bg-company { filter: brightness(0.7); } .header__social-block svg path { fill: white; } .spec__info-new span::after{ .ypos_ab; } .list{ max-height: 400px; overflow-y: auto!important; } .product-gl--img{ img,a{ .c_img; } } body{ overflow: hidden; } .product__sub2{ margin-top: 100px; } .fixedwp{ .scrol-top; position: fixed; left: 50px!important; right: auto!important; path{ fill:white; } } .blog__block{ margin-bottom: 30px; } input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; // Yeah, yeah everybody write about it } input[type='number'], input[type="number"]:hover, input[type="number"]:focus { appearance: none; -moz-appearance: textfield; } .d1-price-form{ position: absolute; left: 0; top: ~"calc(100% + 55px)"; width: 288px; height: 66px; max-width: 1000px; padding: 15px; display: flex; justify-content: space-between; background: #FFFFFF; box-shadow: 0px 10px 50px rgba(117, 117, 117, 0.06), 0px 10px 30px rgba(29, 29, 29, 0.04); border-radius: 8px; } .d1-price-from{ span{ .ypos_ab; right: 12px; font-family: 'Gilroy'; font-style: normal; font-weight: 400; font-size: 13px; line-height: 18px; color: #0E1F34; } position: relative; input{ font-family: 'Gilroy'; border: 1px solid rgba(14, 31, 52, 0.1); border-radius: 8px; width: 124px; padding: 0 12px; padding-right: 36px; height: 100%; font-style: normal; font-weight: 400; font-size: 13px; line-height: 12px; /* identical to box height, or 92% */ letter-spacing: 0.01em; } } .d1-price .nice-select::after{ transform: rotate(45deg)!important; }.d1-price .nice-select.active::after{ transform: rotate(-135deg)!important; } .adv-item1{ display: none!important; } .reviews{ } .wp-pagenavi{ display: flex; justify-content: center;align-items: center; margin-top: 32px; a,span{ display:flex;align-items:center;justify-content:center; margin-right:10px; &:last-child{ margin-right:0; } font-family: 'Gilroy'; font-style: normal; font-weight: 600; font-size: 15px; line-height: 22px; /* identical to box height, or 147% */ text-align: center; width: 42px; height: 42px; color: #049AA4; &:hover,&.current{ background: #049AA4; box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.12); border-radius: 8px; color: white; } } } .buy-text{ font-size:18px; line-height:1.5; color:white;text-align:center } .products-post-text{ font-size:18px; line-height:1.5; margin-top:80px; text-align: center; } .homes{ margin-top: 140px; } .homes__title{ margin-bottom: 42px; color: #353535; font-family: "Days One"; font-size: 42px; font-style: normal; font-weight: 400; line-height: 130%; } .homes__block{ border-radius: 20px; background: rgba(14, 31, 52, 0.02); padding: 60px; } .homes__name{ font-family: "Days One"; font-size: 130px; font-style: normal; font-weight: 400; line-height: 100px; background-image: url(https://skyphoenixhomes.com/wp-content/themes/templatewp/static/imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; margin-bottom: 42px; } .homes__info{ display: flex; align-items: center; justify-content: space-between; } .homes__block-content{ display: flex; flex-direction: column; align-items: flex-start; h2{ margin-bottom: 5px; color: #353535; font-family: "Days One"; font-size: 34px; font-style: normal; font-weight: 400; line-height: 130%; } p{ color: #303030; font-family: "Gilroy"; font-size: 14px; font-style: normal; font-weight: 400; line-height: 20px; } } .homes__btn{ width: 200px; height: 50px; background-color: #049AA4; color: #FFF; text-align: center; font-family: "Gilroy"; font-size: 14px; font-style: normal; font-weight: 600; line-height: 22px; display: flex; align-items: center; justify-content: center; cursor: pointer; .transition; border-radius: 16px; &:hover{ background-color: #0E1F34; } } .homes{ margin-bottom: 60px; } .about-us__header{ margin-bottom: 25px; color: #0E1F34; font-family: "Montserrat"; font-size: 34px; font-style: normal; font-weight: 700; line-height: 36px; } .about-us__text{ color: #303030; font-family: "Gilroy"; font-size: 14px; font-style: normal; font-weight: 400; line-height: 22px; margin-bottom: 20px; &:last-child{ margin-bottom: 0; } } .about-us{ margin-bottom: 80px; } .about-us__blocks{ width: 1152px; } .estate__head{ margin-bottom: 25px; color: #0E1F34; font-family: "Montserrat"; font-size: 34px; font-style: normal; font-weight: 700; line-height: 36px; } .estate__name{ width: 1196px; margin-bottom: 18px; color: rgba(14, 31, 52, 0.60); font-family: "Days One"; font-size: 20px; font-style: normal; font-weight: 400; line-height: 30px; } .estate__list{ margin-bottom: 40px; li{ color: #303030; font-family: "Gilroy"; font-size: 16px; font-style: normal; font-weight: 400; line-height: 22px; margin-bottom: 6px; &:last-child{ margin-bottom: 0; } } &:last-child{ margin-bottom: 0; } } .estate{ margin-bottom: 80px; background: rgba(14, 31, 52, 0.02); .container{ padding: 80px 0px; } } .homes__block{ position: relative; } .line-home{ position: absolute; top: 0; right: 0; } .homes__name{ z-index: 5; position: relative; } .working__head{ margin-bottom: 70px; color: #0E1F34; font-family: "Days One"; font-size: 34px; font-style: normal; font-weight: 400; line-height: 36px; } .working__blocks{ display: flex; justify-content: space-between; flex-wrap: wrap; } .working__block{ width: 280px; background-color: rgba(14, 31, 52, 0.02); padding: 36px 0px 42px 0px; position: relative; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; } .working__num{ position: absolute; .xpos_ab; top: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background-color: #049AA4; color: #FFF; text-align: center; font-family: "Days One"; font-size: 14px; font-style: normal; font-weight: 400; line-height: 18px;width: 20px; height: 20px; top: -8px; } .working__img{ margin-bottom: 22px; } .working__text{ color: #0E1F34; text-align: center; font-family: "Gilroy"; font-size: 14px; font-style: normal; font-weight: 600; line-height: 18px; } .working{ margin-bottom: 80px; } .estate__list{ li{ position: relative; &::after{ border-radius: 50%; width: 6px; height: 6px; top: 8px; background-color: #049AA4; position: absolute; left: -11px; content: ""; } } } .estate__list{ padding-left: 13px; } .advantages{ ol{ padding-left: 19px; counter-reset: item ; li{ margin-bottom: 6px; color: #0E1F34; font-family: "Gilroy"; font-size: 15px; font-style: normal; font-weight: 400; line-height: 22px; position: relative; &:last-child{ margin-bottom: 0; } &::after{ content: counters(item, ".") ". "; counter-increment: item; position: absolute; left: -21px; top: 0; color: #049AA4; color: #049AA4; font-family: "Gilroy"; font-size: 14px; font-style: normal; font-weight: 600; line-height: 22px } } } ul{ padding-left: 20px; li{ position: relative; margin-bottom: 6px; color: #303030; font-family: "Gilroy"; font-size: 15px; font-style: normal; font-weight: 400; line-height: 22px; &:last-child{ margin-bottom: 0; } &::after{ border-radius: 50%; width: 6px; height: 6px; top: 8px; background-color: #049AA4; position: absolute; left: -17px; content: ""; } } } } .income{ margin-bottom: 80px; .container{ border-radius: 20px; background: rgba(14, 31, 52, 0.02); padding: 60px; position: relative; } } .income__header{ display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 25px; } .income__name{ width: 549px; color: #0E1F34; font-family: "Days One"; font-size: 34px; font-style: normal; font-weight: 400; line-height: 42px; } .income__tittle{ font-family: "Days One"; font-size: 160px; font-style: normal; font-weight: 400; position: absolute; right: -6px; top: 0; line-height: 160px; background-image: url(https://skyphoenixhomes.com/wp-content/themes/templatewp/static/imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; } .income__prew{ color: rgba(14, 31, 52, 0.60); font-family: "Days One"; font-size: 20px; font-style: normal; font-weight: 400; line-height: 30px; margin-bottom: 75px; width: 966px; } .income__blocks{ display: flex; justify-content: space-between; } .income__block{ background-color: #FFF; width: 554px; display: flex; padding: 32px; flex-direction: column; align-items: flex-start; } .income__block-name{ color: #FFF; font-family: "Gilroy"; font-size: 13px; font-style: normal; font-weight: 600; line-height: 18px; background-color: #049AA4; display: flex; align-items: center; justify-content: center; border-radius: 0px 15px 0px 15px; margin-bottom: 32px; padding: 4px 16px; } .income__block-text{ color: rgba(14, 31, 52, 0.70); font-family: "Gilroy"; font-size: 14px; font-style: normal; font-weight: 500; line-height: 20px; margin-bottom: 25px; } .income__text--big{ color: #0E1F34; font-family: "Gilroy"; font-size: 22px; font-style: normal; font-weight: 700; line-height: 28px; } .income{ .container{ position: relative; } } .income__imgvd{ position: absolute; top: 0; right: 0; } .necessarily__header{ h1{ margin-bottom: 10px; color: #0E1F34; font-family: "Montserrat"; font-size: 34px; font-style: normal; font-weight: 700; line-height: 36px; } } .necessarily__text-sm{ color: rgba(14, 31, 52, 0.60); font-family: "Days One"; font-size: 20px; font-style: normal; font-weight: 400; line-height: 30px; } .necessarily__blocks{ display: flex; flex-wrap: wrap; justify-content: space-between; } .necessarily__block{ width: 620px; border-radius: 20px; background: #FFF; box-shadow: 0px 10px 30px 0px rgba(29, 29, 29, 0.04), 0px 10px 50px 0px rgba(117, 117, 117, 0.06); padding: 30px 32px 24px 30px; } .necessarily__info{ display: flex; align-items: center; margin-bottom: 18px; } .necessarily__img{ margin-right: 18px; } .necessarily__block-head{ color: #0E1F34; font-family: "Days One"; font-size: 22px; font-style: normal; font-weight: 400; line-height: 28px; } .necessarily__text{ color: rgba(14, 31, 52, 0.70); font-family: "Gilroy"; font-size: 15px; font-style: normal; font-weight: 400; line-height: 24px; } .necessarily__block--blue{ background: rgba(4, 154, 164, 0.04); } .necessarily{ margin-bottom: 80px; } .income__block{ position: relative; z-index: 5; } .income__prew{ position: relative; z-index: 5; } .income__tittle{ position: relative; z-index: 5; } .necessarily__header{ margin-bottom: 42px; h2{ margin-bottom: 10px; color: #0E1F34; font-family: "Montserrat"; font-size: 34px; font-style: normal; font-weight: 700; line-height: 36px; } } .necessarily__block{ margin-bottom: 30px; } .company-v2{ .company__name h2{ width: 524px; } .company__text{ position: relative; left: -133px; } } .company-v2{ height: 557px; margin-bottom: 80px; .working__block{ background-color: #FFF; } .company__name{ margin-bottom: 45px; } } .earn{ margin-bottom: 100px; } .earn__head{ margin-bottom: 42px; h1{ margin-bottom: 10px; color: #0E1F34; font-family: "Days One"; font-size: 34px; font-style: normal; font-weight: 400; line-height: 36px; } } .earn__title{ color: rgba(14, 31, 52, 0.60); font-family: "Days One"; font-size: 20px; font-style: normal; font-weight: 400; line-height: 30px; } .earn__blocks{ display: flex; justify-content: space-between; width: 967px; } .earn__block{ border-radius: 15px; border: 1px solid #049AA4; padding: 27px 22px; } .earn__block-item{ border-radius: 50%; width: 8px; height: 8px; background-color: #303030; margin-bottom: 14px; } .earn__block-name{ color: #303030; font-family: "Gilroy"; font-size: 13px; font-style: normal; font-weight: 500; line-height: 18px; margin-bottom: 6px; } .earn__block-link{ color: #303030; font-family: "Days One"; font-size: 18px; font-style: normal; font-weight: 400; line-height: 22px; .transition; &:hover{ color: #049AA4; } } .earn__content{ display: flex; justify-content: space-between; } .earn__soc-name{ margin-bottom: 20px; color: #0E1F34; font-family: "Days One"; font-size: 13px; font-style: normal; font-weight: 400; line-height: 22px; } .earn__social{ border-radius: 50%; cursor: pointer; .transition; display: flex; align-items: center; width: 46px; height: 46px; justify-content: center; background-color: #0E1F34; &:hover{ background-color: #049AA4; } } .earn__soc{ width: 244px; } .earn__socials{ display: flex; align-items: center; justify-content: space-between; } .homes__info{ position: relative; z-index: 5; } .income__tittle{ position: absolute; } .company-v2{ position: relative; } .company-v2-line{ position: absolute; top: 0; left: 0; } .company__name{ position: relative; z-index: 5; } .homes-kr{ background-color: #0E1F34; width: 195px; height: 195px; border-radius: 50%; position: absolute; top: 212px; left: -346px; } .homes{ .container{ position: relative; } } .about-us{ .container{ position: relative; } } .about-us-kr{ width: 116px; height: 116px; border-radius: 50%; background-color: #049AA4; position: absolute; top: 19px; right: -330px; } .estate{ .container{ position: relative; } } .estate-kr1{ width: 64px; height: 64px; border-radius: 50%; background-color: #049AA4; position: absolute; top: 268px; left: -310px; } .estate-kr2{ width: 162px; height: 162px; background-color: #0E1F34; border-radius: 50%; position: absolute; bottom: -73px; right: -315px; } .estate__text-absolute{ position: absolute; transform: rotate(270deg); top: 277px; right: -303px; font-family: "Days One"; font-size: 80px; font-style: normal; font-weight: 400; line-height: 100px; background-image: url(https://skyphoenixhomes.com/wp-content/themes/templatewp/static/imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; } .earn{ .container{ position: relative; } } .earn-kr{ position: absolute; width: 116px; height: 116px; background-color: #049AA4; border-radius: 50%; bottom: -24px; left: -327px; } .income__block{ border-radius: 15px; } .object_head_ttl{display: flex;justify-content: space-between;align-items: center; margin-bottom: 32px; h1{ margin-bottom: 0; } .open_modal{ flex-shrink: 0; margin-right: 0; margin-left: 20px; svg{ margin-left: 10px; } display: flex;align-items: center; } } .object__form .header-btn{ width: 100%; margin-top: 15px; } .map{ &-iframe{ height: 250px; iframe{ width: 100%; border-radius: 20px; height: 100%; } } &-text { margin: 24px 0; display: flex;align-items: center; color: rgba(14, 31, 52, 0.70); font-family: Gilroy; font-size: 15px; font-style: normal; font-weight: 400; line-height: 24px; /* 160% */ span{ margin-right: 10px; } &-icon{ flex-shrink: 0; display: flex;align-items: center; cursor: pointer; } } &-block{ margin-top: 50px; h3{ color: #0E1F34; font-family: Days One; font-size: 22px; font-style: normal; font-weight: 400; line-height: 28px; /* 127.273% */ } } } .whyus__head{ display: flex; align-items: flex-start; justify-content: space-between; } .whyus__name{ width: 720px; color: #0E1F34; font-family: "Days One"; font-size: 34px; font-style: normal; font-weight: 400; line-height: 42px; } .whyus__text-img{ font-family: "Days One"; font-size: 130px; font-style: normal; font-weight: 400; line-height: normal; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-image: url(https://skyphoenixhomes.com/wp-content/themes/templatewp/static/imgs/icons/text-bg.png); background-size: cover; background-clip: text; -webkit-background-clip: text; color: transparent; position: absolute; top: -36px; right: 0; } .whyus__head{ position: relative; } .whyus{ margin-top: 80px; } .whyus__head-text{ width: 693px; color: rgba(14, 31, 52, 0.60); font-family: "Days One"; font-size: 20px; font-style: normal; font-weight: 400; line-height: 30px; } .whyus__head{ margin-bottom: 10px; } .whyus__blocks{ display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; } .whyus__block{ margin-bottom: 14px; } .whyus__head-text{ margin-bottom: 42px; } .whyus__block span{ position: relative; left: -6px; } .whyus__btn{ margin-left: 0; width: 194px; height: 50px; } .exclusive{ margin-top: 80px; position: relative; height: 468px; .container{ position: relative; padding-top: 100px; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; } } .exclusive__bg{ position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; object-fit: cover; } .exclusive__shadow{ position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; z-index: 5; background: rgba(14, 31, 52, 0.60); backdrop-filter: blur(4px); } .exclusive__name{ width: 509px; margin-bottom: 32px; color: #FFF; text-align: center; font-family: "Days One"; font-size: 34px; font-style: normal; font-weight: 400; line-height: 42px; } .exclusive__text{ width: 693px; margin-bottom: 42px; color: rgba(255, 255, 255, 0.80); text-align: center; font-family: "Days One"; font-size: 20px; font-style: normal; font-weight: 400; line-height: 30px; } .exclusive__btn{ width: 150px; height: 50px; background-color: #FFF; filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.00)) drop-shadow(0px 10px 80px rgba(0, 0, 0, 0.12)); cursor: pointer; display: flex; align-items: center; justify-content: center; .transition; color: #0E1F34; text-align: center; font-family: "Gilroy"; font-size: 15px; font-style: normal; font-weight: 600; line-height: 22px; border-radius: 16px; &:hover{ background-color: #0E1F34; color: #FFF; } } .special{ h2{ display: flex; align-items: center; } } .s-item{ display: flex; align-items: center; justify-content: center; margin-right: 12px; } .special h2{ margin-bottom: 18px; } .special-v2__head{ display: flex; align-items: center; justify-content: space-between; } .special-v2-link{ color: #049AA4; text-align: right; font-family: "Gilroy"; font-size: 14px; font-style: normal; font-weight: 500; line-height: 18px; .transition; &:hover{ color: #0E1F34; } } .special-v2{ background: rgba(14, 31, 52, 0.02); padding-top: 40px; padding-bottom: 10px; margin-top: 40px; } .special-v3{ background: #FFF; padding-top: 40px; padding-bottom: 10px; margin-top: 0; } .about{ margin-top: 0; padding-top: 80px; margin-top: 80px; } .about__head{ margin-bottom: 17px; } .about__block span{ position: relative; left: -11px; } .chart{ margin-top: 109px; } .chart__text-item{ top: -88px; } .company__block{ background: #FFF; } /** * Адаптивка * **/ @media only screen and(min-width: 1921px) { .bg__company, .rev__bg { min-width: 100%; object-fit: cover; display: block; background: rgba(14, 31, 52, 0.02); height: 720px; } .cr1 { left: -770px; } .cr2 { right: -590px; } .cr3 { right: -620px; } .form__item { left: -1200px; } .form-kr1 { right: -800px; } .form-kr2 { left: -660px; } .rev__cr { right: -430px; } .homes-kr{ left: -391px; } .about-us-kr{ right: -364px; } .estate-kr1{ left: -340px; } .estate-kr2{ right: -355px; } .estate__text-absolute{ right: -338px; } .earn-kr{ left: -361px; } } @media only screen and(max-width: 1599px) { .chart__text-item{ font-size: 70px; line-height: 64px; left: -50px; } .chips__text-item{ right: -50px; font-size: 58px; line-height: 56px; } .company2__head { position: absolute; font-family: 'Days One'; font-style: normal; font-weight: 400; font-size: 101px; line-height: 80px; right: -27px; color: #FFFFFF; } } @media only screen and(max-width: 1399px) { .md-show { display: block !important; } .info3__text-item{ display: none; } .md-hide { display: none !important; } .container { width: 1200px; } .line { right: -87px; } .d1__info { padding: 30px 34px; } .about__head h2 { font-size: 29px; line-height: 35px; width: 577px; } .about__head { span { font-size: 102px; line-height: 1.2; } } .about__block { width: 238px; } .company { padding-top: 0; padding-bottom: 0; } s .company__text span { font-size: 99px; } .company__name h2 { font-size: 26px; line-height: 1.2; } .company { height: auto; } .bg__company { display: none; } .company__block { // box-shadow: 0px 5px 17px 2px rgba(34, 60, 80, 0.09); } .chart__text-item { left: 10px; font-size: 55px; top: -93px; line-height: 1.2; } .company__text span { font-size: 111px; } .form-ul { justify-content: space-around; } .form h2 { margin-bottom: 30px; } .reviews { padding-bottom: 100px; padding-top: 59px; margin-top: 80px; height: 707px; } .cr2 { right: 7px; top: -61px; } .cr3 { border-radius: 50%; bottom: -89px; right: -13px; width: 65px; height: 66px; } .cr1 { display: none; } .form__item { width: 300px; height: 300px; left: -240px; top: 320px; } .rev__block { width: 364px; } .stat { margin-top: 50px; } .stat__block { width: 368px; } .owl-prev { left: -11px; } .owl-next { right: -53px; } .stat { .owl-next { right: -39px; } } .chart { .owl-next { right: 2px; } } .chips__text-item { right: -28px; top: 14px; font-size: 63px; line-height: 1.2; } .chips__info p { font-size: 17px; line-height: 27px; } .chips__info p { font-size: 18px; line-height: 1.2; } .cinps__item { font-size: 13px; } .special { .owl-next { right: -28px; } .owl-prev { left: 2px; } } .cr2 { right: -21px; } .cr1 { top: 157px; display: block; width: 144px; height: 144px; left: -119px; } .company { margin-top: 112px; } .company .container { padding-top: 37px; } .bg__company { display: block; } .company__btn { width: 195px; } .rev__head span { top: 37px; left: 4px; font-size: 149px; } .form-kr1 { right: -63px; top: -14px; width: 120px; height: 120px; } .form-kr2 { left: -82px; } .stat .owl-next { right: -25px; } .stat .owl-prev { left: 0px; } .d1__info { justify-content: flex-start !important; } .buy h1 { font-size: 39px; line-height: 1.2; } .products__head { margin-bottom: 30px; } .product__blocks-img { width: 132px; } .product-gl--img { width: 440px; height: auto; } .product__blocks-img img { height: 89px; } .product-blocks--text { width: 526px; } .products__sub { padding: 40px 28px; } .prod-form input { width: 237px; } .prod-phoen { width: 300px; } .prod-cr1 { right: -168px; } .prod-cr2 { left: -338px; } .prod-cr3 { right: -257px; } .prod-cr4 { left: -248px; } .prod-cr5 { right: -344px; } .object__info { width: 855px; } .navigator-item1 { right: 43px; top: -68px; } .nav-head { right: -71px; } .obj-items4 { display: none; } .sale__block { width: 577px; margin-bottom: 24px; } .sale-item1 { right: 29px; top: -86px; } .job__block { width: 275px; padding: 26px 20px 33px 20px; } .job__block h3 { margin-top: 15px; margin-bottom: 15px; } .job__block p { font-size: 12px; } .job .container { padding-top: 77px; padding-bottom: 100px; } .job__form { margin-top: -134px; } .job { height: auto; } .job__form { margin-top: -50px; } .job__form .container { padding: 34px 37px; } .job__form h2 { font-size: 20px; width: 139px; } .sale-item4 { bottom: -180px; } .job__inp input { margin-right: 13px; width: 230px; } .job__form-wr button { margin-left: 13px; padding: 15px 41px; } .job__form-wr { flex-direction: column; } .job__inp { margin: 15px 0px; } .job__form { margin-bottom: 32px; } .article__info { width: 810px; } .article__themes { width: 304px; } .article-kr1 { left: -150px; } .article-kr2 { left: -243px; } .article-kr3 { left: -165px; } .article-kr4 { right: -69px; top: 790px; } .article__themes { width: 328px; } .company2__head { font-size: 100px; line-height: 86%; right: 37px; } .company2__info h1 { margin-bottom: 20px; } .company2 .container { padding-top: 300px; } .comp2__cr { top: -117px; left: -326px; } .comp2__cr2 { right: -107px; top: -19px; width: 200px; height: 200px; } .comp__cr3 { display: none; } .we-team { margin-top: 70px; margin-bottom: 70px; } .features h2 { margin-bottom: 60px; } .features__block { max-width: 428px; margin-right: 50px; } .features__block p { margin-top: 20px; } .diplomas { height: auto; } .diplomas .container { padding-top: 65px; padding-bottom: 111px; z-index: 10; position: relative; } .company2 .container { padding-top: 300px; padding-bottom: 68px; } .company2 { height: auto; } .tour__block { width: 272px; } .tour-line { margin-top: 49px; margin-bottom: 45px; } .tour-form__wr h2 { font-size: 19px; line-height: 1.2; width: 226px; } .tour--input input { margin-right: 15px; width: 217px; } .tour__form-info button { margin-left: 15px; } .tour__form { margin-top: 53px; } .company { margin-top: 50px; } .tour { margin-top: 56px; } .diplomas .container { padding-bottom: 82px; } .rev__head span { top: 37px; left: 4px; font-size: 129px; } .tour_item1 { right: -659px; top: -517px; } .reviews2 { padding-top: 0; padding-bottom: 0; height: auto; margin-top: 40px; } .tour2 h1 { position: relative; z-index: 10; } .tour2 h1 { font-size: 62px; line-height: 1.2; margin-bottom: 25px; } .tour2 p { font-size: 21px; } .tour2__form { margin-top: -65px; } .tour-form__wr { padding: 32px 44px; } .chips2 { margin-top: 57px; } .advantages__text { width: 600px; } .advantages__img { width: 560px; height: 386px; } .advantages__block2 { padding-top: 40px; padding-bottom: 40px; } .advantages__block { margin-bottom: 30px; } .advantages { margin-bottom: 43px; } .info3 { height: auto; } .info3__bg { display: none; } .info3__block { width: 100%; } .info3__text-item { right: -100px; } .info3__text p { width: 660px; } .info3 .container { padding-top: 0; padding-bottom: 0; } .advantages { margin-top: 70px; } .form-adv { margin-bottom: 71px; margin-top: 61px; } .blog-search h1 { margin-bottom: 34px; } .blog__blocks2 { width: 476px; } .blog { margin-bottom: 50px; } .faworites { .special__block { width: 377px; } } .menu .menu__bg { //width: 706px; } .menu__left { left: 0; } .menu__left h2 { margin-bottom: 24px; font-size: 59px; line-height: 1.2; } .menu__block { padding: 20px; border-radius: 20px; margin-right: 14px; } .menu__block a { font-size: 16px; } .menu__right-content { margin-bottom: 38px; } .menu__right-info { margin-bottom: 26px; } .menu__right h1 { margin-bottom: 5px; font-size: 86px; line-height: 1.2 } .menu .container { justify-content: space-around; } .article__quote::after { width: 40px; height: 40px; } .object__img-arr1 { left: -7px; z-index: 100; } .object__img-arr2 { left: auto; right: -9px; z-index: 100; } .err__head { left: 60px !important; } .error-logo { left: 75px !important; } .error-imgs { top: 172px; left: -35px; } .homes-kr{ display: none; } .homes__title{ margin-bottom: 25px; font-size: 32px; } .homes__name{ margin-bottom: 16px; font-size: 71px; width: 594px; line-height: 76px; } .homes__block{ padding: 40px; } .homes__block-content h2{ font-size: 26px; } .about-us__header{ font-size: 31px; } .about-us { margin-bottom: 60px; } .estate .container { padding: 60px 0px; } .estate__head{ font-size: 29px; margin-bottom: 19px; } .estate__name{ font-size: 18px; margin-bottom: 15px; } .estate__list { margin-bottom: 29px; } .estate{ margin-bottom: 60px; } .working__head{ margin-bottom: 50px; font-size: 29px; } .working__block{ padding: 28px 0px 34px 0px; } .working__img { margin-bottom: 17px; } .working { margin-bottom: 60px; } .homes-kr{ left: -248px; } .about-us-kr{ right: -203px; } .estate__text-absolute{ right: -260px; } .estate-kr1{ left: -180px; } .estate-kr2{ right: -243px; } .earn-kr{ left: -214px; } .advantages__text h2{ font-size: 29px; margin-bottom: 21px; line-height: 39px; } .income-v2 .income__tittle{ font-size: 109px; } .income-v2 .income__name{ font-size: 29px; } .income__header{ margin-bottom: 19px; } .income-v2 .income__prew{ font-size: 18px; margin-bottom: 40px; } .income-v2 .container{ padding: 50px 0px; } .income-v2 .income__tittle{ right: 186px; } .income-v2 .income__block{ width: calc(50% - 15px); } .income-v2 { margin-bottom: 60px; } .necessarily__header h2{ font-size: 29px; } .necessarily__text-sm{ font-size: 18px; } .necessarily__block{ width: calc(50% - 10px); } .necessarily__block-head{ font-size: 20px; } .necessarily__info{ margin-bottom: 15px; } .necessarily { margin-bottom: 60px; } .bg__company{ height: 404px; } .company__text span { font-size: 103px; } .company-v2{ margin-bottom: 140px; } .earn__head h1{ font-size: 29px; margin-bottom: 7px; } .earn__title{ font-size: 18px; } .earn-kr{ display: none; } .earn__head { margin-bottom: 35px; } .earn__block{ padding: 22px 14px; } .earn__blocks{ width: 874px; } .earn__soc { width: 229px; } .earn { margin-bottom: 60px; } .about-us-kr{ display: none; } .estate-kr1{ display: none; } .estate-kr2{ display: none; } .estate__text-absolute{ display: none; } .whyus__name{ width: 601px; line-height: normal; width: 601px; } .whyus__head-text { margin-bottom: 38px; font-size: 19px; line-height: normal; } .whyus__text-img{ font-size: 116px; } .exclusive { margin-top: 50px; position: relative; height: 420px; } .exclusive .container{ padding-top: 85px; } .exclusive__name{ margin-bottom: 25px; line-height: 39px; font-size: 32px; } .exclusive__text{ font-size: 17px; line-height: 28px; margin-bottom: 35px; } .whyus { margin-top: 69px; } } @media only screen and(max-width: 1199px) { .adv-item1{ display: none; } .d1-price-form{ top: 100%; } .objects__wrap{ display: block; } .object__form{ width: 100%; margin-top: 30px; } .chips__voln { padding-top: 40px; } .object__form input,.obj-btn2,.obj-btn1{ width: 100%; } .tour__content, .chips__voln { position: relative; &::after { content: ''; width: 32px; height: 32px; background-image: url("../imgs/icons/swipe.svg"); background-size: cover; position: absolute; right: 0; top: 0; } } .sm-show { display: block !important; } .sm-hide { display: none !important; } .container { width: 768px; } .menu { } .menu .container { position: static !important; } .header__social { margin-left: 20px; //display: none; } .header-link { display: none; } .d1 .container { padding-top: 130px; } .d1 { height: 555px; } .line { right: -16px; } .d1__info { padding: 26px 21px; } .d1__info-searh { width: 44px; height: 44px; svg { width: 13px; } } .d1 .container h1 { font-size: 45px; line-height: 1.2; } .special { margin-top: 30px; } .about__head { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; } .about__head h2 { text-align: start; } .about__head span { font-size: 91px; } .about__head h2 { font-size: 27px; line-height: 1.2; } .about__block { align-items: center; } .about__block p { text-align: center; } .about__block h3 { text-align: center; } .chart__name { width: 418px; } .chart__text-item { font-size: 50px; } .company__name { flex-direction: column; align-items: flex-start; } .company__text span { font-size: 92px; } .company__p p { font-size: 18px; line-height: 1.2; } .company__blocks { flex-wrap: wrap; } .company__block { padding-top: 25px; padding-bottom: 36px; width: 242px; &:last-child { margin-top: 25px; } } .company__btn { width: 208px; } .form-ul { flex-wrap: wrap; li { margin-top: 12px; } } .form h2 { margin-bottom: 15px; } .form__inp input { width: 241px; font-size: 13px; margin-right: 7px; } .form textarea { margin-top: 13px; margin-bottom: 22px; } .form__item { width: 250px; height: 250px; left: -191px; } .rev__bg { display: none; } .rev__head span { position: static; } .rev__head { flex-direction: column; align-items: flex-start; } .rev__head h2 { font-size: 31px; line-height: 1.2; } .rev__head span { font-size: 104px; line-height: 1.2; } .rev__block { display: none; &:first-child { display: block; } } .reviews { padding-top: 0; margin-top: 53px; padding-bottom: 0; height: auto; } .stat { margin-top: 78px; } .stat__block { display: none; &:first-child { display: block; } } .stat__block p { margin-bottom: 20px; } .footer__sub { flex-direction: column; } .footer__top .container { flex-direction: column; } .footer__sub { margin-top: 20px; } .footer__sub-name { margin-bottom: 20px; margin-right: 0; } .footer__bot .container { flex-direction: column; } .footer__bot .container { align-items: flex-start; } .footer__social { margin-right: 0; margin-bottom: 40px; } .footer__list { width: 100%; } .special__block { width: 375px; } .spec__img-info { width: 92%; } .chart__graf { width: 527px; } .d1__info--block { margin-right: 12px; padding-right: 8px; } .d1__info--block h2 { font-size: 13px; line-height: 17px; } .d1__info--block { width: 235px; } .d1__info { flex-wrap: wrap; } .d1__info--block { flex-grow: 0; } .d1__info--block { width: 23%; } .d1__info--block { margin-bottom: 15px; } .d1__info { align-items: flex-end; } .stat { margin-top: 51px; margin-bottom: 53px; } .special__block { width: 100%; } .owl-next { right: -41px; } .chart .owl-next { right: -34px; } .stat .owl-next { right: -43px; } .chips h2 { font-size: 28px; line-height: 1.2; } .chips__text-item { right: -6px; top: -25px; font-size: 50px; line-height: 1.2; } .chips__info p { width: 450px; } .reviews { margin-top: 80px; } .company { margin-bottom: 80px; } .cr3 { bottom: -20px; } .form--new input { width: 241px; } .form--new .nice-select { width: 241px !important; } .form--new p { width: 218px; margin-right: 24px; line-height: 24px; font-size: 13px; } .about__head span { font-size: 81px; } .about__block { margin-bottom: 30px; } .chart .owl-next { right: -27px; } .cr1 { display: none; } .company__text span { font-size: 83px; } .bg__company { height: 100%; } .company { margin-bottom: 60px; } .rev__head { flex-direction: row; } .rev__head span { position: relative; font-size: 98px; } .form-kr1 { display: none; } .stat .owl-next { right: -31px; } .buy h1 { font-size: 36px; } .buy { padding-top: 112px; } .buy-name { font-size: 12px; margin-right: 20px; } .buy__nav { font-size: 12px; line-height: 16px; } .product__block { flex-direction: column; width: 645px; } .products__blocks { display: flex; align-items: center; flex-direction: column; } .product__imgs { width: 100%; } .product-gl--img { width: 446px; } .product__blocks-img { width: 147px; margin-right: 15px; } .product-blocks--text { width: 100%; margin-top: 20px; } .buy__items { padding: 25px; } .products__head { justify-content: center; } .buy { padding-top: 126px; } .prod-form { flex-direction: column; } .prod-phoen { opacity: 0.4; } .prod-form input { margin-right: 0; } .prod-form button { width: 100%; } .prod-phoen { width: 222px; top: 93px; right: -99px; } .prod-form input { margin-bottom: 15px; } .prod-form input { background: #ffffff42; } .prod-form { margin-left: 90px; } .product__navigat { margin-top: 26px; margin-bottom: 32px; } .prod__wr { height: 260px; } .product__sub2--text { padding: 34px 0px 34px 34px; } .product__sub2--text h2 { font-size: 20px; line-height: 1.2; } .product__sub2--text { width: 656px; } .product__sub2--text a { font-size: 14px; width: 201px; height: 46px; } .prod__wr { height: 252px; } .pr-phon1 { width: 213px; } .pr-phon2 { top: 71px; right: 84px; width: 329px; } .product__sub2 { margin-bottom: 45px; } .prod-line { bottom: -40px; } .prod-cr1 { right: -78px; } .prod-cr2 { left: -255px; } .prod-cr3 { right: -174px; } .prod-cr4 { left: -163px; } .prod-cr5 { right: -259px; } .object__prew-block img { width: 40px; height: 40px; } .object__imgs img { width: 586px; height: 366px; } .obj-items1 { top: -87px; } .nav-head { top: -5px; right: 57px; transform: rotate(360deg); } .nav-head span { font-size: 53px; } .object__info h2 { font-size: 31px; line-height: 1.2; } .object__info h1 { font-size: 31px; line-height: 1.2; } .objects__wrap { margin-top: 25px; } .object__prew { max-width: 150px; margin-right: 29px; } .object__prew-block img { margin-bottom: 10px; } .object__prew-block h3 { font-size: 14px; line-height: 1.2; } .object__text { padding: 35px; } .object__text p { margin-bottom: 20px; font-size: 14px; } .object-list { margin-top: 35px; } .object-list__wr ul li { font-size: 15px; margin-bottom: 13px; } .object-auction { margin: 42px 0px; } .navigator a { font-size: 12px; } .sale-item2 { position: absolute; top: -81px; right: -180px; } .sale h1 { font-size: 36px; line-height: 1.2; margin-bottom: 32px; } .sale__block { width: 366px; margin-bottom: 17px; } .sale__head h2 { margin-left: 16px; font-size: 20px; line-height: 1.2; } .sale__block { width: 365px; padding: 25px; margin-bottom: 17px; } .sale { margin-top: 134px; } .sale__block p { font-size: 13px; } .job__blocks { flex-wrap: wrap; } .job__block { width: calc(50% - 10px); margin-bottom: 10px; } .job h2 { margin-bottom: 33px; font-size: 38px; line-height: 1.2; } .job__form .container { flex-direction: column; } .job__form h2 { width: auto; } .job__form .container { padding: 29px 29px; } .job__form-wr { width: 100%; margin-left: 0; } .article__content { flex-direction: column; } .article-thems__blocks { display: flex; justify-content: space-between; width: 100%; } .article__themes { width: 100%; } .article__info { width: 100%; } .article-prew__text { padding-bottom: 19px; } .article__text p { font-size: 14px; margin-bottom: 17px; } .article__text { margin-bottom: 33px; } .article__text2 p { margin-bottom: 19px; font-size: 13px; } .article__text2 { margin-bottom: 27px; } .article-kr2 { display: none; } .article__meta { margin-top: 24px; margin-bottom: 38px; } .article__meta { padding: 29px; } .article__meta p { font-size: 14px; } .art__img { height: 360px; } .article-kr3 { top: 1722px; } .article__quote { margin-top: 40px; padding: 31px 29px } .article__num { margin-top: 25px; margin-bottom: 27px; } .article__num ol { margin-bottom: 25px; } .article__social-block { margin-right: 15px; } .article__themes { margin-top: 30px; } .article-thems__blocks { flex-wrap: wrap; } .article-thems__block { width: 363px; } .aticle-themes__btn { position: relative; z-index: 15; } .company2 .container { padding-top: 169px; padding-bottom: 79px; } .company2__info h1 { position: relative; z-index: 15; } .company2__info h1 { margin-bottom: 14px; font-size: 29px; line-height: 1.2; } .company2__info p { font-size: 14px; } .company2__head { span { br { display: none; } } } .company2__head { right: 15px; bottom: 14px; } .comp2__cr { width: 300px; height: 300px; } .comp2__cr { top: -117px; left: -235px; } .comp2__cr2 { top: -50px; } .company2 .container { padding-top: 169px; padding-bottom: 126px; } .company2__head { font-size: 55px; } .we-team__block { width: 270px; } .we-team h2 { margin-bottom: 30px; } .we-team { margin-top: 50px; margin-bottom: 50px; } .features__blocks { display: flex; flex-direction: column; } .features { height: auto; } .features .container { padding-bottom: 100px; padding-top: 65px; } .diplomas { margin-top: -41px; } .features h2 { margin-bottom: 47px; } .features__block { margin-right: 0; max-width: none; width: 100%; margin-bottom: 30px; &:last-child { margin-bottom: 0; } } .features__head h3 { min-height: auto; } .features h2 { margin-bottom: 35px; } .features__head img { position: absolute; top: -30px; left: -15px; } .rev__head span { position: relative; font-size: 74px; } .rev__head h2 { font-size: 28px; } .diplomas__blocks { margin-top: 11px; } .tour h2 { margin-bottom: 18px; font-size: 30px; line-height: 1.2; } .tour p { font-size: 16px; line-height: 1.5; } .tour-line { margin-top: 40px; margin-bottom: 42px; } .tour p { font-size: 13px; line-height: 1.5; } .tour__block { width: 165px; } .tour-form__wr { flex-direction: column; } .tour__form { height: auto; } .tour-form__wr { align-items: flex-start; } .tour-form__wr { padding: 25px 34px; } .tour h2 { margin-bottom: 18px; font-size: 27px; line-height: 1.2; width: 100%; } .tour__form-info { flex-direction: column; } .tour--input input { margin-right: 0; } .tour--input { justify-content: space-between; width: 100%; } .tour__form-info { width: 100%; } .tour__input-block p { right: 0; text-align: start; } .tour__form-info button { margin-left: 0; margin-top: 10px; } .tour2__form .container .tour__input-block p { position: relative; bottom: -3px; right: auto; margin-top: 0; } .tour2__form { .tour--input { margin-top: 20px; } } .tour-form__wr h2 { width: 100%; } .tour2 h1 { font-size: 53px; line-height: 1.2; margin-bottom: 23px; } .tour2 { height: auto; } .tour2 .container { display: flex; flex-direction: column; position: relative; padding-bottom: 129px; padding-top: 143px; } .tour2 p { font-size: 19px; } .advantages__block .container { position: relative; width: 100%; flex-direction: column-reverse; } .advantages__img { width: 100%; } .advantages__text { width: 100%; margin-top: 30px; } .advantages__text h2 { font-size: 31px; line-height: 1.2; margin-bottom: 15px; } .advantages__text p { font-size: 14px; } .advantages__block2 { padding-bottom: 30px; } .info3__text-item { display: none; } .info3__text p { width: 610px; font-size: 14px; } .blog-serch__result { flex-direction: column; } .blog-search { margin-top: 137px; } .blog-search h1 { margin-bottom: 25px; font-size: 39px; line-height: 1.2; } .blog-serch__result { margin-top: 35px; } .blog__left { margin-bottom: 15px; } .blog__contents { flex-direction: column; } .blog__blocks1 { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; } .blog__block { width: 360px; } .blog__blocks2 img { height: 300px !important; } .blog__blocks2 { margin-top: 30px; margin-bottom: 30px; } .politics h2 { font-size: 34px; margin-bottom: 14px; line-height: 1.2; } .politics h3 { font-size: 31px; line-height: 1.2; margin-bottom: 13px; } .politics p { margin-bottom: 20px; } .faworites h1 { font-size: 38px; line-height: 1.2; } .faworites__head { margin-bottom: 20px; } .faworites .special__block { width: 363px; margin-bottom: 20px; } .faworites__head { flex-direction: column; align-items: flex-start; } .faworites .special__block { width: 100%; } .menu .menu__bg { width: 100%; height: 434px; } .menu .container { position: absolute; flex-direction: column; left: auto; transform: none; top: 563px; align-items: flex-start; } .error-logo { left: 50px; } .err__head { left: 50px; } .error { height: 865px; } .tour_item1 { display: none; } .company3 .company__p { position: static; } .error { height: 587px; } .err__head { bottom: 68px !important; top: auto; } .error-imgs { top: 125px; left: -9px; } .error-logo { left: 45px !important; top: 122px; width: 108px; } .err__head { left: 46px !important; } .error h2 { font-size: 31px; line-height: 1.2; margin-bottom: 14px; } .error p { font-size: 15px; } .menu .menu__bg { width: 100vw; height: 490px; right: 0; } .menu__right { padding-top: 0; } .buy{ height:465px } .buy__bg{ height:100%!important } .homes { margin-top: 120px; } .homes__title { margin-bottom: 20px; font-size: 22px; } .homes__name { margin-bottom: 16px; font-size: 50px; width: 100%; line-height: normal; } .homes__block { padding: 27px; } .homes__info{ flex-direction: column; align-items: flex-start; } .homes__block-content{ margin-bottom: 20px; } .homes__block-content h2 { font-size: 22px; } .homes__btn{ height: 45px; } .homes { margin-bottom: 50px; } .about-us__header { font-size: 29px; margin-bottom: 20px; } .about-us__text{ margin-bottom: 15px; } .about-us { margin-bottom: 50px; } .estate .container { padding: 40px 0px; } .estate__head { font-size: 25px; margin-bottom: 15px; } .estate__name { font-size: 14px; line-height: 27px; margin-bottom: 16px; } .estate__list li{ font-size: 14px; } .estate { margin-bottom: 50px; } .working__head { margin-bottom: 37px; font-size: 25px; } .working__block{ width: calc(50% - 10px); padding: 27px 0px 27px 0px; margin-bottom: 30px; } .working { margin-bottom: 30px; } .advantages-v2{ margin-top: 45px; } .income-v2 .income__tittle { right: 0; font-size: 64px; } .income-v2 .income__header{ position: relative; z-index: 5; } .income-v2 .income__tittle{ top: auto; bottom: -43px; right: 56px; } .income-v2 .income__name { width: 444px; line-height: 33px; font-size: 24px; } .income-v2 .income__prew { font-size: 16px; margin-bottom: 34px; } .income-v2 .income__block{ padding: 24px; } .income-v2 .income__block-name{ margin-bottom: 20px; } .income-v2 .income__block-text{ margin-bottom: 22px; } .income-v2 .income__text--big{ font-size: 19px; } .income-v2 { margin-bottom: 50px; } .necessarily__header h2 { margin-bottom: 5px; font-size: 25px; } .necessarily__text-sm { font-size: 16px; } .necessarily__header { margin-bottom: 25px; } .necessarily__block { margin-bottom: 21px; padding: 24px; } .necessarily__block-head { font-size: 18px; } .necessarily__info { margin-bottom: 14px; } .necessarily__text{ font-size: 14px; } .necessarily { margin-bottom: 50px; } .company-v2 .company__name h2 { width: 100%; } .company__text span { font-size: 71px; } .company-v2 .company__name { margin-bottom: 31px; } .company { margin-bottom: 50px; } .earn__head h1 { font-size: 25px; margin-bottom: 7px; } .earn__title { font-size: 15px; } .earn__head { margin-bottom: 29px; } .earn__blocks { width: 100%; } .earn__content{ flex-direction: column; align-items: flex-start; } .earn__blocks{ flex-wrap: wrap; } .earn__block { padding: 18px 16px; min-width: 32%; } .earn__head { margin-bottom: 26px; } .earn__block-link{ font-size: 16px; } .earn__block{ margin-bottom: 20px; } .earn__soc { width: 100%; } .earn__socials{ justify-content: flex-start; } .earn__social{ margin-right: 10px; &:last-child{ margin-right: 0; } } .company-v2 .company__text { position: relative; left: 0; } .whyus__text-img{ position: static; font-size: 81px; } .whyus__head{ flex-direction: column-reverse; } .whyus__name{ font-size: 28px; } .whyus__head-text{ font-size: 18px; } .whyus__blocks { display: flex; align-items: flex-start; justify-content: flex-start; flex-wrap: wrap; gap: 17px; } .exclusive { margin-top: 37px; position: relative; height: 343px; } .exclusive__name{ line-height: normal; margin-bottom: 17px; } .exclusive__text{ margin-bottom: 26px; width: 591px; font-size: 16px; } .exclusive__btn{ height: 46px; } .special-v3 { margin-top: 0; padding-top: 20px; } .special-v2{ margin-top: 0; padding-top: 20px; } .special h2{ font-size: 31px; margin-bottom: 0; } } @media only screen and(max-width: 767px) { .xs-show { display: block !important; } .fixedwp{ left:auto!important; right:15px!important } .scrol-top{ position:fixed; bottom:0!important; left:0; right:0; width:100%;border-radius:0px } .xs-hide { display: none !important; } .row { margin-left: -10px; margin-right: -10px; } [class*="col-"] { padding-left: 10px; padding-right: 10px; } .container { width: 360px; } .buy-text{ font-size:14px; line-height:1.5; color:white;text-align:center } .products-post-text{ font-size:14px; line-height:1.5; margin-top:40px } .header .container { flex-direction: column; align-items: center; } .header__logo { margin-right: 0; //margin-bottom: 20px; } .d1 .container h1 { font-size: 26px; } .d1 .container { padding-top: 166px; } .line { display: none; } .d1__info { flex-direction: column; align-items: flex-start; } .d1__info-searh { margin-top: 10px; } .d1__info--block h2 { margin-bottom: 5px; } .d1 { height: 622px; } .special h2 { text-align: center } .special__block { width: 100%; } .special h2 { margin-bottom: 19px; font-size: 30px; line-height: 1.2; } .about__head h2 { font-size: 24px; text-align: center; line-height: 1.2; width: 100%; } .about__head span { font-size: 60px; display: flex; align-items: center; justify-content: center; } .about__head { align-items: center; } .about__block { width: 100%; box-shadow: 0px 5px 23px 2px rgba(34, 60, 80, 0.09); margin-bottom: 25px; &:last-child { margin-top: 0; } } .about__block { padding-bottom: 30px; } .about__block span { top: -11px; position: relative; } .about { padding-bottom: 35px; } .chart__graf { width: 50%; } .chart__name { width: 50%; } .chart__text-item { top: -75px; font-size: 38px; } .scrol-top { right: 10px; bottom: 26px; } .cr2 { display: none; } .cr3 { display: none; } .form__item { display: none; } .company__text span { font-size: 45px; } .company__name h2 { font-size: 23px; } .company__p p:last-child { position: static; } .company__text-more { flex-direction: column; align-items: center; } .company { .company__btn { margin-left: 0; } } .company__p p { text-align: center; } .company__name h2 { text-align: center; } .company__name { align-items: center; } .company__text { display: flex; flex-direction: column; } .company__text span { text-align: center; } .company__p p { font-size: 15px; } .company__text span { margin-bottom: 10px; } .company .company__btn { margin-top: 10px; } .company__block { width: 100%; } .company { margin-bottom: 53px; } .about__head span { font-size: 50px; } .form-ul { flex-direction: column; flex-wrap: nowrap; } .form h2 { font-size: 30px; line-height: 1.2; } .form__inp input { margin-right: 0; width: 100%; margin-bottom: 15px; font-size: 12px; padding: 13px 17px; &:last-child { margin-bottom: 0; } } .form textarea { padding: 13px 17px; width: 100%; font-size: 12px; } .company__btn { width: 187px; font-size: 13px; } .form .company__btn { width: 170px; } .rev__head span { font-size: 58px; } .rev__head { align-items: center; margin-bottom: 20px; } .rev__head h2 { text-align: center; } .rev__block { width: 100%; } .rev__img { height: 206px; } .rev__block h3 { font-size: 16px; } .stat { margin-top: 49px; } .stat h2 { font-size: 29px; line-height: 1.2; margin-bottom: 22px; } .stat__block img { width: 400px; height: 196px; margin-bottom: 22px; } .stat__block p { font-size: 13px; } .stat { margin-bottom: 45px; } .footer__form input { width: 280px; height: 50px; font-size: 13px; padding: 13px 19px; margin-right: 7px; } .footer__form .company__btn { width: 166px; } .footer__list { flex-direction: column; } .footer__list-block { margin-bottom: 20px; &:last-child { margin-bottom: 0; } } .footer__social { margin-bottom: 15px; } .footer__bot_ { padding-bottom: 23px; } .header .container { align-items: flex-start; } .d1 .container { padding-top: 109px; } .header-btn { display: none; } .header .container { display: flex; flex-direction: row; align-items: center; } .d1 { height: 581px; } .d1__info--block { width: 100%; } .d1 + .special { margin-top: 144px; } .stat { margin-bottom: 7px; } .stat__block { width: 100%; } .chart .owl-next { right: -41px; } .stat .owl-next { top: 98px !important; } .stat .owl-prevs { top: 98px !important; } .chips__voln { overflow-x: auto; } .chips__container { max-width: 1279px; width: 1279px; } .stat-line { display: none; } .d1__info--block { margin-right: 0; } .spec__btn { margin: 0 auto; margin-top: 20px; } .chips-line { width: 1108px; max-width: 10000px; } .cinps__item:nth-child(3) { width: 365px; } .cinps__item:nth-child(4) { width: 397px; } .cinps__item:nth-child(5) { width: 229px; } .chips__text-item { right: -74px; top: 119px; font-size: 39px; line-height: 1.2; } .chips__info { flex-direction: column; align-items: flex-start; } .chips__info p { width: 100%; margin-bottom: 15px; font-size: 16px; } .chips__info { margin-top: 60px; } .rev__head { flex-direction: column; } .rev__head h2 { margin-bottom: -27px; } .form__inp { flex-direction: column; width: 100%; } .form--new { flex-direction: column; width: 100%; } .form--new p { margin-right: 0; } .form--new input { width: 100%; margin-bottom: 15px; } .form--new .nice-select { width: 100% !important; } .form--new p { margin-bottom: 10px; } .form-kr2 { left: -88px; } .form { margin-top: 58px; } .stat .owl-prev { top: 102px !important; } .stat .owl-next { top: 101px !important; } .stat { margin-bottom: 35px; } .owl-dots { margin-top: 34px; } .modal { padding: 26px; } .modal { width: 352px; } .close { position: absolute; right: 20px; top: 20px; path { fill: #0E1F34 !important; } } .d1__info--block { border-right: 0; padding-right: 0; } .d1__info-searh { width: 100%; span { color: white; } } .buy h1 { font-size: 27px; } .header { padding-top: 10px; padding-bottom: 10px; } .buy__names { overflow: auto; white-space: nowrap; } .buy__nav { font-size: 12px; line-height: 16px; min-width: 138px; width: 131px; margin-bottom: 10px; min-height: 39px; margin-right: 0; } .buy__navs { flex-wrap: wrap; justify-content: space-between; } .buy { padding-top: 108px; } .buy__items { position: relative; z-index: 10; background: rgba(255, 255, 255, 0.1); } .buy__line { margin: 19px 0px; } .products { margin-top: -72px; } .products__head div { font-size: 12px; } .product__imgs { flex-direction: column; } .product__blocks-img { align-items: flex-start !important; display: flex; align-items: center; width: 100%; flex-direction: row; margin-right: 0; } .product__blocks-img img { width: 98px; height: auto; } .product-gl--img { width: 100%; } .product-blocks--text h2 { font-size: 23px; line-height: 1.2; } .product-blocks--text { margin-top: 15px; } .product__info--item { flex-wrap: wrap; } .product__item-icons { margin-bottom: 15px; } .product__block-text p { font-size: 13px; } .product__block { margin-bottom: 20px; } .prod__wr { flex-direction: column; align-items: flex-start; } .prod-form { margin-left: 0; } .products__sub { height: auto; } .prod-form input { width: 100%; } .prod-form { width: 100%; } .prod__wr { height: auto; } .prod-sub__info p { margin-bottom: 15px; } .product__block { width: 100%; } .product__sub2--text { width: 100%; border-radius: 20px 20px 0px 0px; } .product__sub2--text { padding: 33px 23px; } .product2__img .prod2-bg { border-radius: 0px 0px 20px 20px; } .prod-bg-line { border-radius: 0px 0px 20px 20px; background: linear-gradient(179deg, #0E1F34 0.14%, rgba(14, 31, 52, 0.770205) 42.76%, rgba(14, 31, 52, 0) 88.95%), url(../imgs/aerial-panoramic-view-cancun-beach-city-hotel-zone-mexico-caribbean-coast-landscape.jpg), rgba(0, 0, 0, 0.02); } .pr-phon1 { width: 153px; right: 28px; top: 46px; } .pr-phon2 { top: 20px; width: 214px; right: 15px; } .navigator { margin-top: 120px; margin-bottom: 20px; } .navigator-item1 { top: -64px; } .object__imgs img { height: auto; } .nav-head span { font-size: 33px; } .nav-head { top: 7px; right: 16px; } .objects { margin-top: 45px; } .object__info h2, .object__info h1 { br { display: none; } } .object__info { font-size: 26px; } .objects__wrap { margin-top: 20px; } .object__prew-block { flex-direction: column; align-items: center; justify-content: center; } .object__prew { flex-direction: column; align-items: center; max-width: none; display: flex; max-width: none; margin-right: 0; margin-bottom: 25px; &:last-child { margin-bottom: 0; } } .obj-items2 { left: -155px; top: 398px; } .obj-items1 { display: none; } .obj-items5 { right: -36px; } .object__text { padding: 26px; } .object__text p { margin-bottom: 15px; font-size: 13px; } .object-list { left: 0; } .object-list__wr { flex-direction: column; } .object-list { margin-top: 30px; } .object-list__wr ul { margin-right: 0; margin-bottom: 25px; &:last-child { margin-bottom: 0; } } .object-auction { padding: 20px; margin: 34px 0px; } .object-auction p { font-size: 14px; } .object-auction h3 { font-size: 21px; line-height: 1.2; } .object-map { height: 265px; img { height: 100%; object-fit: cover; } } .object-map__info { left: 16px; bottom: 16px; } .object-map__info { width: 146px; height: auto; padding: 13px 17px; left: 16px; bottom: 16px; } .special { margin-top: 50px; } .special2 { margin-bottom: 50px; } .object__info h2 { font-size: 26px; } .object__info h1 { font-size: 26px; } .sale h1 { font-size: 28px; line-height: 1.2; margin-bottom: 19px; } s .sale-item1 { top: -66px; } .sale-item2 { display: none; } .sale-item1 { right: 29px; top: -70px; } .sale-item3 { font-size: 61px; line-height: 1.2; top: 3px; right: -63px; transform: rotate(90deg); } .sale h1 { font-size: 26px; } .job__blocks { flex-direction: column; } .job__block { width: 100%; } .job h2 { margin-bottom: 27px; font-size: 35px; line-height: 1.2; } .job .container { padding-top: 56px; padding-bottom: 85px; } .job__inp { flex-direction: column; align-items: center; justify-content: center; } .job__inp input { margin-right: 0; margin-bottom: 14px; width: 100%; &:last-child { margin-bottom: 0; } } .job__form { margin-top: -62px; } .job__inp { width: 100%; } .job__form-wr button { margin-left: 0; } .article__prew { height: 370px; } .article-prew__head { flex-direction: column; } .article-prew__head { align-items: flex-start; } .article__info h1 { font-size: 19px; line-height: 1.2; } .article-prew__text { padding-left: 23px; padding-right: 23px; } .article-prew__head { margin-top: 14px; } .article-prew__head span { font-size: 13px; } .article__text { padding-left: 15px; } .article__text p:nth-child(2)::after { left: -20px; } .article__text p { font-size: 13px; } .article__text2 { padding: 26px 26px; } .article__text2 p { margin-bottom: 19px; font-size: 12px; } .article-kr3 { display: none; } .article__meta { padding: 26px; margin-top: 18px; margin-bottom: 27px; } .article__meta p { font-size: 13px; } .art__img { height: 332px; } .article__inform { padding: 30px; margin-bottom: 28px; } .article__p { font-size: 13px; } .article__why p { margin-bottom: 11px; font-size: 13px; } .article__quote { margin-top: 37px; padding: 23px 26px; } .article__quote p { font-size: 13px; } .article__num li { font-size: 14px; } .article__num ol li::after { top: 0; } .article__num { padding: 24px; } .article-line { margin-top: 30px; flex-direction: column; align-items: flex-start; } .aricle__share { margin-bottom: 15px; } .article__social-block { width: 36px; height: 36px; margin-right: 10px; } .article__soc span { font-size: 12px; } .article-thems__block h3 { font-size: 16px; margin-top: 15px; margin-bottom: 10px; } .article-thems__block img { height: 232px; } .article-thems__block p { font-size: 14px; } .article-thems__block span { font-size: 13px; } .aticle-themes__btn { width: 100%; } .compan-line { display: none; } .company2 .container { padding-top: 152px; padding-bottom: 173px; } .company2__info h1 { margin-bottom: 12px; font-size: 25px; line-height: 1.2; } .company2__info p { font-size: 13px; } .company2__head { font-size: 45px; right: 0; } .we-team__block { width: 100%; display: flex; flex-direction: column; align-items: center; } .we-team h2 { text-align: center; } .we-team h2 { margin-bottom: 25px; font-size: 32px; } .features h2 { font-size: 32px; line-height: 1.2; } .features__head h3 { font-size: 21px; line-height: 1.2; } .features__block p { font-size: 13px; } .diplomas { margin-top: -39px; } .rev__head h2 { font-size: 25px; } .diplomas__blocks { display: flex; justify-content: center; } .tour { margin-top: 33px; } .tour-line { width: 1108px; max-width: 10000px; } .tour__content { overflow-x: auto; } .tour--lines { overflow-x: auto; max-width: 1279px; overflow-x: auto; width: 1279px; } .tour__block { width: 251px; } .tour__block:nth-child(2) { position: relative; left: -24px; } .tour__block:nth-child(3) { position: relative; left: -81px; } .tour__block:nth-child(4) { position: relative; left: -112px; } .tour--input { flex-direction: column; } .tour--input input { width: 100%; margin-bottom: 15px; &:last-child { margin-bottom: 0; } } .tour h2 { font-size: 22px; } .tour2 h1 { font-size: 33px; line-height: 1.2; margin-bottom: 23px; } .tour2 p { font-size: 17px; } .tour2 .container { padding-bottom: 110px; } .advantages__img { height: 310px; } .advantages__text h2 { font-size: 28px; line-height: 1.2; margin-bottom: 12px; } .advantages__text { margin-top: 20px; } .advantages__block2 { padding-bottom: 25px; margin-bottom: 19px; } .info3__block { padding: 27px; } .info__top { flex-direction: column; align-items: flex-start; } .info3__arr { margin-top: 20px; } .advantages { margin-top: 49px; } .advantages__text h2 { font-size: 25px; } .advantages__text p { font-size: 13px; } .blog__tegs { overflow-x: scroll; } .blog__teg { white-space: nowrap } .sale-item3 { display: none; } .blog-search h1 { margin-bottom: 21px; font-size: 35px; line-height: 1.2; } .blog-serch__result { margin-top: 25px; } .blog__block { width: 100%; } .blog__head { margin-top: 0; } .blog__block img { margin-bottom: 20px; } .politics p { margin-bottom: 15px; font-size: 13px; } .politics h3 { font-size: 25px; } .politics h2 { font-size: 29px; } .error-logo { left: 37px; top: 151px; } .error h2 { font-size: 30px; line-height: 1.2; margin-bottom: 17px; } .error p { font-size: 14px; } .err__head { left: 36px; bottom: 51px; top: auto; } .error { height: 699px; } .company3 .company__p { position: static; } .article-kr1 { display: none; } .error { height: 479px; } .error-logo { top: 115px; width: 100px; left: 20px !important; } .err__head { left: 20px !important; } .error h2 { font-size: 26px; line-height: 1.2; margin-bottom: 13px; } .error-imgs { top: 166px; left: -88px; } .company { padding-bottom: 60px; } .company__text span { display: none; } .company__text-more { margin-top: 10px; } .rev__head span { display: none; } .about__head span { display: none; } .rev__head h2 { margin: 0; } .menu__right h1 { font-size: 64px; } .menu .menu__bg { height: 600px; } .menu__left { padding-top: 300px; } .menu__left h2 { font-size: 42px; br { display: none; } } .menu__block div { display: none; } .menu__block { padding: 10px 20px; } .menu__contact { display: block; } .menu__left { padding-bottom: 60px; } .menu__left h2 { margin-bottom: 20px; } .menu__block { margin-bottom: 10px; margin-right: 0; } .homes__block { padding: 15px; } .homes { margin-top: 95px; } .homes__title { margin-bottom: 16px; font-size: 19px; } .homes__name { margin-bottom: 16px; font-size: 34px; width: 100%; line-height: normal; } .homes__block-content h2 { font-size: 19px; } .homes__btn { height: 45px; width: 100%; border-radius: 10px; } .homes { margin-bottom: 36px; } .about-us__header { font-size: 25px; margin-bottom: 14px; } .about-us__text { margin-bottom: 13px; } .about-us { margin-bottom: 40px; } .estate .container { padding: 27px 0px; } .estate__head { font-size: 23px; margin-bottom: 15px; line-height: 33px; } .estate__name { font-size: 13px; line-height: 25px; margin-bottom: 16px; } .estate__list { margin-bottom: 22px; } .estate { margin-bottom: 30px; } .working__head { margin-bottom: 29px; font-size: 24px; } .working__block { width: calc(50% - 7px); padding: 23px 0px 23px 0px; margin-bottom: 21px; } .working__num{ font-size: 11px; } .working { margin-bottom: 0; } .advantages-v2{ margin-top: 16px; } .advantages__text h2 { font-size: 22px; } .advantages ol li{ font-size: 13px } .advantages ul li{ font-size: 13px } .income-v2 .income__tittle { position: static; } .income-v2 .income__header{ flex-direction: column; align-items: flex-start; } .income-v2 .income__tittle{ line-height: normal; } .income-v2 .income__name { width: 100%; line-height: normal; font-size: 22px; } .income-v2 .income__tittle{ font-size: 49px; } .income-v2 .income__prew { font-size: 14px; margin-bottom: 34px; line-height: 1.8; } .income__header { margin-bottom: 13px; } .income-v2 .income__prew{ margin-bottom: 26px; } .income-v2 .container { padding: 40px 0px; } .income__blocks{ flex-direction: column; } .income-v2 .income__block { width: 100%; margin-bottom: 25px; } .income-v2 .income__text--big { font-size: 17px; } .income-v2 .income__block-text { margin-bottom: 18px; } .income-v2 .income__block-name { margin-bottom: 16px; } .income-v2 .income__block-text{ font-size: 13px; } .income-v2 .income__block{ margin-bottom: 0; } .necessarily__header h2 { margin-bottom: 5px; font-size: 22px; line-height: normal; } .necessarily__blocks{ flex-direction: column; } .necessarily__block { width: 100%; margin-bottom: 17px; padding: 21px; } .necessarily__block-head { font-size: 17px; } .necessarily__block{ &:last-child{ margin-bottom: 0; } } .company { margin-bottom: 36px; } .earn__head h1 { font-size: 24px; margin-bottom: 7px; line-height: normal; } .earn__title { font-size: 15px; line-height: normal; } .earn__block { padding: 18px 16px; min-width: 32%; width: 100%; margin-bottom: 17px; } .earn__social{ width: 40px; height: 40px; } .earn { margin-bottom: 50px; } .whyus { margin-top: 251px; } .whyus__text-img { position: static; font-size: 48px; } .whyus__name { font-size: 23px; br{ display: none; } } .whyus__head-text { font-size: 16px; } .company__btn{ display: flex; position: relative; margin: 0 auto; } .exclusive{ height: auto; } .exclusive__name{ font-size: 24px; } .exclusive__text { margin-bottom: 17px; width: 100%; font-size: 14px; line-height: 1.6; } .exclusive__btn { height: 42px; border-radius: 10px; } .exclusive .container { padding-top: 37px; padding-bottom: 34px; } .s-item{ margin-right: 8px; width: 30px; } .special h2{ font-size: 19px; } .special h2 { text-align: start; margin-bottom: 4px; } .special { margin-top: 13px; } .special__block{ margin-bottom: 0; } } @media screen { } /** * 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-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%; }