@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -ms-transform: translateY(100%);
    }

    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu + .rwdMenu > ul {
    border-top: none;
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}

.rwdMenu li > *:first-child {
    flex: 1 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}


.rwdMenu li > *:first-child svg {
    width: 18px;
}

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}

.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    margin: 15px 0;
    text-align: center;
}

.rwdMenu .social-list > ul > li a {
    padding: 0;
}

.rwdMenu .social-list > ul > li {
    border: 0 none;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 6px;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

.rwdButton > * {
    transition: all 0.5s;
}

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: var(--color-primary);
}

.rwdButton .animIcon--close span {
    background-color: #fff;
}

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1670px) {
    #main-menu li a {
        padding: 9px 16px;
    }

    .offer-price {
        width: 100%;
        text-align: right;
    }

    .slider {
        height: 690px;
    }

}

@media screen and (max-width: 1600px) {
    #main-menu li a {
        padding: 9px 10px;
    }

    .about-photo {
        max-width: 63%;
        right: 10%;
        top: 6%;
    }

    .offer-item {
        padding: 33px 20px 70px;
    }

    .offer-slider {
        margin-left: -20px;
        margin-right: -20px;
    }

    .subpage .offer-slider {
        margin: -33px -20px -20px;
    }

    .subpage .offer-item {
        padding: 33px 20px 20px;
    }

    .news-item {
        padding: 36px 20px 41px;
    }

    .news-slider {
        margin: -36px -20px 0;
    }

    .files-list ul li a {
        padding: 0 30px;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .question-img {
        width: 60%;
        margin-right: -10%;
    }

    .contact-info-right strong:after {
        margin-left: 25px;
        margin-right: 18px;
    }

    .map-box {
        mask-size: cover;
        -webkit-mask-size: cover;
    }

    .slider {
        height: 650px;
    }
	
	.offer-info {
    padding: 5px 10px;
}

	.offer-info-box {
    margin: -5px -10px;
}


}

@media screen and (max-width: 1440px) {
    #main-menu li a {
        padding: 9px;
        font-size: 15px;
    }

    .about-photo {
        max-width: 62%;
        top: 6%;

    }

    .about-box-container {
        padding-top: 50px;
        padding-bottom: 140px;
        background-size: 112% auto;
    }

    .slider-navigation {

    }

    #young .club-title .line1 {
        margin-left: -18%;
        margin-bottom: -10px;
    }

    .parent-icon {
        width: 180px;
        height: 180px;
        padding: 45px;
    }

    .question-img {
        width: 50%;
        margin-right: 0%;
    }

    .contact-links-box {
        padding-bottom: 45px;
        padding-left: 80px;
        padding-right: 150px;
    }

    .contact-left {
        background-size: 90% 96%;
    }

    .contact-img {
        margin-top: -7%;
    }

    .contact-left-bottom {
        padding-left: 80px;
    }


    .contact-info-icon {
        width: 70px;
        height: 70px;
        margin-right: 15px;
        padding: 17px;
    }

    .contact-info {
        padding: 80px 90px;
    }

    .slider {
        height: 570px;
    }
	
	    .offer-info {
        padding: 2px 10px;
    }
	
	.offer-info-box {
    margin: -2px -10px;
}
	
	.offer-name {
    padding-bottom: 10px;
}

.offer-bottom {
    padding-top: 10px;
}

