/* STYLES 15.10.2025
Developer: t.me/moretheme
Developer site: https://lapse.kz/
Screen resolution: 460, 860, 1200, 1600, 1920 */
@font-face {
    font-family: 'Univers LT CYR';
    src: url('../fonts/UniversLTCYR-45Light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Univers LT CYR';
    src: url('../fonts/UniversLTCYR-55Roman.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Univers LT CYR';
    src: url('../fonts/UniversLTCYR-65Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* BASIC */
:root {
    --bg: #fff;
    --bg2: #f8f8f8;
    --text: #0F2C52;
    --text1: #fff;
    --text2: #62758e;
    --color1: #FF5001;
    --color2: #ff7131;
    --color3: #0F2C52;
    --color4: #3585C6;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 30px;
}

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

/* HEADER */
header {
    position: absolute;
    background: transparent;
    color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    padding: 40px 0;
    z-index: 7;
    transition: 0.3s;
}

@media (max-width: 860px) {
    header {
        padding: 15px 0;
    }
}

header.sticky {
    position: fixed;
    background-image: linear-gradient(0deg,rgba(17,17,19,0),rgb(0 0 0 / 60%));
    z-index: 50;
}

header.sticky-hide {
    top: -120px;
}

header.sticky-vis {
    top: 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    margin-bottom: 30px;
}

.header-menu {
    display: none;
}

.header-menu > a:nth-child(2) {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}

.header-menu > a:not(.header-logo, .header-email) {
    display: block;
    margin: 5px 0;
}

.header-menu hr {
    display: block;
    width: 100%;
    border-top: 1px solid #fff;
    margin-top: 30px;
    padding-top: 20px;
}

.header-link {
    width: 100%;
    background: var(--color1);
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.header-email {
    margin-top: auto;
}

.header-lang {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
}

.header-lang > a {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    backdrop-filter: blur(5px);
    background: var(--light);
    border: 1px solid var(--light2);
    padding: 5px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
}

.header-lang > a > span {
    width: 2.32ch;
    overflow: hidden;
    white-space: nowrap;
}

.header-lang > a:hover {
    background: var(--light2);
}

.header-lang > div {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 150px;
    top: 100%;
    right: 0;
    background: var(--light);
    border: 1px solid var(--light2);
    padding: 4px 20px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 4px;
    overflow: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 5;
}

.header-lang.active > div {
    visibility: visible;
    opacity: 1;
}

.header-lang > div a {
    display: block;
    color: #fff;
    padding: 5px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.header-lang > div a:hover, .header-lang > div a.active {
    background: var(--light);
}

header a[href="#modal-phone"] {
    display: inline-block;
    backdrop-filter: blur(5px);
    background: var(--light);
    border: 1px solid var(--light2);
    padding: 4px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

/* MOB MENU 11.0 */
.mobmenu-btn {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 35px;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
    z-index: 9;
}

@media (max-width: 1600px) {
    .mobmenu-btn {
        font-size: 30px;
    }
}

.mobmenu-btn.active {
    opacity: 0;
    visibility: hidden;
}

.mobmenu-btn.active:before {
    content: "\f00d";
}

.mobmenu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    margin-left: 0;
    background: #3585C6;
    padding: 40px;
    color: #fff;
    transition: left 0.3s;
    overflow-y: auto;
    z-index: 50;
}

.mobmenu.active {
    left: 0;
    border-radius: 0;
}

.mobmenu-sub > a.active + div {
    position: relative;
    top: 0;
    margin-bottom: 20px;
}

.mobmenu .mobmenu-close {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
}

@media (max-width: 860px) {
    .mobmenu .mobmenu-close {
        position: fixed;
        top: -40px;
        left: 240px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--bg2);
        font-size: 30px;
        text-align: center;
        transition: 0.3s;
    }

    .mobmenu.active .mobmenu-close {
        display: block;
        top: 20px;
    }
}

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

.header-user > a {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    line-height: 1.25;
    height: 32px;
    width: 200px;
    backdrop-filter: blur(5px);
    background: var(--light);
    border: 1px solid var(--light2);
    padding: 4px 20px;
    border-radius: 15px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.header-user.active > a {
    visibility: hidden;
    opacity: 0;
}

.header-user > div {
    position: absolute;
    width: 200px;
    background: var(--light);
    border: 1px solid var(--light2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 15px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 8px 10px;
    top: 0;
    right: 0;
    visibility: hidden;
}

.header-user.active > div {
    visibility: visible;
}

.header-user > div span {
    display: block;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 1px dotted var(--light2);
    padding: 4px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.header-user > div > a {
    display: block;
    color: #e8e8e8;
    margin: 5px 0;
    color: #fff;
    padding: 4px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.header-user > div > a:hover {
    background: var(--light);
}

.accord.in-mob-menu {
    margin-top: 7px;
    margin-bottom: 5px;
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
}

.accord.in-mob-menu::after {
    font-size: 20px;
    margin-left: 10px;
    position: relative;
    margin-top: auto;
    bottom: -1px;
    top: auto;
    color: white;
}

.accord-text.in-mob-menu {
    color: #fff;
    margin-bottom: 0;
    padding: 10px;
    font-size: inherit;
}

.accord-text.in-mob-menu a {
    margin-bottom: 7px;
    display: flex;
}

/* SPEEDBAR */
.speedbar {
    color: #808191;
    font-size: 14px;
    margin-bottom: 30px;
}

.speedbar a:hover {
    color: var(--color1);
}

/* GROH HOME */
.groh-home {
    position: relative;
    overflow: hidden;
}

.groh-home .swiper-pagination {
    bottom: 20px;
    z-index: 3;
}

.groh-home .swiper-pagination-bullet {
    background: var(--light2);
    opacity: 1;
}

.groh-home .swiper-pagination-bullet-active {
    background: var(--color1);
    width: 30px;
    border-radius: 8px;
}

.groh-home_item {
    position: relative;
    color: #fff;
    height: 100vh;
    overflow: hidden;
}

.groh-home_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    z-index: 1;
}

.groh-home_content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    height: 100%;
    z-index: 2;
    margin-top: 220px;
}

@media (max-width: 1600px) {
    .groh-home_content {
        margin-top: 120px;
    }
}

@media (max-width: 860px) {
    .groh-home_content {
        margin-top: 200px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.groh-home_content h1 {
    text-transform: uppercase;
    font-size: 70px;
}

@media (max-width: 1600px) {
    .groh-home_content h1 {
        font-size: 60px;
    }
}

@media (max-width: 860px) {
    .groh-home_content h1 {
        font-size: 45px;
        margin: 0 40px;
    }
}

.groh-home_content h1 + span {
    display: block;
    font-size: 50px;
    font-weight: 300;
    margin-top: -45px;
    margin-bottom: 30px;
}

@media (max-width: 1600px) {
    .groh-home_content h1 + span {
        font-size: 35px;
    }
}

@media (max-width: 860px) {
    .groh-home_content h1 + span {
        font-size: 25px;
        margin: 0 60px;
        margin-bottom: 40px;
    }
}

.groh-home_content span + h2 {
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 500;
}

@media (max-width: 1600px) {
    .groh-home_content span + h2 {
        font-size: 35px;
    }
}

@media (max-width: 860px) {
    .groh-home_content span + h2 {
        font-size: 24px;
    }
}

.groh-home_content h2 + span {
    display: block;
    font-size: 40px;
    font-weight: 300;
    margin-top: -45px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

@media (max-width: 1600px) {
    .groh-home_content h2 + span {
        font-size: 35px;
    }
}

@media (max-width: 860px) {
    .groh-home_content h2 + span {
        font-size: 15px;
        margin-top: -30px;
    }
}

.groh-home_content > a {
    text-transform: uppercase;
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 5px 35px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    margin-top: 40px;
}

@media (max-width: 1600px) {
    .groh-home_content > a {
        font-size: 20px;
    }
}

@media (max-width: 860px) {
    .groh-home_content > a {
        font-size: 14px;
        padding: 10px 25px;
        margin-top: 0;
    }
}

.groh-home_content .groh-home_text:last-child {
    font-size: 26px;
}

@media (max-width: 860px) {
    .groh-home_content .groh-home_text:last-child {
        font-size: 15px;
        margin: 0 30px;
    }
}

.groh-home_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 860px) {
    .groh-home_bg_lastnews img {
        width: 1320px;
    }

    .groh-home_bg_rules img {
        object-position: right;
        width: 730px;
    }
}

@media (max-width: 860px) {
    .groh-home_item:nth-child(2)::before {
        background: rgb(0 0 0 / 60%);
    }
}

@media (max-width: 860px) {
    .groh-home_item:nth-last-child(1) > .groh-home_bg > img {
        object-position: left;
    }
}

.groh-lastnews {
    margin: 25px 0;
}

/* GROH OPREM */
.groh-oprem {
}

.groh-oprem > span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.groh-oprem > h2 {
    font-size: 60px;
}

@media (max-width: 1600px) {
    .groh-oprem > h2 {
        font-size: 40px;
    }
}

@media (max-width: 860px) {
    .groh-oprem > h2 {
        text-transform: uppercase;
    }
}

.groh-oprem > h3 {
    font-size: 40px;
}

@media (max-width: 1600px) {
    .groh-oprem > h3 {
        font-size: 25px;
    }
}

.groh-oprem > h2 span {
    font-weight: 400;
}

.groh-oprem p {
    margin-bottom: 0;
    font-size: 25px;
}

@media (max-width: 1600px) {
    .groh-oprem p {
        font-size: 18px;
    }
}

.groh-oprem p + p {
    margin-top: 10px;
}

/* GROH MISS */
.groh-miss {
    background: url(../images/missfon.jpg) top/cover no-repeat;
    box-shadow: inset 0 9999px rgb(22 20 30 / 50%);
    color: #fff;
    padding: 60px 0;
}

.groh-miss h2 {
    font-size: 60px;
}

@media (max-width: 1600px) {
    .groh-miss h2 {
        font-size: 40px;
    }
}

.groh-miss h3 {
    font-size: 40px;
}

.groh-miss h2 + p {
    font-size: 32px;
}

@media (max-width: 1600px) {
    .groh-miss h2 + p {
        font-size: 20px;
    }
}

.groh-miss_items {
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 500px;
}

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

.groh-miss_items ul:last-child li {
    height: 100%;
}

@media (max-width: 860px) {
    .groh-miss_items ul:last-child li {
        width: 100%;
    }
}

.groh-miss_items ul li {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.27), rgba(255, 255, 255, 0.27)), linear-gradient(0deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.11));
    backdrop-filter: blur(10px);
    border: 2px solid rgb(255 255 255 / 11%);
    padding: 40px;
    border-radius: 20px;
}

.groh-miss_items ul li p {
    font-size: 24px;
}

@media (max-width: 1600px) {
    .groh-miss_items ul li p {
        font-size: 18px;
    }
}

.groh-miss_items ul li + li {
    margin-top: 10px;
}

.groh-miss_items ul li span {
    display: block;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 1600px) {
    .groh-miss_items ul li span {
        font-size: 18px;
    }
}

/* GROH MOB MISS */
.grohmob-miss {
}

.grohmob-miss_item, .grohmob-miss ul li {
    background: var(--color3);
    color: #fff;
    padding: 20px 40px 20px 20px;
    border-radius: 20px 0 0 20px;
    margin-right: -10vw;
}

.grohmob-miss_item + h2 {
    margin-top: 20px;
}

.grohmob-miss ul li + li {
    margin-top: 20px;
}

.grohmob-miss ul li span {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

/* GROH NOMI */
.groh-nomi {
}

.groh-nomi_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .groh-nomi_title {
        display: grid;
        grid-gap: 20px 20px;
        grid-auto-rows: max-content;
        grid-template-columns: 1fr 1fr;
    }
}

.groh-nomi_title h2 {
    min-width: max-content;
    margin-bottom: 0;
    font-size: 60px;
}

@media (max-width: 1600px) {
    .groh-nomi_title h2 {
        font-size: 35px;
    }
}

@media (max-width: 860px) {
    .groh-nomi_title h2 {
        font-size: 25px;
    }
}

.groh-nomi_title span {
    font-size: 18px;
    text-align: right;
    font-weight: 500;
    margin-top: -40px;
}

@media (max-width: 1600px) {
    .groh-nomi_title span {
        font-size: 14px;
    }
}

@media (max-width: 860px) {
    .groh-nomi_title span {
        font-size: 14px;
        text-align: left;
        grid-column: 1/-1;
        margin-top: 0;
    }
}

.groh-nomi_title img {
    width: 270px;
    margin: 30px 25px 0 30px;
}

@media (max-width: 860px) {
    .groh-nomi_title img {
        width: 100%;
        margin: 0;
    }
}

.groh-nomi_items li, .grohmob-nomi_items li {
    position: relative;
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.4;
    overflow: hidden;
}

.grohmob-nomi_items li {
    border-radius: 30px 0 0 30px;
    margin-left: 20px;
}

.grohmob-nomi_items li + li {
    margin-left: 0px;
}

.groh-nomi_items li:before, .grohmob-nomi_items li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(0 0 0 / 61%), transparent);
}

.groh-nomi_content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    font-size: 30px;
    line-height: 30px;
}

@media (max-width: 860px) {
    .groh-nomi_content {
        font-size: 24px;
        line-height: 24px;
    }
}

.groh-nomi_items li img {
    width: 100%;
    height: 100%;
}

/* GROH MOBILE NOMI */
.grohmob-nomi {
    position: relative;
}

.grohmob-nomi_nav {
    position: absolute;
    top: 5px;
    right: 20px;
}

.grohmob-nomi_nav i {
    display: inline-block;
    border: 1px solid var(--color3);
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 5px;
}

.grohmob-nomi_text {
    display: block;
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 30px;
}

.grohmob-nomi_items li {
    height: 220px;
}

.grohmob-nomi_items li > img {
    height: 250px;
}

/* GROH PRAV */
.groh-prav {
    background: #0F2C52;
    color: #fff;
    padding: 60px 0;
}

.groh-prav_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .groh-prav_title {
        flex-direction: column;
    }
}

.groh-prav_title h2 {
    font-size: 60px;
}

@media (max-width: 1600px) {
    .groh-prav_title h2 {
        font-size: 35px;
    }
}

.groh-prav_title img {
    width: 270px;
    margin: 0px 25px 0 25px;
}

@media (max-width: 1600px) {
    .groh-prav_title img {
        margin: 0;
    }
}

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

.groh-prav_title span {
    width: 450px;
    font-size: 20px;
    text-align: right;
}

@media (max-width: 1600px) {
    .groh-prav_title span {
        font-size: 16px;
    }
}

@media (max-width: 860px) {
    .groh-prav_title span {
        display: inline-block;
        font-size: 12px;
        text-align: left;
        text-transform: none;
        width: 100%;
        margin-top: -20px;
    }
}

.groh-prav ul {
}

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

.groh-prav ul li {
    max-width: 400px;
}

@media (max-width: 860px) {
    .groh-prav ul li {
        margin: 0 auto;
    }
}

.groh-prav ul li img {
    display: block;
    margin: 0 auto;
}

.groh-prav ul li div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(0 0 0 / 35%);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    min-height: 220px;
    border-radius: 30px;
    margin-top: -129px;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-prav ul li div {
        font-size: 16px;
        min-height: 150px;
        line-height: 1.8;
    }
}

.groh-link {
    display: block;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    width: max-content;
    margin: 0 auto;
    padding: 5px 8px 5px 20px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 30px;
}

.groh-link > i {
    background: #fff;
    transform: rotate(45deg);
    border-radius: 50%;
    color: #000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 10px;
}

/* GROH PRIS */
.groh-pris_items {
}

.groh-pris h2 {
    font-size: 60px;
}

@media (max-width: 1600px) {
    .groh-pris h2 {
        font-size: 35px;
    }
}

.groh-pris_items li, .grohmob-pris li {
    position: relative;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: #fff;
    height: 400px;
    width: 400px;
    border-radius: 30px;
    overflow: hidden;
}

@media (max-width: 1600px) {
    .groh-pris_items li, .grohmob-pris li {
        height: 300px;
        width: 100%;
    }
}

.groh-pris_items li:before, .grohmob-pris li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}

