
:root {
    --ZeroYellow: #F9EC00;
    --Raisin-Black: #17171F;
    --ZeroBlue: #1364B4;
    --Ghost-White: #F5F5FA;
    --Battleship-Gray: #999;
    --carouselMarginLeft: calc((100vw - 1170px)/2);
    --carouselMarginRight: calc((100vw - 1170px)/2);
}




@font-face {
    font-family: 'Blender Pro';
    src: url('../fonts/BlenderPro-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blender Pro';
    src: url('../fonts/BlenderPro-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blender Pro';
    src: url('../fonts/BlenderPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blender Pro';
    src: url('../fonts/BlenderPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blender Pro';
    src: url('../fonts/BlenderPro-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}




body {
    color: var(--Raisin-Black);
    font-family: "Blender Pro", sans-serif;
    background-color: var(--Ghost-White);
}

div.main {
    overflow: hidden;
}


/* typography */
p,
li {
    font-size: min(max(18px, 2vw), 24px);
}

a {
    color: var(--ZeroBlue);
}

a.download {
    color: var(--ZeroBlue);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.3px;
    display: inline-block;
    padding-right: 20px;
    background: url("../img/icon-download-arrow.svg") no-repeat center right;
}

h2 {
    font-family: "Exo 2";
    font-size: min(max(24px, 4vw), 48px);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;
}

h3 {
    font-family: "Exo 2", sans-serif;
    font-size: min(max(18px, 2vw), 36px);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 40px;
}

.yellow {
    color: var(--ZeroYellow) !important;
}


/* mark text */
mark {
    background: none;
}

body.darkBody mark {
    color: var(--Ghost-White);
}

mark.fad-from-out {
    opacity: 1;
    transition: none !important;
}

mark.in-view {
    -webkit-animation: 1.5s highlight 1.5s 1 normal forwards;
    animation: 1.5s highlight 1.5s 1 normal forwards;
    background-color: none;
    background: linear-gradient(90deg, var(--ZeroYellow) 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
}

@-webkit-keyframes highlight {
    to {
        background-position: 0 0;
        color: var(--Raisin-Black);
    }
}

@keyframes highlight {
    to {
        background-position: 0 0;
        color: var(--Raisin-Black);
    }
}


/* animazioni in view */
.fad-from-out {
    opacity: 0;
    -moz-transition: all 700ms ease-out;
    -webkit-transition: all 700ms ease-out;
    -o-transition: all 700ms ease-out;
    transition: all 700ms ease-out;
    -moz-transform: translate3d(0,200px,0);
    -webkit-transform: translate3d(0,200px,0);
    -o-transform: translate(0,200px);
    -ms-transform: translate(0,200px);
    transform: translate3d(0,200px,0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.fad-from-out.fad-left {
    -moz-transform: translate3d(-200px,0,0);
    -webkit-transform: translate3d(-200px,0,0);
    -o-transform: translate(-200px,0);
    -ms-transform: translate(-200px,0);
    transform: translate3d(-200px,0,0);
}

.fad-from-out.fad-right {
    -moz-transform: translate3d(200px,0,0);
    -webkit-transform: translate3d(200px,0,0);
    -o-transform: translate(200px,0);
    -ms-transform: translate(200px,0);
    transform: translate3d(200px,0,0);
}

.fad-from-out.in-view {
    opacity: 1;
    -moz-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -o-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate3d(0,0,0)
}



/* button */
.btn.btn-default {
    color: #17171F;
    font-size: 15px;
    font-weight: 900;
    text-shadow: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 0;
    height: 32px;
    padding: 0;
    box-shadow: none;
    transition: .5s;
    background-image: none;
    background-color: #F9EC00;
    background: linear-gradient(to right, transparent, transparent 15px, #F7E81D 16px, #F7E81D calc(100% - 15px), transparent calc(100% - 15px), transparent);
}

.btn.btn-default:hover {
    filter: brightness(0.8);
}

.btn.btn-default::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 32px;
    margin-right: 8px;
    background: url("../img/button-left.svg") no-repeat;
}

.btn.btn-default::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 32px;
    margin-left: 8px;
    background: url("../img/button-right.svg") no-repeat;
}

.btn.btn-default.btn-lg {
    font-size: 22px;
    height: 52px;
    background: linear-gradient(to right, transparent, transparent 25px, #F7E81D 16px, #F7E81D calc(100% - 25px), transparent calc(100% - 15px), transparent);
}

.btn.btn-default.btn-lg::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 52px;
    margin-right: 20px;
    background: url("../img/button-left-lg.svg") no-repeat;
}

.btn.btn-default.btn-lg::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 52px;
    margin-left: 20px;
    background: url("../img/button-right-lg.svg") no-repeat;
}


/* bordered */
.btn.btn-bordered {
    color: #f5f5fa;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    height: 66px;
    display: inline-flex;
    align-items: center;
    border-top: 4px solid #F7E81D;
    border-bottom: 4px solid #F7E81D;
    border-radius: 0;
    transition: .5s;
}

.btn.btn-bordered:hover {
    filter: brightness(0.8);
}

.btn.btn-bordered::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 66px;
    position: absolute;
    left: -38px;
    background: url('../img/bordered-button-sx.svg') no-repeat;
}

.btn.btn-bordered::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 66px;
    position: absolute;
    right: -38px;
    background: url('../img/bordered-button-dx.svg') no-repeat;
}

/* small */
.btn.btn-bordered.sm {
    font-size: 15px;
    height: 30px;
    position: relative;
    margin-left: 25px;
    margin-right: 25px;
    border-width: 1px;
}

.btn.btn-bordered.sm::before {
    content: "";
    width: 20px;
    height: 31px;
    left: -19px;
    background: url('../img/bordered-button-small-sx.svg') no-repeat;
}

.btn.btn-bordered.sm::after {
    content: "";
    width: 20px;
    height: 31px;
    right: -20px;
    background: url('../img/bordered-button-small-dx.svg') no-repeat;
}


@media (max-width: 480px) {
    .btn.btn-default.btn-lg {
        font-size: 15px;
        height: 32px;
        box-shadow: none;
        background-image: none;
        background-color: #F9EC00;
        background: linear-gradient(to right, transparent, transparent 15px, #F7E81D 16px, #F7E81D calc(100% - 15px), transparent calc(100% - 15px), transparent);
    }

    .btn.btn-default.btn-lg::before {
        content: "";
        width: 16px;
        height: 32px;
        background: url("../img/button-left.svg") no-repeat;
    }

    .btn.btn-default.btn-lg::after {
        content: "";
        width: 16px;
        height: 32px;
        background: url("../img/button-right.svg") no-repeat;
    }
}


/* form */
.form-group {
    margin-bottom: 30px;
}

.form-control:focus,
.form-control,
.form-group .ui-selectmenu-button.ui-button {
    color: #fff;
    border: 1px solid var(--ZeroYellow);
    border-radius: 4px;
    height: 36px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.form-control::placeholder,
.ui-selectmenu-text {
    color: #fff;
    font-family: "Blender Pro";
    font-size: 13px;
    font-weight: 700;
}

.inputFileBlock {
    border-top: 1px solid var(--ZeroYellow);
    border-left: 1px solid var(--ZeroYellow);
    border-bottom: 1px solid var(--ZeroYellow);
    border-radius: 4px 0 0 4px;
    height: 35px;
    width: calc(100% - 18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.inputFileBlock::after {
    content: "";
    display: inline-block;
    height: 36px;
    width: 18px;
    position: absolute;
    right: 15px;
    top: 0;
    background: url("../img/footer-newsletter-closer.svg") center right no-repeat;
}

.inputFileBlock input {
    color: #fff;
    font-family: "Blender Pro";
    font-weight: 700;
    line-height: 34px;
    border: 0;
    height: 34px;
    flex: 1;
    padding: 0 20px;
    background: none;
}

.inputFileBlock input::-webkit-file-upload-button,
.inputFileBlock input::file-selector-button {
    display: none;
}

.inputFileBlock input:focus {
    outline: 0;
}

.inputFileBlock span {
    color: var(--ZeroYellow);
    font-family: "Blender Pro";
    font-size: 13px;
    font-weight: 700;
}

.formSuccess {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* dropdown */
header.main-head .dropdown a {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

header.main-head .dropdown a img {
    width: 9px;
    height: 8px;
    margin-left: 3px;
}

header.main-head .dropdown-menu {
    background-color: var(--Raisin-Black);
}

header.main-head .dropdown-menu > .active > a,
header.main-head .dropdown-menu > .active > a:focus,
header.main-head .dropdown-menu > .active > a:hover,
header.main-head .dropdown-menu > li > a:focus,
header.main-head .dropdown-menu > li > a:hover {
    color: var(--Raisin-Black);
    background-color: var(--ZeroYellow);
    background-image: none;
}


/* swiper */
.swiper-counter {
    padding: 0;
    margin-top: -24px;
}


.centerSwiper {
    margin-top: 60px;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
    height: 510px;
}

.centerSwiper .swiper-wrapper {
    align-items: center;
}

.centerSwiper .swiper-slide {
    overflow: hidden;
    transform: translateX(var(--carouselMarginLeft));
}

.centerSwiper .swiper-slide::after {
    content: "";
    height: 36px;
    width: 36px;
    position: absolute;
    right: 0;
    bottom: 170px;
    z-index: 1;
    transition: 1s;
    background: url("../img/carousel-border.svg") center no-repeat;
}

.centerSwiper .swiper-slide img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0, calc(100% - 50px) 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
    border-radius: 12px 12px 64px 12px;
    transition: 1s;
    /*box-shadow: 0 4px 24px rgba(0,0,0,0.25);*/
}

.centerSwiper .swiper-slide.swiper-slide-active img {
    height: 430px;
    border-radius: 12px 12px 67px 12px;
}

.centerSwiper .swiper-slide.swiper-slide-active::after {
    content: "";
    bottom: 70px;
}

.swiperTitle {
    color: #2D2D2D;
    font-size: 36px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 15px;
}

.swiperTrainer .swiperTitle {
    color: var(--Raisin-Black);
}

.swiperTrainer .swiperTitle div {
    background: var(--Ghost-White);
}

.swiperTitle div {
    font-size: 20px;
    font-family: "Blender Pro", sans-serif;
    font-weight: 500;
    display: inline-block;
    padding-right: 5px;
    background: var(--Raisin-Black);
}

.swiperTitle ~ div {
    display: none;
}

.swiperTrainerScrollbar .swiper-scrollbar,
.swiper-container-horizontal > .swiper-scrollbar {
    height: 1px;
    width: 90%;
    position: static;
}

.swiperTrainerScrollbar .swiper-scrollbar-drag,
.swiper-scrollbar-drag {
    height: 6px;
    width: 60px !important;
    border-radius: 0 0 5px 1px;
    /*background-color: var(--Raisin-Black);*/
}

.swiper-scrollbar.container {
    font-size: 0;
}


/*.swiperTitle div::after {
    content: "";
    height: 1px;
    position: absolute;
    top: 8px;
    left: 25px;
    right: 0;
    background-color: var(--Raisin-Black);
}


.swiperTitle div::before {
    content: "";
    height: 6px;
    width: 60px;
    position: absolute;
    top: 9px;
    left: 25px;
    border-radius: 0 0 5px 1px;
    background-color: var(--Raisin-Black);
}*/



.swiperTitle {
    color: var(--Battleship-Gray);
}

body.darkBody .swiper-container-horizontal > .swiper-scrollbar,
body.darkBody .swiper-scrollbar-drag,
.imageCenterCarousel .swiper-scrollbar,
.imageCenterCarousel .swiper-scrollbar-drag {
    background: var(--Battleship-Gray);
}

body.darkBody .pageSubTitle::after {
    border-color: var(--Battleship-Gray);
}



/* trainer Carousel */
.swiperTrainer {
    overflow: hidden;
    margin-top: 110px;
    margin-bottom: 110px;
    padding-top: 20px;
    position: relative;
    /*padding-right: var(--carouselMarginLeft);*/
}

.swiperTrainer .swiper-wrapper {
    align-items: center;
    height: 430px;
}

.swiperTrainer .swiper-slide {
    width: 240px;
    margin-right: 30px;
    position: relative;
    transform: translateX(var(--carouselMarginLeft));
}

.swiperTrainer .swiper-slide img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: top;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0, calc(100% - 50px) 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
    border-radius: 12px 12px 64px 12px;
    transition: 1s;
}

.swiperTrainer .swiper-slide.swiper-slide-active img {
    height: 430px;
    border-radius: 12px 12px 67px 12px;
}

.swiperTrainer .swiper-slide::after {
    content: "";
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 32px;
    height: 32px;
    transition: 1s;
    background: url("../img/carousel-border.svg") no-repeat;
}

.swiperTrainer .swiper-slide.swiper-slide-active::after {
    content: "";
    bottom: 0;
}

.swiper-slide .alt-text {
    font-size: 36px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .swiper-counter {
        margin-left: 15px;
    }

    .swiperTrainerScrollbar .swiper-scrollbar,
    .swiper-container-horizontal > .swiper-scrollbar {
        width: 45%;
        margin-left: 50%;
    }

    .swiperTrainer .swiperTitle {
        padding: 0 15px;
    }

    .swiperTrainer .swiper-slide {
        transform: none;
        padding: 0 15px;
        transform: initial;
    }
}

@media (min-width: 768px) {
    .swiperTrainerScrollbar .swiper-scrollbar.container,
    .swiper-container-horizontal > .swiper-scrollbar.container {
        width: 750px;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .swiperTrainerScrollbar .swiper-scrollbar.container,
    .swiper-container-horizontal > .swiper-scrollbar.container {
        width: 970px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .swiperTrainerScrollbar .swiper-scrollbar.container,
    .swiper-container-horizontal > .swiper-scrollbar.container {
        width: 1170px;
        padding: 0;
    }
}



/* rounded image */
.roundedImage {
    position: relative;
    width: 100%;
    padding-top: 70%;
    overflow: hidden;
}

.roundedImage-square {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.roundedImage img, .roundedImage-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0, calc(100% - 50px) 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
    border-radius: 12px 12px 64px 12px;
}

.roundedImage::after, .roundedImage-square::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: url("../img/carousel-border.svg") no-repeat;
}

.roundedImage-square.noAngle::after {
    display: none;
}

/* arrowed image */
.arrowedImage {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.arrowedImage img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0, calc(100% - 50px) 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
    border-radius: 12px 12px 64px 12px;
}

.arrowedImage::after {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: url("../img/icon-download-arrow.svg") no-repeat;
}

.arrowedImage.yellowArrow::after {
    content: "";
    background: url("../img/icon-download-arrow-giallo.svg") no-repeat;
}


/* Vertical image */
.verticalImage {
    position: relative;
    width: 100%;
    padding-top: 150%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.col-sm-12 .verticalImage {
    padding-top: 50%;
}

.verticalImage::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .4);
}

.verticalImage img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.verticalImage a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.verticalImage:hover img {
    transform: scale(1.2);
}

/* Horizzontal full width image */
.horizzontalImage {
    position: relative;
    width: 100%;
    padding-top: 50%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.horizzontalImage::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .2);
}

.horizzontalImage img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizzontalImage a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* float image */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.float-image {
    animation: float 3s ease-in-out infinite;
}


/* image in cms */
.sophialand-mascotte {
    text-align: right;
}

.sophialand-mascotte img {
    margin-top: -160px;
    position: relative;
    z-index: 20;
}

.mascotteCenter {
    text-align: right;
    margin-top: -210px;
    position: relative;
    z-index: 20;
}

.mascotteCenter img {
    height: 300px;
}

.marginLeftDesktop {
    width: 80%;
    display: inline-block;
}

.partyMascotte {
    top: -510px;
    position: absolute;
    z-index: 10;
}



@media (max-width: 767px) {
    .mascotteCenter {
        margin-top: -150px;
    }

    .mascotteCenter img {
        height: 150px;
    }

    .verticalImage {
        padding-top: 100%;
    }

    .marginLeftDesktop {
        width: 100%;
        display: block;
    }

    .partyMascotte {
        top: -160px;
        right: 10px;
    }

    .partyMascotte img {
        height: 200px;
    }
}


@media (max-width: 480px) {
    .sophialand-mascotte img {
        height: 135px;
    }
}



/*  */
.mt0 {
    margin-top: 0;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt100 {
    margin-top: 100px;
}

.mt100m50 {
    margin-top: 100px;
}

.mb0 {
    margin-bottom: 0px!important;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}



.relative {
    position: relative;
}

.d-flex {
    display: flex;
}

.d-flex-sm {
    display: flex;
}

.d-flex-sm > div {
    margin-bottom: 30px;
}





/* booking bar */
.bookingBar {
    color: var(--Ghost-White);
    font-family: "Blender Pro";
    font-size: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 15px;
    background: var(--ZeroBlue);
}

.bookingBar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bookingBar .container::before,
.bookingBar .container::after {
    display: none;
}




/* Main menù */
#shopMenu {
    position: fixed;
    right: -480px;
    top: 0;
    bottom: 0;
    z-index: 1001;
    width: 480px;
    transition: .5s;
    transition-timing-function: ease-out;
    padding: 120px 20px 0 70px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    background: rgba(23,23,31,0.8) url("../img/menu-back-top.svg") no-repeat left 130px;
}

#shopMenu.menuOpen {
    right: 0;
}

#shopMenu.menuOpen + .menuOverlay {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
}

#shopMenu button {
    margin-left: -50px;
    border: 0;
    background: none;
}

#shopMenu ul {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#shopMenu li {
    height: 49px;
    width: 270px;
    list-style: none;
    margin-bottom: 24px;
    border-radius: 8px;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.10);
}

#shopMenu li::before {
    content: "";
    display: block;
    width: 8px;
    height: 11px;
    position: absolute;
    left: -15px;
    top: 19px;
    background-image: url("../img/menu-arrow.svg");
}

#shopMenu li:hover {
    background-color: rgba(255, 255, 255, 0.80);
}

#shopMenu li:hover a {
    color: #575757;
}

