html {
    /* font-size: 18px !important; */
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray-200: #ced4da;
    --bs-gray-300: #8f979c;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-800: #30373b;
    --bs-primary-50: #e6f1f9;
    --bs-primary-100: #b1d5eb;
    --bs-primary-400: #3692cc;
    --bs-primary: #0477bf;
    --bs-primary-600: #046cae;
    --bs-primary-700: #035488;
    --bs-primary-800: #024169;
    --bs-primary-900: #023250;
    --bs-secondary-50: #fff7eb;
    --bs-secondary-100: #ffe5c2;
    --bs-secondary-200: #feaa39;
    --bs-secondary: #feaa39;
    --bs-secondary-600: #e79b34;
    --bs-secondary-700: #b47928;
    --bs-secondary-800: #8c5e1f;
    --bs-secondary-900: #6b4718;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-body-color: #58646b;
    --bs-heading-color: var(--bs-primary-900);
    --bs-dark: #212529;
    --bs-font-sans-serif: "Open sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --bs-font-heading: "Sofia Sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    --foundation-blue-blue-50: #e6f1f9;
}
.pb-6 {
    padding-bottom: 5rem !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--bs-gray-200) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-font-heading) !important;
}
h1 {
    font-weight: 800;
}
h2 {
    color: var(--bs-primary-600) !important;
}
section > h2 {
    color: var(--bs-primary-900) !important;
    text-align: center;
}
h2,
h3 {
    font-weight: 700;
}
h3 {
    color: black !important;
}

img {
    width: 100%;
    height: auto;
}

.card-body a {
    text-decoration: none !important;
}
.color-primary-900 {
    color: var(--bs-primary-900) !important;
}

@media (max-width: 768px) {
    .px-5 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .p-5 {
        padding: 0.5rem !important;
    }
    .m-5 {
        margin: 0.5rem !important;
    }
    .mx-5 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    .my-5 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .mt-5 {
        margin-top: 0.5rem !important;
    }
    .mb-5 {
        margin-bottom: 0.5rem !important;
    }
    .gx-5 {
        --bs-gutter-x: 0.5rem !important;
    }
    .gy-5 {
        --bs-gutter-y: 0.5rem !important;
    }
    .flex-md-row-reverse-exk {
        flex-direction: column-reverse !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .p-5 {
        padding: 1.5rem !important;
    }
    .m-5 {
        margin: 1.5rem !important;
    }
    .mx-5 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
    .my-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .mt-5 {
        margin-top: 1.5rem !important;
    }
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    .gx-5 {
        --bs-gutter-x: 1.5rem !important;
    }
    .gy-5 {
        --bs-gutter-y: 1.5rem !important;
    }
}

.bg-primary {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.bg-secondary-100 {
    background-color: var(--bs-secondary-100) !important;
    color: var(--bs-white);
}
.bg-secondary-50 {
    background-color: var(--bs-secondary-50) !important;
    color: var(--bs-white);
}
.border-secondary-100 {
    border-color: var(--bs-secondary-100) !important;
}
.bg-primary-600 {
    background-color: var(--bs-primary-600);
    color: var(--bs-white);
}
.bg-primary-700 {
    background-color: var(--bs-primary-700);
    color: var(--bs-white);
}
.bg-primary-800 {
    background-color: var(--bs-primary-800);
    color: var(--bs-white);
}
.bg-primary-900 {
    background-color: var(--bs-primary-900);
    color: var(--bs-white);
}
.bg-primary-50 {
    background-color: var(--bs-primary-50);
}
.bg-primary-gradient {
    background: var(--bs-primary-50);
}
.bg-footer {
    background-color: #1a202c;
    color: var(--bs-white);
}
span.accent {
    color: var(--bs-secondary-600);
}
.catch-line {
    color: var(--bs-primary-800);
    font-weight: 600;
}
.c-900 {
    color: var(--bs-primary-900) !important;
}
.text-w-600 {
    font-weight: 600 !important;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}
.pimcore_area_image.pimcore_area_content {
    height: 100%;
    width: 100%;
}
.area-image.d-block {
    height: 100%;
    width: 100%;
}

.txt-gray-800 {
    color: var(--bs-gray-800) !important;
}
.weight-600 {
    font-weight: 600 !important;
}

.post_quote {
    border-left: solid 5px var(--bs-secondary);
    padding: 1rem 0 1rem 1.5rem;
}

/* -------------------------Buttons------------------------- */

.btn {
    --bs-btn-border-radius: 4px;
}

.btn:disabled {
    opacity: 0.5;
}

.btn-primary {
    background: linear-gradient(180deg, #047cc8 0%, #035d96 100%);
    --bs-btn-color: #fff;
    --bs-btn-bg: linear-gradient(180deg, #047cc8 0%, #035d96 100%);
    --bs-btn-border-color: #035d96;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: linear-gradient(180deg, #047cc8 0%, #035d96 100%);
    --bs-btn-hover-border-color: #035d96;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: linear-gradient(180deg, #047cc8 0%, #035d96 100%);
    --bs-btn-active-border-color: #035d96;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: linear-gradient(180deg, #047cc8 0%, #035d96 100%);
    --bs-btn-disabled-border-color: #035d96;
}

.btn-secondary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-primary-800);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: var(--bs-primary-800);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary-100);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary-100);
}