.groh-pris_items li > img, .grohmob-pris li > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.groh-pris_content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 10px 30px 20px;
    z-index: 2;
}

.groh-pris_est {
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 1600px) {
    .groh-pris_est {
        font-size: 40px;
    }
}

.groh-pris_est span {
    font-size: 150px;
    font-weight: bold;
}

.groh-pris_est span.georgian {
    font-size: 100px;
    line-height: 1;
}

@media (max-width: 1600px) {
    .groh-pris_est span {
        font-size: 80px;
    }
}

.groh-pris_content > span {
    display: block;
    font-size: 32px;
    margin-bottom: 25px;
}

@media (max-width: 1600px) {
    .groh-pris_content > span {
        font-size: 25px;
    }
}

.groh-pris_content > span b {
    display: block;
}

.groh-pris_link {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.groh-pris_content > a, .groh-pris_link > a {
    max-width: 180px;
    background: var(--color1);
    border-radius: 30px;
    padding: 5px 8px 5px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.3s;
}

@media (max-width: 860px) {
    .groh-pris_content > a, .groh-pris_link > a {
        max-width: 155px;
        font-size: 12px;
    }
}

.groh-pris_logo > a {
    background: none;
    text-decoration: underline;
    font-size: 10px;
}

.groh-pris_logo > img {
    width: 100px;
    margin-top: 5px;
    padding: 5px 20px;
    background: #ffffff;
    border-radius: 50px;
}

.groh-pris_content > a:hover {
    background: var(--color2);
}

.groh-pris_content > a > i, .groh-pris_link > a > i {
    background: #fff;
    transform: rotate(45deg);
    border-radius: 50%;
    color: var(--color1);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 10px;
    transition: 0.3s;
}

.groh-pris_content > a:hover i, .groh-pris_link > a:hover i {
    transform: rotate(90deg);
}

/* GROH JURI */
.groh-juri {
    background: #0F2C52;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
    height: auto;
}

@media (max-width: 1600px) {
    .groh-juri {
        height: auto;
    }
}

.groh-juri h2 {
    font-size: 60px;
}

@media (max-width: 1600px) {
    .groh-juri h2 {
        font-size: 35px;
    }
}

.groh-juri_items {
    overflow: hidden;
}

.groh-juri_nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 860px) {
    .groh-juri_nav {
        position: absolute;
        top: 0;
        right: 0;
    }
}