.nav > li > a:focus, .nav > li > a:hover {
    background: none;
}

#shopMenu li a {
    color: #FFF;
    font-family: "Blender Pro";
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 0;
    display: flex;
    align-items: center;
}

#shopMenu li a span {
    color: #575757;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    width: 30px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    border-radius: 8px 0 0 8px;
    border-right: 5px solid var(--Raisin-Black);
    background-color: rgba(255, 255, 255, 0.80);
}

#shopMenu .hex:before {
    content: " ";
    width: 0;
    height: 0;
    border-bottom: 6px solid var(--Raisin-Black);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    top: -6px;
}

#shopMenu .hex {
    width: 12px;
    height: 5px;
    position: relative;
    left: -8px;
    background-color: var(--Raisin-Black);
}

#shopMenu .hex:after {
    content: "";
    width: 0;
    position: absolute;
    bottom: -6px;
    border-top: 6px solid var(--Raisin-Black);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

#shopMenu .menuTitle {
    width: 53px;
    height: calc(100vh - 120px);
    flex-shrink: 0;
    border-radius: 5px 5px 0 0;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    background: rgba(217, 217, 217, 0.10) url("../img/menu-title-back.svg") center 33% no-repeat;
}

#shopMenu .menuTitle span {
    color: #fff;
    font-size: 68px;
    font-weight: 200;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    line-height: 0.3;
}