.btn.btn-primary:hover,
.btn.btn-primary.active {
    background: linear-gradient(
        180deg,
        var(--bs-primary-700) 0%,
        var(--bs-primary-900) 100%
    );
    border-color: var(--bs-primary-900);
    color: var(--bs-white);
}

/* -------------------------header------------------------- */

header#header-main {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: flex-end;
    margin-top: 96px;
    position: relative;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

header#mini_header {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    margin-top: 96px;
    position: relative;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--bs-primary-700);
}

header#mini_header .dark_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background-color: var(--bs-primary-900);
    opacity: 0.5;
    z-index: 0;
}
header#mini_header .inner-header {
    z-index: 2;
}
header#mini_header h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    z-index: 5;
    color: white !important;
}
header#mini_header svg {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

header#mini_header .breadcrumb {
    text-align: center;
    align-items: center;
    justify-content: center;
}

header#mini_header .breadcrumb a {
    color: white !important;
    font-weight: bold;
    text-decoration: none;
}
header#mini_header .breadcrumb span {
    color: white !important;
    opacity: 0.7;
}
header#mini_header .breadcrumb a:hover {
    /* color: var(--bs-primary-900) !important; */
    text-decoration: underline;
}

header#header-main div.text-header {
    width: 65%;
    padding-top: 180px;
    padding-left: 104px;
}
@media (max-width: 1150px) {
    header#header-main div.text-header {
        width: 80%;
        padding-top: 150px;
        padding-left: 20px;
    }
    header#header-main div.text-header h1 {
        font-size: 43px;
    }
}

header#header-main div h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    text-align: start;
    z-index: 5;
    color: white !important;
}

header#header-main div .header-headline {
    color: white !important;
    font-family: var(--bs-font-heading) !important;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: start;
    z-index: 8;
}

header#header-main img.header-image {
    position: absolute;
    right: 4%;
    height: 588px;
    width: auto;
    z-index: 0;
}
header#header-main .radius-tr {
    width: 250px;
    height: 250px;
    position: absolute;
    right: 0px;
    top: 0px;
    background: radial-gradient(at top right, var(--bs-secondary-200), #fff);
    filter: blur(80px);
    overflow: hidden;
    z-index: 1;
}
header#header-main .radius-tl {
    width: 493px;
    height: 493px;
    position: absolute;
    left: -148px;
    top: -198px;
    border-radius: 493px;
    background: var(--foundation-blue-blue-400, #3692cc);
    filter: blur(180px);
    z-index: 1;
}

header#header-main .btn-list {
    z-index: 5;
}

@media (max-width: 992px) {
    header#header-main {
        margin-top: 60px;
        height: 480px;
    }
    header#header-main div.text-header {
        width: 100%;
        padding-top: 50px;
        padding-left: 20px;
    }

    header#header-main .radius-tl {
        opacity: 0.4;
        filter: blur(65px);
    }

    header#header-main div h1 {
        font-size: 43px;
        font-weight: 900;
        line-height: normal;
        text-transform: uppercase;
        text-align: start;
        z-index: 5;
    }

    header#header-main div .header-headline {
        font-family: var(--bs-font-heading) !important;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-align: start;
        z-index: 8;
    }

    header#header-main .btn-list {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        width: 100%;
        gap: 10px;
    }
    header#header-main .btn-list a {
        flex-grow: 1;
    }

    .inner-header {
        height: 100% !important;
        padding: 0 !important;
    }
    .inner-header .text-header {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    header#header-main img.header-image {
        /* right: auto; */
        display: none;
        width: 5%;
        /* width: 100%;
        height: auto; */
    }
}

/* -------------------------Wave------------------------- */