.groh-juri_nav .fal {
    display: inline-block;
    border: 1px solid #fff;
    width: 64px;
    height: 64px;
    line-height: 60px;
    text-align: center;
    border-radius: 8px;
    margin: 30px 40px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 40px;
    font-weight: 500;
}

@media (max-width: 1600px) {
    .groh-juri_nav .fal {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
        margin: 10px;
    }
}

@media (max-width: 860px) {
    .groh-juri_nav .fal {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
        margin: 0 5px;
    }
}

.groh-juri_nav .fal:hover {
    background: #fff;
    color: #0F2C52;
}

.groh-juri_item {
    display: flex;
    grid-gap: 60px;
}

@media (max-width: 860px) {
    .groh-juri_item {
        flex-direction: column;
        grid-gap: 20px;
    }
}

.groh-juri_item > img {
    width: 360px;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .groh-juri_item > img {
        width: 220px;
        height: 300px;
    }
}

.groh-juri_content h3 {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 32px;
}

@media (max-width: 1600px) {
    .groh-juri_content h3 {
        font-size: 25px;
    }
}

.groh-juri_content ul {
    list-style-type: none;
    margin-left: 16px;
    font-size: 25px;
    max-width: 900px;
    margin-left: 20px;
}

.groh-juri_content2 li {
    list-style-type: disc;
    margin-left: 16px;
    font-size: 16px;
    max-width: 900px;
    margin-left: 20px;
}

@media (max-width: 1600px) {
    .groh-juri_content ul {
        font-size: 16px;
    }
}

/* GROHE PARTN */
.groh-partn_items {
}

.groh-partn_items li {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

.groh-partn_items li img {
    width: auto;
    height: 200px;
}

@media (max-width: 860px) {
    .groh-partn_items li img {
        max-width: 80px;
        width: 80px;
        height: auto;
    }
}

.groh-partn_items li div {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.groh-partn_items li div span {
    display: block;
    font-weight: normal;
}

/* GROHE FAG */
.groh-fag {
    background: #F6F6F6;
    padding: 60px 0;
}

.groh-fag h2 {
    font-size: 60px;
}

@media (max-width: 1600px) {
    .groh-fag h2 {
        font-size: 35px;
    }
}

.accord {
    border-bottom: 1px solid var(--dark);
    padding: 15px 0;
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
}

@media (max-width: 1600px) {
    .accord {
        font-size: 14px;
    }
}

.accord:first-child {
    border-top: none;
}

.accord, .accord-text {
    display: block;
    cursor: pointer;
    transition: border-radius 0.3s;
}

.accord:after {
    content: "\f077";
    color: #FF5001;
    font-size: 25px;
    font-weight: 400;
    font-family: "Font Awesome 6 Pro";
    float: right;
    margin-top: -5px;
}

.accord.active:after {
    content: "\f078";
}

.accord-text {
    color: #3585C6;
    padding: 20px;
    line-height: 1.5;
    font-size: 24px;
    margin-bottom: 20px;
}

.accord-text p {
    font-size: 24px;
}

@media (max-width: 1600px) {
    .accord-text, .accord-text p {
        font-size: 14px;
    }
}

/* GROH TRIAL */
.groh-trial {
    position: relative;
    background: #1c3e6c;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.groh-trial span {
    display: block;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 1600px) {
    .groh-trial span {
        font-size: 30px;
    }
}

.groh-trial a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #99cef9;
    color: #99cef9;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 20px;
    font-size: 24px;
}

@media (max-width: 1600px) {
    .groh-trial a {
        font-size: 18px;
    }
}

/* GO TOP */
.gotop {
    position: fixed;
    bottom: 60px;
    right: 50px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .gotop {
        right: 10px;
    }
}

.gotop img {
    width: 50px;
}

/* GROH MODAL */
.groh-modal {
    display: none;
    position: fixed;
    max-width: 800px;
    height: max-content;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    border-radius: var(--radius);
    z-index: 9;
}

.modal-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 560px;
    background: var(--bg);
    color: #000;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-alert {
        grid-template-columns: 1fr;
        width: 92%;
        padding-top: 30px;
    }
}

@media (max-width: 860px) {
    .groh-modal {
        width: 92%;
        text-align: center;
    }
}