.offer-content {
    padding: 20px 24px 20px;
}

    .offer-price {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1366px) {
    .logo {
        width: 220px;
    }

    #content {
        padding-top: 126px;
    }

    .about-photo {
        max-width: 54%;
        top: 12%;
        right: 17%;
    }

    .about-box-container {
        padding-top: 50px;
        padding-bottom: 60px;
    }


    .offer-header .slider-nav-box .btn {
        padding: 0 25px;
    }

    .offer-info {
        padding: 2px;
    }
	
		.offer-info-box {
    margin: -2px;
}

    .offer-name {
        padding-bottom: 10px;
    }

    .offer-bottom {
        padding-top: 10px;
    }

    .offer-content {
        padding: 22px 20px 30px;
    }

    .news-content {
        padding: 10px 15px 21px;
    }

    a.opinion-link {
        padding-left: 15px;
        padding-right: 15px;
    }

    .opinion-item {
        padding-top: 22px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .files-list ul li {
        margin-bottom: 0;
        padding: 15px;

    }

    .files-list ul {
        margin: -15px;
    }

    .parent-icon {
        width: 170px;
        height: 170px;
        padding: 40px;
    }

    .contact-img {
        margin-top: -5%;
    }

    .contact-left {
        background-size: 93% 100%;
    }

    .slider {
        height: 560px;
    }
.contact-title {
    margin-bottom: 15px;
}
.contact-left .contact-link {
    padding: 5px;
}

.contact-left .contact-links {
    margin: -5px;
}

.social-icon {
    width: 46px;
    height: 46px;

}
}


@media screen and (max-width: 1280px) {
    .logo {
        width: 180px;
    }

    .contact-link {
        font-size: 15px;
    }

    .slogan {
        font-size: 15px
    }

    .contact-link {
        font-size: 15px;
        padding: 0 5px;
        margin-left: 5px;
    }

    .slogan {
        margin-right: 0;
    }

    #content {
        padding-top: 113px;
    }

    .offer-content {
        padding: 22px 15px 30px;
    }

    .parent-icon {
        width: 160px;
        height: 160px;
        padding: 35px;
    }

    .address-box .text.txt {
        color: #fff;
        text-align: left;
    }

    .contact-right {
        padding-right: 0;
    }

    .contact-info {
        flex-wrap: wrap;
        align-items: center;
    }

    .contact-info-left {
        width: 100%;
        margin-bottom: 22px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .contact-info-right {
        width: 100%;
        text-align: center;
    }

    .slider {
        height: 550px;
    }
	
	.social-icon {
    width: 40px;
    height: 40px;

}
}