.header {
    position: relative;
    text-align: center;
}

header#header-main .inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

/* --------------------------Animation------------------------- */

.parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 992px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    h1 {
        font-size: 24px;
    }
    /* .inner-header {
        height: 100vh;
    } */

    .inner-header,
    .waves {
        /* background: rgba(222, 222, 222, 0.4); */
    }
}

/* -------------------------NAV------------------------- */

nav#mainNav {
    background-color: #fff;
    height: 96px;
    z-index: 999999;
}
.navbar-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

nav#mainNav img {
    height: 50px;
    width: auto;
}
nav#mainNav div#navcol-1 {
    justify-content: end;
}
nav#mainNav div#navcol-1 a {
    font-weight: 600;
}
nav#mainNav div#navcol-1 a.active {
    color: var(--bs-primary-900);
    display: flex;
    align-items: center;
    flex-direction: column;
}
nav#mainNav div#navcol-1 a.active::after {
    content: "";
    color: var(--bs-primary-900);
    display: block;
    width: 60%;
    height: 2px; /* Height of the dash */
    background-color: var(--bs-primary-900); /* Color of the dash */
    margin-top: 5px; /* Adjust as needed */
    z-index: 999;
}

nav#mainNav .btn.btn-primary,
nav#mainNav div#navcol-1 .btn.btn-primary.active {
    color: var(--bs-white);
}

nav#mainNav div#navcol-1 .btn.btn-primary.active:after {
    content: none;
}
.navbar-toggler:focus {
    box-shadow: 0px 0px 4px 1px var(--bs-primary-900) !important;
}

@media (min-width: 1200px) {
    nav#mainNav div#navcol-1 .nav-item:last-child {
        margin-left: 32px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .navbar {
        --bs-navbar-nav-link-padding-x: 0.3rem;
    }

    /* nav#mainNav img {
        height: 92;
        width: 150px;
    } */
}

@media (max-width: 992px) {
    nav#mainNav {
        height: 60px;
    }

    nav#mainNav div#navcol-1.show,
    nav#mainNav div#navcol-1.collapsing {
        background-color: var(--bs-white);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
    }

    nav#mainNav div#navcol-1.show .navbar-nav,
    nav#mainNav div#navcol-1.collapsing .navbar-nav {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 1rem;
        align-items: center;
        border-radius: var(--bs-navbar-toggler-border-radius);
        border: 1px solid var(--bs-primary-900) !important;
    }

    nav#mainNav div#navcol-1.show .nav-item:last-child,
    nav#mainNav div#navcol-1.collapsing .nav-item:last-child {
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }

    nav#mainNav div#navcol-1.show .nav-item {
        flex: 1 1 100%;
    }

    nav#mainNav div#navcol-1 .btn {
        padding-left: var(--bs-btn-padding-x);
        padding-right: var(--bs-btn-padding-x);
    }
    nav#mainNav img {
        /* max-width: 200px; */
        height: 35px;
    }
}
@media (max-width: 1280px) {
    nav#mainNav img {
        height: 30px;
    }
}

/* -------------------------Card------------------------- */

