:root {
    font-family: "Roboto", sans-serif !important;
    --font-buttons: "Montserrat", sans-serif !important;
    --font-title: "Noto Sans JP", sans-serif !important;

    --bg-primary: #FF3607;
    /*--bg-secondary: #313131;*/
    --bg-secondary: #040136;
    --bg-danger: #BA2121;
    --bg-success: #067703;
    --bg-black: #000000;
    --bg-white: #ffffff;
    --color-tertiary: #4A474A;
    --color-secondary: #abab29;
    scroll-behavior: smooth;
    background-color: #EAEAEA;
}

#containerMenu{
    min-height: 160px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

/* Add prefix for iOS compatibility */
@-webkit-keyframes slideDown {
    from {
        -webkit-transform: translateY(-100%);
    }
    to {
        -webkit-transform: translateY(0);
    }
}

@-webkit-keyframes slideUp {
    from {
        -webkit-transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-100%);
    }
}

.select-text{
    position: relative;
  }
  .select-text select{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--bg-primary);
    padding-left: 16px;
    padding-top: 12px;
    outline: unset !important;
    padding-bottom: 12px;
  }
  .containerSummary{
    font-weight: bold;
  }
  .containerSummary span{
    color: var(--bg-primary);
    font-size: 32px;
  }
  .select-text label{
    top: -5px;
    background: #ffffff;
    border-top: 1px solid var(--bg-primary);
    border-left: 1px solid var(--bg-primary);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 12px;
    transform: none !important;
    padding: 0px 8px;
    position: absolute;
    left:0px
  }
.fixed-menu {
    position: fixed;
    width: 100%;
    animation: slideDown 0.35s ease-out;
    -webkit-animation: slideDown 0.35s ease-out; /* For iOS */
    top: 0;
    background-color: #ffffff;
    z-index: 99;
    padding: 16px 0px;
    will-change: transform;
}

.hide-menu {
    animation: slideUp 0.35s ease-out forwards;
    -webkit-animation: slideUp 0.35s ease-out forwards; /* For iOS */
    will-change: transform;
}

.fixed-menu .logo img{
    max-width:100px;
}

#scrollUp {
    display: none;
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #FFF7FD;
    border: none;
    padding: 16px;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--bg-primary)
}

#scrollUp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#scrollUp:hover {
    background-color: #FFF7FD;
}

input:focus-visible {
    outline: 0 !important;
}

.input-text {
    position: relative;
    width: 100%;
}


.input-text>.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--bg-primary);
    padding-left: 16px;
    padding-top: 12px;
    outline: unset !important;
    padding-bottom: 12px;
}

.input-text>label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translatey(-50%);
    transition: top 0.2s ease;
    cursor: auto;
}



@media (prefers-reduced-motion: reduce) {
    .input-text>label {
        transition: none;
    }
}

.input-text>.form-control::-moz-placeholder {
    color: transparent;
}

.input-text>.form-control::placeholder {
    color: transparent;
}

.input-text>.form-control:not(:-moz-placeholder-shown)~label {
    top: -5px;
    left: 0px;
    background: #ffffff;
    border-top: 1px solid var(--bg-primary);
    border-left: 1px solid var(--bg-primary);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 12px;
    transform: none !important;
    padding: 0px 8px;
}

.input-text>.form-control:focus~label,
.input-text>.form-control:not(:placeholder-shown)~label,
.input-text>.form-select~label {
    top: -5px;
    left: 0px;
    background: #ffffff;
    border-top: 1px solid var(--bg-primary);
    border-left: 1px solid var(--bg-primary);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 12px;
    transform: none !important;
    padding: 0px 8px;
}

.input-text>.form-control:-webkit-autofill~label {
    top: -5px;
    left: 0px;
    background: #ffffff;
    border-top: 1px solid var(--bg-primary);
    border-left: 1px solid var(--bg-primary);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 12px;
    transform: none !important;
    padding: 0px 8px;
}