@media screen and (max-width: 1200px) {
    #main-menu li a {
        padding: 9px 7px;
        font-size: 14px;
    }

    .about-left {
        width: 25%;
    }

    .about-photo {
        max-width: 51%;
        top: 16%;
        right: 19%;
    }

    .about-box-container {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .offer-content {
        padding: 22px 10px 30px;
    }

    .footer-left {
        width: 60%;
    }

    .footer-bar-content > * {
        font-size: 14px;
    }

    .footer-bar-links > li {
        font-size: 14px;
    }

    .copyright-undicom {
        font-size: 14px;
    }

    .footer-bar-links > li {
        margin: 0 8px;
    }

    .footer-bar-content {
        padding: 23px 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        padding: 0 50px;
    }

    .files-list ul li a {
        padding: 20px 15px;
    }

    .parent-icon {
        width: 150px;
        height: 150px;
        padding: 30px;
    }

    .slider {
        height: 540px;
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

    .footer-content {
        display: block !important;
    }
}

@media screen and (max-width: 1139px) {
    /* menu box */
    .menu-box-wrapper {
        margin-top: 0;
    }

    .menu-box li a {
        display: flex !important;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .menu-box ul {
        align-items: stretch;
        padding: 10px 0;
        margin: 0;
        background-color: rgba(251, 176, 4, 0.63);
    }

    .menu-box .menu-box-menu {
        display: none;
        position: absolute;
        z-index: 1000;
        padding: 0;
        top: 100%;
        margin: 0;
        left: var(--container-padding);
        right: var(--container-padding);
    }

    .menu-box {
        position: relative;
        margin-bottom: 0;
    }

    .menu-box.sticky {
        top: 72px;
        padding: 0;
    }

    .menu-box-toggle {
        display: flex;
        padding: 20px 15px;
        justify-content: center;
        cursor: pointer;
        align-items: center;
    }


    .menu-box-toggle .toggle-more {
        display: flex;
        align-items: center;

        gap: 10px
    }



    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 45px;
    }

    .lang .langs-menu-short {
        display: none;
    }

    .lang .langs-menu-long {
        display: block;
        color: var(--color-primary);
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: #f0f;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
    }

    .header-top-right {
        margin-right: 0;
    }

    .header-top a.contact-link .btn-caption {
        display: none;
    }

    a.contact-link .btn-icon {
        margin-right: 0;
        border: 1px solid #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }

    .slogan {
        font-size: 14px;
    }

    .contact-link {
        font-size: 14px;
    }

    .contact-link .btn-icon {
        margin-right: 0;
    }

    .offer-box-title {
        text-align: left;
    }

	    .offer-header .slider-nav-box {
        position: relative;
        top: 0;
        margin: 0;
        justify-content: flex-end;
        width: auto;
    }

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

    .offer-photo-left {
        display: none;
    }

    .offer-slider-right {
        width: 100%;
        margin: 0;
    }

    .offer-photo-left + .offer-slider-right {
        width: 100%;
        margin: 0;
    }

    .offer-slider2 {
        margin: -33px -20px -45px;
    }

    .text.txt {
        text-align: left;
        font-size: 14px;
        line-height: 24px;
    }

    span.more {
        font-size: 14px;
        line-height: 24px;
    }

    .about-box {
        flex-direction: column;
    }

    .about-left {
        width: 100%;
    }

    .about-right {
        width: 100%;
        margin-bottom: 40px;
    }

    .about-photo {
        position: relative;
        width: auto;
        max-width: none;
        top: auto;
        right: auto;
        left: auto;
    }

    .footer-box-container {
        position: relative;
        padding-top: 100px;
        padding-bottom: 30px;
    }

    img.footer-bar-img {
        display: none;
    }

    .files-list ul li {
        width: 33.33%;
    }

    .club-title .line1 {
        margin-bottom: -20px;
    }

    div#senior {
        align-items: center;
        background-size: 100% 100%;
    }

    div#young {
        flex-direction: row-reverse;
        align-items: center;
    }

    div#traveler {
        align-items: center;
        background-size: 100% 100%;
    }

    #traveler .club-img {
        margin: 0;
    }

    .offer-details-right {
        width: 38%;
    }

    .subpage #content, #content  {
        padding-top: 123px;
    }

    .offer-details-right .offer-info-icon {
        margin-right: 10px;
        flex-shrink: 0;
    }

    .question-box {
        flex-wrap: wrap;
    }

    .question-box .form-box-wrapper {
        width: 100%;
    }

    .question-img {
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
    }

    .map-box {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .news-details-container .gallery {
        margin-bottom: 40px;
    }

    .slider {
        height: 460px;
    }

    .title1 {
        font-size: var(--font-48);
    }

    .description {
        font-size: var(--font-22);
        line-height: 130%;
    }

    .about-box-title {
        font-size: var(--font-48);
    }

    .text.text-big {
        font-size: var(--font-24);
    }

    .offer-box-title {
        font-size: var(--font-48);
    }

    .page-heading-title {
        font-size: var(--font-48);
        font-weight: 200;
    }

    .parents-box-title {
        font-size: var(--font-48);
    }

    .parent-text {
        font-size: 14px;
        line-height: 24px;
    }

    .parents-info {
        background-size: 146% 100%;
        font-size: var(--font-22);
        line-height: 130%;
        width: auto;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-heading-title + .text.txt h2 {
        font-size: var(--font-20);
    }

    .news-item {
        padding: 15px 20px;
    }
	    .subpage .offer-item {
        padding: 15px 20px;
    }
	
	    .subpage .offer-slider {
        margin: -15px -20px 10px;
    }

    .subpage .news-slider {
        margin: -15px -20px 20px;
    }

    .top {
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .breadcrumb-container {
        margin: 20px 0;
    }

.news-content {
        padding: 10px 15px 15px;
    }

    .news-name {
        margin-bottom: 10px;
    }

    .contact-box {
        margin-bottom: var(--space-40);
    }

    .map-box iframe {
        height: 60vh;
    }

    .map-box {
        height: auto;
    }
	
	.form-box-title {
    margin-bottom: 0;
}

.breadcrumb-container {
        margin: 20px 0 10px;
    }
	
	.slider-photo {
    mask-size: 160% 100%;
}

    .slider {
        height: auto;
    }
	
	.slider .container {
    position: relative;
    left: auto;
    right: auto;
    height: 100%;
    bottom: auto;
    top: auto;
}

.slider-text-box {
    position: relative;
}
	.slider .slider-photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.slider-text-box {
    position: relative;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.slider .slick-track {
    display: flex !important;
 height: auto;
}

.slider .slick-slide {
    height: inherit !important;
}




img.slider-mask1 {
    display: none;
}

img.slider-mask2 {
    display: none;
}

.about-box-container {
    background: transparent;
}

    .about-box-container {
        padding-top: 5px;
        padding-bottom: 30px;
    }
	
	.offer-header, .news-box-wrapper .offer-header {
    margin-bottom: 40px;
}

.news-content .text.txt {
    height: 72px;
}

.subpage .offer-box-container {
    padding-bottom: 10px;
}

.footer-boxes {
    align-items: flex-end;
}

    .parents-box {
        margin: -0 -20px;
        padding-bottom: 30px;
    }
.parent-item {
    padding: 0 20px;
}

.top {
    height: 62px;
}

    .news-slider {
        margin: -15px -20px 0;
    }
	
	.section-details-title, .about-box-title , .offer-box-title,.parents-box-title  {
    font-weight: 200;
	}
}

@media screen and (max-width: 1060px) {
    .subpage .news-item {
        width: 50%;
    }

    .offer-item {
        width: 33.33%;
    }

    .contact-info-right strong {
        display: block;
    }

    .contact-info-right strong:after {
        display: none;
    }
}

@media screen and (max-width: 980px) {

    .about-photo .mask-wrapper img{
        width: 100vw;
    }
    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: 0px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 2px;
    }

    .footer-bar-links > li {
        margin: 0 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }

    .copyright:before {
        display: none;
    }

    .footer-bar-content {
        align-items: center;
        justify-content: center;
    }

}

@media screen and (max-width: 960px) {

    .parent-item {
        width: 33.33%;
        margin-bottom: 10px;
    }

    .parents-box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .offer-details {
        flex-wrap: wrap;
        padding-top: 0;
        padding-bottom: 40px;
    }

    .offer-details-photo {
        width: 100%;
        padding-top: 0;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .offer-details-photo-content {
        max-width: 100%;
    }

    .offer-details-photo img {
        width: 100%;
    }

    .offer-details-right {
        width: 100%;
    }

    .contact-box {
        flex-wrap: wrap;
    }

    .contact-left {
        width: 100%;
        background-size: 100% 100%;
    }

    .contact-img {
        width: 40%;
        margin: 0;
    }

    .address-box {
        width: 60%;
    }

    .contact-links-box {
        padding-left: 110px;
    }

    .contact-left-bottom {
        padding-left: 110px;
    }

    .contact-right {
        width: 100%;
    }

    .contact-left {
        background-size: 527% 100%;
        background-position: 41% top;
        padding-top: 50px;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .contact-title {
        margin-bottom: 15px;
    }

    .contact-links-box {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-box-container .container {
        padding: 0;
    }

    .contact-left-bottom {
        padding-left: 0;
    }

    .contact-img {
        width: 36%;
    }

    .breadcrumb-container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .contact-right {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .contact-info {
        background-size: 470% 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        justify-content: space-between;
        display: flex;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        padding: 12px;
        flex-shrink: 0;
    }

    .contact-info-left {
        text-align: left;
        justify-content: flex-start;
        width: auto;
        margin-bottom: 0;
    }

    .contact-info-right {
        width: auto;
        text-align: left;
        flex-grow: 0;
    }
}

@media screen and (min-width: 768px) {
    footer .show-hide {
        display: block !important;
    }
}


@media screen and (max-width: 900px) {

    .header-top .contact-link {
        display: none;
    }

    a.contact-link {
        display: flex;
        padding: 0 3px;
    }

    .slogan {
        font-size: 13px;
    }

    .footer-left {
        width: 70%;
    }

    .files-list ul li {
        margin-bottom: 0;
        padding: 10px;
    }

    .files-list ul {
        margin: -10px;
    }

    .product-submenu ul li a {
        min-width: 1px;
    }

    .subpage #content, #content  {
        padding-top: 103px;
    }
	
	.product-submenu li {
    padding: 3px 7px;
}
}


@media screen and (max-width: 767px) {
    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    .controls.captcha-container .col-sm-6 {
        width: 100%;
    }

    .contact-link-bottom .btn-icon {
        margin: 0 10px 0 0;
        width: 40px;
        height: 40px;
    }

    .contact-link-bottom {
        font-size: 20px;
    }

    .footer-col-title.footer-col-title-rwd {
        opacity: 1;
    }

    .footer-right .footer-col-title.footer-col-title-rwd {
        display: block;
    }


    .footer-boxes {
        flex-wrap: wrap;
    }

    footer .footer-box, .footer-box.footer-box-contact {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding: 15px 15px 0 15px !important;
    }

    footer .show-hide {
        display: none;
    }

    footer .footer-col-title {
        background: url(../images/icons/arrow_down2.svg) no-repeat right 5px;
        background-size: 20px 20px;
        margin-bottom: 0;
        font-size: 20px;
        padding-bottom: 15px;
        padding-left: 0;
    }

    .footer-col-title.footer-col-title-rwd {
        display: block;
    }

    .footer-box-container {
        padding-top: 0;
        padding-bottom: 15px;
    }

    .footer-right .footer-box:last-child {
        display: block;
        text-align: left;
        width: 100%;
        border-bottom: 0 none;
    }

    img.logo-min {
        margin: 0 auto;
    }

    footer .container {
        padding: 0;
    }

    footer .photo-bg {
        mask-image: none !important;
    }

    .footer-left {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-left .footer-box:last-child {
        width: 100%;
        text-align: left;
    }

    .news-box-container .pagination-wrapper {
        padding-bottom: 50px;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
        padding: 0;
    }

    .files-list ul li {
        width: 50%;
    }

    .club-title .line1 {
        margin-bottom: -10px;
    }

    .offer-item {
        width: 50%;
    }

    .parent-icon {
        width: 130px;
        height: 130px;
        padding: 25px;
    }

    .news-details-container {
        padding-bottom: 50px;
    }

    .news-details-container .gallery {
        margin-bottom: 50px;
    }

    .slider-text {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
        width: 90%;
        margin: 0 auto;
    }

    .slider-arrows-box {
        display: none;
    }

    .contact-info-right {
        font-size: var(--font-20);
    }

    .contact-info-icon {
        width: 46px;
        height: 46px;
        margin-right: 10px;
        padding: 12px;
    }
	
	    .slider-text-box {
        padding-top: 150px;
    }
	
	.offer-box-wrapper {
    padding-top: 50px;

}

.news-box-wrapper {
    padding-top: 50px;
}

.opinion-box-container .offer-header {
    margin-bottom: 50px;
}

    .offer-header, .news-box-wrapper .offer-header {
        margin-bottom: 50px;
    }
    .offer-header, .news-box-wrapper .offer-header {
        margin-bottom: 40px;
    }
	
	.parents-box-container {
    padding-bottom: 50px;
 }
 
 .product-section .text.txt {
    margin-bottom: 0;
}

.container + .gallery {
    padding-top: 30px;
}
}


@media screen and (max-width: 639px) {
    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }
   .offer-details.offer-details-no-info {
        padding-bottom: 0;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }

    .breadcrumb > li + li:before {
        padding: 0 6px;
    }

    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }

    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }

    .parent-item {
        width: 50%;
        margin-bottom: 20px;
    }

    .parent-icon {
        margin-bottom: 15px;
    }

    .product-submenu ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-submenu li {
        padding: 3px 5px;
    }

    .product-submenu {
        padding: 35px 40px;
    }

    .contact-img {
        display: none;
    }

    .contact-left .contact-link {
        padding: 5px;
    }

    .contact-left .contact-links {
        margin: -5px;
    }


    .form .before-consent-row, .form .after-consent-row, .form .consent-row label, .form .consent-all {
        font-size: 14px;
    }

    .contact-info-left {
        padding-right: 0;
        text-align: center;
        width: 100%;
        align-items: center;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .contact-info-right {
        text-align: center;
        width: 100%;
        font-size: var(--font-24);
    }
	
	.contact-left {
    padding-bottom: 50px;
}

.contact-right {
    padding-top: 0;
}

.form .form-element-name {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 15px;
}

    .article-image {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }

    .gallery-list-item {
        width: 50%;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0;
    }

    .offer-header {
        flex-direction: column;
    }

    .offer-box-title, .about-box-title {
        font-size: 8vw;
        margin-bottom: 10px;
    }

    .footer-bar-content {
        padding: 10px 0;
    }

    .footer-bar {
        padding: 0;
        background: var(--color-secondary);
    }

    .file-download-box {
        padding: 7px 14px 7px;
        font-size: 14px;
    }

    .club-box {
        align-items: center;
        background-size: 100% 100%;
    }

    .club-title .line1 {
        margin-bottom: -10px;
    }

    .club-text {
        width: 100%;
        padding: 70px 16px 30px;
    }

    .club-img {
        width: 100%;
        margin: 0;
    }

    .club-box {
        flex-wrap: wrap;
    }

    .club-bottom .btn {
        text-align: center;
    }

    .club-title {
        font-size: 8vw;
        margin-bottom: 10px;
    }

    #young .club-title .line1 {
        margin-left: 0;
        margin-bottom: -10px;
        text-align: center;
    }


    div#young .club-text {
        padding-top: 110px;
        padding-left: 70px;
        padding-right: 70px;
    }

    #young .club-title .line2 {
        padding-right: 30px;
    }

    div#young .club-img {
        margin-right: 0;
        margin-left: 0;
        margin-top: 0;
    }

    #traveler .club-text {
        width: 100%;
        margin-right: 0;
        padding-top: 90px;
    }

    #traveler .club-img {
        width: 100%;
    }

    .club-box {
        margin-bottom: 80px;
    }


    .slider-text {
        padding-bottom: 50px;
    }

    img.slider-mask1 {
        display: none;
    }

    img.slider-bg1 {
        display: none
    }

    .title1 {
        font-size: 6vw;
    }


    .offer-header .slider-nav-box {
        width: 310px;
        justify-content: center;
    }
    .slider-navigation:only-child {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
    }
	
	.club-title .line1 {
    margin: 0!important;
    padding: 0!important;
    text-align: center!important;
}