#shopMenu .menuTitle .menuSocial {
    width: 100%;
    margin-bottom: 180px;
    position: relative;
    z-index: 10;
}

#shopMenu .menuTitle .menuSocial a {
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: block;
    margin: 12px;
}

#shopMenu .closeMenu {
    position: absolute;
    top: -80px;
    left: 58px;
    border: 0;
    background: none;
}

#shopMenu .menuBottomVector {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}


/* header */
header.main-head {
    padding: 20px 0 20px 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    background: var(--Raisin-Black);
}

header.main-head .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
    padding-left: 30px;
}

header.main-head .container-fluid::before,
header.main-head .container-fluid::after {
    display: none;
}

header.main-head .main-logo {
    max-width: 60%;
    width: 330px
}

header.main-head .main-logo img {
    width: 100%;
}

header.main-head .openMenu {
    line-height: 1px;
    width: 30px;
    padding: 0;
    border: none;
    background: none;
}

header.main-head .openMenu span {
    display: inline-block;
    width: 30px;
    height: 3px;
    margin: 2px 0;
    background-color: var(--ZeroYellow);
}

.bottomBorderLogo {
    text-align: center;
    width: 600px;
    max-width: 100%;
    height: 17px;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/bottom-border-logo.svg") no-repeat center top;
    background-size: contain;
}