.input-checkbox .form-control {
    font-size: 18px;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.input-checkbox .form-control+.form-control {
    margin-top: 1em;
}

.input-checkbox .form-control--disabled {
    color: var(--form-control-disabled);
    cursor: not-allowed;
}

.input-checkbox input[type="checkbox"] {
    appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 24px;
    height: 24px;
    border: 2px solid var(--bg-primary);
    border-radius: 8px;
    display: grid;
    place-content: center;
}

.input-checkbox input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--bg-primary);
    background-color: CanvasText;
}

.input-checkbox input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.input-textarea label {
    top: 24px;
}

.filter-invert-1 {
    filter: invert(1)
}

.py-220-440 {
    padding-top: 220px;
    padding-bottom: 440px;

}

.container-success h2 {
    font-size: 60px;
    font-family: var(--font-title);
    font-weight: bolder;
    color: var(--bg-success);
}

.container-success p {
    font-size: 24px;
    font-weight: bold;
}

.message-error {
    background: var(--bg-danger);
}

.message-success {
    background: var(--bg-success);
}

.message-success,
.message-error {
    width: 100%;
    color: #ffffff;
    padding: 20px;
    font-size: 20px;
    border-radius: 4px;
    line-height: 32px;
    margin: 24px 0px;
}

.container404 {
    position: relative;
}

.container404 p {
    margin: 0px;
}

.container404 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.75;
    width: 50%;
}

.container404 p:nth-child(1) {
    font-size: 48px;
    font-weight: bold;
}

.container404 h1 {
    font-family: var(--font-title);
    font-size: 140px;
    font-weight: bolder;
    color: var(--bg-danger);
}

.container404 p:nth-child(3) {
    font-size: 24px;
}








a {
    text-decoration: none;
    color: #000000;
}