.card h4,
.card h3 {
    color: var(--bs-primary-900) !important;
    text-align: left;
    font-weight: 700;
}
.card blockquote,
.card .card-body .card-text {
    text-align: left;
    font-weight: 600;
}
.card-footer {
    border-top: none;
    background-color: white;
    color: var(--bs-primary-900);
}
.card .bg-img {
    height: 180px;
    background-image: url("/static/img/ai.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-right-radius: var(--bs-card-border-radius);
    border-top-left-radius: var(--bs-card-border-radius);
}
/* -------------------------NY ABOUT------------------------- */

.ny-about img:hover,
.ny-about img.active {
    transform: scale(1.1);
    z-index: 999;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.ny-about .txt_about {
    display: none;
}
.ny-about .txt_about.active {
    display: block;
}

.ny-about .left-side {
    display: inline-block;
    position: relative;
}
.ny-about .img-group {
    width: 100%;
    height: 695px;
    position: relative;
    display: block;
    background-image: url("/static/img/vector.png");
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: left;
}

.ny-about .coach1 img {
    width: 241px;
    height: 301px;
    left: 220px;
    top: 0px;
    position: absolute;
    border-top-right-radius: 120.5px;
    border-top-left-radius: 33px;
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 120.5px;
    z-index: 3;
}
.ny-about .coach2 img {
    width: 251px;
    height: 314px;
    left: 382px;
    top: 146.5px;
    position: absolute;
    border-top-right-radius: 33px;
    border-top-left-radius: 125.5px;
    border-bottom-left-radius: 125.5px;
    border-bottom-right-radius: 33px;
    z-index: 2;
}
.ny-about .coach3 img {
    width: 253px;
    height: 316px;
    left: 220px;
    top: 320.5px;
    position: absolute;
    border-top-right-radius: 126.5px;
    border-top-left-radius: 33px;
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 126.5px;
    z-index: 1;
}

@media (min-width: 992px) and (max-width: 1400px) {
    .ny-about .img-group {
        background-size: contain;
    }
    .ny-about .coach1 img {
        left: 10vw;
        top: 0px;
    }
    .ny-about .coach2 img {
        left: 20vw;
        top: 146.5px;
    }
    .ny-about .coach3 img {
        left: 10vw;
        top: 320.5px;
    }
}

@media (max-width: 576px) {
    .ny-about .img-group {
        background: none !important;
    }
    .ny-about .coach1 img {
        left: 0vw;
        top: 0px;
    }
    .ny-about .coach2 img {
        left: 30vw;
        top: 146.5px;
    }
    .ny-about .coach3 img {
        left: 0vw;
        top: 320.5px;
    }
    .ny-about .img-group img {
        width: 220px;
        height: auto;
    }
    .ny-about .img-group .coach2 img {
        right: 0;
        left: auto;
    }
    .ny-about .row {
        --bs-gutter-x: 0 !important;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .ny-about .coach1 img {
        left: 20%;
        top: 0px;
    }
    .ny-about .coach2 img {
        left: 50%;
        top: 146.5px;
    }
    .ny-about .coach3 img {
        left: 20%;
        top: 320.5px;
    }
}

/* -------------------------NY About 2 ------------------------- */
.ny-about__photo {
    height: 300px;
    position: relative;
}
.ny-about__photo img {
    border-radius: 8px;
    height: 300px;
    object-fit: cover;
}
.ny-about__photo .ny-about__label {
    border-radius: 4px;
    background-color: white;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    right: 20px;
}
.ny-about__photo .ny-about__label h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-primary-900);
    margin: 0;
    padding: 0;
}
/* -------------------------NY Services------------------------- */
.ny-services {
    background-color: var(--bs-primary-50);
    position: relative;
    overflow: hidden;
}
.ny-services .card-img-top {
    height: 100px;
    width: 100px;
}
.ny-services .card {
    border-color: #fff;
    width: 100%;
}
.ny-services .card h3 {
    text-align: center;
    min-height: 68px;
}
.ny-services .card .card-body {
    justify-content: space-between;
}
@media (max-width: 992px) {
    .ny-services .card {
        margin-bottom: 7px;
        margin-top: 7px;
    }
}

div.butterfly {
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    transform: rotate(35deg);
    background-image: url("/static/img/papillon.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    overflow: hidden;
    opacity: 0.8;
}
div.butterfly-right {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    transform: rotate(325deg);
    background-image: url("/static/img/papillon.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    overflow: hidden;
    opacity: 0.8;
}

/* -------------------------NY CTA------------------------- */
.ny-cta {
    /* background-color: linear-gradient(
        0deg,
        rgba(4, 119, 191, 0.9) 0%,
        rgba(4, 119, 191, 0.9) 100%
    );

    background-image: url("/static/img/bg-cta.png");
    background-size: cover;
    background-repeat: no-repeat; */
    background: linear-gradient(
            0deg,
            rgba(4, 119, 191, 0.9) 0%,
            rgba(4, 119, 191, 0.9) 100%
        ),
        url("/static/img/bg-cta.png"), lightgray 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
.ny-cta h4,
.ny-cta p {
    color: white;
}

.ny-cta d-flex {
    position: relative;
}
.ny-cta form input[type="email"] {
    position: relative;
    min-width: 400px;
    max-width: 400px;
}
.ny-cta form button {
    position: relative;
    left: -20%;
    margin: 5px 0;
}
.ny-cta .max-width-400 {
    max-width: 400px;
}
@media (max-width: 768px) {
    .ny-cta form input[type="email"] {
        min-width: 100%;
    }
    .ny-cta form button {
        left: 0 !important;
    }
    .ny-cta form {
        flex-wrap: wrap;
    }
}
@media (max-width: 992px) {
    .ny-cta.flex-row {
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
    }
    .ny-cta input[type="email"] {
        min-width: 300px;
    }
    .ny-cta form button {
        left: -24%;
    }
    .cta-img {
        display: none;
    }
}

.ny-cta.cta-simple {
    height: 250px;
}
.ny-cta .flex-50 {
    flex: 0 0 50% !important;
}
.ny-cta .dark_layer {
    opacity: 0.4;
}
.ny-cta h2 {
    color: white !important;
}
.ny-cta label,
.ny-cta label a {
    color: white;
}

/* -------------------------NY Testimonials------------------------- */
img.testimonial_photo {
    width: 50px;
    height: 50px;
}

.ny-testimonials .card.border-primary-100 {
    border: 1px solid var(--bs-primary-100);
    /* border-radius: 8px; */
}

/* -------------------------Swiper------------------------- */
.swiper {
    /* width: 100%;
    height: 100%; */
}
.ny-testimonials .swiper-pagination {
    position: static;
    margin-top: 50px;
}
.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}
.swiper-pagination-bullet-active {
    background-color: var(--bs-secondary);
}

.swiper-slide {
    height: auto !important;
}

.ny-testimonials .card.border-primary-100 {
    height: 100%;
}

/* -------------------------NY Blog------------------------- */
.ny-blog .col-4 {
    /* flex: 1 1 0px; */
}
.ny-blog .card {
    border: none;
}
.ny-blog .card-text,
.blog_list .card-text,
.formations_list .card-text {
    text-overflow: ellipsis;
    max-height: 96px;
    overflow: hidden;
}
.ny-blog .category {
    color: var(--bs-primary-700);
    font-size: 14px;
    font-weight: 600;
}

.ny-blog i.fas.fa-arrow-right,
.blog_list i.fas.fa-arrow-right {
    transform: rotate(-45deg);
    margin-left: 5px;
}

@media (max-width: 992px) {
    .ny-blog .card,
    .blog_list .card {
        margin-bottom: 7px;
        margin-top: 7px;
    }
}

/* -------------------------Contact------------------------- */
section#contact {
    /* margin-top: 200px; */
}

section#contact .fas {
    color: var(--bs-secondary);
}

section#contact p.info {
    color: var(--bs-primary-900);
}
section#contact p.info a {
    text-decoration: none;
    color: var(--bs-primary-900);
}
section#contact p.info a:hover {
    text-decoration: underline;
    color: var(--bs-primary-600);
}

