/* Global Style */
:root {
    --button-text-color: #fff;
    --button-background-color: #08ace7;
    --button-background-hover-color: #0889b8;
    --button-border-color: #006a98;/*#233980;*/
    --section-header-color: #b8db7c;
    --text-normal-color: #525252;
    --text-bold-color: #525252;
    --about-background-color: #fff;
    --ask-form-top-background-color: #fafafa;
    --ask-form-bottom-background-color: #b8db7c;
    --advantages-background-color: #b6bf32;
    --footer-background-color: #0e8193;
    --footer-background-color2: linear-gradient(to right, rgba(24,45,92,1) 0%,rgba(112,158,194,1) 100%);
    --footer-background-color3: linear-gradient(to right,  rgba(211,213,140,1) 0%,rgba(211,222,130,1) 100%);
    --footer-copyright-background-color: #0196d6;
    --footer-copyright-background-color2: linear-gradient(to right, rgba(24,45,92,1) 0%,rgba(112,158,194,1) 100%);
    --footer-copyright-background-color3: linear-gradient(to right,  rgba(211,213,140,1) 0%,rgba(211,222,130,1) 100%);
    --info-box-green-background-color: #b8db7c;
    --info-box-yellow-background-color: #fbba00;
    --info-box-blue-background-color: #a1daf7;
    --black-color: #000;

    --thin: 100;
    --extra-light: 200;
    --light: 300;
    --normal: 400;
    --medium: 500;
    --semi-strong: 600;
    --strong: 700;
    --extra-strong: 800;
    --black: 900;

    --easing: cubic-bezier(0.16,1,0.3,1);
}