.groh-modal > i {
    position: absolute;
    top: 0;
    right: -50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--text2);
    font-size: 30px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

@media (max-width: 860px) {
    .groh-modal > i {
        top: -50px;
        right: 0;
    }
}

.groh-modal > img {
    width: 100%;
    height: 300px;
    border-radius: var(--radius) var(--radius) 0 0;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 860px) {
    .groh-modal > img {
        height: 200px;
    }
}

.groh-modal_content {
    padding: 10px 30px 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.groh-modal_group span {
    display: block;
    color: #ADAFB1;
    font-size: 10px;
    margin-bottom: 10px;
}

.groh-modal_group img {
    width: 80px;
}

.groh-modal_content p {
    margin-top: 10px;
    font-weight: bold;
}

@media (max-width: 860px) {
    .groh-modal_content p {
        font-size: 12px;
    }
}

/* GROH VOSM */
.groh-vosm {
}

@media (max-width: 860px) {
    .groh-vosm h2 {
        font-size: 25px;
    }
}

@media (max-width: 860px) {
    .groh-vosm h2 span {
        font-weight: 400;
    }
}

.groh-vosm_items {
    display: grid;
    grid-gap: 30px;
    align-items: end;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 250px;
    background: var(--color3);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .groh-vosm_items {
        grid-template-columns: 1fr;
        margin-right: -10vh;
        border-radius: var(--radius) 0 0 var(--radius);
        padding-right: 70px;
    }
}

.groh-vosm_items > div {
}

.groh-vosm_items p + p {
    margin-top: 20px;
}

@media (max-width: 860px) {
    .groh-vosm_items p {
        font-size: 14px;
    }
}

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

/* GROH BTN */
.groh-btn {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    border-radius: 30px;
    padding: 7px 10px 7px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.3s;
}

.groh-btn:hover {
    background: var(--color2);
}

.grohe-add_rules > i {
    margin-right: -10px;
}

.groh-btn > i, .grohe-add_toprules > i {
    background: #fff;
    transform: rotate(45deg);
    border-radius: 50%;
    color: var(--color1);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 10px;
    transition: 0.3s;
}

.groh-btn:hover i {
    transform: rotate(90deg);
}

/* GROH RULE */
.groh-rule {
}

.groh-rule_items {
    justify-content: space-around;
}

.groh-rule li {
    flex: 0 0 45%;
    width: 550px;
}

@media (max-width: 860px) {
    .groh-rule li {
        flex: 0 0 90%;
        width: 100%;
    }
}

.groh-rule ul li img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.groh-rule ul li div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.27), rgba(255, 255, 255, 0.27)), linear-gradient(289.1deg, rgba(255, 255, 255, 0.2) -7.58%, rgba(2, 0, 0, 0.018) 85.48%);
    border: 1px solid;
    border-image-source: linear-gradient(289.1deg, rgba(255, 255, 255, 0.2) -7.58%, rgba(2, 0, 0, 0.018) 85.48%);
    box-shadow: -1px 5px 9px -3px #00000030;
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    margin-bottom: -80px;
    overflow: hidden;
}

.groh-rule_coll {
    align-items: center;
    grid-gap: 30px;
    margin-top: 30px;
}

@media (max-width: 860px) {
    .groh-rule_coll {
        justify-content: center;
        text-align: center;
    }
}

.groh-rule_coll span {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

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

.groh-rule_coll > a {
}

/* GROH YHAST */
.groh-yhast {
    background: url(../images/bg2.jpg) top/cover no-repeat;
    box-shadow: inset 0 9999px rgb(22 20 30 / 50%);
    color: #fff;
    padding: 60px 0;
}

.groh-yhast_title {
    align-items: center;
    justify-content: space-between;
    grid-gap: 30px;
    margin-bottom: 60px;
}

.groh-yhast_title h2 {
    margin-bottom: 0;
}

.groh-yhast_title h2 span {
    margin-left: 15px;
    font-weight: 500;
}

@media (max-width: 860px) {
    .groh-yhast_title h2 span {
        margin-left: 0;
        display: block;
    }
}

.groh-yhast_title > span {
    max-width: 500px;
}

.groh-yhast ul li {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.27), rgba(255, 255, 255, 0.27)), linear-gradient(0deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.11));
    backdrop-filter: blur(10px);
    border: 2px solid rgb(255 255 255 / 11%);
    padding: 20px;
    border-radius: 20px;
}

.groh-yhast ul li + li {
    margin-top: 10px;
}

/* GROH PART */
.groh-part {
    background: #0F2C52;
    color: #fff;
    padding: 60px 0;
}

.groh-part h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.groh-part h2 span {
    font-weight: 400;
    margin-left: 10px;
}

.groh-part h2 + span {
    font-size: 12px;
}

@media (max-width: 860px) {
    .groh-part h2 + span {
        font-size: 14px;
    }
}

.groh-part ul li {
    position: relative;
}

.groh-part ul li img {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.groh-part ul li div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(0 0 0 / 35%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 30px;
    margin-top: -120px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-part ul li div {
        width: 80vw;
        margin-inline: auto; }
}

.groh-part_items + span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .groh-part_items + span {
        margin-top: 85px;
    }
}

.groh-part_dop {
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 1fr;
}

.groh-part_dop > div span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.groh-part_dop > span {
    display: block;
    font-size: 14px;
}

/* GROH DESI */
.groh-desi {
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 330px 200px;
    align-items: center;
}

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

.groh-desi > div:first-child h3 {
    text-transform: uppercase;
    font-weight: 300;
}

.groh-desi > div:last-child span {
    display: block;
    font-weight: 600;
    margin-bottom: 20px;
}

.groh-desi > img {
    width: 270px;
}

.groh-desi_div {
    margin-bottom: auto;
}

/* GROH ANNO */
.groh-anno {
    background: url(../images/bg3.jpg) top/cover no-repeat;
    box-shadow: inset 0 9999px rgb(22 20 30 / 80%);
    color: #fff;
    padding: 60px 0;
}

@media (max-width: 860px) {
    .groh-anno {
        background: none;
        box-shadow: none;
        color: inherit;
        padding: 0;
    }
}

@media (max-width: 860px) {
    .groh-anno h2 {
        font-size: 25px;
    }
}

.groh-anno h2 span {
    font-weight: 400;
}

@media (max-width: 860px) {
    .groh-anno p + h2 span {
        font-weight: bold;
    }

    .groh-anno p + h2 span > span {
        display: block;
        font-weight: 500;
    }
}

.groh-anno p + h2 {
    text-transform: uppercase;
}

/* GROH ARGO */
.groh-agro {
    border: 1px solid var(--color3);
    padding: 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
    text-transform: uppercase;
}