@media (max-width: 992px) {
    section#contact .col-md-12 picture {
        display: none;
    }
}

section#contact .contact-image-col {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
section#contact .contact-image-col picture,
section#contact .contact-image-col > img {
    flex: 1;
    min-height: 200px;
    display: block;
}
section#contact .contact-image-col picture img,
section#contact .contact-image-col > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -------------------------Footer------------------------- */
footer img {
    width: 150px;
    height: auto;
}
footer .py-5 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}
footer p {
    font-size: 14px;
}
footer h3 {
    font-size: 18px;
    color: var(--bs-secondary) !important;
}
footer a {
    color: var(--bs-primary-50) !important;
    text-decoration: none;
}
footer a:hover {
    color: var(--bs-primary) !important;
    text-decoration: none;
}
footer .icon a i {
    font-size: 2rem;
    color: var(--bs-secondary) !important;
}
footer .icon a:hover i {
    color: white !important;
}

@media (max-width: 992px) {
    footer .copyright p {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    footer .flex-column {
        align-items: center;
    }
}

@media (max-width: 768px) {
    footer .col-xs-12 {
        margin-top: 20px;
    }
}
/* -------------------------Post------------------------- */

article.container_article {
    margin: 0 25%;
}
@media (max-width: 768px) {
    article.container_article {
        margin: 0 2% !important;
    }
}
@media (max-width: 992px) {
    article.container_article {
        margin: 0 10%;
    }
}
article section.header div.img {
    height: 450px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
p.short_text {
    color: var(--bs-gray-800);
    font-weight: 700;
    text-align: left;
}
article section {
    margin: 32px 0;
}
article h2 {
    color: var(--bs-primary-600);
}
article.container_article {
    padding-bottom: 70px;
}

.blog_list h1 {
    text-align: center;
}

@media (max-width: 992px) {
    article section.header div.img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    article section.header div.img {
        height: 200px;
    }
}

/* -------------------------Formation------------------------- */
img.program {
    height: 300px;
    width: auto !important;
}
.formation a:hover img {
    border: 1px solid var(--bs-primary-900);
}
.formation .tab-pane {
    padding: 32px 0;
}

.formation .bg_image {
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 40px;
}
.border-secondary-100 .fas,
.border-secondary-100 .fa {
    color: var(--bs-secondary);
}
.formateur img {
    height: 50px;
    width: 50px;
}

#myTab.nav-tabs .nav-link:not(.active) {
    color: var(--bs-gray-800);
    border: none;
}
#myTab.nav-tabs .nav-link.active {
    border-color: var(--bs-white) var(--bs-white) var(--bs-secondary);
    border-bottom-width: 0.2rem;
}