html {
    font-size: calc(11px + 0.390625vw);
    scroll-behavior: smooth;
}
html,
body {
    height: 100%;
    background: url('../images/backgrounds/back.jpg') center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
body {
    padding-top: 95px;
    font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
    line-height:1.25rem;
    color: var(--text-normal-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.alpha { margin-left: 0 !important; }
.omega { margin-right: 0 !important;}
.not-btstrp-hide { display: none; }
.scroll-lock { overflow: hidden; }

textarea:focus, input:focus{ outline: none; }
textarea { resize: none; }
input:focus::placeholder { color: transparent; }

.img-centered { margin: 0 auto; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }

.on-desktop { display: block !important; }
.on-mobile { display: none !important; }

.no-border-radius {
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}
.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}
.no-margin { margin: 0 !important; }
/*UL OL LISTS*/
ol, ul { list-style: none; }
ol.ol-list { list-style: decimal; }
ul.ul-list {
    margin-top: .6rem;
    margin-bottom: 1.6rem;
    list-style: "-";
}
ul.ul-green-list { margin-top: .8rem; }
ul.ul-list li, ul.ul-green-list li.green-bullet {
    margin-bottom: .6rem;
    font-size: 1rem;
}
ul.ul-green-list li.green-bullet::before {
    display: inline-block;
    content: "\2022";
    color: #b8db7c;
    font-weight: var(--black);
    width: 1rem;
    margin-left: -1rem;
}
.special-info-box {
    position: relative;
    margin: 0 0 1.2rem;
    padding: .9rem 2.5rem;
    border-radius: .6rem;
}
.special-info-box p {
    margin-bottom: .8rem !important;
    font-size: .9rem !important;
}
.special-info-box a {
    font-size: .9rem;
    color: var(--button-border-color) !important;
    text-decoration: none;
}
.special-info-box a:hover { text-decoration: underline; }
.special-info-box ul li { font-size: .9rem; }
.special-info-box img {
    position: absolute;
    top: 50%;
    left: -5%;
    max-height: 110px;
    transform: translateY(-50%);
    z-index: 1;
}
.special-info-box--green { background-color: var(--info-box-green-background-color) }
.special-info-box--yellow { background-color: var(--info-box-yellow-background-color) }
.special-info-box--blue { background-color: var(--info-box-blue-background-color) }

ul.ul-list li { padding-left: 10px; }
/*TO TOP BUTTON*/
#to-top:hover,
#to-top:focus,
#to-top:active {
    color: var(--text-normal-color);
    background-color: var(--section-header-color);
    cursor: pointer;
}
#to-top {
    position: fixed;
    display: none;
    padding-top: 5px;
    bottom: 100px;
    right: 0;
    width: 40px;
    height: 45px;
    text-align: center;
    font-size: 1rem;
    color: var(--button-text-color);
    border: 1px solid var(--button-background-color);
    background-color: var(--button-background-color);
    transition: all 0.4s ease 0s;
    z-index: 999;
}
#to-top::before {
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    content:  "\2191 ";
}
h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', Helvetica, Arial, sans-serif; }
.btn-main {
    display: inline-block;
    position: relative;
    margin-top: 25px;
    padding: 15px;
    min-width: 250px;
    font-size: .9rem;
    color: var(--button-text-color);
    font-weight: var(--strong);
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    background-color: var(--button-background-color);
    border: none;
    border-bottom: 5px solid var(--button-border-color);
    border-radius: 10px;
    overflow: hidden;
}
.btn-main span {
    position: relative;
    z-index: 2;
}
.btn-main::after {
    position: absolute;
    content: '';
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background-color: var(--section-header-color);
    z-index: 1;
}
.btn-main:hover {
    color: var(--text-bold-color);
    background-color: var(--button-background-hover-color);
    border-bottom: 5px solid transparent;
}
.btn-main:hover::after { top: 0; }
.btn-main--white::after { background-color: var(--ask-form-top-background-color); }
.btn-social {
    margin-right: 0.9rem;
    padding: 7px;
    min-width: fit-content;
}
.btn-social:last-of-type { margin-right: 0; }
/*FORMS*/
.form-control::-webkit-input-placeholder {
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    font-size: .85rem;
    font-weight: var(--light);
    color: var(--white-color);
    text-align: left;
}
.form-control:-ms-input-placeholder {
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    font-size: .85rem;
    font-weight: var(--light);
    color: var(--white-color);
    text-align: left;
}
.form-control:-moz-placeholder {
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    font-size: .85rem;
    font-weight: var(--light);
    color: var(--white-color);
    text-align: left;
}
.form-control::-moz-placeholder {
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    font-size: .85rem;
    font-weight: var(--light);
    color: var(--white-color);
    text-align: left;
}
.border-left-right {
    border-left: 1px solid rgba(0,0,0,.1);
    border-right: 1px solid rgba(0,0,0,.1);
}
/*MAIN MENU*/
.app-nav {
    display: block;
    width: 100%;
    background-color: transparent;
}
.app-nav__fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1009;
}
#nav-icon-holder {
    position: fixed;
    top: 27px;
    right: 30px;
    z-index: 1050;
}
.nav-icon-caption {
    position: fixed;
    top: 33px;
    right: 80px;
    font-size: .8rem;
    color: var(--black-color);
    z-index: 1050;
}
.nav-icon-caption--black { color: var(--black-color); }
#nav-icon {
    position: relative;
    margin: 1px auto;
    width: 40px;
    height: 34px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--black-color);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 40px 0 rgba(0,0,0,.1);
}
#nav-icon span.black { background-color: var(--black-color); }
#nav-icon span:nth-child(1) { top: 0px; }
#nav-icon span:nth-child(2) { top: 12px; }
#nav-icon span:nth-child(3) { top: 24px; }
#nav-icon.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
#nav-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
#nav-icon.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.app-nav-container {
    position: relative;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    padding-block: 20px;
    padding-inline: 4.5rem;
    max-width: 1320px;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(231,231,231,1) 100%);
    z-index: 1011;
}
.app-nav-container::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 13px 13px 0px;
    border-color: transparent #fff transparent transparent;
    z-index: 1009;
}
.app-nav-container::after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 14px 0px 0px;
    border-color: #e7e7e7 transparent transparent transparent;
}
.app-nav-container__brand-logo { max-width: 200px; }
.app-nav-links { display: block; }
.app-nav-links__list {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    flex-direction: row;
    align-items: center;
    list-style: none;
}
.app-nav-links__item {
    position: relative;
    margin-right: 30px;
}
.app-nav-links__item:last-of-type { margin-right: 0; }
.app-nav-links__item a {
    font-size: 1rem;
    color: var(--text-normal-color);
    font-weight: var(--normal);
    text-decoration: none;
}
.app-nav-links__item a:hover { border-bottom: 1px solid var(--ask-form-bottom-background-color); }
/*HEADER*/
#index-header {  }
/* .main-brand-logo {
    margin-bottom: 45px;
    max-width: 270px;
}
.main-eu-banner { margin-bottom: 60px; } */