/* GROH USER */
.groh-use {
    background: url(../images/bg4.jpg) center/cover no-repeat;
    box-shadow: inset 0 9999px rgb(0 0 0 / 80%);
    color: #fff;
    padding: 100px 20px;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.groh-use_nomi {
    box-shadow: inset 0 9999px rgb(0 0 0 / 60%);
}

@media (max-width: 860px) {
    .groh-use {
        text-align: left;
        padding: 100px 20px;
    }
}

.groh-use > span {
    display: block;
    font-weight: 400;
}

.groh-tabs_link {
    margin-bottom: 30px;
}

.groh-tabs_link > span, .groh-tabs_link > a {
    display: inline-block;
    color: var(--text2);
    border-radius: var(--radius);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 860px) {
    .groh-tabs_link > span, .groh-tabs_link > a {
        font-size: 12px;
        padding: 5px 10px;
    }
}

.groh-tabs_link > span.active, .groh-tabs_link > a.active {
    border: 1px solid var(--color3);
    color: var(--color3);
    font-weight: 600;
}

.groh-use_avatar {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    margin-bottom: 20px;
}

.groh-use_avatar > img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.groh-use_avatar > div h2 {
    margin-bottom: 0;
}

.groh-use_info {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    margin-bottom: 30px;
}

.groh-use_setting {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
    align-items: start;
}

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

/* GROHE ADD */
.grohe-add {
    font-weight: 500;
}

.grohe-add_rules {
    float: right;
    margin-right: 20px;
    font-size: 12px!important;
    color: var(--text1)!important;
}

.grohe-add_toprules {
    display: none;
}

@media (max-width: 860px) {
    .grohe-add_top {
        padding: 100px 20px 40px 20px;
    }

    .grohe-add_toprules {
        display: inline-block;
        font-size: 14px;
        margin-top: 80px;
        font-weight: 300;
        padding: 5px 5px 5px 15px;
    }

    .grohe-add_rules {
        display: none!important;
    }
}

.grohe-add > h2 {
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .grohe-add > h2 {
        font-size: 25px;
    }
}

.grohe-add_grid {
    grid-gap: 150px;
}

@media (max-width: 860px) {
    .grohe-add_grid {
        grid-gap: 30px;
    }
}

.grohe-add > div > div > * + * {
    margin-top: 15px;
}

.grohe-add_radio {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

.grohe-add_label {
    display: block;
}

.grohe-add_label > i {
    float: left;
    color: #FF0000;
    font-size: 10px;
    margin-right: 10px;
    margin-top: 7px;
}

.grohe-add_label input, .grohe-add_label .wseditor, .grohe-add_label textarea {
    border: 1px solid var(--color3);
    margin-top: 10px;
}

.grohe-add_date input {
    width: auto;
    margin: 10px;
}

.grohe-add_right {
}

@media (max-width: 860px) {
    .grohe-add_right {
        order: -1;
    }
}

.grohe-add_right .qq-uploader {
    display: flex;
    flex-direction: column;
}

.grohe-add_right #upload_button_image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ebebeb;
    border-radius: var(--radius);
    padding: 60px 80px;
    width: 100%!important;
    height: 300px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    order: -1;
}

.grohe-add_right #upload_button_image:before {
    content: "";
    display: block;
    background: url(../images/mouse.svg) no-repeat;
    background-size: 50px;
    width: 50px;
    height: 80px;
    order: 1;
    margin-top: 20px;
}

.grohe-add_right ul li {
    list-style: disc;
    margin-left: 15px;
}

.grohe-add_error {
    display: block;
    color: #FF0000;
    margin-bottom: 50px;
}

.grohe-add_author {
}

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

.grohe-add_author_mob {
    display: none;
}

@media (max-width: 860px) {
    .grohe-add_author_mob {
        display: block;
        margin-top: 40px!important;
        margin-bottom: 40px;
    }
}

.grohe-add_author > b {
    font-size: 16px;
    text-transform: uppercase;
}

.grohe-add_date > div {
    display: flex;
    align-items: center;
}

.grohe-add_nomi {
    position: relative;
    width: 300px;
}

.grohe-add_nomi {
    position: relative;
    width: 300px;
}

.grohe-add_nomi select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    background: var(--color4);
    color: #fff;
    border-radius: var(--radius);
    text-transform: uppercase;
    cursor: pointer;
}

.grohe-add_nomi option {
    background: #fff;
    color: #000;
    text-transform: none;
}

.grohe-add_nomi::after {
    content: "\f061";
    position: absolute;
    top: 6px;
    right: 10px;
    background: #fff;
    transform: rotate(90deg);
    border-radius: 50%;
    color: var(--color4);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-family: "Font Awesome 6 Pro";
    pointer-events: none;
}

/* GROHE VOTE */
.groh-vote {
}

.groh-vote_head {
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 500px;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .groh-vote_head {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
}

.groh-vote_head ul {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.groh-vote_head ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color3);
    box-shadow: inset 0 9999px rgb(255 255 255 / 60%);
    width: 200px;
    aspect-ratio: 3/2;
    border-radius: var(--radius);
    font-weight: 500;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 860px) {
    .groh-vote_head ul li {
        width: 100%;
    }
}

.groh-vote_head ul li.active {
    color: #fff;
    box-shadow: inset 0 9999px rgb(22 20 30 / 60%);
}

.groh-vote_head ul li.active span {
}

.groh-vote_head ul li span {
    font-weight: bold;
}

.groh-vote_head ul li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.groh-vote_subhead {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: auto auto 250px 1fr;
    align-items: center;
    margin-bottom: 50px;
}

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

.groh-vote_subhead h3 {
    margin-bottom: 0;
}

.groh-vote_subhead > span:not(.groh-vote_subhead > span:last-child) {
    display: inline-block;
    border: 1px solid var(--color3);
    color: var(--color3);
    border-radius: var(--radius);
    padding: 8px 20px;
    text-align: center;
}

.groh-vote_subhead > img {
    width: 100%;
}

/* GROH NOMIN MODERATOR */
.groh-nomin {
    position: relative;
    border: 2px dotted var(--color4);
    border-radius: 30px;
    margin-bottom: 40px;
    overflow-y: auto;
}

.groh-nomin_head, .groh-nomin_item {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 400px repeat(5, 1fr);
    align-items: center;
    padding: 10px 20px;
    min-width: 800px;
}

@media (max-width: 860px) {
    .groh-nomin_head, .groh-nomin_item {
        grid-template-columns: 200px repeat(5, 1fr);
    }
}

.groh-nomin_head {
    background: var(--color4);
    color: #fff;
}

.groh-nomin_head > span {
    font-size: 16px;
    font-weight: bold;
}

.groh-nomin_item + .groh-nomin_item {
    border-top: 1px solid #ebebeb;
}

.groh-nomin_item .title {
    font-weight: 500;
}

.groh-nomin_item .juri {
    background: transparent;
    color: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
}

/* GROH PRAVILA */
.groh_prav_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .groh_prav_title {
        display: grid;
        grid-gap: 20px 20px;
        grid-auto-rows: max-content;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 30px;
    }
}

.groh_prav_title h2 {
    min-width: max-content;
    margin-bottom: 0;
    font-size: 50px;
}

@media (max-width: 1600px) {
    .groh_prav_title h2 {
        font-size: 35px;
    }
}

@media (max-width: 860px) {
    .groh_prav_title h2 {
        font-size: 25px;
    }

    .groh_prav_title h2 span {
        font-weight: 400;
    }
}

.groh_prav_title > span {
    font-size: 18px;
    text-align: right;
    font-weight: 500;
    margin-top: -40px;
}

@media (max-width: 1600px) {
    .groh_prav_title > span {
        font-size: 16px;
    }
}

@media (max-width: 860px) {
    .groh_prav_title > span {
        font-size: 14px;
        font-weight: 400;
        grid-column: 1/-1;
        text-transform: none;
        text-align: left;
        margin-right: 40px;
        margin-top: 0;
    }
}

.groh_prav_title img {
    width: 190px;
    margin: 30px 25px 0 30px;
}

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

/* GROH SHORT STORY */
.grohe-short_item {
    position: relative;
    border-radius: var(--radius);
    box-shadow: 0px 4px 8px 0px #00000033;
    padding: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .grohe-short_item {
        padding: 10px;
    }
}

.grohe-short_item [data-highslide] {
    position: relative;
    display: block;
    border-radius: var(--radius);
    aspect-ratio: 16/12;
    width: 100%;
    height: auto;
    z-index: 5;
    overflow: hidden;
}