#myTab.nav-tabs .nav-link {
    transition: none;
}

#myTab.nav-tabs .nav-link:focus:not(.active),
#myTab.nav-tabs .nav-link:hover:not(.active) {
    border: none;
    color: var(--bs-primary);
}

/* -------------------------Divers------------------------- */

.padding-b-2 {
    padding-bottom: 1rem !important;
}
.padding-b-3 {
    padding-bottom: 1.5rem !important;
}

.row .card:hover {
    box-shadow: 0 0 17px rgba(33, 33, 33, 0.2);
    transition: all 0.1s ease-in-out;
}
.accordion-header button {
    font-weight: 800 !important;
}
.rounded {
    border-radius: 25px !important;
}
.pos-relative {
    position: relative !important;
}
section {
    overflow: hidden !important;
}
footer {
    z-index: 2;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: white !important;
    opacity: 0.7 !important;
}
.event-date {
    background-color: var(--bs-primary-700);
    color: white;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--bs-primary-700);
    width: 25%;
}
.event-date h3 span {
    color: white;
}
.events .card {
    border-left: none !important;
}
h3 .day {
    font-size: 1.5rem;
    font-weight: 200;
}
.events .card {
    cursor: pointer;
}
.events .card:hover {
    box-shadow: 0 0 17px rgba(33, 33, 33, 0.2);
    transition: all 0.1s ease-in-out;
}
.events a {
    text-emphasis: none;
    text-decoration: none;
}
.events .card .professionals {
    background-color: var(--bs-primary-400) !important;
    border: 1px solid var(--bs-primary-400);
}
.events .card .individuals {
    background-color: var(--bs-secondary-600) !important;
    border: 1px solid var(--bs-secondary-600);
}
.blog_list ul.nav-tabs .active {
    background-color: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}
.badge.bg-primary-400 {
    background-color: var(--bs-primary-400) !important;
}
.badge.bg-secondary-600 {
    background-color: var(--bs-secondary-600) !important;
}

.event_group ul {
    list-style: none;
    padding-left: 15px;
    margin: 0;
}
.event_group li {
    margin-bottom: 10px;
}
.event_group {
    border-left: 2px solid var(--bs-secondary);
}
.next_events ul {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    color: var(--bs-primary-900);
    font-weight: 600;
}
.next_events ul li {
    margin-bottom: 10px;
}
.register_date_info label {
    cursor: pointer;
}
.register_date_info > label:hover {
    box-shadow: 0 0 17px rgba(33, 33, 33, 0.2);
    border-radius: 15px;
}
.register_date_info > label {
    padding-top: 1em !important;
    padding-bottom: 0.5em !important;
}
.bg_formation {
    min-width: 40%;
    background: var(--bs-primary-900);
    padding-top: 1em;
    padding-left: 1em;
    border-radius: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.events h6 {
    color: var(--bs-primary-700);
    font-weight: 600;
    margin-top: 1.5em;
}
.events h3 {
    margin-bottom: 0.5em;
}
.events h6 a,
.events h3 a {
    text-decoration: none;
    color: inherit;
}
.events p {
    font-weight: 600;
}
.my-8 {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
}
.mw-100 {
    min-width: 100%;
}
.custom-padding {
    padding: 3em 2em;
}
.relative {
    position: relative;
}
.ny-about__swiper-pagination {
    bottom: -30px !important;
}
.dashed_top {
    border-top: 2px dashed rgba(2, 50, 80, 0.2);
    margin: 0 20px !important;
}
.details_cards_formation {
    font-size: 18px;
    font-weight: 600;
}
.accordion-body {
    font-style: italic;
    font-size: 0.9em;
}
.cta-simple.center {
    justify-content: center;
    text-align: center;
}
a.no-style {
    text-decoration: none;
    color: inherit;
}
@media screen {
}
@media (max-width: 768px) {
    .row.events > div.flex-row {
        flex-direction: column !important;
    }
    .bg_formation {
        min-width: 100% !important;
        height: 240px !important;
    }
}