.bottomBorderLogo span {
    color: var(--ZeroYellow, #F9EC00);
    font-family: "Blender Pro";
    font-size: 22px;
    font-weight: 900;
    line-height: 13px;
    text-transform: uppercase;
    position: relative;
    top: -10px;
}

.centerData {
    display: flex;
    align-items: center;
    flex: 1;
}

.centerData a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.centerData a .valueDataCenter {
    overflow: hidden;
    width: 0;
    height: 0;
    transition: 0.3s;
}

.centerData a:hover .valueDataCenter {
    width: auto;
    height: auto;
}

.iconDataCenter {
    display: inline-block;
    cursor: pointer;
}

.menuButton {
    text-align: right;
    flex: 1;
}



/* footer */
footer {
    color: var(--Ghost-White);
    padding: 30px 0 110px 0;
    background: var(--Raisin-Black);
}

footer .footerNewsletterBlock {
    margin-bottom: 30px;
}

footer .footerNewsletterBlock label {
    color: var(--Ghost-White);
    font-family: "Blender Pro";
    font-size: 13px;
    font-weight: 400;
}

footer .footerNewsletterBlock label strong {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    display: block;
}

footer .footerNewsletterBlock .newsletterInputContainerBorder {
    border-top: 1px solid var(--ZeroYellow);
    border-left: 1px solid var(--ZeroYellow);
    border-bottom: 1px solid var(--ZeroYellow);
    border-radius: 4px 0 0 4px;
    height: 35px;
    width: calc(100% - 18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

footer .footerNewsletterBlock .newsletterInputContainerBorder::after {
    content: "";
    display: inline-block;
    height: 36px;
    width: 18px;
    position: absolute;
    right: -18px;
    top: -1px;
    background: url("../img/footer-newsletter-closer.svg") center right no-repeat;
}

footer .footerNewsletterBlock .newsletterInputContainerBorder input {
    border: 0;
    height: 34px;
    flex: 1;
    padding: 0 20px;
    background: none;
}

footer .footerNewsletterBlock .newsletterInputContainerBorder input:focus-visible {
    outline: none;
}

footer .footerNewsletterBlock .newsletterInputContainerBorder input::placeholder {
    color: #666;
    font-family: "Blender Pro";
    font-size: 13px;
    font-weight: 700;
}

footer .footerNewsletterBlock .newsletterInputContainerBorder span {
    color: var(--ZeroYellow);
    font-family: "Blender Pro";
    font-size: 13px;
    font-weight: 700;
}

footer .footerNewsletterBlock .newsletterPrivacy {
    color: var(--Battleship-Gray);
    font-family: "Blender Pro";
    font-size: 13px;
    font-weight: 400;
}

footer .footerNewsletterBlock .newsletterPrivacy a {
    color: var(--Ghost-White);
    font-family: "Blender Pro";
    font-size: 13px;
    font-weight: 400;
}

footer .footerCopy p {
    font-size: 11px;
}

footer .footerCopy a {
    color: #fff;
    font-weight: 700;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    list-style: none;
}

footer ul li a {
    color: var(--Ghost-White);
    font-size: 15px;
    text-transform: uppercase;
}

footer ul li a:hover {
    text-decoration: none;
}

footer .footerSocial {
    text-align: right;
}

footer .footerSocial a {
    color: var(--ZeroYellow);
    font-size: 16px;
    display: inline-block;
    padding: 0 8px;
}



/* page title */
.pageMainTitle {
    text-align: center;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, 0);
}

.pageMainTitle.halfHeight {
    transform: translate(-50%, -50%);
}

.pageMainTitle h1 {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 60px;
    font-size: min(max(36px, 8vw), 112px);
    text-transform: uppercase;
    font-weight: 700;
}

.pageMainTitle h1 span {
    white-space: nowrap;
    display: inline-block;
    transition: 1s;
}

.pageMainTitle h1 span.empty {
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    /*color: transparent;
    text-shadow: -2px 2px 0 #fff, 2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;*/
}

.pageMainTitle h1 span.top {
    font-size: clamp(16px, 1.5vw, 30px);
    vertical-align: super;
    transform: translateY(-1.5vh);
}

.pageMainTitle h1 span.bottom {
    font-size: clamp(16px, 1.5vw, 30px);
    vertical-align: bottom;
    transform: translateY(-1vh);
}

.pageMainTitle h1 span.enterLeft {
    transform: translateX(-1000px);
    opacity: 0;
}

.pageMainTitle h1 span.enterRight {
    transform: translateX(1000px);
    opacity: 0;
}

.pageMainTitle h1 span.enterLeft.enterCenter {
    transform: translateX(0);
    opacity: 1;
}

.pageMainTitle h1 span.enterRight.enterCenter {
    transform: translateX(0);
    opacity: 1;
}

/* page subtitle */
h2.pageSubTitle {
    font-size: min(max(36px, 4.5vw), 56px);
    white-space: pre;
    margin-top: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

h2.pageSubTitle small {
    color: inherit;
}

.pageSubTitle span {
    align-self: flex-start;
}

.pageSubTitle span sub {
    font-size: 60%;
    bottom: 0;
}

.pageSubTitle span.end {
    align-self: flex-end;
    margin-right: 40px;
}

.pageSubTitle span.center {
    align-self: center;
}

.pageSubTitle::after {
    content: "";
    display: inline-block;
    height: 40px;
    border-right: 14px solid black;
    margin-left: 20px;
    animation: blink 0.7s steps(1) infinite;
    margin-top: -50px;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.pageSubTitle span.outlined {
    color: var(--Raisin-Black);
    text-shadow: -1px 1px 0 var(--Ghost-White), 1px 1px 0 var(--Ghost-White), 1px -1px 0 var(--Ghost-White), -1px -1px 0 var(--Ghost-White);
    /* -webkit-text-stroke: 2px #000; */
}

.pageSubTitle span.outlined-white-back {
    color: var(--Ghost-White);
    text-shadow: -1px 1px 0 var(--Raisin-Black), 1px 1px 0 var(--Raisin-Black), 1px -1px 0 var(--Raisin-Black), -1px -1px 0 var(--Raisin-Black);
    /* -webkit-text-stroke: 2px #000; */
}




/* homepage */

body.darkBody {
    color: #fff;
    background: var(--Raisin-Black);
}

.headerPagesImages video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.homeBlockText {
    margin-top: 40px;
    padding-top: 40px;
}

.homeBlockText p {
    font-size: 24px;
}

.homeMascotte {
    text-align: right;
    margin-top: -120px;
    overflow: hidden;
}

.homeMascotte img {
    height: 400px;
    margin-right: -100px;
}

/*.homeBlockText .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.homeBlockText .row::before,
.homeBlockText .row::after {
    display: none;
}
*/






/* ---------- Pagine CMS --------- */
.pageWithoutMainImage .mainPageTitle {
    padding: 135px 30px 60px 30px;
    border-bottom: 2px solid var(--Raisin-Black);
    margin-bottom: 80px;
    text-align: center;
    background: url(../img/back-top-content.svg) no-repeat center 60px;
    background-size: 90%;
}

.pageWithoutMainImage .mainPageTitle h1 {
    font-family: "Exo 2", sans-serif;
    font-size: min(max(36px, 4vw), 48px);
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    text-transform: uppercase;
}

.pageWithoutMainImage .cmsContent {
    padding-top: 0;
    padding-bottom: 80px;
}

.headerPagesImages {
    width: 100%;
    height: 100vh;
    position: relative;
}

.headerPagesImages::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: url("../img/main-image-full-overlay.svg") no-repeat;
    background-size: 95%;
    background-position: 70% 90%;
}

.headerPagesImages::after {
    content: "";
    width: 100%;
    height: 95px;
    position: absolute;
    bottom: -83px;
    left: 0;
    background: url("../img/main-image-bottom.svg") no-repeat center;
    background-size: cover;
}

.headerPagesImages .linerOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.darkBody .headerPagesImages::after {
    content: "";
    filter: brightness(0);
    background: url("../img/main-image-bottom-darkbody.svg") no-repeat center;
    background-size: cover;
}

.headerPagesImages.halfHeight {
    height: 50vh;
}

.headerPagesImages.halfHeight::before {
    content: "";
    background: url("../img/main-image-half-overlay.svg") no-repeat center;
    background-size: 98% 99%;
    background-position: 10px 50px;
}

.headerPagesImages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageMainTitle.headerPagesImagesText h1 {
    font-size: min(max(36px, 7vw), 96px);
}

.countDownBlock {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-weight: 700;
    text-align: center;
    display: none;
}

.countDownBlock > span {
    font-size: clamp(18px, 3.42vw, 48px);
    text-transform: uppercase;
}

.countDownBlock .countdown {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.countDownBlock .countdown div {
    font-size: min(max(44px, 8vw), 112px);
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    display: flex;
}

.countDownBlock .countdown span {
    font-size: min(max(24px, 4.5vw), 56px);
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    display: flex;
    margin-right: 15px;
}

.cmsContentContainer {
    background: url("../img/back-top-content.svg") no-repeat 80% 110px;
    background-size: 90%;
}

.cmsContent {
    padding-top: 160px;
    background: url("../img/back-main-content.svg") no-repeat center 250px;
    background-size: 90%;
}


.titleWithBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* accordion */
.panel-group .panel {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid var(--Raisin-Black);
    background: none;
}

.panel-default > .panel-heading {
    padding: 0;
    border-radius: 0;
    border: 0;
    background: none;
}

.panel-default > .panel-heading a:hover {
    text-decoration: none;
}

/*.panel-group .panel-title p.collapsed {
    border-bottom: 2px solid var(--Raisin-Black);
}*/

.panel-group .panel-title p,
.panel-group .panel-title div{
    flex: 1;
}

.panel-group .panel-title > div a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-group .panel-title {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.panel-group .panel-title a {
    color: var(--Raisin-Black);
}

.panel-group .panel-title a div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.panel-group .panel-title > div a::after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M6.66602 17.3337V14.667H25.3327V17.3337H6.66602Z" fill="%2317171F"/></svg>');
    text-align: right;
    display: inline-block;
    width: 65px;
}

.panel-group .panel-title > div a.collapsed::after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M14.666 17.3337H6.66602V14.667H14.666V6.66699H17.3327V14.667H25.3327V17.3337H17.3327V25.3337H14.666V17.3337Z" fill="%2317171F"/></svg>');
}

.panel-group .panel-title p a {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/*.panel-group .panel-collapse {
    border-bottom: 2px solid var(--Raisin-Black);
}*/

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    font-size: 18px;
    border: 0;
    padding: 0 0 60px 0;
    background-color: var(--Ghost-White);
}

.panel-default > .panel-heading + .panel-collapse > .panel-body p {
    font-size: 18px;
}

.accordionBookRow {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

/* carousel centri */
.imageCenterCarousel {
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    background: var(--Raisin-Black);
}

.imageCenterCarousel .swiper-slide .slideCenterContent {
    display: flex;
}

.imageCenterCarousel .swiper-slide .slideCenterContent img {
    width: 100%;
    border-radius: 8px;
}

.imageCenterCarousel .swiper-slide .slideCenterContent .bigImage img {
    height: 440px;
    object-fit: cover;
}

.imageCenterCarousel .swiper-slide .slideCenterContent .bigImage {
    width: 60%;
    padding: 10px;
}

.imageCenterCarousel .swiper-slide .slideCenterContent .smallImage {
    width: 40%;
    padding: 10px;
}

.imageCenterCarousel .swiper-slide .slideCenterContent .smallImage img {
    height: 210px;
    object-fit: cover;
    margin-bottom: 20px;
}

.imageCenterCarousel .swiper-slide .slideCenterContent .smallImage img + img {
    margin-bottom: 0;
}



/* cmsBottomContent */
.cmsBottomContent {
    color: var(--Ghost-White);
    margin-top: 160px;
    padding: 60px 0;
    position: relative;
    background: var(--Raisin-Black);
}

.cmsBottomContent::before {
    content: "";
    display: block;
    width: 100%;
    height: 76px;
    position: absolute;
    top: -75px;
    left: 0;
    background: url(../img/wave-border-top.svg) no-repeat center;
    background-size: cover;
}

.cmsBottomContent:not(.standardText) p {
    color: var(--Ghost-White);
    font-size: 15px;
}

.cmsBottomContent:not(.standardText) h3 {
    color: var(--ZeroYellow);
    font-size: 18px;
    font-style: normal;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}


.cmsBottomContent a:not(.btn) {
    color: var(--Ghost-White);
    text-decoration: underline;
}

.box {
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--ZeroYellow);
    padding: 30px;
}

.box hr {
    margin-left: -30px;
    margin-right: -30px;
    border-color: var(--ZeroYellow);
}

.infoBox {
    font-size: 15px;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--Raisin-Black);
    padding: 30px;
}

.infoBox p, .infoBox li {
    font-size: 15px;
}

.infoBox h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
}

.infoBox strong {
    text-transform: uppercase;
}

.infoBox table {
    width: 100%;
    border-collapse: collapse;
}

.infoBox table td {
    width: 50%;
}

/* bigBlockList */
.bigBlockList {
    font-size: 18px;
    border-top: 2px solid var(--Raisin-Black);
}

.bigBlockList .row {
    padding: 50px 0;
    border-bottom: 2px solid var(--Raisin-Black);
    margin-left: 0;
    margin-right: 0;
}

.bigBlockList h3 {
    font-weight: 700;
    margin: 0;
}


/* cmsBlackContent */
.cmsBlackContent {
    color: var(--Ghost-White);
    margin-top: 160px;
    margin-bottom: 160px;
    padding: 60px 0;
    position: relative;
    background: var(--Raisin-Black);
}

.cmsBlackContent::before {
    content: "";
    display: block;
    width: 100%;
    height: 76px;
    position: absolute;
    top: -75px;
    left: 0;
    background: url(../img/wave-border-top.svg) no-repeat center;
    background-size: cover;
}

.cmsBlackContent::after {
    content: "";
    display: block;
    width: 100%;
    height: 76px;
    position: absolute;
    bottom: -75px;
    left: 0;
    background: url(../img/wave-border-bottom.svg) no-repeat center;
    background-size: cover;
}

.cmsBlackContent h3 {
    color: #fff;
}

.cmsBlackContent:not(.standardText) h3 {
    color: var(--ZeroYellow);
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}

.cmsBlackContent:not(.standardText) p {
    color: var(--Ghost-White);
    font-size: 15px;
}

.cmsBlackContent a:not(.btn) {
    color: var(--Ghost-White);
    text-decoration: underline;
}

.cmsBlackContent table {
    width: 100%;
    border-collapse: collapse;
}

.cmsBlackContent table td {
    width: 50%;
}



/* gallery */
.gallery {
    margin-top: 90px;
    margin-bottom: 120px;
}

.gallery-list-image {
    overflow: hidden;
    position: relative;
}

.gallery-list-image::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.gallery-list-image span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.gallery-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0, calc(100% - 50px) 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
    border-radius: 12px 12px 64px 12px;
    transition: .5s;
}