.club-title .line2 {
    margin: 0!important;
    padding: 0!important;
    text-align: center!important;
    display: block!important;
}

    .club-bottom {
        text-align: center !important;
        padding-left: 10px;
        padding-right: 10px;
    }

    .club-bottom .text.txt {
        text-align: center !important;
        -webkit-line-clamp: none;
    }
.club-box {
    background-size: 500% 100%!important;
}
.decoration-2 .slider-nav-box {
    justify-content: center;
}

.club-box:nth-child(3n+1) .club-title {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

.club-box:nth-child(3n+2) .club-title {
    margin: 0;
    text-align: center;
    width: 100%!important;
}

.club-box:nth-child(3n+2) .club-title div:first-child {
    width: 100%;
    text-align: center;
}

.club-box:nth-child(3n+2) .club-title div {
    text-align: center!important;
}

.club-box:nth-child(3n+2) .club-text {
    padding: 0;
    padding-top: 80px;
    margin-bottom: 30px;
}

.club-box:nth-child(3n+2) .club-img {
    margin: 0 auto;
}

.club-box:nth-child(3n+3) .club-text {
    width: 100%;
}

.club-box:nth-child(3n+3) .club-title {
    text-align: center;
    margin: 0 0 10px;
}

.club-box:nth-child(3n+3) .club-img {
    width: 100%;
    margin: 0;
}

.club-box:last-child {
    margin-bottom: 80px;
}
.club-box:nth-child(3n+3) .club-img {
    width: 80%;
    margin: 0 auto 30px;
}

	.club-box:nth-child(3n+2) .club-img {
    max-width: 80%;
    margin-bottom:  0 auto 30px;
}

    .club-box:nth-child(3n+1) .club-img {
        max-width: 80%;
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .offer-box-title, .about-box-title {
        font-size: 9vw;
        margin-bottom: 10px;
    }

    .subpage .news-item {
        width: 100%;
    }

    .pagination-wrapper ul li {
        padding: 0;
    }

    .logo {
        width: 150px;
    }

    .social-icon {
        width: 46px;
        height: 46px;
    }

    .download-icon {
        margin-left: 13px;
    }

    .contact-info {
        padding: 60px 50px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        padding: 12px;
        flex-shrink: 0;
    }

    .slider-arrows-box img {
        display: none;
    }

    .title1 {
        font-size: 7vw;
    }

    .slider-arrows-box {
        display: none;
    }

    .slider-text {
        padding-bottom: 0;
    }

    .subpage #content, #content  {
        padding-top: 97px;
    }
	
	.article-image img.bg-front {
    bottom: -35px;
}

    .article-image {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 424px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .pagination-wrapper ul li {
        padding: 0;
    }

    .offer-photo img {
        width: 100%;
    }

    .offer-header .slider-nav-box .btn {
        padding: 0 18px;
    }

    .offer-box-title, .about-box-title {
        font-size: 10vw;
        margin-bottom: 10px;
    }

    .logo {
        width: 130px;
    }

    .files-list ul li {
        width: 100%;
    }

    .offer-item {
        width: 100%;
    }

    .parent-item {
        width: 100%;
        margin-bottom: 10px;
    }


    .title1 {
        font-size: 8vw;
    }

    .offer-header .slider-nav-box {
        width: 290px;
    }

    .header-top {
        display: none;
    }

    .subpage #content, #content  {
        padding-top: 57px;
    }

    .page-heading-title + .text.txt h2 {
        font-size: var(--font-20);
    }

    .page-heading-title + .text.txt h3 {
        font-size: var(--font-18);
    }

    .page-heading-title + .text.txt h4 {
        font-size: 16px;
    }
    .parent-icon {
        width: 100px;
        height: 100px;
        padding: 20px;
    }
	
	    .article-image img.bg-front {
        bottom: -25px;
    }
	
	    .article-image {
        margin-bottom: 30px;
    }
	
	.product-submenu ul {
        margin: -3px;
    }
	
	    .product-submenu li {
        padding: 3px;
    }
	
	.product-submenu ul li a {
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
	}
	    .product-submenu {
        padding: 35px 22px;
    }
	.animIcon span {
    height: 3px;
}
	}

@media screen and (max-width: 375px) {
    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        padding: 0 9px;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */
@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;
        --space-30: 25px;

        --font-60: 48px;
        --font-48: 40px;
        --font-40: 36px;
        --font-36: 32px;
        --font-35: 32px;
        --font-30: 26px;
        --font-26: 23px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-60: 45px;
        --font-48: 36px;
        --font-40: 34px;

        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-60: 43px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
        --font-18: 17px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-60: 40px;
        --font-48: 32px;
        --font-40: 30px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-30: 20px;
        --space-25: 15px;

        --font-60: 38px;
        --font-48: 30px;
        --font-40: 28px;
        --font-36: 26px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
        --space-30: 15px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
        --font-60: 36px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-60: 34px;
        --font-48: 30px;
        --font-40: 26px;
        --font-36: 24px;
        --font-35: 23px;
        --font-30: 22px;
        --font-26: 19px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-60: 32px;
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}