.grohe-short_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grohe-short_status {
    display: inline-block;
    background: #ff5001;
    color: #ffdece;
    padding: 4px 10px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
}

.grohe-short_title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 10px;
}

@media (max-width: 860px) {
    .grohe-short_title {
        font-size: 14px;
        margin: 10px 0;
    }
}

.grohe-short_item:hover .grohe-short_title {
    color: #3585c6;
}

.grohe-short_text, .grohe-short_text p {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 860px) {
    .grohe-short_text, .grohe-short_text p {
        font-size: 10px;
    }
}

.grohe-short_item > a:not([data-highslide]) {
    display: block;
    background: var(--color4);
    color: #fff;
    border-radius: 30px;
    padding: 3px;
    text-align: center;
    text-transform: uppercase;
    line-height: 30px;
    transition: 0.3s;
    margin-top: 20px;
}

@media (max-width: 860px) {
    .grohe-short_item > a {
        font-size: 10px;
    }
}

.grohe-short_item > a:not([data-highslide]):before {
    content: "";
    position: absolute;
    inset: 0;
}

.grohe-short_item > a:not([data-highslide]):hover {
    background: #539edb;
}

.grohe-short_item > a > i {
    float: right;
    background: #fff;
    color: #3585c6;
    transform: rotate(45deg);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    transition: 0.3s;
}

@media (max-width: 860px) {
    .grohe-short_item > a > i {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
}

.grohe-short_item > a:hover i {
    transform: rotate(90deg);
}

.grohe-short_points {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--color4);
    font-weight: 500;
    margin-top: 20px;
}

@media (max-width: 860px) {
    .grohe-short_points {
        font-size: 10px;
        margin-top: 5px;
    }
}

.grohe-short_points > span:last-child {
    display: inline-block;
    border: 1px solid var(--color4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    margin-left: 10px;
    text-align: center;
}

@media (max-width: 860px) {
    .grohe-short_points > span:last-child {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 12px;
    }
}

/* GROHE FULL */
.groh-full {
}

.groh-full_back {
    display: flex;
    align-items: center;
    color: #ACADAE;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.groh-full_back > img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.groh-full_grid {
    display: grid;
    grid-gap: 150px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
    justify-content: space-between;
}

@media (max-width: 860px) {
    .groh-full_grid {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
}

.groh-full_info {
}

.groh-full_info > h2 {
    font-weight: bold;
    text-transform: uppercase;
}

.groh-full_info > ul li {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
}

.groh-full_info > ul li span {
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 5px;
}

.groh-full_text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
}

.groh-full_bg {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.groh-full .xfieldimagegallery.image {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(6, 1fr);
    justify-content: space-between;
    margin-top: 60px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .groh-full .xfieldimagegallery.image {
        grid-template-columns: repeat(2, 1fr);
    }
}

.groh-full .xfieldimagegallery.image li img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
}

.groh-full_points {
    display: flex;
    align-items: flex-start;
    grid-gap: 60px;
    margin: 40px 0;
}

@media (max-width: 860px) {
    .groh-full_points {
        flex-direction: column;
    }
}

.groh-full_point {
    width: 472px;
}

@media (max-width: 860px) {
    .groh-full_point {
        width: 100%;
    }
}

.groh-full_point > div {
    position: relative;
    border: 1px solid var(--color3);
    border-radius: var(--radius);
    padding: 20px;
    font-weight: 500;
}

.groh-full_point > div > div {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.groh-full_point > div > div > span {
    display: inline-block;
    border: 1px solid #a1a1a1;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 49px;
    font-size: 25px;
    text-align: center;
    margin-right: 20px;
}

.groh-full_point > a {
    display: block;
    background: var(--color4);
    border-radius: var(--radius);
    color: #fff;
    padding: 8px 30px;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}

/* GHOR WINNER */
.win-home {
    position: relative;
    background: url(../images/win-bg.jpg) no-repeat;
    background-position: top;
    color: #fff;
}

@media (max-width: 860px) {
    .win-home {
        background-position: top left;
    }
}

.win-home:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 25, 132, 0.11), rgba(3, 25, 132, 0.11)), linear-gradient(180deg, rgba(8, 42, 87, 0.2291) 0%, rgba(8, 42, 87, 0.2842) 56.73%, rgba(8, 42, 87, 0.29) 100%);
}

.win-home > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    text-align: center;
}

@media (max-height: 480px) {
    .win-home > div {
        height: 90vh;
    }
}

.win-home h1 {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 860px) {
    .win-home h1 {
        font-size: 40px;
    }
}

.win-home > div > span {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
}

.win-home > div > span > span {
    color: #ffc6ad;
    font-weight: bold;
    text-shadow: 0 0 4px rgb(0 0 0 / 19%);
}

.win-home > div > a {
    background: linear-gradient(180deg, rgb(229 241 255 / 25%), transparent);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 14px 40px;
    border-radius: 30px;
    border: 4px solid var(--color2);
    box-shadow: 1px -11px 9.2px 0px #FF96704D inset;
    text-transform: uppercase;
    font-size: 14px;
    overflow: hidden;
}

.win-opis {
    background: var(--color3);
    color: #fff;
    padding: 60px 0;
}

.win-opis_title {
    font-size: 45px;
    font-weight: bold;
    margin-left: -20%;
    margin-bottom: 60px;
    text-align: center;
}

.win-opis_title > span {
    display: block;
    color: var(--color2);
    font-size: 40px;
    margin-left: 30%;
}

@media (max-width: 860px) {
    .win-opis_title {
        margin-left: 0;
        font-size: 35px;
    }

    .win-opis_title > span {
        margin-left: 0;
        font-size: 25px;
    }
}

.win-opis_subtitle {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 200px 1fr;
    margin-bottom: 60px;
}

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

.win-opis_subtitle > img {
    width: 100%;
    height: auto;
}

.win-opis_subtitle p {
    position: relative;
    padding-bottom: 50px;
}

.win-opis_subtitle p:before {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 0;
    box-shadow: 0px 2px 14px 0px #FF8047;
    background: #fff;
    width: 100%;
    height: 2px;
}

.win-opis_subtitle p b {
    color: var(--color2);
}

.win-opis_subtitle + div {
    text-align: left;
    margin-left: 0;
}

.win-opis_subtitle + div > span {
    margin-left: 10%;
}

.win-opis_subtitle + div + p {
    display: block;
    margin: 0 20% auto;
    max-width: 800px;
}

@media (max-width: 860px) {
    .win-opis_subtitle + div + p {
        margin: 0;
    }
}

.win-sect {
    background: var(--color3);
    color: #fff;
    padding: 60px 0;
}

.win-sect#winners {
    padding-top: 70px;
}