.gallery-list-image img:hover {
    transform: scale(1.2);
}

.gallery-list-image::before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 16px;
    height: 16px;
    display: block;
    background: url("../img/icon-yellow-arrow.svg") no-repeat center;
}

.galleryTitle {
    font-size: min(max(24px, 2.7vw), 36px);
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 30px;
}



/* trainer */
.cmsContent.trainerPage {
    padding-top: 200px;
}

.cmsContent.trainerPage h1 {
    font-family: "Exo 2", sans-serif;
    font-size: min(max(24px, 3vw), 48px);
    font-weight: 700;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}

.cmsContent.trainerPage .arrowedImage img {
    object-position: top;
}






/* blackCenterBlock */
.blackCenterBlock {
    color: #fff;
    margin-top: 100px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 0, calc(100% - 50px) 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
    border-radius: 12px 12px 64px 12px;
    padding: 50px;
    background: var(--Raisin-Black);
}

.blackCenterBlock::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: url("../img/carousel-border.svg") no-repeat;
}

.blackCenterBlock h2 {
    color: var(--ZeroYellow);
    font-size: clamp(36px, 3.42vw, 48px);
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    margin-top: 0;
}

.blackCenterBlock h3 {
    color: var(--ZeroYellow);
    font-size: clamp(18px, 1.71vw, 24px);
    font-weight: 600;
    text-transform: uppercase;
}

