/* STYLES 04.02.25
Developer: lapse.site
Screen resolution: 460, 860, 1024, 1440, 1920 */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap'); @font-face {
    font-family: 'Univers';
    src: url('/fonts/UniversLTCYR-45Light.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Univers';
    src: url('/fonts/UniversLTCYR-65Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --bg: #e4f1ff;
    --bg2: #fff;
    --bg3: #152849;
    --text: #1d425e;
    --text1: #527997;
    --color1: #58a6d6;
    --color2: #63b9ee;
    --color3: #adddfb;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 20px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Univers", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

/* HEADER */
header {
    position: relative;
    background: #112038;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    z-index: 5;
}

header.home {
}

header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
}

.header-logo {
    background: #112038;
    box-shadow: 3px 2px 14px 0px rgb(5 11 20);
    padding: 15px;
    margin-top: -10px;
    margin-bottom: -30px;
    margin-right: auto;
}

.header-logo img {
    width: 100px;
}

/* HEADER USER */
.header-user {
    position: relative;
}

.header-user > a {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.header-user > a i:first-child {
    font-size: 25px;
}

@media (max-width: 860px) {
    .header-user > a span {
        display: none;
    }
}

.header-user > a i:last-child {
    margin-left: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.header-user.active > a i:last-child {
    transform: rotate(180deg);
}

.header-user > div {
    position: absolute;
    background: #fff;
    color: var(--text);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: 220px;
    top: 100%;
    right: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    font-size: 14px;
    transition: 0.3s;
    overflow: hidden;
    z-index: 5;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user > div a {
    display: block;
    padding: 5px 10px;
}

.header-user > div a:last-child {
    color: #f44336;
}

.header-user > div a:hover {
    color: var(--color1);
}

.header-user > div a i {
    margin-right: 10px;
}

/* MODAL PHONE */
.modal-phone {
    display: none;
    position: fixed;
    width: 450px;
    max-width: 450px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg2);
    color: #000;
    border-radius: 20px;
    padding: 50px 60px 20px;
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-phone {
        padding: 30px 30px 20px;
        max-width: 360px;
    }
}

.modal-phone > .fa-xmark {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    color: var(--color1);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.modal-phone form h2 + span {
    display: block;
    color: #7d8189;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: -20px;
    margin-bottom: 30px;
}

.modal-phone form > span a {
    color: blue;
    text-decoration: underline dotted;
}

.modal-phone_lost {
    display: block;
    font-size: 13px;
    text-align: center;
    border-top: 1px solid #eee;
    color: #8d8d8d;
    padding: 20px 0;
    margin-top: 20px;
}

.modal-phone_copy {
    display: block;
    color: var(--text1);
    font-size: 10px;
    font-weight: 400;
    margin-top: 30px;
}

.modal-phone_copy > a, .modal-phone_lost > a {
    color: var(--color3);
    text-decoration: underline;
    opacity: 0.9;
}

.modal-phone_back {
    display: block;
    color: var(--color1);
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 20px;
    text-decoration: underline dotted;
}

.modal-phone_code {
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 40px);
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.modal-phone_code input {
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* GROHE HOME */
.groh-home {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100vh;
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-home {
        padding: 150px 0;
        height: auto;
    }
}

.groh-home:before {
    content: "";
    position: absolute;
    background: url(../images/wave.png) no-repeat;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.groh-home > img {
    position: absolute;
    width: 110%;
    height: 110%;
    object-fit: cover;
    transition: transform 2s;
    z-index: -2;
}

.groh-home_logo {
    position: relative;
    width: 700px;
    height: 325px;
    transition: transform 2s;
}

@media (max-width: 860px) {
    .groh-home_logo {
        width: 90%;
        height: auto;
    }
}

.groh-home_logo img:first-child {
    position: absolute;
    top: 50px;
    right: 73px;
    width: 150px;
    animation: blick 5s infinite;
}

@media (max-width: 860px) {
    .groh-home_logo img:first-child {
        top: 0;
        right: 25px;
    }
}

.groh-home_logo img {
    width: 100%;
    height: auto;
}

@keyframes blick {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.8) rotate(2deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0;
    }
}

.groh-home > span {
    display: block;
    color: #dfeff8;
    font-size: 25px;
    font-weight: 400;
    margin-top: -60px;
    margin-bottom: 80px;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .groh-home > span {
        margin-top: -20px;
        margin-bottom: 60px;
    }
}

.groh-home > a {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    background: linear-gradient(180deg, #fb9830, #fc7b41);
    padding: 15px 50px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.groh-home > a:hover {
    background: linear-gradient(80deg, #fb9830, #fc7b41);
}

.groh-home > a > i {
    color: #ffb700;
    font-size: 12px;
}

.groh-home_img {
}

@media (max-width: 860px) {
    .groh-home_img {
        display: none;
    }
}

.groh-home_img img {
    position: absolute;
    width: 100px;
    z-index: 2;
    transition: transform 2s;
}

.groh-home_img img:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 120px;
}

.groh-home_img img:nth-child(2) {
    bottom: 10%;
    right: 5%;
    width: 200px;
}

.groh-home_img img:nth-child(3) {
    top: 20%;
    right: 35%;
    width: 30px;
}

.groh-home_img img:nth-child(4) {
    bottom: 10%;
    left: 10%;
    width: 250px;
}

.groh-home_img img:nth-child(5) {
    top: 10%;
    left: 30%;
    width: 30px;
}

.groh-home_img img:nth-child(6) {
    top: 10%;
    right: 20%;
    width: 30px;
}

.groh-home_img img:nth-child(7) {
    top: 10%;
    right: -60px;
    width: 200px;
}

/* GROHE ETAPS */
.groh-etaps {
}

.groh-etaps > h1 {
    text-align: center;
    margin-bottom: 60px;
}

.groh-etaps > h1 b {
    color: #fe6d2c;
}

.groh-etaps > ul {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .groh-etaps > ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .groh-etaps > ul {
        grid-template-columns: 1fr;
    }
}

.groh-etaps > ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(45deg, #073a59, #42474d);
    padding: 30px;
    border-radius: var(--radius);
    color: #fff;
    min-height: 400px;
    overflow: hidden;
}

.groh-etaps > ul li:first-child {
    background: linear-gradient(45deg, #fe6d2c, #feb800);
    box-shadow: 0 0 20px 0px rgb(252 123 65 / 50%);
}

.groh-etaps > ul li span:first-child {
    display: block;
    color: #ffe7c7;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.groh-etaps > ul li h2 {
    margin-bottom: auto;
}

.groh-etaps > ul li span {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.groh-etaps > ul li b > a {
    color: var(--color3);
}

.groh-etaps > ul li a:not(.groh-etaps > ul li b a) {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
    background: #fff;
    border: solid 3px #fff;
    color: #fe7f21;
    padding: 15px 50px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
    transition: 0.3s;
}

.groh-etaps > ul li a:hover:not(.groh-etaps > ul li b a) {
    background: transparent;
    border: solid 3px #fff;
    color: #fff;
}

.groh-etaps > ul li a > i {
    color: #ffb700;
    font-size: 12px;
}

.groh-etaps > a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
    width: max-content;
    background: linear-gradient(180deg, #fb9830, #fc7b41);
    box-shadow: 0 0 20px 0px rgb(252 123 65 / 50%);
    color: #fff;
    padding: 15px 50px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 40px auto 0 auto;
    transition: 0.3s;
}

.groh-etaps > a:hover {
    background: linear-gradient(80deg, #fb9830, #fc7b41);
}

.groh-etaps > a > i {
    color: #ffb700;
    font-size: 12px;
}

/* GROHE PRIZ */
.groh-priz {
    position: relative;
    background: linear-gradient(180deg, #e5651c, #e0912c);
    border-radius: 80px 80px 0 0;
    box-shadow: 0 0 20px 0px rgb(252 123 65 / 50%);
    color: #fff;
    padding: 100px 0 100px 0;
}

@media (max-width: 860px) {
    .groh-priz {
        border-radius: 0;
        padding: 80px 0;
    }
}

.groh-priz > * h1 {
    text-align: center;
}

.groh-priz > * h1 + span {
    display: block;
    width: 800px;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto 60px auto;
}

@media (max-width: 860px) {
    .groh-priz > * h1 + span {
        width: 100%;
    }
}

.groh-priz_slider {
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-priz_slider {
        padding: 0;
        overflow: visible;
    }
}

.groh-priz_slider > .fal {
    position: absolute;
    top: 40%;
    left: 0;
    background: var(--color1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

@media (max-width: 860px) {
    .groh-priz_slider > .fal {
        display: none;
    }
}

.groh-priz_slider > .fa-chevron-right {
    left: unset;
    right: 0;
}

.groh-priz ul li {
    text-align: center;
}

.groh-priz ul li img {
    background: var(--bg);
    border: 4px solid #ff9759;
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.groh-priz ul li > span:last-child {
    display: block;
    color: #fbd4bc;
    font-size: 14px;
}

/* GROHE OPIC */
.groh-opic {
    background: #3382d1;
    color: #fff;
    padding: 100px 0;
}

.groh-opic * > ul:first-child {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    font-size: 18px;
    margin-bottom: 100px;
}

@media (max-width: 860px) {
    .groh-opic * > ul:first-child {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        margin-bottom: 50px;
    }
}

.groh-opic * > ul:first-child li:first-child {
    font-size: 35px;
}

.groh-opic * > ul:first-child li span {
    display: block;
    font-weight: 300;
    margin-top: 20px;
}

.groh-opic * h1 + ul {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .groh-opic * h1 + ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.groh-opic * h1 + ul li {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
}

@media (max-width: 860px) {
    .groh-opic * h1 + ul li {
        min-width: 250px;
    }
}

.groh-opic * h1 + ul li img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-opic * h1 + ul li img {
        height: 150px;
    }
}

.groh-opic * h1 + ul li span {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

/* GROHE POB */
.groh-pob {
}

.groh-pob > h1 {
    text-align: center;
    margin-bottom: 60px;
}

.groh-pob > h1 b {
    color: #fe6d2c;
}

.groh-pob > ul {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .groh-pob > ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.groh-pob > ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 10px;
    background: linear-gradient(45deg, #fe6d2c, #feb800);
    box-shadow: 0 0 20px 0px rgb(252 123 65 / 50%);
    padding: 20px;
    border-radius: var(--radius);
    color: #fff;
    min-height: 300px;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-pob > ul li {
        min-width: 300px;
    }
}

.groh-pob > ul li > img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.groh-pob > span {
    display: block;
    text-align: center;
}

/* GROHE DECOR */
.groh-dec {
    position: relative;
    background: #58a6d6;
    padding: 15px 20px;
    color: #fff;
    transform: rotate(4deg);
    margin-left: -10vw;
    margin-right: -10vw;
    margin-top: 60px;
}

.groh-dec + .groh-dec {
    background: #225187;
    transform: rotate(-4deg);
    margin-top: -50px;
    margin-bottom: 60px;
}

.groh-dec > div {
    display: flex;
    align-items: center;
    font-weight: bold;
    white-space: nowrap;
    animation: moveLeft 40s linear infinite;
    transform: translateX(0%);
}

@keyframes moveLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.groh-dec > div i {
    margin: 0 20px;
}

/* GROHE SHANS */
.groh-shans {
    position: relative;
    background: #209be1;
    color: #fff;
    padding: 100px 0;
}

.groh-shans:before, .groh-shans:after {
    content: "";
    position: absolute;
    background: url(../images/wave.png) no-repeat;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.groh-shans:after {
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

.groh-shans * > h1 {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 860px) {
    .groh-shans * > h1 {
        width: 100%;
    }
}

.groh-shans * > h1 b {
    color: #ffe7c7;
}

.groh-shans ul {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 40px;
    margin-top: 60px;
}

@media (max-width: 860px) {
    .groh-shans ul {
        justify-content: flex-start;
    }
}

.groh-shans ul li {
    background: #4dade7;
    box-shadow: 0px 0px 40px #1b6a976b;
    padding: 30px;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-shans ul li {
        min-width: 300px;
    }
}

.groh-shans ul li img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.groh-shans ul li span {
    display: block;
    margin-top: 10px;
    text-align: center;
}

/* GROHE WATER */
.groh-water {
    position: relative;
    padding: 40px 0 150px 0;
}

.groh-water:before {
    content: "";
    position: absolute;
    top: -120px;
    left: 0;
    background: url(../images/water.png) top/cover no-repeat;
    width: 100%;
    height: 420px;
    transform: scaleX(-1);
    z-index: 3;
}

@media (min-width: 1900px) {
    .groh-water:before {
        top: -250px;
        height: 550px;
    }
}

@media (max-width: 860px) {
    .groh-water:before {
        top: unset;
        height: 300px;
    }
}

.groh-water .container {
    z-index: 3;
    margin-left: 15%;
}

@media (max-width: 860px) {
    .groh-water .container {
        margin-left: auto;
    }
}

.groh-water span {
    display: block;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.groh-water a {
    display: inline-block;
    background: linear-gradient(180deg, #3a9fdf, #03055a);
    box-shadow: 0px 3px 0px #fff;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

@media (max-width: 860px) {
    .groh-water a {
        font-size: 20px;
    }
}

.groh-water a:hover {
    background: linear-gradient(190deg, #3a9fdf, #03055a);
}

/* LK USER */
.lk-user {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

@media (max-width: 860px) {
    .lk-user {
        flex-wrap: wrap;
    }
}

.lk-user_pr {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
    color: #fff;
    text-align: center;
}

.lk-user > div h2 {
    margin-bottom: 5px;
}

.lk-user_promo {
    margin-left: auto;
}

.lk-user_promo > a {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    background: linear-gradient(45deg, #073a59, #42474d);
    color: #ffe7c7;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.lk-user_promo > span {
    display: block;
    opacity: 0.7;
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
}

.lk-tab_link {
    display: flex;
    align-items: center;
    background: var(--bg2);
    padding: 5px;
    border-radius: 20px;
}

.lk-tab_link > span {
    color: var(--text);
    padding: 15px 20px;
    border-radius: 20px;
}

.lk-tab_link > span.active {
    background: linear-gradient(180deg, #fb9830, #fc7b41);
    color: #fff;
}

.lk-tab_content {
    display: none;
}

.lk-tab_content.active {
    display: block;
}

.lk-promo_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 860px) {
    .lk-promo_items {
        grid-template-columns: 1fr;
    }
}

.lk-promo_items > li {
    position: relative;
    background: #fff;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: var(--radius);
}

.lk-promo_items > li .status {
    display: block;
    color: #8BC34A;
    font-size: 12px;
    margin-bottom: 10px;
}

.lk-promo_items > li span:last-child {
    display: block;
    color: var(--text1);
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
}

/* FOOTER */
footer {
    position: relative;
    background: var(--bg3);
    color: #fff;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 30px;
    padding: 30px 0;
    font-size: 14px;
}

@media (max-width: 860px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.footer-soc a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50px;
    background: var(--light);
    font-size: 14px;
    color: #fff;
}

.footer-soc a:hover {
    background: var(--color1);
}

.footer-tel > a:last-child {
    color: var(--color3);
}

.footer-tel > a:first-child {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

footer .container > div:first-child {
    margin-right: auto;
}

.footer-menu:last-child {
    margin-right: auto;
}

.footer-menu span {
    display: block;
    color: var(--color3);
    font-size: 14px;
    font-weight: bold;
}

.footer-menu a {
    display: block;
    font-weight: 400;
    margin-top: 10px;
}

.footer-menu a:hover {
    text-decoration: underline dotted;
}

footer .footer-copy {
    font-size: 12px;
    color: var(--color3);
    border-top: 1px solid var(--light);
}

.footer-copy span {
    margin-right: auto
}