.font-title {
    font-family: var(--font-title) !important;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.font-bolder {
    font-weight: bolder;
}

.py-16 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.py-48 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.btn-primary {
    background-color: var(--bg-primary);
    border-radius: 8px;
    font-family: var(--font-buttons);
    font-weight: bolder;
    font-size: 22px;
}

.color-primary {
    color: var(--bg-primary);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-100 {
    margin-bottom: 100px;
}

.titleMenu {
    font-size: 24px;
    font-family: var(--font-title);
    font-weight: bolder;
    transition: color 0.25s ease;
}

.titleMenu:hover,
.titleMenu.active {
    color: var(--bg-primary) !important;
}

.box-slider-left,
.box-middle {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.title-primary {
    font-size: 32px;
    font-family: var(--font-buttons);
    color: var(--bg-primary);
    font-weight: bolder;
    text-transform: uppercase;
}

.box-slider-left h1 {
    font-size: 80px;
    font-family: var(--font-title);
    font-weight: bolder;
    color: var(--bg-secondary);
}

.imgBgCerc {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBgCerc>img:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imgBgCerc>img:nth-child(2) {
    z-index: 2;
}

.embla__buttons {
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: flex;
    gap: 16px;
}
.embla__buttons_testimonials{
    position: absolute;
    right: 24px;
    top: -80px;
    display: flex;
    gap: 16px;
}
.embla__buttons_testimonials button{
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background-color: unset;    
    border: 0px;
    cursor: pointer;
}
.embla__buttons button {
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background-color: var(--bg-secondary);
    border: 0px;

    transition: background-color 0.25s ease;
    cursor: pointer;
}

.embla__buttons button.active,
.embla__buttons button:hover {
    background-color: var(--bg-primary);
}

.title {
    font-size: 48px;
    font-weight: bolder;
    font-family: var(--font-title);
    margin: 0px;
    color: var(--bg-secondary);
}

.readMore {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-buttons);
    font-weight: bolder;
    transition: color 0.25s ease;
}

.readMore:hover {
    color: var(--bg-primary);
}

.accordion-item {
    margin-bottom: 16px;

}

.accordion-header {
    background-color: var(--bg-primary);
    padding: 16px;
    cursor: pointer;
    font-weight: bolder;
    font-family: var(--font-title);
    display: flex;
    align-items: center;
    color: #ffffff;
    justify-content: space-between;
    font-size: 22px;
    border-radius: 8px;
    transition: border-radius 0.3s ease;
}

.accordion-content {
    display: none;
    background-color: var(--bg-primary);
    padding: 16px;
    position: relative;
    border-radius: 0px 0px 8px 8px;

}

.accordion-content:after {
    content: "";
    border-top: 2px solid #EAEAEA;
    width: calc(100% - 32px);
    position: absolute;
    top: 0px;
    left: 16px;
}

.accordion-content p {
    margin: 0px;
    margin-bottom: 16px;
}

.accordion-item:first-child .accordion-content {
    display: block;
}

.accordion-item.open .accordion-header {
    border-radius: 8px 8px 0 0;
}

.accordion-item.open .accordion-content {
    border-radius: 0 0 8px 8px;
}

.accordion-header img {
    transition: transform 0.3s ease;
}

.accordion-header img.rotate {
    transform: rotate(180deg);
}
.py-40-80{
    padding-top:40px;
    padding-bottom:80px;
}
.pb-80{
    padding-bottom:80px;
}
.antrenorTitle {
    z-index: 2;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    color: #ffffff;
    padding: 12px 16px;
    font-size: 22px;
    font-family: var(--font-title);
    border-radius: 8px;
    font-weight: bolder;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.antrenorTitle span {
    font-size: 20px;
    display: block;
    color: var(--bg-secondary);
    transition: color 0.3s ease;

}

.imgBgCercAntrenori {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBgCercAntrenori>img:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 478px;
    transform: translate(-50%, -50%);
}

.imgBgCercAntrenori>img:nth-child(2) {
    position: relative;
    top: -40px;
}

.imgBgCercAntrenori>img:nth-child(2) {
    z-index: 2;
}

.imgBgCercAntrenori:hover .antrenorTitle {
    background-color: var(--bg-secondary);
    color: #ffffff;

}

.imgBgCercAntrenori:hover .antrenorTitle span {
    color: var(--bg-primary)
}

.align-self-auto {
    align-self: auto;
}

.box-antrenament {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 22px;
    font-family: var(--font-buttons);
    font-weight: bold;
    gap: 16px;
    position: relative;
}

.box-antrenament .number {
    position: absolute;
    font-size: 245px;
    font-family: var(--font-title);
    rotate: -18deg;
    z-index: -1;
    color: #2a030021;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
}

.r--9deg {
    rotate: -9deg !important;
}

.r-0deg {
    rotate: 0deg !important;
}

.r-9deg {
    rotate: 9deg !important;
}

.bg-grey {
    background-color: #EAEAEA;
}

.flex-direction-column {
    flex-direction: column
}

.align-items-flex-start {
    align-items: flex-start;
}

.box-title {
    font-size: 22px;
    font-family: var(--font-buttons);
    color: var(--bg-primary);
    font-weight: bolder;
    display: block;
}

.fs-32 {
    font-size: 32px !important;
}

.fs-36 {
    font-size: 36px !important;
}

.fs-68 {
    font-size: 68px !important;
}

.box-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    padding: 4px;
}

.box-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box-description {
    font-size: 20px;
    font-weight: bold;
}

.box-centuri img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.box-centuri h3 {
    padding-left: 40px;
    z-index: 1;
}

.box-galerie {
    border-radius: 8px;
    height:100%;
}

.box-galerie img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fs-40{
    font-size:40px;
}
.p-0 {
    padding: 0px;
}

.m-0 {
    margin: 0px;
}

.mb-8 {
    margin-bottom: 8px;
}

.r-gap-16 {
    row-gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.titleFooter {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: bolder;
    font-family: var(--font-title);
}

.logoFooter {
    width: 100%;
}

.logoFooter img {
    width: 75%;
}

.bgCopy {
    background-color: #030127;
    padding: 16px;
    color: #ffffff;
    font-size: 22px;
}

.w-32 {
    width: 32px
}

.menuButtonContainer {
    display: none;
}

.titleMenu {
    position: relative;
}

.closeMenu {
    display: none;
}

.overflow-hidden {
    overflow: hidden;
}

.slideContainer {
    height: 1px;
    position: absolute;
    width: 1px;
    opacity: 0;
    bottom: calc(100% + 250px);
}

section {
    position: relative;
}

.boxContact,
.boxContact2 {
    display: flex;
    gap: 16px;
}

.boxContact2 {
    justify-content: flex-end;
    text-align: right;
}

.boxContact2 .boxRight a {
    justify-content: flex-end !important;
}

.boxRight {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.boxRight>span {
    font-size: 32px;
    font-family: var(--font-title);
    font-weight: bold;
}

.boxRight a {
    font-size: 22px;
    font-weight: bold;
}

.boxLeft {
    width: 150px;
    height: 150px;
    background: var(--bg-primary);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.boxLeft img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 9999px;
}

.btn {
    text-transform: uppercase;
}
.flip-horizontally{
    transform: scaleX(-1);
}
.box-skills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 24px;
    font-family: var(--font-buttons);
    color: var(--bg-primary);
    font-weight: bolder;
    text-align: center;
}

.box-testimoniale{
    position: relative;
}
.box-testimoniale-top{
    top:16px;
    left: 16px;
    position: absolute;
}
.box-testimoniale-top img {
    width: 50%;
}
.box-skills span{
    display: block;
    color: #000000;
    font-size: 22px;
}
.icon-testimoniale{
    width: 60px;
    height: 60px;
    padding: 8px;
    background-color: var(--bg-primary);
    border-radius: 9999px;
}
.icon-testimoniale img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.box-testimoniale{
    background-color: #EAEAEA;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}
.box-testimoniale-bottom span{
    font-size:30px;
    font-weight: bolder;
    font-family: var(--font-title);
}
.box-testimoniale-bottom p{
    margin-top:0px;
}
.embla {
    overflow: hidden;
    position: relative;
}
.embla__container {
    display: flex;
}
.embla__slide {
    flex: 0 0 50%;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
}
.emblaSlider{
    overflow: hidden;
    position: relative;
}
.emblaSlider .embla__slide{
    flex: 0 0 100%;
    padding:0px;
    margin:0px;
}

.invert-1{
    filter: invert(1);
}
.listKarate{
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 22px;
    font-family: var(--font-title);
    font-weight: bold;
}
.boxDeCeKarate{
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 8px;
    color: #ffffff;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width:992px) {

    .submenu {
        display: none;
        position: absolute;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateY(-10px);
        width: 400px;
    }

    .titleMenu:hover .submenu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .submenu a {
        display: block;
        padding: 8px 16px;
        text-decoration: none;
        color: black;
    }

    .submenu a:hover {
        background-color: #f0f0f0;
        color: var(--bg-primary);
    }
}


/* xxl */
@media(max-width: 1399px) {}

/* xl */
@media(max-width:1199px) {
    .titleFooter {
        font-size: 28px;
    }

    .box-description {
        font-size: 16px;
    }

    .box-antrenament {
        font-size: 18px;
    }

    .imgBgCerc img:nth-child(1) {
        width: 100%;
    }

    .imgBgCerc img:nth-child(2) {
        width: 75%;
    }

    .titleMenu {
        font-size: 18px;
    }

    .logo {
        width: 90%;
    }

    .box-centuri h3 {
        padding-left: 0px;
        font-size: 54px !important;
    }

    .box-centuri img {
        width: 100%;
    }
}

/* lg */
@media(max-width:991px) {
    .container404 img{
        width:80% !important;
    }
    .py-220-440{
        padding-top:40px;
        padding-bottom:120px;
    }
    .slideContainer{
        bottom:calc(100% + 40px) !important;    
    }
    .embla__buttons_testimonials{
        display: none;
    }
    .embla__slide{
        flex: 0 0 100%;
    }
    .container404 h1 {
        font-size: 100px;
    }

    .titleMenu {
        width: 100%;
        cursor: pointer;
    }

    .submenu {
        display: none;
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
    }

    .submenu.active {
        display: flex;
    }

    .submenu a:hover {
        color: var(--bg-primary);
    }

    .menuContainer {
        position: fixed;
        left: -100%;
        top: 0px;
        flex-direction: column;
        background: #EAEAEA;
        margin: 0px;
        justify-content: flex-start;
        height: 100%;
        min-width: 250px;
        align-items: flex-start;
        opacity: 0;
        transition: all 0.50s;
        -webkit-transition: all 0.50s;
        border-right: 2px solid var(--bg-secondary);
    }

    .closeMenu {
        display: block;
        position: absolute;
        right: 16px;
        top: 16px;
        width: 40px;
        height: 40px;
        background: #fff7fd;
        padding: 8px;
        border-radius: 8px;
        border: 2px solid var(--bg-primary);
        cursor: pointer;
    }

    .closeMenu img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .menuContainer.active {
        left: 0;
        opacity: 1;
        z-index: 11;
        padding-top: 80px;
        padding-left: 24px;
    }

    .menuButtonContainer {
        align-items: center;
        display: flex;
    }

    .menuButton {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: var(--bg-primary);
        padding: 16px;
        border-radius: 8px;
        position: relative;
        flex-shrink: 0;
    }

    .menuButton img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: invert(1);
    }

    .justify-content-flex-end-lg {
        justify-content: flex-end
    }

    .mb-48-lg {
        margin-bottom: 48px !important;
    }


    .imgBgCerc img:nth-child(1) {
        width: 60%;
    }

    .imgBgCerc img:nth-child(2) {
        width: 40%;
    }

    .embla__buttons {
        display: none;
    }

    .flex-direction-column-reverse-lg {
        flex-direction: column-reverse
    }

    .pb-100-lg {
        padding-bottom: 100px !important;
    }

    .text-center-lg {
        text-align: center;
    }

    .box-antrenament .number {
        font-size: 180px;
    }

    .box-tarife {
        background-color: var(--bg-secondary);
        padding-bottom: 48px;
        color: #ffffff;
    }

    .box-title {
        color: #ffffff;
    }

    .box-icon img {
        filter: brightness(0) saturate(0%) invert();
    }

    .box-parteneriat {
        text-align: center;
    }

    .box-parteneriat .btn {
        align-self: center;
    }

    .box-parteneriat img {
        width: 50%;
    }

    .box-centuri {
        background-color: var(--bg-secondary);
        padding-top: 48px;
        color: #ffffff
    }

    .box-centuri img {
        display: none;
    }

    .pt-0-lg {
        padding-top: 0px !important;
    }

    .box-slider-left {
        text-align: center;
    }

    .box-slider-left .btn {
        align-self: center;
    }
}

/* md */
@media(max-width:767px) {
    .logo {
        width: 100%;
    }

    .d-none-md {
        display: none;
    }

    .justify-content-center-md {
        justify-content: center;
    }

    .box-parteneriat img {
        width: 80% !important;
    }

    .bgCopy .col-xs-12 {
        flex-direction: column;
        row-gap: 18px;
        text-align: center;
    }

    .boxContact {
        flex-direction: column;

        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .boxContact2 {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .boxRight {
        align-items: center;
    }

    .boxContact2 .boxRight a {
        flex-direction: row-reverse;
    }
}

/* sm */
@media(max-width:575px) {
    .imgBgCercAntrenori>img:nth-child(1) {
        width: 100%;
    }
    .imgBgCercAntrenori>img:nth-child(2) {
    width:100%;
    }

    .title,
    .box-centuri h3 {
        font-size: 34px !important;
    }

    .title-primary {
        font-size: 28px;
    }

    .box-slider-left h1 {
        font-size: 60px;
    }

    .box-parteneriat h3 {
        font-size: 28px !important;
    }

    .box-topBar span {
        font-size: 18px !important;
    }

    .box-topBar img {
        width: 28px;
    }

    .container404 h1 {
        font-size: 68px;
    }

    .container404 p:nth-child(1) {
        font-size: 40px;
    }

}

/* xs */
@media(max-width:465px) {}