.blackCenterBlock a:not(.btn) {
    color: var(--Ghost-White);
    text-decoration: underline;
}




/* news */
.cmsContainerNews {
    color: var(--Ghost-White);
    padding-top: 210px;
    position: relative;
    background-color: var(--Raisin-Black);
}

.cmsContainerNews .mascotte {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -145px;
}


.cmsContainerNews h2 {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    text-align: left;
    margin-bottom: 60px;
}

/*.hnews {
    margin-bottom: 60px;
}*/

.hnews .entry-content {
    margin-top: 15px;
}

.hnews h4 {
    font-family: "Exo 2", sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;
}

.hnews .dtstamp {
    color: var(--Battleship-Gray);
    font-size: 24px;
    font-weight: 400;
}

.hnews .roundedImage {
    width: 90%;
    padding-top: 60%;
}




/* ---------- Recruitment --------- */
.recruitmentListPage h2 {
    text-align: center;
    text-transform: uppercase;
    font-family: "Exo 2", sans-serif;
    font-size: min(max(36px, 4vw), 48px);
    margin-bottom: 30px;
}

.recritmentMainText {
    padding: 190px 0 100px 0;
}

.recruitmentList {
    border-top: 2px solid var(--Raisin-Black);
    margin-bottom: 120px;
}