.win-sect_title {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.win-sect_title > b {
    color: var(--color2);
}

.win-sect_subtitle {
    display: block;
    color: #aeb9c9;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.win-sect_subtitle > b {
    color: var(--color2);
}

.win-sect_items {
    position: relative;
}

.win-sect_items > .fal {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: 0 0 30px #0000004f;
    border-radius: var(--radius);
    color: var(--color4);
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

@media (max-width: 860px) {
    .win-sect_items > .fal {
        margin: 0 5px;
    }
}

.win-sect_items > .fa-chevron-right {
    left: unset;
    right: -20px;
}

.win-sect_items .win-sect_item:not(.win-sect_item.swiper-slide-active) {
    filter: brightness(0.5);
    opacity: 0.5;
}

.win-sect_item {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    background: #fff;
    color: var(--color3);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    overflow: hidden;
}

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

.win-sect_img > a img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/10;
    object-fit: cover;
}

@media (max-width: 860px) {
    @media (max-width: 540px) {
        .win-sect_img {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .win-sect_item {
        grid-template-columns: 1fr;
    }

    .win-sect_img > a img {
    }
}

.win-sect_img1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    grid-gap: 20px;
}

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

.win-sect_img1 img {
    width: 80px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.win-sect_sub {
    display: block;
    color: var(--color2);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.win-sect_name {
    font-weight: 600;
}

.win-sect_user {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin: 15px 0;
}

.win-sect_user > img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
}

.win-sect_user > div span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
}

.win-sect_meta {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    font-size: 14px;
    font-weight: bold;
}

.win-sect_meta > span i {
    margin-right: 5px;
}

.win-nagr {
    background: var(--color3);
    color: #fff;
    padding: 60px 0;
}

.win-nagr_title {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}

.win-nagr_subtitle {
    display: block;
    color: var(--color2);
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.win-nagr_ceremony-link {
    display: block;
    text-transform: uppercase;
    height: min-content;
    margin-top: 5px;
    margin-bottom: 30px;
    margin-left: 20px;
}

@media (max-width: 860px) {
    .win-nagr_subtitle {
        margin-bottom: 25px;
    }

    .win-nagr_ceremony-link {
        margin-left: 0px;
        margin-bottom: 50px;
    }
}

.win-nagr_ram {
    padding: 40px 70px;
    border-radius: 20px;
    box-shadow: 18px 18px 10px -20px #FF8047 inset, -14px -14px 7px -12px #FF8047 inset;
}

.win-nagr_ram b {
    color: var(--color2);
    font-weight: 500;
}

.win-nagr_text {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 80px 1fr;
    margin: 50px 0;
}

.win-nagr_text > i {
    font-size: 50px;
}

/* CEREMONY */
.cer-home {
    background: url(/uploads/ceremony/cer-bg.jpg) right no-repeat #0F2C52;
}

@media (max-width: 860px) {
    .cer-home {
        background-size: 150%;
        background-position: center 20%;
    }
}

.cer-nagr {
    background: url(/uploads/ceremony/cer-bg1.jpg) right/cover no-repeat #0F2C52;
    color: #fff;
    padding: 60px 0;
}

.cer-nagr_title {
    display: block;
    font-size: 40px;
    width: 100%;
    max-width: 650px;
    font-weight: bold;
    margin-bottom: 40px;
}

.cer-nagr_title:first-letter {
    text-transform: uppercase;
}

.cer-nagr_title > b {
    display: block;
    color: var(--color2);
}

.cer-nagr_title > b span {
    color: rgb(255, 153, 0) !important;
}

.cer-nagr_grid {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 767px) {
    .cer-nagr_grid {
        grid-template-columns: 1fr;
    }
}

.cer-nagr_grid > div b b {
    color: var(--color2);
}

.cer-nagr_grid > div p {
    max-width: 590px;
}

.cer-nagr_grid > div > p img {
    float: right;
    margin: 10px 20px;
}

.cer-nagr .win-nagr_ram {
    background: #0F2C5257;
    backdrop-filter: blur(2px);
    margin-top: 30px;
    max-width: 600px;
}

.cer-nagr_grid > .cer-nagr_slider {
    position: relative;
    overflow: hidden;
    max-height: 600px;
    aspect-ratio: 9/12;
}

@media (max-width: 767px) {
    .cer-nagr_grid > .cer-nagr_slider {
        max-width: 95%;
        max-height: 450px;
        margin: 0 auto;
    }
}

.cer-nagr_slider {
    position: relative;
    overflow: hidden;
}

@media (max-width: 860px) {
    .cer-nagr_slider {
        max-height: max-content;
    }
}

.cer-nagr_slider .swiper-slide {
    height: auto;
    aspect-ratio: 9/12;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 100%;
}

.cer-desc {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 3fr;
}

@media (max-width: 992px) {
    .cer-desc {
        grid-template-columns: 1fr;
    }

    @media (max-width: 767px) {
        .cer-otz-vid_slider {
            max-height: 520px !important;
        }
    }
}

.cer-desc_text {
    margin-bottom: 20px;
}

.cer-otz-vid_slider {
    position: relative;
    overflow: hidden;
    height: 600px;
    padding-bottom: 20px;
}

.cer-otz-vid_slider .swiper-slide {
    height: auto;
    aspect-ratio: 9/16;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.cer-otz-vid_slider video {
    max-height: 100%;
    aspect-ratio: 9/16;
    user-select: none;
    margin: 0 auto;
}

.cer-otz-vid_slider .swiper-button-holder {
    display: flex;
    position: absolute;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    bottom: -5px;
    z-index: 4;
}

.cer-otz-vid_slider .swiper-button-next, .swiper-button-prev {
    transform: none;
    position: relative;
    z-index: 11;
}

.cer-otz-vid_slider .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 30px;
    line-height: 30px;
}

.cer-opis {
    background: var(--color3);
    color: #fff;
    padding: 60px 0;
}

.cer-opis_title {
    display: block;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.cer-opis_subtitle {
    display: flex;
    align-items: center;
    grid-gap: 200px;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .cer-opis_subtitle {
        flex-direction: column;
        grid-gap: 20px;
    }
}

.cer-opis_subtitle > p {
    max-width: 600px
}

.cer-opis_subtitle b {
    color: var(--color2);
}

.cer-opis_slider {
    position: relative;
    margin-top: 80px;
}

.cer-tema {
    background: var(--color3);
    color: #fff;
    padding: 0 0 80px;
}

.cer-tema > div > p {
    max-width: 500px;
}

.cer-tema_grid {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 500px;
    margin-bottom: 60px;
}

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

.cer-tema_title {
    display: block;
    font-size: 40px;
    font-weight: bold;
}

.cer-tema_title + span {
    display: block;
    color: var(--color2);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.cer-tema_title + span + p {
    max-width: 600px;
}

.cer-tema_title + span + p + a {
    display: inline-block;
    background: var(--color1);
    /* 
    background: linear-gradient(180deg, rgb(229 241 255 / 25%), transparent); 
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 1px -11px 9.2px 0px #FF96704D inset;
    */
    padding: 14px 40px;
    border-radius: 30px;
    border: 4px solid var(--color1);
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 40px;
    transition: 0.1s ease-in-out;
}

.cer-tema_title + span + p + a:hover {
    background: var(--color2);
    border: 4px solid var(--color2);
    /* box-shadow: 1px -11px 9.2px 0px #FF96704D inset, 0 0 15px 5px var(--color2); */
}

.cer-tema_title + span + p + a:active {
    transition: 0.1s ease-in-out;
    background: #fff;
    color: var(--color1);
    box-shadow: none;
}

.cer-tema_grid1 {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 500px 1fr;
    height: 400px;
    margin-bottom: 40px;
    overflow: hidden;
}

.cer-tema_grid1 + p b {
    color: var(--color2);
}

.cer-put {
    background: var(--color3);
    color: #fff;
    padding: 0 0 60px;
}

.cer-put.section {
    margin-bottom: 0;
}

.cer-put_title {
    display: block;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

.cer-put_title > b {
    color: var(--color2);
}

.cer-put_title + p {
    max-width: 650px;
    margin-bottom: 50px;
}

.cer-put_title + p b {
    color: var(--color2);
}

.cer-put .cer-nagr_slider .swiper-slide {
    aspect-ratio: 16/9;
}

.cer-poes {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 500px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

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

.cer-poes > p {
    max-width: 500px;
}

.cer-poes > p b {
    color: var(--color2);
}

.cer-poes img {
    display: inline-block;
    width: 100%;
    height: 500px;
    object-fit: contain;
    margin: 0 auto;
}

.cer-poes + .cer-nagr_slider {
    margin: 0 15%;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .cer-poes + .cer-nagr_slider {
        margin: 0;
        margin-bottom: 40px;
    }
}

.cer-poes + .cer-nagr_slider + p {
    max-width: 600px;
}

.cer-poes + .cer-nagr_slider + p b {
    color: var(--color2);
}

.cer-cit {
    padding: 40px 0;
}

.cer-cit_title {
    display: block;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

.cer-cit_items {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 860px) {
    .cer-cit_items {
        padding-left: 20px;
        margin: 0 -20px;
    }

    .cer-cit_item {
        min-width: 240px;
    }
}

.cer-cit_item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
    margin-bottom: 20px;
}

.cer-cit_item p {
    line-height: 1.5;
}

.cer-cit_item b {
    display: block;
    margin-top: 20px;
}

.cer-cit_item span {
    color: var(--color1);
    font-size: 14px;
    font-weight: 600;
}

.cer-otz_items {
    max-height: 650px;
}

.cer-otz_item {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 400px;
}

.cer-otz_item > div > img {
    width: 100%;
}

@media (max-width: 860px) {
    .cer-otz_items {
        max-height: max-content;
    }

    .cer-otz_item {
        grid-template-columns: 1fr;
    }
}

.cer-otz_item li + li {
    margin-top: 30px;
}

.cer-otz_user {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    margin-bottom: 15px;
}

.cer-otz_user img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    overflow: hidden;
}

.cer-otz_user b {
    display: block;
}

.cer-otz_item p {
    margin-top: 10px;
}

/* COLL 2.0 */
.coll-home {
    position: relative;
    width: 100vw;
    height: fit-content;
    overflow: hidden;
}

@media (max-width: 860px) {
    .coll-home {
        overflow-x: scroll;
    }
}

.coll-home_tabs {
    position: absolute;
    top: 30%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%,-50%);
    z-index: 5;
}

.coll-home_tabs > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.coll-home_tabs span {
    display: inline-block;
    background: var(--color3);
    border-radius: 5px;
    box-shadow: 2px 2px 4px -2px #70adff inset, -2px -2px 2px -2px #70adff inset, 0 4px 4px #00000040;
    color: #fff;
    padding: 10px 25px;
    text-align: center;
}

@media (max-width: 860px) {
    .coll-home_tabs {
        top: 100px;
        width: 100%;
        left: 0;
        overflow-y: scroll;
        transform: none;
        margin-right: 0;
        padding: 0 20px;
    }

    .coll-home_tabs > div {
        flex-wrap: nowrap;
        flex-direction: row;
        width: 100%;
        justify-content: left;
        margin-bottom: 10px;
    }

    .coll-home_tabs span {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 180px;
    }
}

.coll-home_tabs span.active {
    background: #ff8047;
}

.coll-home_bg {
    position: relative;
    width: 1920px;
    height: 910px;
}

.coll-home_bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coll-home_popup {
    position: absolute;
    color: #fff;
}

.coll-home_popup.mirror {
    transform: scaleX(-1) scaleY(1);
}

.coll-home_popup.mirror .coll-home_title, .coll-home_popup.mirror .coll-home_links {
    transform: scaleX(-1) !important;
}

.coll-home_popup:before {
    content: url("data:image/svg+xml,%3Csvg%20width%3D%22105%22%20height%3D%2234%22%20viewBox%3D%220%200%20105%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M3.5%2030L24.5%201.5H104.5%22%20stroke%3D%22white%22%20stroke-width%3D%222%22/%3E%3Ccircle%20cx%3D%223%22%20cy%3D%2231%22%20r%3D%223%22%20fill%3D%22white%22/%3E%3C/svg%3E");
    display: inline-block;
    width: 105px;
    height: 34px;
    margin-top: 20px;
}

.coll-home_link {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-backdrop-filter: blur(4px) brightness(.9);
    backdrop-filter: blur(4px) brightness(.9);
    background-color: #cdcdcd70;
    color: var(--color3);
    border-radius: 25px;
    box-shadow: 2px 2px 4px -2px #70adff inset, -2px -2px 2px -2px #70adff inset, 0 4px 4px #00000040;
    z-index: 5;
    cursor: pointer;
}

.coll-home_popup.active .coll-home_link {
    z-index: 7;
    box-shadow: none;
    background: none;
    backdrop-filter: none;
}

.coll-home_item {
    width: 40px;
    height: 40px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -10px;
    left: 100px;
    -webkit-backdrop-filter: blur(4px) brightness(.9);
    backdrop-filter: blur(4px) brightness(.9);
    background-color: #cdcdcd70;
    padding: 18px 25px 25px 50px;
    border-radius: 25px;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    box-shadow: 2px 2px 4px -2px #70adff inset, -2px -2px 2px -2px #70adff inset, 0 4px 4px #00000040;
    z-index: 6;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.coll-home_popup.active .coll-home_item {
    opacity: 1;
    visibility: visible;
    width: 300px;
    min-height: 100px;
    max-height: 400px;
    height: fit-content;
    min-width: 300px;
}

.coll-home_links {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-top: 20px;
}

.coll-home_links > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--color3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.coll-home_next {
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    text-align: center;
    -webkit-backdrop-filter: blur(4px) brightness(.9);
    backdrop-filter: blur(4px) brightness(.9);
    background-color: #cdcdcd70;
    border-radius: 50px;
    box-shadow: 2px 2px 4px -2px #70adff inset, -2px -2px 2px -2px #70adff inset, 0 4px 4px #00000040;
}

/* FOOTER */
footer {
    background: #0F2C52;
    color: #fff;
    padding: 10px 0;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo > img {
    width: 180px;
}

.footer-menu {
    margin-left: 75px;
    margin-right: auto;
    margin-top: 20px;
}

.footer-menu > a {
    display: block;
    font-size: 15px;
}

.footer-soc {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-soc > a:first-child {
    margin-right: 15px;
}

.footer-soc > a img {
    width: 24px;
    height: 24px;
}

@media (max-width: 860px) {
    .footer-soc > a img {
        width: 35px;
        height: 35px;
    }
}

.footer-soc + a {
    display: block;
    margin-top: 15px;
    font-size: 16px;
}

.footer-dopmenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    padding: 15px 20px 5px;
}

@media (min-width: 860px) {
    .footer-dopmenu {
        display: none;
    }
}

.footer-dopmenu > a {
    text-decoration: underline;
}

.footer-dev {
    background: #fff;
    color: #0F2C52;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹  */
.coll-home_popup {
    transition: .3s all;
}

.coll-home_popup.mirror {
    transform: none;
}

.coll-home_popup.mirror .coll-home_title, .coll-home_popup.mirror .coll-home_links {
    transform: none !important;
}

.coll-home_popup.mirror .coll-home_item {
    left: unset;
    right: 100px;
    padding: 18px 50px 25px 25px;
}

.coll-home_popup.mirror .coll-home_link {
    right: 100px;
}

.coll-home_popup::before {
    position: relative;
    display: inline-block;
    content: url(https://design-grohe.kz/templates/Grohe/collections/select-line.png);
    transform: scale(0.3);
    top: -20px;
    left: -50px;
}

.coll-home_popup.mirror::before {
    display: none;
}

.coll-home_popup::after {
    display: none;
}

.coll-home_popup.mirror::after {
    position: absolute;
    top: -20px;
    left: -56px;
    display: inline-block;
    content: url(https://design-grohe.kz/templates/Grohe/collections/select-line.png);
    width: 105px;
    height: 34px;
    margin-top: 20px;
    transform: scaleX(-0.3) scaleY(0.3);
}