/*INDEX*/
.section-box {
    margin-top: 20px;
    padding: 2.1rem;
    width: 100%;
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(244,244,244,1) 100%);
    border-radius: .9rem;
}
.section-box__heading {
    display: block;
    margin-bottom: 35px;
    font-size: 1.5rem;
    color: var(--section-header-color);
    font-weight: var(--black);
    line-height: 1.35rem;
    text-align: center;
}
.section-box p {
    margin-bottom: 10px;
    font-size: .95rem;
    line-height: 1.35rem;
}
.section-box__btn-wrapper { text-align: center; }
.social-media-wrapper {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
/*CALL US*/
.popup-overlay {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.66);
    z-index: 1010;
    backdrop-filter: blur(2px);
}
.show-number-popup {
    position: fixed;
    display: flex;
    padding: 1rem 1.5rem;
    top: 50%;
    left: 50%;
    width: 760px;
    height: 465px;
    flex-flow: row nowrap;
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(231,231,231,1) 100%);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0);
    z-index: 1011;
}
.show-number-popup--show { transform: translate(-50%, -50%) scale(1); }
.show-number-popup__img {
    flex: 0 0 auto;
    width: 50%;
    height: 425px;
}
.show-number-popup__links {
    position: relative;
    flex: 0 0 auto;
    width: 50%;
}
.show-number-popup__img img {
    display: block;
    max-height: 425px;
}
.show-number-popup__links-close {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.show-number-popup__quick-contact {
    display: flex;
    width: 100%;
    height: 100%;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}
.show-number-popup__quick-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: var(--strong);
    text-align: center;
}
.show-number-popup__quick-contact p {
    margin-bottom: 1rem;
    font-size: .9rem;
    line-height: 1.2rem;
    letter-spacing: 1.2px;
    text-align: center;
}
.show-number-popup__quick-contact-btn {
    margin-bottom: 1rem;
    padding: .6rem .8rem;
    width: 95%;
    font-size: .85rem;
    letter-spacing: 1.2px;
    color: #fff;
    background-color: #000;
    border-radius: 10px;
    cursor: pointer;
}
/*ABOUT US*/
.about {
    padding-top: 65px;
    padding-bottom: 50px;
}
.about-index {
    background: url('../images/backgrounds/section_bg.jpg') bottom center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.about-rest { background: #fff url('../images/backgrounds/section_bg2.jpg') top center no-repeat; }
.about-description {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
}
.ask-form {
    padding-left: 3rem;
    padding-right: 3rem;
}
.ask-form__heading {
    margin-bottom: .5rem;
    font-size: 1.3rem;
    color: var(--text-bold-color);
    font-weight: var(--black);
}
.ask-form__text { margin-bottom: 0; }
.ask-form__top {
    padding: 35px 15px;
    background-color: var(--ask-form-top-background-color);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.ask-form__bottom {
    margin-bottom: 35px;
    padding: 35px 15px;
    background-color: var(--ask-form-bottom-background-color);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.about-heading {
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--advantages-background-color);
    font-weight: var(--black);
    line-height: 3.2rem;
}
.about-heading--sm {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
}
.about-heading--xs {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: normal;
}
.about-heading--sm, .about-heading--xs { line-height: 2.2rem; }
.about-description p, .about-description a {
    margin-bottom: .9rem;
    font-size: 1rem;
    color: var(--text-normal-color);
}
.about-description a {
    color: var(--button-background-color);
    text-decoration: none;
}
.about-description a:hover { text-decoration: underline; }
.about-description__lead {
    font-size: 1.1rem !important;
    font-weight: var(--medium);
}
/*ADVANTAGES & GALLERY*/
.advantages {
    padding-top: 45px;
    padding-bottom: 50px;
    background: linear-gradient(135deg,  rgba(202,220,158,1) 0%,rgba(190,196,98,1) 100%);
}
.advantages__features-item p span { color: var(--button-text-color); }
.gallery {
    padding-top: 45px;
    padding-bottom: 80px;
    background: url('../images/backgrounds/section-bg-reversed.jpg') top center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.advantages-heading, .gallery-heading {
    display: inline-block;
    margin-bottom: 0;
    padding: 20px;
    color: var(--text-bold-color);
    font-size: 2rem;
    font-weight: var(--black);
    letter-spacing: 1px;
}
.advantages-heading { background-color: var(--button-text-color); }
.gallery-heading { border: 2px solid var(--section-header-color); }
.blot-heading {
    display: flex;
    margin: 0 auto;
    width: 430px;
    height: 155px;
    font-size: 1.8rem;
    font-weight: var(--black);
    letter-spacing: 1px;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
}
.blot-heading--white {
    color: var(--text-bold-color);
    background: url('../images/backgrounds/kleks_bialy.png') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.blot-heading--green {
    color: var(--button-text-color);
    background: url('../images/backgrounds/kleks.png') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.gallery-heading--rotated { transform: rotate(-5deg) }
.advantages__features { margin-top: 35px; }
.gallery__photos-links { margin-top: 60px; }
/*Gallery*/
/*6 photos*/
.gallery-grid-6 {
    display: grid;
    height: 500px;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.gallery-grid-6__photo-1 {
    grid-column: 1/2;
    grid-row: 1/2;
}
.gallery-grid-6__photo-2 {
    grid-column: 2/3;
    grid-row: 1/2;
}
.gallery-grid-6__photo-3 {
    grid-column: 3/4;
    grid-row: 1/2;
}
.gallery-grid-6__photo-4 {
    grid-column: 1/2;
    grid-row: 2/3;
}
.gallery-grid-6__photo-5 {
    grid-column: 2/3;
    grid-row: 2/3;
}
.gallery-grid-6__photo-6 {
    grid-column: 3/4;
    grid-row: 2/3;
}
/*8 photos*/
.gallery-grid-8 {
    display: grid;
    height: 500px;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.gallery-grid-8__photo-1 {
    grid-column: 1/2;
    grid-row: 1/2;
}
.gallery-grid-8__photo-2 {
    grid-column: 2/3;
    grid-row: 1/2;
}
.gallery-grid-8__photo-3 {
    grid-column: 3/4;
    grid-row: 1/2;
}
.gallery-grid-8__photo-4 {
    grid-column: 4/5;
    grid-row: 1/2;
}
.gallery-grid-8__photo-5 {
    grid-column: 1/2;
    grid-row: 2/3;
}
.gallery-grid-8__photo-6 {
    grid-column: 2/3;
    grid-row: 2/3;
}
.gallery-grid-8__photo-7 {
    grid-column: 3/4;
    grid-row: 2/3;
}
.gallery-grid-8__photo-8 {
    grid-column: 4/5;
    grid-row: 2/3;
}
/*5 photos*/
.gallery-grid-5 {
    display: grid;
    height: 500px;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.gallery-grid-5__photo-1 {
    grid-column: 1/3;
    grid-row: 1/3;
}
.gallery-grid-5__photo-2 {
    grid-column: 3/4;
    grid-row: 1;
}
.gallery-grid-5__photo-3 {
    grid-column: 4/5;
    grid-row: 1;
}
.gallery-grid-5__photo-4 {
    grid-column: 3/4;
    grid-row: 2;
}
.gallery-grid-5__photo-5 {
    grid-column: 4/5;
    grid-row: 2;
}
.gallery-grid__photo-link {
    display: block;
    height: 100%;
    overflow: hidden;
}
.gallery-grid__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-grid__photo-link:hover .gallery-grid__image {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition-duration: 1s;
}
.gallery-grid__image::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0);
    opacity: 0;
    transition: 0.5s;
}
.gallery-grid__photo-link:hover .gallery-grid__image::after { opacity: 0.33; }
.gallery-grid__photo-link:hover .magnifier::before {
    left: 50%;
    opacity: 1;
}
.gallery-grid__photo-link:hover .magnifier::after {
    top: 50%;
    opacity: 1;
}
.gallery-grid__photo-link:hover .magnifier {
    visibility: visible;
    opacity: 1;
}
.magnifier {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}
.magnifier::before,
.magnifier::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.magnifier::before {
    width: 30px;
    height: 2px;
    left: 0;
}
.magnifier::after {
    height: 30px;
    width: 2px;
    top: 0;
}
/**/
.advantages__features-item {
    margin-bottom: 45px;
    text-align: center;
}
.advantages__features-item img {
    margin-bottom: 35px;
    height: 88px;
}
.advantages__features-item p {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.3rem;
}
.advantages__features-item p span {
    font-size: 1.3rem;
    font-weight: var(--strong);
}
/*MAP*/
.map { height: 620px; }
.map-wave, .map-wave--white {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1002;
}
.map-wave { bottom: 0; }
.map-wave--white { top: 0; }
/*FOOTER*/
.footer-wrapper {
    position: relative;
    padding: 50px 0;
    text-align: center;
    background: var(--footer-background-color2);
}
.footer-wrapper-copyright {
    padding: 35px 0;
    background: var(--footer-background-color2);
}
.footer-wrapper-bubble-img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 92px;
}
.footer-contact {
    padding: 35px 0;
    align-items: center;
}
.footer-contact__item { text-align: center; }
.footer-contact__item p, .footer-contact__item a {
    margin-bottom: 20px;
    font-size: 1.4rem;
}
.footer-contact__item p {
    color: var(--button-text-color);
    line-height: 1.9rem;
}
.footer-contact__item p a, .footer-contact__item a {
    color: var(--ask-form-bottom-background-color);
    text-decoration: none;
}
.footer-copyright {
    margin-bottom: 0;
    font-size: .9rem;
    color: var(--button-text-color);
}
.footer-copyright a {
    color: var(--button-text-color);
    text-decoration: none;
}
.footer-copyright a:hover { text-decoration: underline; }
/*COOKIES*/
#cookies-icon {
    position: fixed;
    display: flex;
    left: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background-color: #225082;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}
#cookies-icon img {
    max-width: 65%;
    align-self: center;
    flex-shrink: 0;
}
.cookies-widget {
    position: fixed;
    display: flex;
    left: 20px;
    bottom: 20px;
    width: 420px;
    max-height: 420px;
    flex-flow: column nowrap;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0);
    z-index: 1002;
}
.cookies-widget--show { transform: scale(1); }
.cookies-widget__header {
    display: flex;
    padding: 3px 14px 3px 24px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}
.cookies-widget__header p {
    margin-bottom: 0;
    font-size: 16px;
    color: #212122;
    font-weight: 500;
    letter-spacing: .5px;
}
.cookies-widget__header-close {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    cursor: pointer;
}
.cookies-widget__body {
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}
.cookies-widget__body p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 1px;
    color: #212122;
}
.cookies-widget__body p a {
    color: #424242;
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
}
.cookies-widget__body p a:hover { color: #225082; }
.cookies-widget__buttons { padding: 16px 24px; }
.cookies-agreements, .apple-switch-wrapper {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.cookies-agreements__half-col {
    flex: 0 0 50%;
    max-width: 50%;
}
.apple-switch-wrapper { margin-bottom: 8px; }
.apple-switch-wrapper:last-of-type { margin-bottom: 0; }
.apple-switch-wrapper p {
    margin-bottom: 0;
    margin-left: 9px;
    font-size: 11px;
}
.apple-switch--disabled {
    position: relative;
    width: 50px;
    height: 30px;
    background-color: #b6b6b6;
    border: 1px solid #666666;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 grey;
}
.apple-switch--disabled::after {
    position: absolute;
    content: '';
    top: 1px;
    left: 1px;
    width: 26px;
    height: 26px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}
.apple-switch {
    position: relative;
    width: 50px;
    height: 30px;
    background-color: #e70f0f;
    border: 1px solid #d9dadc;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 #e70f0f;
    transition-duration: 200ms;
    cursor: pointer;
}
.apple-switch::after {
    position: absolute;
    content: '';
    top: 1px;
    left: 1px;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}
.apple-switch--checked {
    border-color: #d9dadc;
    background-color: #1a972f;
    box-shadow: inset 20px 0 0 0 #1a972f;
}
.apple-switch--checked::after {
    left: 20px;
    box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
}
.cookies-button {
    display: inline-block;
    padding: 5px 7px;
    font-size: 11px;
    color: #212122;
    font-weight: var(--light);
    background-color: #fff;
    border: 1px solid #212122;
    cursor: pointer;
}
.cookies-button {
    margin-top: 10px;
    margin-right: 5px;
    margin-bottom: 0;
}
.cookies-button:last-of-type { margin-right: 0; }
.cookies-button:hover {
    color: #fff;
    background-color: #212122;
}
/*PRELOADER*/
.holder {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-image: radial-gradient(circle farthest-corner at center, #ffffff 0%, #f5f5f5 100%);
    z-index:9999;
}
.preloader {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
}
.preloader-fountainTextG {
    margin: auto;
    width: 300px;
}
.preloader-fountainTextG .fountainTextG {
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    color: black;
    text-decoration: none;
    font-weight: normal;
    font-style: normal;
    float: left;
    animation-name: bounce_fountainTextG;
    -o-animation-name: bounce_fountainTextG;
    -ms-animation-name: bounce_fountainTextG;
    -webkit-animation-name: bounce_fountainTextG;
    -moz-animation-name: bounce_fountainTextG;
    animation-duration: 2.09s;
    -o-animation-duration: 2.09s;
    -ms-animation-duration: 2.09s;
    -webkit-animation-duration: 2.09s;
    -moz-animation-duration: 2.09s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    transform: scale(0.5);
    -o-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
}
.preloader-fountainTextG #fountainTextG_1 {
    color: #09294e;
    animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
}
.preloader-fountainTextG #fountainTextG_2 {
    color: #f3ae00;
    animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
}
.preloader-fountainTextG #fountainTextG_3 {
    color: #09294e;
    animation-delay: 1.05s;
    -o-animation-delay: 1.05s;
    -ms-animation-delay: 1.05s;
    -webkit-animation-delay: 1.05s;
    -moz-animation-delay: 1.05s;
}
.preloader-fountainTextG #fountainTextG_4 {
    color: #09294e;
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
}
.preloader-fountainTextG #fountainTextG_5 {
    color: #09294e;
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
}
.preloader-fountainTextG #fountainTextG_6 {
    color: #dd137b;
    animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
}
.preloader-fountainTextG #fountainTextG_7 {
    color: #75c5f0;
    animation-delay: 1.64s;
    -o-animation-delay: 1.64s;
    -ms-animation-delay: 1.64s;
    -webkit-animation-delay: 1.64s;
    -moz-animation-delay: 1.64s;
}
.preloader-fountainTextG #fountainTextG_8 {
    color: #b8db7c;
    animation-delay: 1.7s;
    -o-animation-delay: 1.7s;
    -ms-animation-delay: 1.7s;
    -webkit-animation-delay: 1.7s;
    -moz-animation-delay: 1.7s;
}
.preloader-fountainTextG #fountainTextG_9 {
    color: #09294e;
    animation-delay: 1.84s;
    -o-animation-delay: 1.84s;
    -ms-animation-delay: 1.84s;
    -webkit-animation-delay: 1.84s;
    -moz-animation-delay: 1.84s;
}
.preloader-fountainTextG #fountainTextG_10 {
    color: #f3ae00;
    animation-delay: 1.9s;
    -o-animation-delay: 1.9s;
    -ms-animation-delay: 1.9s;
    -webkit-animation-delay: 1.9s;
    -moz-animation-delay: 1.9s;
}
.preloader-fountainTextG #fountainTextG_11 {
    color: #09294e;
    animation-delay: 2.05s;
    -o-animation-delay: 2.05s;
    -ms-animation-delay: 2.05s;
    -webkit-animation-delay: 2.05s;
    -moz-animation-delay: 2.05s;
}

@keyframes bounce_fountainTextG {
    0% {
        transform: scale(1);
        color: #09294e;
    }
    100% {
        transform: scale(0.5);
        color: #f3ae00;
    }
}
@-webkit-keyframes bounce_fountainTextG {
    0% {
        -webkit-transform: scale(1);
        color: #f3ae00;
    }
    100% {
        -webkit-transform: scale(0.5);
        color: #09294e;
    }
}
/*SFX*/
.transition {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.shine { position: relative; }
.shine::before {
    position: absolute;
    content: '';
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.shine:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