.recruitmentListElement.row {
    font-size: 18px;
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--Raisin-Black);
    margin-right: 0;
    margin-left: 0;
}

.recruitmentListElement a {
    color: var(--Raisin-Black);
}

.recruitmentListElement strong {
    display: block;
}

.recruitmentListElementTitle {
    font-weight: 700;
    font-size: 36px;
}

.recruitForm {
    color: var(--Ghost-White);
    margin-top: 160px;
    padding: 60px 0;
    position: relative;
    background: var(--Raisin-Black);
}

.recruitForm::before {
    content: "";
    display: block;
    width: 100%;
    height: 65px;
    position: absolute;
    top: -64px;
    left: 0;
    background: url("../img/wave-border-top.svg") no-repeat center;
    background-size: cover;
}

.recruitForm a {
    color: var(--ZeroYellow);
}




/* ---------- Notifiche --------- */
.notification {
    color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10000;
    text-align: center;
    font-size: 1em;
    padding: 10px;
    overflow: hidden;
    background: #333;
}

.openCloseNotification {
    display: none;
}

/* pop up home */

.popup-home {
    /*display: none;*/
    position: fixed;
    z-index: 100000;
    top: 50%;
    /*bottom: 0;*/
    left: 0;
    right: 0;
    background: #000000a6;
}

.popup-home-in {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
}

.popup-home-block {
    background: #fff;
    padding: 40px;
    box-shadow: rgb(61 46 32 / 46%) 0 2px 6px 1px;
    /*text-align: center;*/
}

















/* ---------- MEDIA QUERY --------- */
@media (max-width: 991px) {
    footer .footerNewsletterBlock {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .homeBlockText {
        background-position: 130% 30px;
        background-size: 50% 50%;
    }

    .d-flex-sm {
        display: block;
    }

    .bookingBar .container span {
        display: none;
    }

    .bookingBar .container div {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .homeMascotte {
        margin-top: 0;
        position: absolute;
        right: -30px;
        top: 0;
        z-index: 1;
    }

    .homeMascotte img {
        height: 200px;
        margin-right: 0;
    }

    .cmsContainerNews .mascotte {
        height: 165px;
        left: inherit;
        right: 10%;
        margin-left: -85px;
    }

    footer .footerSocial {
        text-align: center;
        margin-bottom: 30px;
    }

    .cmsBottomContent {
        padding-top: 0;
    }

    .panel-group .panel-title a {
        display: block;
    }

    .panel-group .panel-title a p {
        font-size: 32px;
    }

    .panel-group .panel-title a div {
        width: 100%;
    }

    .panel-group .panel-title a div::after {
        margin-top: -60px;
    }

    .hnews .roundedImage {
        width: 100%;
    }
}

@media (max-width: 480px) {

    header.main-head .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .pageMainTitle h1 span.bottom {
        transform: translateY(-0.3vh);
    }

    .pageMainTitle h1 span.top {
        transform: translateY(-0.2vh);
    }

    .centerData a {
        display: none;
    }

    .centerData a:first-child {
        display: flex;
    }

    .mt100m50 {
        margin-top: 50px;
    }

    .centerData a:hover .valueDataCenter {
        width: 0;
    }

    #shopMenu .closeMenu {
        top: -60px;
    }

    #shopMenu {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 80px;
        background: rgba(23, 23, 31, 0.8);
    }

    #shopMenu ul {
        padding-top: 0;
        margin-top: -20px;
        overflow-y: auto;
        height: calc(100vh - 60px);
    }

    #shopMenu .menuTitle {
        height: calc(100vh - 80px);
    }

    #shopMenu .menuBottomVector {
        bottom: -60px;
        opacity: 0.2;
    }

    .bottomBorderLogo span {
        font-size: 15px;
        top: -18px;
    }

    .pageMainTitle {
        width: 100%;
        transform: translate(-50%, 50%);
    }

    .pageSubTitle::after {
        margin-top: -40px;
    }


    /* homepage */
    .homeBlockText {
        margin-top: 20px;
        padding-top: 0;
    }

    .centerSwiper .swiper-slide {
        transform: unset;
        padding: 0 15px;
    }

    .centerSwiper .swiper-slide::after {
        content: "";
        right: 15px;
        bottom: 65px;
    }

    /* recruit */
    .recruitmentListPage h2 {
        text-align: left;
    }

    .recritmentMainText {
        padding: 60px 0;
    }

    .recruitmentList {
        margin-bottom: 60px;
    }

    /* CMS */
    .cmsContent {
        padding-top: 140px;
    }

    .cmsContent h2 {
        text-align: left;
    }

    .headerPagesImages.halfHeight::before {
        content: "";
        background-position: center 150px;
    }

    .cmsContent.trainerPage {
        padding-top: 140px;
    }

    .imageCenterCarousel .swiper-slide .slideCenterContent {
        flex-direction: column;
    }

    .imageCenterCarousel .swiper-slide .slideCenterContent .bigImage {
        width: 100%;
    }

    .imageCenterCarousel .swiper-slide .slideCenterContent .smallImage {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .imageCenterCarousel .swiper-slide .slideCenterContent .smallImage img {
        width: calc(50% - 10px);
    }

    /* Notifiche */
    .notificationContent {
        overflow: hidden;
        margin-bottom: 10px;
    }

    .notification .openCloseNotification {
        height: 11px;
        display: block;
        margin-bottom: 10px;
        background: url('../img/notification-arrow.png') no-repeat bottom center;
    }
    .notification .openCloseNotification.chiudi {
        background: url('../img/notification-arrow.png') no-repeat top center;
    }
}

