@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
    margin: 0 auto;
    min-width: 320px;
    font-size: 14px;
    color: #000;
    font-weight: normal;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
    outline: none;
}

a:active {
    outline: none;
    color: inherit;
    text-decoration: none;
}

a:focus,
a:visited {
    outline: none;
    color: inherit;
    text-decoration: none;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.col-md-6,
.col-md-7,
.col-md-5,
.col-md-4 {
    padding: 0;
}

section {
    overflow: hidden;
}
/*Modal*/
.modal-window {
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(119, 159, 157, .71) 14.25%, rgba(125, 172, 170, .71) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 400;
    transition: .5s all ease;
    max-width: 100vw;
	z-index:9999;
}

.modal-window.d-none {
    display: none;
}

.content {
    position: relative;
}

.modal__wrapper {
    max-width: 90%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.modal__close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: -34px;
    right: 0;
    cursor: pointer;
}

.modal__content img {
    width: 100%;
}

.modal-window.new .modal__wrapper {
    min-height: 600px;
    max-width: 920px;
    align-items: flex-start;
    background-color: transparent;
    padding: 100px 60px 40px 385px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}


.modal-window.new .modal__wrapper .modal__content {
    max-width: 450px;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    color: #333333;
}
#modal-window .modal__content {
	text-align: center;
}
#modal-window .modal__content img {
	width: 90%;
}
.modal-window.new .modal__wrapper .last {
    font-family: 'Blacker Sans Display';
    font-weight: 900;
    font-style: italic;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #365F5C;
    max-width: 270px;
    margin: 0 auto;
}

.modal-window.new .modal__close {
    top: 52px;
}

@media (max-width: 768px) {
    .modal-window.new .modal__wrapper {
        background-color: transparent;
        padding: 85px 15px 40px 15px;
        background-position: 50% 19%;
        background-repeat: no-repeat;
        background-size: 140% 113%;
        border-radius: 0;
    }

    .modal-window.new .modal__wrapper .price {
        margin: 0 auto;
    }
}

/*HEADER begin*/

.navbar {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 335px;
}
.navbar-light button[aria-expanded="false"] .close_menu {
    display: none;
}
.navbar-light button[aria-expanded="true"] .close_menu {
    display: block;
}
.navbar-light button[aria-expanded="true"] .open_menu {
    display: none;
}

.navbar-toggler {
    z-index: 50;
}

.navbar-nav a {
    font-family: 'Royal Crescent';
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    transition: 0.5s;
    padding: 13px 0;
    border-bottom: 1px solid transparent;
}

.navbar-nav a:hover {
    border-bottom: 1px solid #ffffff;
}

.navbar-nav li {
    margin: 0 30px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.navbar-logo {
    margin-right: 30px;
}

.navbar-nav li .sub-menu {
    display: none;
}

.navbar-nav li a span {
    font-family: monospace;
    font-size: 18px;
}
.navbar-nav li.menu-item-has-children>a {
    display: flex;
    align-items: center;
}
.navbar-nav li.menu-item-has-children>a:after {
    margin-left: 14px;
    transform: rotate(180deg);
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M13 7L7 0.999999L1 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    margin-bottom: -11px;
}
.navbar-nav li.menu-item-has-children.button_header>a:after {
    margin-bottom: -6px;
}
.navbar-nav li.menu-item-has-children.button_header:hover>a:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M13 7L7 0.999999L1 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    margin-bottom: -11px;
}
.navbar-nav li.menu-item-has-children:hover>a:after {
    transform: none;
    margin-top: -20px;
}

.navbar-nav li .sub-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 0 32px;
    min-width: 290px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    align-items: flex-start;
}
.navbar-nav li.button_header .sub-menu {
    padding: 0px 24px;
    min-width: auto;
    width: 100%;
}
.navbar-nav li:hover .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
}
.navbar-nav li .sub-menu li {
    padding: 6px 0;
    margin: 0;
}
.navbar-nav li .sub-menu li a {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: flex-end;
    color: #737373;
    padding: 0;
    text-transform: none;
}
.navbar-nav li .sub-menu li a:hover {
    color: #000000;
}
@media (min-width: 992px) {
    .navbar-nav li.menu-item-has-children.button_header>a:after {
        margin-bottom: 0;
    }
    .navbar-nav li.menu-item-has-children:hover>a:after {
        transform: none;
        margin-top: 0;
    }
    .navbar-nav li.menu-item-has-children>a:after {
        margin-left: 14px;
        transform: rotate(180deg);
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M13 7L7 0.999999L1 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        margin-top: 5px;
        margin-bottom: 0;
    }
    .navbar-nav li.menu-item-has-children.button_header:hover>a:after {
        /*margin-top: 5px;*/
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M13 7L7 0.999999L1 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        margin-bottom: 5px;
    }
    .navbar-nav li a.blur {
        filter: blur(3px);
    }
    .navbar-nav li {
        margin: 0 20px;
        padding: 24px 10px;
        position: relative;
    }

    .navbar-nav li .sub-menu {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        padding: 20px 32px;
        min-width: 290px;
        text-align: left;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        align-items: flex-start;
    }
    .navbar-nav li.button_header .sub-menu {
        padding: 20px 24px;
        min-width: auto;
        width: 100%;
    }
    .navbar-nav li:hover .sub-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .navbar-nav li .sub-menu li {
        padding: 6px 0;
        margin: 0;
    }
    .navbar-nav li .sub-menu li a {
        font-family: 'Ilisarniq Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
        display: flex;
        align-items: flex-end;
        color: #737373;
        padding: 0;
        text-transform: none;
    }
    .navbar-nav li .sub-menu li a:hover {
        color: #000000;
    }

}

.navbar-nav li a.active {
    text-decoration: underline;
}

@media (max-width: 991px) {

    .navbar-nav li a.active {
        filter: blur(0px) !important;
        text-decoration: inherit;

    }
    header .navbar-nav .button_header>a {
        border: 1px solid #000000;
        color: black;
    }
    header .navbar-nav li.button_header {
        margin-left: 30px;
    }
}

.navbar-nav img {
    max-width: 227px;
    height: 36px;
    margin-bottom: 10px;
    cursor: pointer;
}

.navbar-expand-lg .navbar-nav {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.navbar-expand-lg .navbar-nav .nav {
    width: 100%;
}

.navbar {
    background-color: black;
}

@media (min-width: 992px) {
    .navbar {
        min-height: 100px;
    }
}

@media (min-width: 1281px) and (max-width: 1440px) {
    .navbar-nav li {
        margin: 0px 12px;
    }
    header .navbar-nav li.button_header {
        margin-left: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .navbar-nav li {
        margin: 0px 10px;
    }
    header .navbar-nav li.button_header {
        margin-left: 20px;
    }
}

@media (min-width: 481px) and (max-width: 991px) {
    .navbar-logo img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .navbar-nav a {
        font-family: 'Royal Crescent';
        font-size: 13px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .navbar-logo img {
        max-width: 100%;
        margin-bottom: 10px;
    }
}

@media (min-width: 320px) and (max-width: 991px) {

    .navbar {
        min-height: 0px !important;
        padding: 10px 0 0 0;
        justify-content: space-around;
    }

    .navbar-toggler {
        margin-bottom: 10px;
    }

    .navbar-collapse {
        background-color: white;
        padding: 30px 0 70px 0;
        max-height: calc(100vh - 61px);
        overflow-y: auto;
    }
    /*.navbar-nav li.menu-item-has-children>a {*/
    /*    pointer-events: none;*/
    /*}*/
    /*.navbar-nav li.menu-item-has-children:hover>a {*/
    /*    pointer-events: all;*/
    /*}*/
    .navbar-nav a:hover {

    }
    .navbar-nav a {
        color: black;
        font-size: 22px;
        line-height: 31px;
        margin: 10px;
    }
    body .breadcrumbs .separator {
        padding: 0 5px;
    }
    .navbar-nav li {
        justify-content: center;
    }

    .navbar-nav li a span {
        font-family: monospace;
        font-size: 26px;
    }
    .navbar-nav li .sub-menu li a {
        margin: 5px 0;
    }
}

/*HEADER end*/

/*CONTENT begin*/

.video_poster {
    height: 947px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video {
    position: relative;
    cursor: pointer;
}

video {
    height: 100vh;
    width: 100%;
}

.big_logo {
    position: absolute;
    bottom: -130px;
    left: 142px;
    max-width: 1232px;
    height: auto;
    z-index: 1;
}

.video_bottom_content {
    position: relative;
    background-color: white;
    color: black;
    /*width: 56%;*/
    float: right;
    min-height: 200px;
    padding-right: 335px;
    padding-top: 51px;
    z-index: 5;
    padding-left: 60px;
    font-family: 'ShreeDevanagari714';
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
a.video_bottom_btn {
    display: block;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 36px;
    background-color: black;
    font-family: 'Helvetica bold';
    color: white;
    margin-top: 30px;
    border: 1px solid black;
    transition: 0.5s;
}
.video_bottom_btn:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

@media (min-width: 1920px) {
    .video {
        margin-top: 60px;
        /* height: 845px;*/
        height: calc(100vh - 60px);
    }

    video {
        height: 1080px;
    }

}

@media (min-width: 2880px) and (max-width: 4096px) {
    .video,
    video {
        height: 2400px;
    }

}

@media (min-width: 2560px) and (max-width: 2880px) {
    .video,
    video {
        height: 1700px;
    }

}

@media (min-width: 1440px) and (max-width: 1680px) {
    .video,
    video {
        height: 945px;
    }

    .video {
        height: 100vh;
    }

}

@media (min-width: 1366px) and (max-width: 1440px) {
    .video,
    video {
        height: 815px;
    }

    .video {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }
}

@media (min-width: 1201px) and (max-width: 1440px) {
    .big_logo {
        position: absolute;
        bottom: -64px;
        left: 20px;
        max-width: 500px;
        height: auto;
        z-index: 1;
    }

    .big_logo img {
        width: 100%;
    }

    .video {

        height: 100vh;
    }

    .video_bottom_content {
        padding-right: 100px;
        padding-left: 100px;
        background-color: transparent;
        font-size: 18px;
        line-height: 28px;
        padding-top: 80px;
    }

}

@media (min-width: 992px) and (max-width: 1200px) {

    video {
        height: 670px;

    }

    .big_logo {
        position: absolute;
        bottom: -35px;
        left: 20px;
        max-width: 400px;
        height: auto;
        z-index: 1;
    }

    .big_logo img {
        width: 100%;
    }

    .video_bottom_content {
        padding-right: 100px;
        padding-left: 100px;
        background-color: transparent;
        font-size: 18px;
        line-height: 28px;
        padding-top: 80px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    video {
        height: 600px;
    }

    .big_logo {
        position: absolute;
        bottom: -35px;
        left: 20px;
        max-width: 400px;
        height: auto;
        z-index: 1;
    }

    .big_logo img {
        width: 100%;
    }

    .video_bottom_content {
        padding-right: 20px;
        padding-left: 20px;
        background-color: transparent;
        font-size: 18px;
        line-height: 28px;
        padding-top: 80px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    video {
        height: 425px;
        margin-top: 55px;
    }

    .big_logo {
        position: absolute;
        bottom: -35px;
        left: 20px;
        max-width: 260px;
        height: auto;
        z-index: 1;
    }

    .big_logo img {
        width: 100%;
    }

    .video_bottom_content {
        padding-right: 20px;
        padding-left: 20px;
        background-color: transparent;
        font-size: 16px;
        line-height: 28px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    video {
        height: 280px;
        margin-top: 55px;
    }

    .big_logo {
        position: absolute;
        bottom: -35px;
        left: 20px;
        max-width: 260px;
        height: auto;
        z-index: 1;
    }

    .big_logo img {
        width: 100%;
    }

    .video_bottom_content {
        padding-right: 20px;
        padding-left: 20px;
        background-color: transparent;
        font-size: 14px;
        line-height: 24px;
    }
}

/*formations*/
.formations {
    position: relative;
    overflow: visible !important;
    margin-top: 100px;
}

.formations_container {
    overflow: hidden;
}

.formations .img_abstract:nth-child(1) {
    /* top: 1950px;*/
    top: 1607px;
    z-index: 1;
}

.formations .img_abstract:nth-child(2) {
    top: 1450px;
    right: 0;
    left: auto;
    z-index: 1;
}

.formations .img_abstract:nth-child(3) {
    bottom: -150px;
    right: 0;
    left: auto;
    z-index: 1;
}

.formations_row {
    margin: 0 363px;
    position: relative;
    /*pointer-events: none;*/
    -ms-align-items: center;
    align-items: center;
}

.formations_row:nth-child(2) {
    margin-top: -170px;
}

.formations_row:nth-child(3) {
    margin-top: -170px;
}

.formations_row:nth-child(odd) {
    position: relative;
    display: flex;
    flex-direction: row;
}

.formations_row:nth-child(even) {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    margin-top: -170px;
}

.main_title {
    text-align: center;
    font-family: 'Object Sans';
    font-size: 51px;
    line-height: 64px;
    max-width: 1240px;
    margin: 0 auto;
}

.cardbox {
    height: 850px;
    width: 750px;
    position: relative;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.formations_row:nth-child(odd) .on_image_masc {
    height: 750px;
    width: 600px;
    top: 30px;
    position: absolute;
    left: -50px;
    z-index: 5;
    border: 100px solid transparent;

}

.formations_row:nth-child(even) .on_image_masc {
    height: 750px;
    width: 650px;
    top: 50px;
    position: absolute;
    right: 0;
    z-index: 5;
    border: 100px solid transparent;
}

.formations_row:nth-child(odd) .cardbox {
    margin-left: -100px;
}

.formations_row:nth-child(even) .cardbox {
    margin-right: -100px;
}

.tilt_img {
    position: relative;
    height: 630px;
    width: 506px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px;
    text-align: center;
    overflow: hidden;
    z-index: 10;
    /*cursor: none;*/
}

.formations_title {
    /*position: absolute;*/
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    right: 0;
    /* bottom: 0; */
    height: 25px;
    color: black;
    font-family: 'Royal Crescent';
    /*font-size: 54px;*/
    font-size: 36px;
    pointer-events: none;
    padding-top: 60px;
}

.formations_row:nth-child(odd) .formations_text {
    /*position: absolute;*/
    right: -50px;
    bottom: 50px;
    color: black;
    font-family: 'ShreeDevanagari714';
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    max-width: 750px;
    text-align: justify;
    padding: 80px;
    z-index: 50;
}

.formations_row:nth-child(even) .formations_text {
    /* position: absolute;*/
    left: -50px;
    bottom: 50px;
    color: black;
    font-family: 'ShreeDevanagari714';
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    max-width: 750px;
    text-align: justify;
    padding: 80px;
    z-index: 50;
}

.formations_row:last-child .formations_text {
    bottom: 10px;
}

.formations_title span {
    z-index: 11;
    position: relative
}

.formations_btn {
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    color: black;
    font-family: 'Object Sans';
    text-transform: uppercase;
    font-size: 18px;
    opacity: 1;
    display: none;
    transition: 0.5s;
    width: 200px;
    height: 22px;
    border-bottom: 1px solid black;
}

.formations_row:nth-child(odd) .formations_btn {
    right: 0;
    justify-content: flex-end;
}

.formations_row:nth-child(even) .formations_btn {
    left: 0;
    justify-content: flex-start;
}

.formations_row.active .formations_btn {
    opacity: 1;
}

.transf {
    transform: rotateY(0deg) rotateX(0deg) !important;
    transition: 0.5s;
}

@media (min-width: 1201px) and (max-width: 1440px) {
    .img_abstract {
        display: none;
    }

    .main_title {
        font-size: 45px;
        line-height: 54px;
        max-width: 991px;
    }

    .formations_row {
        margin: 0 20px;
        -ms-align-items: center;
        align-items: center;
    }

    .formations_row:nth-child(even) .cardbox {
        margin-right: 0;
    }

    .formations_row:nth-child(odd) .cardbox {
        margin-left: 0;
    }

    .formations_title {
        /*font-size: 40px;*/
        font-size: 30px;
        top: 40%;
        position: static;
        adding-top: 60px;
        margin-bottom: 20px;
    }

    .formations_row:nth-child(odd) .formations_text {
        left: 45%;
        bottom: 100px;
        font-size: 16px;
        line-height: 28px;
        max-width: 645px;
        padding: 40px;
        position: static;
    }

    .formations_row:nth-child(even) .formations_text {
        position: static;
        padding: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .img_abstract {
        display: none;
    }

    .main_title {
        font-size: 28px;
        line-height: 34px;
        max-width: 991px;
    }

    .cardbox {
        width: 600px;
    }

    .formations_row:nth-child(even) .cardbox {
        margin-right: 0;
    }

    .formations_row:nth-child(odd) .cardbox {
        margin-left: 0;
    }

    .formations_row {
        margin: 0 20px;
        -ms-align-items: center;
        align-items: center;
    }

    .formations_title {
        /*font-size: 40px;*/
        font-size: 30px;
        top: 40%;
        position: static;
        padding-top: 60px;
        margin-bottom: 20px;

    }

    .formations_row:nth-child(odd) .formations_text {
        left: 55%;
        bottom: 100px;
        font-size: 16px;
        line-height: 28px;
        max-width: 450px;
        padding: 40px;
        position: static;
    }

    .formations_row:nth-child(even) .formations_text {
        left: 0;
        bottom: 100px;
        bottom: 100px;
        font-size: 16px;
        line-height: 28px;
        max-width: 450px;
        padding: 40px;
        position: static;
    }
}

@media (min-width: 481px) and (max-width: 991px) {
    .img_abstract {
        display: none;
    }

    .main_title {
        font-size: 22px;
        line-height: 28px;
        max-width: 480px;
    }

    .formations {
        margin-top: 30px;
    }

    .formations_row {
        flex-direction: column !important;
        margin: 35px 0px;
        min-height: 400px;
    }

    .cardbox {
        height: 400px;
        width: 400px;
        margin: 0 auto !important;
        pointer-events: none;
    }

    .formations_title {
        top: 0%;
        left: 0;
        right: 0;
        position: relative;
        font-size: 22px;
        margin: 15px 0;
    }

    .formations_row:nth-child(odd) .formations_text {
        position: relative !important;
        font-size: 16px;
        line-height: 26px;
        max-width: 480px;
        margin: 0 auto;
        right: 0px;
        bottom: 0px;
        padding: 20px;
    }

    .formations_row:nth-child(even) .formations_text {
        position: relative !important;
        font-size: 14px;
        line-height: 24px;
        max-width: 480px;
        margin: 0 auto;
        left: 0px;
        bottom: 0px;
        padding: 20px;
    }

    .tilt_img {
        height: 400px;
        width: 400px;
    }

    .formations_row:nth-child(even) {
        margin-top: 0px;
    }

    .formations_row:nth-child(3) {
        margin-top: 0px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .img_abstract {
        display: none;
    }

    .formations {
        margin-top: 50px;
        padding: 0 20px;
    }

    .main_title {
        font-size: 18px;
        line-height: 24px;
        max-width: 480px;
    }

    .formations_row {
        flex-direction: column !important;
        margin: 35px 0px;
        min-height: 400px;
    }

    .formations_row:nth-child(odd) {
        flex-direction: column;
    }

    .formations_row:nth-child(even) {

        flex-direction: column;
    }

    .formations_row:nth-child(odd) .cardbox {
        margin-left: 0px;
    }

    .formations_row:nth-child(even) {
        position: relative;
        display: flex;
        flex-direction: row;
        margin-top: 0px;
    }

    .tilt_img {
        height: 300px;
        width: 280px;
    }

    .formations_title {
        top: 0%;
        left: 0;
        right: 0;
        position: relative;
        font-size: 18px;
        margin: 30px 0;
    }

    .cardbox {
        height: 300px;
        width: 280px;
        margin: 0 auto !important;
        pointer-events: none;
    }

    .formations_row:nth-child(odd) .formations_text {
        position: relative !important;
        font-size: 14px;
        line-height: 24px;
        max-width: 480px;
        right: 0px;
        bottom: 0px;
        padding: 0;
    }

    .formations_row:nth-child(even) .formations_text {
        position: relative !important;
        font-size: 14px;
        line-height: 24px;
        max-width: 480px;
        left: 0px;
        bottom: 0px;
        padding: 0;
    }

    .formations_row:nth-child(3) {
        margin-top: 0px;
    }

}

/*gallery_new*/
.formations_row:first-child {
    margin-bottom: 225px;
}

.gallery_new_title {
    padding: 60px 0;
    position: absolute;
    top: 900px;
    right: 0;
    left: 335px;
    font-family: 'Ilisarniq Regular';
    font-size: 36px;
    text-transform: uppercase;
}

.gallery_new {
    position: absolute;
    top: 1335px;

    right: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.gallery_new ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.gallery_new a {
    width: 14.28%;
    /*height: 160px;*/

    /* width: 12.5%;*/
    height: 160px;

}

.gallery_new a img {
    /*width: 14.1%;
    height: 160px;
    min-width: 260px;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statistic {
    font-family: 'Ilisarniq Regular';
    max-width: 1291px;
    margin: 80px auto 0;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}
.statistic .item {
    width: 33.33%;
    background: #4592AF;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-direction: column;
    color: white;
    padding: 32px;
    font-size: 18px;
    cursor: pointer;
    height: auto;
    transition: 0.5s;
}
.statistic .item p {
    margin: 0;
}
.statistic .item strong {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
}
.statistic .item:nth-child(2){
    background: #0F597B;
}
.statistic .item:nth-child(3){
    background: #173256;
}
.statistic .item:hover {
    background: black;
}
@media (min-width: 1441px) and (max-width: 1700px) {
    .formations_row {
        margin: 0 130px;

    }

    .gallery_new a img {
        /* width: 14%;
         height: auto;*/
        min-width: 1px;
    }

    .formations_row:first-child {
        /*margin-bottom: 550px;*/
        margin-bottom: 620px;
    }

    .img_abstract {
        display: none;
    }
}

@media (min-width: 1201px) and (max-width: 1440px) {

    .gallery_new a img {
        /*width: 14%;
        height: auto;*/
        min-width: 1px;
    }

    .gallery_new_title {
        margin: 0 auto;
        width: 100%;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .gallery_new {
        /* left: 30px;*/
    }

    .formations_row:first-child {
        /*  margin-bottom: 450px;*/
        margin-bottom: 620px;
    }
}

@media (min-width: 1021px) and (max-width: 1200px) {
    .formations_row:first-child {
        margin-bottom: 1650px;
    }

    .gallery_new a {
        height: auto;
    }
}

@media (min-width: 992px) and (max-width: 1020px) {
    .formations_row:first-child {
        /*margin-bottom: 1550px;*/
        margin-bottom: 1600px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .gallery_new a {
        width: 33.3%;
        height: 217px;
    }

    .gallery_new a img {
        /*width: 32%;
        height: auto;*/
        min-width: 1px;
    }

    .gallery_new_title {
        top: 765px;
        margin: 0 auto;
        width: 100%;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .gallery_new {
        top: 1300px;
        /* left: 30px;*/
    }
}

@media (min-width: 901px) and (max-width: 991px) {
    .formations_row:first-child {
        margin-bottom: 1400px;
    }

    .gallery_new a {
        width: 32%;
        height: 180px;
    }

    .gallery_new a img {
        /* width: 32%;
         height: auto;*/
        min-width: 1px;
    }

    .gallery_new_title {
        top: 765px;
        margin: 0 auto;
        width: 100%;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .gallery_new {
        top: 1350px;
        left: 30px;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .formations_row:first-child {
        margin-bottom: 1200px;
    }

    .gallery_new a {
        width: 32%;
        /* height: 180px;*/
    }

    .gallery_new a img {
        /*width: 32%;
        height: auto;*/
        min-width: 1px;
    }

    .gallery_new_title {
        top: 765px;
        margin: 0 auto;
        width: 100%;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .gallery_new {
        top: 1320px;
        left: 30px;
    }
}

@media (min-width: 681px) and (max-width: 767px) {
    .formations_row:first-child {
        margin-bottom: 1100px;
    }
}

@media (min-width: 601px) and (max-width: 680px) {
    .formations_row:first-child {
        margin-bottom: 930px;
    }
}

@media (min-width: 500px) and (max-width: 600px) {
    .formations_row:first-child {
        margin-bottom: 800px;
    }
}
@media (max-width: 768px) {
    .statistic {
        flex-direction: column;
    }
    .statistic .item {
        width: 100%;
        aspect-ratio: 1/1;
        max-height: 320px;
        padding: 10px;
    }
    .statistic .item strong {
        font-size: 28px;
    }
}
@media (min-width: 481px) and (max-width: 767px) {
    .gallery_new_title {
        top: 680px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .gallery_new {
        position: absolute;
        top: 1940px;
        right: 0;
        left: 20px;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .gallery_new a {
        width: 32%;
        height: 100px;
    }

    .gallery_new a img {
        /*width: 32%;
        height: auto;*/
        min-width: 1px;
    }

    .gallery_new_title {
        padding: 35px 0;
        top: 750px;
        right: auto;
        left: auto;
        font-size: 20px;
    }
}

@media (min-width: 401px) and (max-width: 480px) {

    .gallery_new {
        position: absolute;
        top: 1740px;
        right: 0;
        left: 0;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .gallery_new a {
        width: 33.3%;
        height: 90px;
    }

    .gallery_new a img {
        /*width: 32%;
        height: auto;*/
        min-width: 1px;
    }

    .gallery_new_title {
        padding: 35px 0;
        top: 650px;
        right: auto;
        left: auto;
        font-size: 20px;
    }
}

@media (min-width: 320px) and (max-width: 400px) {
    .formations_row:first-child {
        margin-bottom: 700px;
    }

    .gallery_new {
        position: absolute;
        top: 1744px;
        right: 0;
        left: 0;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .gallery_new a {
        width: 33.3%;
        height: 90px;

    }

    .gallery_new a img {
        /*  width: 32%;
          height: auto;*/
        min-width: 1px;
    }

    .gallery_new_title {
        padding: 35px 0;
        top: 700px;
        right: auto;
        left: auto;
        font-size: 20px;
    }
}

/*team*/
.team {
    position: relative;
}

.team .team_image {
    height: 856px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.team_content {
    position: absolute;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    left: 0;
    right: 0;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.team_title {
    font-family: 'Royal Crescent';
    font-size: 36px;
}

.team_text {
    font-family: 'Ilisarniq Regular';
    font-size: 18px;
    padding: 26px 0;
}

.team_btn {
    font-family: 'Ilisarniq Light';
    text-align: right;
    font-size: 18px;
    border-bottom: 1px solid white;
    text-transform: uppercase;
    max-width: 320px;
    margin: 0 auto;
}

.title_main {
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    line-height: 64px;
    max-width: 1240px;
    margin: 0 auto;
    font-family: 'Royal Crescent';
}

.title_main span {
    font-family: monospace;
}

@media (min-width: 1441px) and (max-width: 1650px) {
    .team .team_image {
        min-height: 700px;
        height: 100%;
    }
}

@media (min-width: 1201px) and (max-width: 1440px) {
    .team .team_image {
        min-height: 600px;
        height: 100%;
    }

    .team_text {
        font-size: 16px;
        padding: 15px 0;
    }

    .team_title {
        font-size: 28px;
    }

    .team_content {
        bottom: 25px;
        max-width: 700px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .team .team_image {
        min-height: 460px;
        height: 100%;
    }

    .team_text {
        font-size: 14px;
        padding: 15px 0;
    }

    .team_title {
        font-size: 28px;
    }

    .team_content {
        bottom: 15px;
        max-width: 600px;
    }
}

@media (min-width: 901px) and (max-width: 991px) {
    .team .team_image {
        min-height: 420px;
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .team .team_image {
        min-height: 350px;
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .team_content {
        position: relative;
        color: black;
        padding: 0 30px;
    }

    .team_title {
        font-size: 28px;
        color: white !important;
    }

    .team_text {
        font-size: 18px;
        padding: 50px 0 0 0;
        font-family: 'ShreeDevanagari714';
        font-weight: bold;
        line-height: 24px;
        text-align: justify;
    }
}

@media (min-width: 561px) and (max-width: 767px) {
    .team .team_image {
        min-height: 310px;
        height: 100%;
    }
}

@media (min-width: 481px) and (max-width: 560px) {
    .team .team_image {
        min-height: 230px;
        height: 100%;
    }
}

@media (min-width: 481px) and (max-width: 767px) {

    .team_content {
        position: relative;
        color: black;
        padding: 0 20px;
    }

    .team_title {
        font-size: 24px;
        color: white !important;
    }

    .team_text {
        font-size: 16px;
        padding: 40px 0 0 0;
        font-family: 'ShreeDevanagari714';
        font-weight: bold;
        line-height: 24px;
        text-align: justify;
    }
}

@media (min-width: 320px) and (max-width: 480px) {

    .team .team_image {
        min-height: 180px;
        height: 100%;
    }

    .team_content {
        position: relative;
        color: black;
        padding: 0 20px;
    }

    .team_title {
        font-size: 20px;
        color: white !important;
    }

    .team_text {
        font-size: 14px;
        font-family: 'ShreeDevanagari714';
        font-weight: bold;
        line-height: 24px;
        text-align: justify;
    }

}

/*instagram*/
.instagram .title_main {
    padding: 0px 0 40px 0;
}

.instagram_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.instagram .insta_img {
    width: 12.5%;
    height: 240px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) and (max-width: 1440px) {
    .instagram .insta_img {
        width: 25%;
        height: 240px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .instagram .insta_img {
        width: 33.3%;
        height: 240px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .instagram .insta_img {
        width: 50%;
        height: 240px;
    }
}

@media (min-width: 320px) and (max-width: 991px) {

    .instagram .insta_img {
        display: none;
    }

    .instagram .insta_img.block {
        display: block;
    }

    .instagram .title_main {
        padding: 0px 0 35px 0;
    }

}

/*doctors_group*/
.doctors {
    margin: 120px 0px;
    position: relative;
    overflow: inherit;
}

.img_abstract {
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
}

.img_abstract.t {
    top: 122px;
    left: 14px;
    height: 529px;
    width: 656px;
}

.img_abstract.o {
    bottom: 100px;
    right: 0px;
    /*height: 100%;*/
    height: 971px;
    width: 290px;
    z-index: -1;
}

.doctors_group {
    display: flex;
    flex-direction: row;
    padding: 40px 335px 0 335px;
    width: 100%;
}

.doctors_group .doctor_card {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: inherit;
    max-width: 290px;
    margin: 0 auto;
    z-index: 50;
    cursor: pointer;
}

.doctors_group .doctor_card .under_line {
    position: relative;
}

.doctors_group .doctor_card .plus {
    display: flex;
    justify-content: flex-end;
    bottom: 0px;
    right: 0;
    position: absolute;
    width: 35px;

}

.doctors_group .doctor_card .photo {
    /*height: 290px;*/
    height: 230px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 80%;

}

.doctors_group .doctor_card .title {
    font-family: 'Ilisarniq Regular';
    font-size: 24px;
    text-transform: uppercase;
    padding-top: 29px;
}

.doctors_group .doctor_card .sub_title {
    font-family: 'Ilisarniq Light';
    font-size: 16px;
    padding-bottom: 40px;
    font-weight: bold;
}

.doctors_group .under_line {
    border-bottom: 2px solid black;
}

.doctors_group .container_info .under_line {
    border-bottom: 2px solid black;
    width: 50%;
}

.doctors_group .doctor_card .text_info {
    font-family: 'Ilisarniq Light';
    font-size: 16px;
}

.doctors_group .doctor_card .text_info strong {
    font-weight: bold;
}

.doctors .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.doctors .modal-body {
    /*padding: 0rem;*/
    overflow: hidden;
}

.doctors .modal-dialog {
    max-width: 100% !important;
    margin: 1.75rem auto;
}

.doctors .modal-content {
    width: 100%;
    background-color: #fff;
    border: 0px solid rgba(0, 0, 0, .2);
    border-radius: 0rem;
}

.doctors .modal-content .text_info {
    font-family: 'Ilisarniq Light';
    font-size: 16px;
    padding-top: 30px;
}

.doctors .modal-content .sub_title {
    font-family: 'Ilisarniq Light';
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: bold;
}

.card_modal_doctor {
    padding: 50px 335px;
    display: flex;
    flex-direction: row;
}

.doctors .modal-content .title {
    font-family: 'Ilisarniq Regular';
    font-size: 24px;
    text-transform: uppercase;
    padding-top: 29px;
}

.doctors .modal-content .img_abstract.t {
    /*left: 0px;*/
}

.doctors .modal-content .photo {
    height: 400px;
    width: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 80px;
}

@media (min-width: 1200px) and (max-width: 1650px) {
    .card_modal_doctor {
        flex-direction: row !important;
    }
}

@media (min-width: 992px) and (max-width: 1650px) {
    .doctors {
        margin: 120px 0px;
    }

    .doctors_group {
        padding: 40px 20px;
    }

    .card_modal_doctor {
        padding: 50px 0;
        display: flex;
        flex-direction: column;
    }

    .doctors .modal {
        /*max-height: 100vh ;*/
        overflow-y: auto;
    }

    .doctors .modal-content .photo {
        height: 400px;
        width: 400px;
        margin: 0 auto;
    }

    .doctors .modal-content .title {
        font-family: 'Ilisarniq Regular';
        font-size: 18px;
        padding-top: 25px;
    }

    .doctors .modal-content .sub_title {
        font-size: 16px;
    }

    .doctors .modal-content .text_info {
        font-size: 14px;
        padding-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .doctors_group {
        padding: 20px 20px 0 20px;
        flex-direction: column;
        width: 100%;
    }

    .doctors_group .doctor_card {
        width: 100%;
        padding-bottom: 25px;
    }

    .doctors {
        margin: 50px 0px;
    }

    .doctors_group .doctor_card .title {
        font-size: 20px;
        padding-top: 25px;
    }

    .doctors_group .doctor_card .sub_title {
        font-size: 16px;
        padding-bottom: 35px;
    }

    .doctors_group .doctor_card .text_info {
        font-size: 16px;
    }

    .card_modal_doctor {
        padding: 0px;
        display: flex;
        flex-direction: column;
    }

    .doctors .modal {
        /*max-height: 100vh ;*/
        overflow-y: auto;
    }

    .doctors .modal-content .photo {
        height: 400px;
        width: 400px;
        margin: 0 auto;
    }

    .doctors .modal-content .title {
        font-family: 'Ilisarniq Regular';
        font-size: 18px;
        padding-top: 25px;
    }

    .doctors .modal-content .sub_title {
        font-size: 16px;
    }

    .doctors .modal-content .text_info {
        font-size: 14px;
        padding-top: 20px;
    }
}

@media (min-width: 320px) and (max-width: 767px) {

    .doctors_group {
        padding: 20px 20px 0 20px;
        flex-direction: column;
        width: 100%;
    }

    .doctors_group .doctor_card {
        width: 100%;
        padding-bottom: 25px;
    }

    .doctors {
        margin: 50px 0px;
    }

    .doctors_group .doctor_card .title {
        font-size: 18px;
        padding-top: 15px;
    }

    .doctors_group .doctor_card .sub_title {
        font-size: 14px;
        padding-bottom: 25px;
    }

    .doctors_group .doctor_card .text_info {
        font-size: 14px;
    }

    .card_modal_doctor {
        padding: 0px;
        display: flex;
        flex-direction: column;
    }

    .doctors .modal {
        /*max-height: 100vh ;*/
        overflow-y: auto;
    }

    .doctors .modal-content .photo {
        height: 300px;
        width: 300px;
        margin: 0 auto;
    }

    .doctors .modal-content .title {
        font-family: 'Ilisarniq Regular';
        font-size: 16px;
        padding-top: 15px;
    }

    .doctors .modal-content .sub_title {
        font-size: 14px;
    }

    .doctors .modal-content .text_info {
        font-size: 12px;
        padding-top: 10px;
    }
}

/*gallery*/

.gallery {

}

.gallery .img {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform .5s;
}

.zoom_big {
    height: 540px;
    width: 565px;
    overflow: hidden;
    padding: 0;
}

.big {
    height: 540px;
}

.zoom_medium {
    height: 270px;
    width: 565px;
    overflow: hidden;
    padding: 0;
}

.medium {
    height: 270px;
}

.zoom_small {
    height: 270px;
    width: 285px;
    overflow: hidden;
    padding: 0;
}

.small {
    height: 270px;
}

.gallery .img:hover {
    transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
}

@media (min-width: 320px) and (max-width: 2560px) {
    .gallery_first_col,
    .gallery_second_col {
        padding: 0;
    }
}

@media (min-width: 1201px) and (max-width: 1440px) {
    .small,
    .medium {
        height: 200px !important;
    }

    .zoom_big,
    .zoom_big {
        height: 400px !important;
    }

    .zoom_medium,
    .zoom_small {
        height: 200px !important;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .zoom_small {
        width: 400px;
    }

    .zoom_medium {
        width: 590px;
    }

    .gallery {
        /*max-width: 950px;*/
        overflow: hidden;
    }

    .small,
    .medium {
        height: 180px !important;
    }

    .zoom_big,
    .zoom_big {
        height: 360px !important;
    }

    .zoom_medium,
    .zoom_small {
        height: 180px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .zoom_big,
    .zoom_medium,
    .zoom_small {
        min-width: 500px !important;
        height: 160px !important;
    }

    .zoom_medium.last {
        display: none;
    }

    .small,
    .big,
    .medium {
        height: 160px !important;
    }

}

@media (min-width: 481px) and (max-width: 991px) {
    .zoom_medium.last {
        display: none;
    }

    .zoom_big,
    .zoom_medium,
    .zoom_small {
        height: 220px;
        min-width: 285px;
        width: 100%;
    }

    .small,
    .big,
    .medium {
        height: 220px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .zoom_medium.last {
        display: none;
    }

    /*.colm_small {*/
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: nowrap;*/
    /*}*/
    .zoom_big,
    .zoom_medium,
    .zoom_small {
        height: 100px;
        margin: 2px;
        width: 100%;
    }

    .small,
    .big,
    .medium {
        height: 100px;
    }
}

/*partners*/

.partners {
    padding: 120px 335px;

}

.partners_block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 76px;
}

.partner {
    width: 20%;
    text-align: center;
}

.partner .partner_logo img {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    margin: 0 auto;
}

.partner .partner_logo img:first-child,
.partner:hover .partner_logo img:last-child {
    opacity: 1;
}

.partner:hover .partner_logo img:first-child,
.partner .partner_logo img:last-child {
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.partner .partner_logo {
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner .partner_title {
    font-family: 'Ilisarniq Regular';
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
}

/*paralax*/

.image_paralax {
    height: 560px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media (min-width: 1441px) and (max-width: 1700px) {
    .partners {
        padding: 120px 20px;
    }

    .image_paralax {
        /* height: 750px;*/
        height: 500px;
    }

}

@media (hover: none) {
    .image_paralax {
        background-attachment: unset;
    }
}


@media (min-width: 768px) and (max-width: 1440px) {
    .image_paralax {
        /* height: 550px;*/
        height: 350px;
    }

    .partners_block {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 35px;
    }

    .partners {
        padding: 100px 20px;
    }

    .partner {
        width: 33.3%;
        text-align: center;
        margin: 15px auto;
    }

    .partner .partner_title {
        font-size: 24px;
        line-height: 28px;
    }

    .partner .partner_logo img {
        max-width: 200px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .image_paralax {
        height: 300px;
        background-attachment: inherit;
    }

    .partners {
        padding: 50px 5px;
    }

    .partners_block {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 35px;
    }

    .partner {
        width: 50%;
        text-align: center;
        margin: 15px auto;
    }

    .partner .partner_title {
        font-size: 20px;
        line-height: 24px;
    }

    .partner .partner_logo img {
        max-width: 150px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .image_paralax {
        height: 220px;
        background-attachment: inherit;
    }

    .partners {
        padding: 50px 5px;

    }

    .partners_block {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 25px;
    }

    .partner {
        width: 50%;
        text-align: center;
        margin: 10px auto;
    }

    .partner .partner_title {
        font-size: 18px;
        line-height: 20px;
    }

    .partner .partner_logo img {
        max-width: 100px;
    }
}

/*access*/

.access {
    padding: 120px 0;
}

#map {
    height: 442px;
    width: 100%;
}

.access {
    position: relative;
}

.access .row {
    padding-top: 40px;
}

.access .contactT {
    right: 0;
    padding-top: 20px;
}

.access .contactO {
    left: -155px;
    top: 270px;
}

.access .contact_box {
    max-width: 450px;
}

.access .contact_content {
    text-align: center;
}

.access .contact_box .contact_content .title {
    font-family: 'Ilisarniq Light';
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.access .contact_box .contact_content .text {
    font-family: 'Ilisarniq Light';
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 68px;
}

.access .contact_box .form-group {
    margin-bottom: 9px;
}

.access .contact_box .form-control {
    display: block;
    width: 100%;
    height: 31px;
    padding: 16px 0 16px 17px;
    font-family: 'Ilisarniq Light';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid transparent;
    border-bottom: 1px solid #010101;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

span.wpcf7-not-valid-tip,
div.wpcf7-mail-sent-ok,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    font-family: 'Ilisarniq Light';
    font-size: 14px;
    font-weight: 400;
    border: 0px solid #f7e700 !important;
}

.access .contact_box textarea {
    min-height: 32px;
    margin-top: 8px;
    padding: 0px 0 0px 17px !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #828282;
    font-size: 14px;
    font-family: 'Ilisarniq Light';
}

::-moz-placeholder { /* Firefox 19+ */
    color: #828282;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #828282;
}

:-moz-placeholder { /* Firefox 18- */
    color: #828282;
}

.contact_form .contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 36px;
    background-color: black;
    font-family: 'Helvetica bold';
    color: white;
    outline: none !important;
    margin-top: 71px;
    border-radius: 0;
    border: 1px solid black;
    transition: .5s;
}
.contact_form .contact_btn:hover {
    color: black;
    background-color: white;
}



.form-control:focus {
    box-shadow: 0 0 0 0rem transparent;
}

button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

@media (min-width: 320px) and (max-width: 767px) {

    .access {
        padding: 50px 0;
    }

    .access .row {
        padding-top: 15px;
    }

    .access .contact_box .contact_content .text {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 40px;
    }

    .access .contact_box {
        max-width: 450px;
        padding: 20px;
    }

}

/*CONTENT end*/

/*FOOTER*/

footer {
    margin-top: 100px;
    height: 360px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .links {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    font-family: 'Ilisarniq Light';
    padding-top: 46px;
}

footer .links a:hover {
    text-decoration: underline;
}

@media (min-width: 320px) and (max-width: 767px) {

    footer {
        margin-top: 20px;
        height: 200px;
    }

    footer img {
        width: 50%;
        margin: 0 auto;
        display: flex;
        margin: 0 auto;
    }

    footer .links {
        padding-top: 30px;
    }

}

/*AGENDA*/
.agenda {
    margin-top: 100px;
}

#page-wrap {
    /*padding: 0 335px;*/
    position: relative;
    width: 1250px;
    margin: 0 auto;
    padding-top: 35px;
}

.nav_years {
    list-style: none;
    position: relative;
    padding: 2px 2px 0;
    overflow: hidden;
    top: 0px;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 64px;
}

.nav_years li {
    position: relative;
    float: left;
    margin: 0 2px -1px 0;
}

.nav_years li a {
    float: left;
    text-decoration: none;
    padding: 0px;
    color: #999999;
    font-family: 'Ilisarniq Regular';
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    margin: 0 30px;
}

.nav_years li:last-child a {
    margin-right: 0 !important;
}

.nav_years a.active {
    color: black;
    border-bottom: 2px solid black;
}

/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
    padding: 0px;
    position: relative;
    min-height: 200px;
    /*height: 587px;*/
    margin-bottom: 60px;
}

.ui-tabs .ui-tabs-hide {
    display: none !important;
}

.next-tab {
    bottom: 0;
    right: 0;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
}

.prev-tab {
    bottom: 0;
    left: 0;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
}

.calendar {
    position: relative;
}

.static_block {
    background: #000;
    border-radius: 0;
    padding: 0;
    position: absolute;
    /*left: 335px;*/
    left: 0px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 260px;
    width: 625px;
    text-decoration: none;
    z-index: 1;

    height: 290px;
}

.static_block .title {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    /*max-width: 280px;*/
    margin-bottom: 20px;
}

.static_block .sub_title {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
}

.ui-tabs-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: #173256;
}

.ui-tabs-panel .event {
    width: 25%;
    height: 360px;
    cursor: pointer;
}

.ui-tabs-panel .event.hide_mouse {

    pointer-events: none;
    cursor: none;
}

.ui-tabs-panel .event:first-child {
    margin-left: 50%;

}

.ui-tabs-panel .event:nth-child(3),
.ui-tabs-panel .event:nth-child(4) {
    margin-top: -70px;
}

.ui-tabs-panel .event:nth-child(2),
.ui-tabs-panel .event:nth-child(4) {
    background-color: #173256;;
}

.ui-tabs-panel .event:nth-child(1),
.ui-tabs-panel .event:nth-child(3) {
    background-color: #4592AF;
}

.ui-tabs-panel a.btnNext {
    background: #0F597B;
    color: white;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    border-radius: 0;
    padding: 0;
    /* position: absolute; */
    position: relative;
    left: auto;
    /* left: 50%; */
    top: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 261px;
    width: 625px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
}

.ui-tabs-panel a.btnNext:hover {
    transform: scale(1.05);
    transition: 0.5s;
}

.ui-tabs-panel .event:nth-child(5) {
    width: 50%;
    height: 260px;
    background-color: #0F597B;

    height: 290px;
}

.ui-tabs-panel .event:nth-child(7),
.ui-tabs-panel .event:nth-child(9),
.ui-tabs-panel .event:nth-child(10),
.ui-tabs-panel .event:nth-child(12),
.ui-tabs-panel .event:nth-child(15) {
    background-color: #4592AF;
}
.ui-tabs-panel .event:nth-child(12),
.ui-tabs-panel .event:nth-child(14) {
    background-color: #0F597B;
}

.ui-tabs-panel.five a.btnNext {
    background: #173256;
    padding-right: 44px;
    bottom: -60px;
    justify-content: flex-end;
    height: 60px;
    width: 1250px;

}

.ui-tabs-panel a:hover {
    color: white !important;
}

.ui-tabs-panel a.btnNext img {
    margin-left: 60px;
    height: 36px;
    width: 22px;
}

.ui-tabs-panel.six .event:nth-child(6) {
    width: 50%;
    height: 260px;
    background-color: #0F597B;;
}

.ui-tabs-panel.six a.btnNext {
    background: #173256;
}

.ui-tabs-panel.seven .event:nth-child(5),
.ui-tabs-panel.seven .event:nth-child(6) {
    width: 25%;
    height: 358px;
}

.ui-tabs-panel.seven .event:nth-child(5) {
    background: #0F597B;
}

.ui-tabs-panel.seven .event:nth-child(6) {
    background: #4592AF;
}

.ui-tabs-panel.seven .event:nth-child(7) {
    width: 50%;
    height: 260px;
    background-color: #0F597B;
    margin-top: -98px;
}

.ui-tabs-panel.seven a.mover {
    background: #173256;
    height: 162px;

}

.ui-tabs-panel .event {
    display: flex;
}

.ui-tabs-panel .event .event-hover-box {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 20px 20px 35px;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    transition: 0.5s;
}

.ui-tabs-panel .event .event-nohover-box {
    color: black;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 20px 20px 35px;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
}

.ui-tabs-panel .event:hover .event-hover-box {
    transform: scale(1.05);
    transition: 0.5s;
}

.ui-tabs-panel .event .date {
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ui-tabs-panel .event .date .year {
    font-size: 18px;
    line-height: 29px;
}

.ui-tabs-panel .event .place {
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
}

.ui-tabs-panel .event .title {
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    padding: 15px 0;
}
.ui-tabs-panel .event .btn-link-my {
    font-size: 18px;
    line-height: 22px;
    margin: 20px 0 0 0;
    transition: 0.5s;
    color: #fff;
}

.ui-tabs-panel .event:hover .btn-link-my {
    opacity: 0.75;
    transition: 0.5s;
}

.ui-tabs-panel .event .description {
    font-size: 18px;
    line-height: 22px;
}

.ui-tabs-panel .event:nth-child(1) .event_content {
    display: flex;
    flex-direction: column;
}

.ui-tabs-panel.five .event:nth-child(1) .event_content_section {
    width: 100%;
}

.ui-tabs-panel.five .event:nth-child(5) .event_content,
.ui-tabs-panel.six .event:nth-child(5) .event_content,
.ui-tabs-panel.six .event:nth-child(6) .event_content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.ui-tabs-panel.five .event:nth-child(5) .event_content_section,
.ui-tabs-panel.six .event:nth-child(5) .event_content_section,
.ui-tabs-panel.six .event:nth-child(6) .event_content_section {
    width: 50%;
}

/*seven*/
.ui-tabs-panel.seven .event:nth-child(7) .event_content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.ui-tabs-panel.seven .event:nth-child(7) .event_content_section {
    width: 50%;
}

/*eight*/

.ui-tabs-panel.eight .event:nth-child(5) {
    width: 50%;
    height: 260px;
}

.ui-tabs-panel.eight .event:nth-child(5) .event_content {
    display: flex;
    flex-direction: row;
}

.ui-tabs-panel.eight .event:nth-child(5) .event_content_section {
    width: 50%;
}

.ui-tabs-panel.eight .event:nth-child(7) {
    background-color: #0F597B;
}

.ui-tabs-panel.eight .event:nth-child(8) {
    width: 50%;
    height: 260px;
    background-color: #4592AF;
}

.ui-tabs-panel.eight a.btnNext {
    height: 100px;
    background-color: #173256;
}

/*nine*/
.ui-tabs-panel.nine .event:nth-child(5) {
    width: 25%;
    height: 358px;
    background-color: #0F597B;
}

.ui-tabs-panel.nine .event:nth-child(6) {
    width: 25%;
    height: 358px;
    background-color: #4592AF;
}

.ui-tabs-panel.nine .event:nth-child(7) {
    width: 50%;
    height: 260px;
    background-color: #0F597B;
    margin-top: -100px;
}

.ui-tabs-panel.nine .event:nth-child(9) {
    width: 50%;
    height: 260px;
    background-color: #4592AF;
    margin-top: -200px;
}

.ui-tabs-panel.nine .event:nth-child(7) .event_content,
.ui-tabs-panel.nine .event:nth-child(9) .event_content {
    display: flex;
    flex-direction: row;
}

.ui-tabs-panel.nine .event:nth-child(7) .event_content_section,
.ui-tabs-panel.nine .event:nth-child(9) .event_content_section {
    width: 50%;
}

.ui-tabs-panel.nine .event {
    justify-content: left;
}

.ui-tabs-panel.nine a.btnNext {
    height: 358px;
    background-color: #173256;
    width: 25%;
    padding: 0px 10px 60px 0px;
}

.ui-tabs-panel.nine a.btnNext img {
    margin-left: 30px;
    height: 36px;
    width: 22px;
}

.btnNext {
    position: absolute;
    bottom: 0;
    right: 0;
}

.tab-content > .active {
    min-height: 620px;
    display: flex;
    margin-bottom: 60px;
}

.tab-content .tab-pane:last-child a.btnNext {
    display: none;
}

@media (min-width: 992px) and (max-width: 1290px) {

    .title_main {
        font-size: 26px;
        line-height: 34px;
    }

    #page-wrap {
        position: relative;
        width: 100%;
        max-width: 991px;
        margin: 0 auto;
        padding-top: 50px;
    }

    .tab-content > .active {
        margin-bottom: 30px;
    }

    .static_block {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    .static_block .title {
        font-size: 18px;
        line-height: 24px;
        max-width: 280px;
        margin-bottom: 15px;
    }

    .static_block .sub_title {
        font-size: 16px;
        line-height: 20px;
    }

    .ui-tabs-panel {
        flex-direction: row;
    }

    .ui-tabs-panel .event:first-child {
        margin-left: 0%;
    }

    .ui-tabs-panel .event:nth-child(1),
    .ui-tabs-panel .event:nth-child(4),
    .ui-tabs-panel.nine .event:nth-child(8) {
        background: #0F597B;
    }

    .ui-tabs-panel.nine .event:nth-child(7) {
        background-color: #173256;
    }

    .ui-tabs-panel a.btnNext,
    .ui-tabs-panel.nine a.btnNext {
        font-size: 14px;
        line-height: 20px;
        height: 100%;
        width: 100%;
        position: relative;
        left: 0;
        padding: 20px;
    }

    .ui-tabs-panel.five a.btnNext {
        bottom: 0px;
        height: 60px;
        width: 100%;
    }

    .ui-tabs-panel .event {
        width: 33.3%;
        height: 280px;
        padding: 20px !important;
        justify-content: left;
    }

    .ui-tabs-panel.nine .event:nth-child(5),
    .ui-tabs-panel.nine .event:nth-child(6),
    .ui-tabs-panel.nine .event:nth-child(9),
    .ui-tabs-panel .event:nth-child(5),
    .ui-tabs-panel.six .event:nth-child(6),
    .ui-tabs-panel.seven .event:nth-child(5),
    .ui-tabs-panel.seven .event:nth-child(6),
    .ui-tabs-panel.seven .event:nth-child(7),
    .ui-tabs-panel.eight .event:nth-child(5),
    .ui-tabs-panel.eight .event:nth-child(8),
    .ui-tabs-panel.nine .event:nth-child(7) {
        width: 33.3%;
        height: 280px;
    }

    .ui-tabs-panel.nine .event:nth-child(7) .event_content,
    .ui-tabs-panel.nine .event:nth-child(9) .event_content,
    .ui-tabs-panel.five .event:nth-child(5) .event_content,
    .ui-tabs-panel.six .event:nth-child(5) .event_content,
    .ui-tabs-panel.six .event:nth-child(6) .event_content,
    .ui-tabs-panel.seven .event:nth-child(7) .event_content,
    .ui-tabs-panel.eight .event:nth-child(5) .event_content {
        flex-direction: column;
    }

    .ui-tabs-panel.nine .event:nth-child(7) .event_content_section,
    .ui-tabs-panel.nine .event:nth-child(9) .event_content_section,
    .ui-tabs-panel.five .event:nth-child(5) .event_content_section,
    .ui-tabs-panel.six .event:nth-child(5) .event_content_section,
    .ui-tabs-panel.six .event:nth-child(6) .event_content_section,
    .ui-tabs-panel.seven .event:nth-child(7) .event_content_section,
    .ui-tabs-panel.eight .event:nth-child(5) .event_content_section {
        width: 100%;
    }

    .ui-tabs-panel.nine .event:nth-child(9),
    .ui-tabs-panel.seven .event:nth-child(7),
    .ui-tabs-panel.nine .event:nth-child(7),
    .ui-tabs-panel .event:nth-child(3),
    .ui-tabs-panel .event:nth-child(4) {
        margin-top: 0px;
    }

    .ui-tabs-panel .event .title {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 0;
    }

    .ui-tabs-panel .event .place {
        font-size: 16px;
        line-height: 20px;
    }

    .ui-tabs-panel .event .description {
        font-size: 14px;
        line-height: 18px;
    }

    .ui-tabs-panel .event .date {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }

}

@media (min-width: 481px) and (max-width: 991px) {

    .agenda {
        margin-top: 0px;
    }

    .title_main {
        font-size: 26px;
        line-height: 34px;
    }

    .nav_years {
        justify-content: flex-end;
        margin-bottom: 24px;
        padding-right: 20px;
    }

    .nav_years li a {
        padding: 0px;
        font-size: 18px;
        line-height: 24px;
        margin: 0 15px;
    }

    #page-wrap {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding-top: 35px;
    }

    .tab-content > .active {
        margin-bottom: 30px;
    }

    .static_block {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    .static_block .title {
        font-size: 18px;
        line-height: 24px;
        max-width: 280px;
        margin-bottom: 15px;
    }

    .static_block .sub_title {
        font-size: 16px;
        line-height: 20px;
    }

    .ui-tabs-panel {
        flex-direction: row;
    }

    .ui-tabs-panel .event:first-child {
        margin-left: 0%;
    }

    .ui-tabs-panel .event:nth-child(1),
    .ui-tabs-panel .event:nth-child(4),
    .ui-tabs-panel.nine .event:nth-child(8) {
        background: #0F597B;
    }

    .ui-tabs-panel.nine .event:nth-child(7) {
        background-color: #173256;
    }

    .ui-tabs-panel a.btnNext,
    .ui-tabs-panel.nine a.btnNext {
        font-size: 14px;
        line-height: 20px;
        height: 100%;
        width: 100%;
        left: 0;
        position: relative;
        padding: 20px;
    }

    .ui-tabs-panel.five a.btnNext {
        bottom: 0px;
        height: 60px;
        width: 100%;
    }

    .ui-tabs-panel .event {
        width: 50%;
        height: 280px;
        padding: 20px !important;
        justify-content: left;
    }

    .ui-tabs-panel.nine .event:nth-child(5),
    .ui-tabs-panel.nine .event:nth-child(6),
    .ui-tabs-panel.nine .event:nth-child(9),
    .ui-tabs-panel .event:nth-child(5),
    .ui-tabs-panel.six .event:nth-child(6),
    .ui-tabs-panel.seven .event:nth-child(5),
    .ui-tabs-panel.seven .event:nth-child(6),
    .ui-tabs-panel.seven .event:nth-child(7),
    .ui-tabs-panel.eight .event:nth-child(5),
    .ui-tabs-panel.eight .event:nth-child(8),
    .ui-tabs-panel.nine .event:nth-child(7) {
        width: 50%;
        height: 280px;
    }

    .ui-tabs-panel.nine .event:nth-child(7) .event_content,
    .ui-tabs-panel.nine .event:nth-child(9) .event_content,
    .ui-tabs-panel.five .event:nth-child(5) .event_content,
    .ui-tabs-panel.six .event:nth-child(5) .event_content,
    .ui-tabs-panel.six .event:nth-child(6) .event_content,
    .ui-tabs-panel.seven .event:nth-child(7) .event_content,
    .ui-tabs-panel.eight .event:nth-child(5) .event_content {
        flex-direction: column;
    }

    .ui-tabs-panel.nine .event:nth-child(7) .event_content_section,
    .ui-tabs-panel.nine .event:nth-child(9) .event_content_section,
    .ui-tabs-panel.five .event:nth-child(5) .event_content_section,
    .ui-tabs-panel.six .event:nth-child(5) .event_content_section,
    .ui-tabs-panel.six .event:nth-child(6) .event_content_section,
    .ui-tabs-panel.seven .event:nth-child(7) .event_content_section,
    .ui-tabs-panel.eight .event:nth-child(5) .event_content_section {
        width: 100%;
    }

    .ui-tabs-panel.nine .event:nth-child(9),
    .ui-tabs-panel.seven .event:nth-child(7),
    .ui-tabs-panel.nine .event:nth-child(7),
    .ui-tabs-panel .event:nth-child(3),
    .ui-tabs-panel .event:nth-child(4) {
        margin-top: 0px;
    }

    .ui-tabs-panel .event .title {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 0;
    }

    .ui-tabs-panel .event .place {
        font-size: 16px;
        line-height: 20px;
    }

    .ui-tabs-panel .event .description {
        font-size: 14px;
        line-height: 18px;
    }

    .ui-tabs-panel .event .date {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }

}

@media (min-width: 320px) and (max-width: 480px) {

    .agenda {
        margin-top: 0px;
    }

    .title_main {
        font-size: 26px;
        line-height: 34px;
    }

    .nav_years {
        justify-content: flex-start;
        margin-bottom: 24px;
    }

    .instagram .insta_img {
        width: 50%;
        height: 140px;
    }

    .nav_years li a {
        padding: 0px;
        font-size: 18px;
        line-height: 24px;
        margin: 0 15px;
    }

    #page-wrap {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding-top: 35px;
    }

    .tab-content > .active {
        margin-bottom: 30px;
    }

    .static_block {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    .static_block .title {
        font-size: 18px;
        line-height: 24px;
        max-width: 280px;
        margin-bottom: 15px;
    }

    .static_block .sub_title {
        font-size: 16px;
        line-height: 20px;
    }

    .ui-tabs-panel {
        flex-direction: column;
    }

    .ui-tabs-panel .event:first-child {
        margin-left: 0%;
    }

    .ui-tabs-panel a.btnNext,
    .ui-tabs-panel.nine a.btnNext {
        font-size: 14px;
        line-height: 20px;
        height: 100%;
        width: 100%;
        position: relative;
        padding: 20px;
    }

    .ui-tabs-panel.five a.btnNext {
        bottom: 0px;
        height: 60px;
        width: 100%;
    }

    .ui-tabs-panel .event {
        width: 100%;
        height: 100%;
        padding: 20px !important;
        justify-content: left;
    }

    .ui-tabs-panel.nine .event:nth-child(5),
    .ui-tabs-panel.nine .event:nth-child(6),
    .ui-tabs-panel.nine .event:nth-child(9),
    .ui-tabs-panel .event:nth-child(5),
    .ui-tabs-panel.six .event:nth-child(6),
    .ui-tabs-panel.seven .event:nth-child(5),
    .ui-tabs-panel.seven .event:nth-child(6),
    .ui-tabs-panel.seven .event:nth-child(7),
    .ui-tabs-panel.eight .event:nth-child(5),
    .ui-tabs-panel.eight .event:nth-child(8),
    .ui-tabs-panel.nine .event:nth-child(7) {
        width: 100%;
        height: 100%;
    }

    .ui-tabs-panel.nine .event:nth-child(7) .event_content,
    .ui-tabs-panel.nine .event:nth-child(9) .event_content,
    .ui-tabs-panel.five .event:nth-child(5) .event_content,
    .ui-tabs-panel.six .event:nth-child(5) .event_content,
    .ui-tabs-panel.six .event:nth-child(6) .event_content,
    .ui-tabs-panel.seven .event:nth-child(7) .event_content,
    .ui-tabs-panel.eight .event:nth-child(5) .event_content {
        flex-direction: column;
    }

    .ui-tabs-panel.nine .event:nth-child(7) .event_content_section,
    .ui-tabs-panel.nine .event:nth-child(9) .event_content_section,
    .ui-tabs-panel.five .event:nth-child(5) .event_content_section,
    .ui-tabs-panel.six .event:nth-child(5) .event_content_section,
    .ui-tabs-panel.six .event:nth-child(6) .event_content_section,
    .ui-tabs-panel.seven .event:nth-child(7) .event_content_section,
    .ui-tabs-panel.eight .event:nth-child(5) .event_content_section {
        width: 100%;
    }

    .ui-tabs-panel.nine .event:nth-child(9),
    .ui-tabs-panel.seven .event:nth-child(7),
    .ui-tabs-panel.nine .event:nth-child(7),
    .ui-tabs-panel .event:nth-child(3),
    .ui-tabs-panel .event:nth-child(4) {
        margin-top: 0px;
    }

    .ui-tabs-panel .event .title {
        font-size: 18px;
        line-height: 22px;
        padding: 10px 0;
    }

    .ui-tabs-panel .event .place {
        font-size: 16px;
        line-height: 20px;
    }

    .ui-tabs-panel .event .date {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .ui-tabs-panel .event .description {
        font-size: 14px;
        line-height: 18px;
    }
}

/*singlepage*/

.single_post {
    max-width: 930px;
    margin: 0 auto;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    position: relative;
}

.single_post .single_title {
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    text-transform: uppercase;
    color: #010101;
}

.single_post .single_content {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    padding: 60px 0 100px 0;
}
.single_post .single_content h2 {
    font-size: 30px;
    line-height: 38px;
}
.single_post .single_content h3 {
    font-size: 26px;
    line-height: 32px;
}
.single_post .single_content h4 {
    font-size: 24px;
    line-height: 30px;
}
.single_post .single_content h5 {
    font-size: 22px;
    line-height: 28px;
}
.single_top_img {
    height: 400px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    margin: 100px 0;
    position: relative;
}
.event_single_top_img {
    height: 400px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    margin: 100px 0 40px;
    position: relative;
}

.single_content .box_linlk {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 100px;

}

.single_content .btn_linlk {
    width: 290px;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    border-bottom: 1px solid black;
}

.single_content .go_agenda {
    text-align: left;
}

.single_content .retourn {
    text-align: right;
    cursor: pointer;
}

.event-main .container-event {
    width: 1400px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
}

.event-main .event-info {
    width: 930px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.event-main .title-event {
    font-size: 48px;
    line-height: 67px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'Ilisarniq Light';
    margin: 0;
}
.event-main .block-label {
    display: flex;
    flex-direction: column;
    min-width: 290px;
    padding: 12px 20px;
    margin-bottom: 38px;
    background-color: #000000;
}
.event-main .block-label p {
    font-family: 'Ilisarniq Regular';
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}
.event-main .dates {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}
.event-main .dates .left {
    width: 100%;
}
.event-main .dates .left .dates-top {
    margin-bottom: 18px;
}
.event-main .dates .left .dates-top .date-txt {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.event-main .dates .left .dates-top .date-txt span {
    font-weight: normal;
    text-transform: uppercase;
    color: #000000;

}

.event-main .dates .left .dates-items {
    display: flex;
    flex-direction: column;
}

.event-main .dates .left .dates-items .dates-item {
    cursor: pointer;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 0.5s;
}
.event-main .dates .left .dates-items .dates-item .box-p {
    display: flex;
    align-items: center;
}

.event-main .dates .left .dates-items .dates-item>img {
    margin-right: 13px;
    width: 20px;
    min-width: 20px;
    height: 20px;
}
.event-main .dates .left .dates-items .dates-item:hover {
    transform: scale(1.03);
    transition: 0.5s;
}

.event-main .dates .left .dates-items .dates-item.active .box-p {
    /*flex-direction: column;*/
}
.event-main .dates .left .dates-items .dates-item.active {
    align-items: flex-start;
    margin-bottom: 18px;
}
.event-main .dates .left .dates-items .dates-item.active.disabled {
    color: #BDBDBD;
}
.event-main .dates .left .dates-items .dates-item.active>img {
    display: none;
}

.event-main .dates .left .dates-items .dates-item.active:hover {
    transform: scale(1);
}

.event-main .dates .left .dates-items .dates-item.active span,
.event-main .dates .left .dates-items .dates-item.active p span {
    font-size: 40px;
    line-height: 48px;
}
.event-main .dates .left .dates-items .dates-item.active p span:nth-child(4) {
    /*display: none;*/
}
.event-main .dates .left .dates-items .dates-item.active>span:nth-child(2) {
    font-size: 40px;
    line-height: 48px;
}

.event-main .dates .left .dates-items .dates-item:last-child {
    margin-bottom: 0;
}

.event-main .dates .tarif {
    width: 160px;
    margin-left: 20px;
}

.event-main .dates .tarif.disabled {
    display: none;
}

.event-main .label-box {
    position: relative;
    height: 40px;
}
.event-main .label-box .label-txt {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
}
.event-main .label-box .label-txt.active {
    display: block;
}

.event-main .label {
    font-family: 'Ilisarniq Regular';
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 8px 0;
}
.event-main .label-txt {
    font-family: 'Ilisarniq Regular';
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}
.event-main .count-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.event-main .count-wrapper .left {
    width: 50%;
}
.event-main .count-wrapper .right {
    width: 50%;
}

.event-main .count-wrapper .left.disabled,
.event-main .count-wrapper .right.disabled {
    display: none;
}

.event-main .cont {
    margin-bottom: 54px;
    width: 100%;
}
.event-main .cont iframe {
    width: 145%;
}
.event-main .cont .alignleft {
    float: left;
    margin-top: 20px;
    margin-right: 20px;
}

.event-main .cont h2.title-r {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 31px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 8px 0 !important;
}

.event-main .cont strong {
    font-family: 'Ilisarniq Regular';
}
.event-main .cont h3 {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 27px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 8px 0 !important;
}
.event-main .cont p {
    font-family: 'Ilisarniq Light';
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin: 0 0 15px 0 !important;
}

.event-main .cont p:last-child {
    margin-bottom: 0;
}

.event-main .cont ul {
    margin: 0;
    padding: 0 0 0 13px;
    list-style-type: '•';
}
.event-main .cont ul li {
    font-family: 'Ilisarniq Light';
    font-size: 18px;
    line-height: 31px;
    color: #000000;
    padding-left: 7px;
}

.event-main .cont ul li::before {
    content: '';
}

.event-gallery {
    margin-bottom: 170px;
}
.event-gallery .container-event {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.event-gallery h2.title-r {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 31px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 8px 0 !important;
}

.event-gallery .btn-box-y,
.event-main .btn-box-y {
    position: relative;
    width: 450px;
    max-width: 100%;
    height: 55px;
}

.event-gallery .btn,
.event-main .btn {
    width: 450px;
    max-width: 100%;
    border-radius: 0;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    height: 55px;
    background-color: black;
    font-family: 'Ilisarniq Regular';
    color: white;
    margin-top: 147px;
    border: 1px solid black;
    transition: 0.5s;
    box-shadow: none;
}

.event-gallery .btn {
    margin-top: 0;
}
.event-gallery .btn:hover,
.event-main .btn:hover {
    box-shadow: none;
    background-color: white;
    color: black;
    border: 1px solid black;
}

.event-gallery .btn:focus,
.event-main .btn:focus {
    outline: none;
    box-shadow: none;
}
.event-gallery .btn.display-none,
.event-main .btn.display-none,
.event-gallery .btn.d-n,
.event-main .btn.d-n {
    /*display: none;*/
}
.event-gallerySwiper {
    position: relative;
    margin-bottom: 70px;
}
.event-gallerySwiper::before {
    content: '';
    background-color: #fff;
    right: 100%;
    width: 50vw;
    height: 100%;
    position: absolute;
    z-index: 5;
}

.event-gallerySwiper .swiper-button-next {
    position: static;
    width: 59px;
    height: 59px;
    border-radius: 50%;
    margin-top: 40px;
    border: 1px solid #000;
}
.event-gallerySwiper .swiper-button-next::after {
    content: '';
    background-image: url('../img/arrow-right-new.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 28px;
    height: 4px;
}
.event-gallerySwiper .swiper-slide {}
.event-gallerySwiper .swiper-slide img {
    width: 100%;
    height: 332px;
    object-fit: cover;
    object-position: center;
}

.map {
    position: relative;
    width: 100%;
    height: 400px;
}

.single-events {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
}

.single-events footer {
    margin-top: 0px !important;
}

.single-events .event_date_box {
    position: absolute;
    top: 70px;
    left: 335px;

}

.single-events .date {
    font-size: 48px;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 28px;
    margin-bottom: 8px;
}

.single-events .date .year {
    font-size: 28px;
}

.single-events .place {
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    padding: 28px 0;
}

.single-events .title {
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    max-width: 200px;
}

.single-events hr {
    border-bottom: 1px solid #000000;
    margin: 100px 0 60px 0;

}

.single-events .text {
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;

}

.single-events .text i {
    display: none;
    text-transform: none;
    line-height: 1;
}

.single-events .title_event {
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    padding: 35px 0;
}

.single-events .single_post {
    max-width: 930px;
    margin-right: 335px;
}

.single-events .doctors_events {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.single-events .doctors_title {
    font-size: 36px;
    line-height: 43px;
    text-transform: uppercase;
    color: #000000;
    margin-top: 60px;
}

.single-events .doctor_title {
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    font-weight: bold;
}

.single-events .doctor_sub_title {
    font-size: 14px;
    line-height: 16px;
    /*text-transform: lowercase;*/
    max-width: 180px;
}

.single-events .doctor_info {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    margin-top: 30px;
}

.single-events .photo {
    height: 230px;
    width: 230px;
    margin: 45px 0 30px 0;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}
.event-gallery .btn.display-none.bottom {
    position: static;
    text-transform: uppercase;
}
.event-gallery .btn-box-y.bottom {
    height: auto;
}
.single-events .doctor_card {
    max-width: 230px;
    margin-right: 90px;
}

.single-events .calendar_row {
    display: flex;
    flex-direction: row;
    width: 100%;
    /*align-items: center;*/
    padding-bottom: 15px;
}

.single-events .time {
    min-width: 125px;
    margin-right: 55px;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    /*align-items: center;*/
}

/*p {*/
/*    margin: 0 !important;*/
/*    margin-block-start: 0em !important;*/
/*    margin-block-end: 0em !important;*/
/*    margin-inline-start: 0px;*/
/*    margin-inline-end: 0px;*/
/*}*/

.single-events .event_text {
    font-weight: 300;
    font-size: 18px;
    line-height: 29px;
    display: flex;
    flex-direction: column;
}

.single-events .event_text strong {
    font-weight: bold;
    /*margin-left: 5px;*/
}

.single-events .event_text ul {
    margin-left: 30px;
}

.single-events .info_title {
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    font-weight: bold;
}

.single-events .info_text {
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    margin-top: 35px;
}

.box_pdf {
    position: absolute;
    top: 20px;
    max-width: 250px;
    left: -310px;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
}

.box_pdf .pdf {
    padding-top: 35px;
    display: flex;
    align-items: center;
}

.box_pdf .pdf img {
    margin-right: 10px;
}

@media (min-width: 1201px) and (max-width: 1650px) {
    .single_top_img {
        height: 400px;
        margin: 60px 0 20px 0;
        overflow: hidden;
    }

    .single-events .single_post {
        margin-right: auto;
        padding: 0 20px;
    }

    .single-events .event_date_box {
        left: 170px;
    }

    .box_pdf {
        position: absolute;
        max-width: 250px;
        left: auto;
        top: -300px;
        right: 20px;
    }
}

@media (min-width: 767px) and (max-width: 1200px) {
    .single_top_img {
        height: 340px;
        margin: 70px 0 20px 0;
        overflow: hidden;
    }

    .single-events .event_date_box {
        left: 65px;
        top: 40px;
    }

    .single-events .single_post {
        margin-right: auto;
        padding: 0 20px;
    }

    .single_post .single_title {
        font-size: 40px;
        line-height: 50px;
        margin-top: 20px;
    }

    .single_post .single_content {
        font-size: 16px;
        line-height: 24px;
        padding: 30px 0 50px 0;
    }

    .box_pdf {
        position: absolute;
        max-width: 250px;
        left: auto;
        top: -250px;
        right: 20px;
    }

}

@media (min-width: 320px) and (max-width: 767px) {
    .single_top_img {
        height: 165px;
        margin: 60px 0 20px 0;
        overflow: hidden;
    }

    .single-events .event_date_box {
        position: relative;
        top: 30px;
        left: 20px;
    }

    .single-events .date {
        font-size: 35px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .cycle_events .item .checkbox {
        margin-right: 0;
    }
    .single-events .date .small-btn {
        align-self: flex-end;
    }

    .single-events .place {
        font-size: 14px;
        line-height: 18px;
        padding: 10px 0;
    }

    .single-events .date .year {
        font-size: 24px;
    }

    .single-events .title {
        font-size: 18px;
        line-height: 22px;
    }

    .single-events .single_post {
        max-width: 100%;
        margin-right: 20px;
    }

    .single_post .single_title {
        font-size: 35px;
        line-height: 40px;
        margin-top: 20px;
    }

    .single_post .single_content {
        font-size: 14px;
        line-height: 22px;
        padding: 30px 10px 50px 10px;
    }

    .single-events .title_event {
        font-size: 18px;
        line-height: 22px;
    }

    .single-events .text {
        font-size: 14px;
        line-height: 22px;
    }

    .single-events .calendar_row {
        flex-direction: column;
    }

    .single-events .event_text {
        font-size: 14px;
        line-height: 24px;
        flex-direction: column;
    }

    .single-events .time {
        font-size: 20px;
        line-height: 26px;
    }

    .single-events .doctors_events {
        flex-direction: column;
    }

    .single-events .doctor_card {
        max-width: 300px;
        margin: 0 auto;
    }

    .single-events .photo {
        margin: 15px auto;
    }

    .single-events .doctor_info {
        margin-top: 20px;
        font-size: 14px;
        line-height: 17px;
    }

    .single-events .doctors_title {
        font-size: 22px;
        line-height: 30px;
        margin-top: 20px;
    }

    .single-events .info_title {
        font-size: 18px;
        line-height: 22px;
    }

    .single-events .info_text {
        font-size: 14px;
        line-height: 18px;
        margin-top: 20px;
    }

    .map {
        height: 200px;
    }

    .box_pdf {
        position: relative;
        max-width: 250px;
        left: 20px;
        top: 0px;
        font-size: 12px;
    }
}

#popap-law-script {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 150px;
    display: none;
    height: 100vh;
    background: rgba(255, 255, 255, .8);
    z-index: 10000;
    transition: .4s;
    top: 0;

}

#popap-law-script.cookie-hide {
    top: -100%;
}

.popap_body {
    position: absolute;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    padding: 20px;
    background: #fff;
    border: 2px solid black;

}

.popap_body__info {
    padding: 5px 0;
    font-family: 'ShreeDevanagari714';
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.popap_body__info span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.popap_title {
    font-family: 'Object Sans';
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    /* font-size: 36px;*/
}

#popap__ok {
    font-family: 'Helvetica bold';
    text-transform: uppercase;
    display: inline-block;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    background-color: #000;
    text-align: center;
    border: 1px solid #000;
    color: #ffffff;
    padding: 5px 30px;
    margin: 10px 0 0;
    cursor: pointer;
    width: 80%;
    max-width: 450px;

}

#popap-law-script > div {
    display: none;
}

@media (min-width: 320px) and (max-width: 767px) {
    .popap_title {
        font-size: 23px;
    }
}

#inscriptions {
    margin: 200px 0 20px;
}

.container-inscriptions {
    width: 1400px;
    max-width: calc(100% - 40px);
    display: flex;
    margin: 0 auto;
}
.container-inscriptions .sub-title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #000000;
    margin-top: 15px;
}
.container-inscriptions h1 {
    font-family: 'Royal Crescent';
    font-weight: normal;
    font-size: 48px;
    line-height: 67px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}
.container-inscriptions .reservation {
    width: 100%;
    display: flex;
}
.container-inscriptions .reservation .inscription {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.container-inscriptions .reservation .inscription .renseignez {

}
.container-inscriptions .reservation .inscription .renseignez .item_insc {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc.none_active .wrap_date {
    pointer-events: none;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc.none_active .checkmark {
    opacity: 0;

}
.container-inscriptions .reservation .inscription .renseignez .item_insc.none_active input:checked + .checkmark {
    opacity: 1;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc:last-child {
    margin-bottom: 0;
}

.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc {
    width: 100%;
}

.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc {
    display: flex;
    flex-direction: column;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .name_inc {
    font-family: 'Ilisarniq Regular';
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 16px 0;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc:not(.select-year) .after_item_insc .wrap_date {
    /*pointer-events: none;*/
}
.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date {
    display: flex;
    align-items: center;
    min-height: 28px;
    margin-top: 18px;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date:first-child {
    margin-top: 0;
}

.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date.disabled-date-item {
    color: #777777;
    justify-content: space-between;
}

.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date.disabled-date-item .checkbox {
    display: none;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date.disabled-date-item {
    padding-left: 32px;
}
.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date span {
    font-family: 'Ilisarniq Light';
    font-size: 18px;
    line-height: 18px;
    /*text-transform: capitalize;*/
}
.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date:last-child {
    margin-bottom: 0;
}

.container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc {}

.container-inscriptions .reservation .inscription .renseignez .item_insc .item_price {
    font-family: 'Ilisarniq Regular';
    font-size: 24px;
    line-height: 29px;
    text-align: right;
    text-transform: uppercase;
    color: #000000;
    width: 105px;
    white-space: nowrap;
}
.container-inscriptions .box-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 450px;
    margin-top: 100px;
}
.container-inscriptions .box-form .title-form {
    font-family: 'Ilisarniq Regular';
    font-size: 26px;
    line-height: 31px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 30px 0;
}
.container-inscriptions .box-form .input-box {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.container-inscriptions .box-form .input-box label {
    position: absolute;
    font-family: 'Ilisarniq Light';
    top: 5px;
    width: calc(100% - 20px);
    left: 20px;
    transition: all .5s;
    pointer-events: none;
    font-size: 14px;
    line-height: 16px;
    margin: 0;
    font-weight: 400;
    color: #828282;
}

.container-inscriptions .box-form .input-box label:hover {
    color: #000;
}

.container-inscriptions .box-form .input-box input {
    font-family: 'Ilisarniq Light';
    outline: none;
    border: 0;
    color: #000000;
    text-indent: 20px;
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #000000;
}
.container-inscriptions .box-form .input-box .error {
    color: rgb(202, 78, 1);
    font-family: "Ilisarniq Light";
    display: none;
}
.container-inscriptions .box-form .input-box input:focus {
    outline: none;
}
.container-inscriptions .box-form .input-box input.not-valid + .error {
    display: block;
}
.container-inscriptions .box-form .input-box.focus label {
    color: #000000;
    left: 0;
    transform: translateY(-18px);
    font-size: 12px;
}

.container-inscriptions .box-form .row-input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container-inscriptions .box-form .row-input .input-box {
    width: calc(50% - 37px);
}
.container-inscriptions .box-form .title-payment {
    margin-bottom: 18px;
    margin-top: 35px;
}
.container-inscriptions .box-form .payment-checkbox {
    margin-bottom: 24px;
}
/*.container-inscriptions .box-form .place-order {*/
/*    margin-bottom: 35px;*/
/*}*/
.container-inscriptions .reservation .inscription .reserv .btn,
.container-inscriptions .box-form .btn {
    box-shadow: none!important;
    width: 450px;
    max-width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    text-transform: uppercase;
    background-color: black;
    font-family: 'Ilisarniq Regular';
    color: white;
    margin-top: 40px;
    border: 1px solid black;
    transition: 0.5s;
}



.container-inscriptions .reservation .inscription .reserv .btn {
    margin-top: 0;
    width: 100%;
}

.container-inscriptions .reservation .inscription .reserv .btn:hover,
.container-inscriptions .box-form .btn:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.container-inscriptions .reservation .inscription .reserv {
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.container-inscriptions .reservation .inscription .reserv .weapper_fixed,
.container-inscriptions .reservation .inscription .reserv .wrapper-res {
    width: 100%;
}
.container-inscriptions .reservation .inscription .reserv .title {
    width: 100%;
    font-family: 'Ilisarniq Regular';
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 33px 16px;
    color: #FFFFFF;
    background-color: #000000;
}
.container-inscriptions .reservation .inscription .reserv .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: space-between; */
    background-color: #101010;
    padding: 25px 33px 39px;
    color: #fff;
    user-select: none;
}
.container-inscriptions .reservation .inscription .reserv .item .title-rez {
    font-family: 'Ilisarniq Regular';
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}
.container-inscriptions .reservation .inscription .reserv .item .date-rez {
    font-family: 'Ilisarniq Light';
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0 0 23px 0 !important;
    text-transform: capitalize;
}
.container-inscriptions .reservation .inscription .reserv .item .quantity-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.container-inscriptions .reservation .inscription .reserv .item .quantity-wrapper .btn-quantity {
    font-family: 'Ilisarniq Light';
    cursor: pointer;
}
.container-inscriptions .reservation .inscription .reserv .item .quantity-wrapper .product_numpers {
    font-family: 'Ilisarniq Light';
    text-align: center;
    user-select: none;
    pointer-events: none;
    width: 20px;
    height: 20px;
    background-color: #101010;
    color: #FFFFFF;
    border: none;
}
.container-inscriptions .reservation .inscription .reserv .item .quantity-wrapper p {
    font-family: 'Ilisarniq Light';
}

.container-inscriptions .reservation .inscription .reserv .row-total {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1C1C1C;
    padding: 32px 33px 26px;
}
.container-inscriptions .reservation .inscription .reserv .row-total .day,
.container-inscriptions .reservation .inscription .reserv .row-total .total-price {
    font-size: 18px;
    line-height: 22px;
    font-family: 'Ilisarniq Regular';
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}
.container-inscriptions .reservation .inscription .reserv .row-total .total-price {
    text-align: right;
}
.container-inscriptions .reservation .inscription .reserv {}
.container-inscriptions .reservation .inscription .reserv {}

.weapper_fixed {
    transition: all .5s linear 0s;
    position: sticky;
    top: 20%;
}
.weapper_fixed.fixed {
    /*top: 28.5%;*/
    /*max-width: 450px;*/
    /*position: fixed;*/
    /*transition: all .5s linear 0s;*/
}
.weapper_fixed.fixed.bottom {
    /*bottom: 0;*/
    /*transition: all .5s linear 0s;*/
    /*top: auto;*/
    /*position: absolute;*/
}

.box-form .checkbox,
.item_insc .checkbox {}

.box-form .checkbox,
.item_insc .checkbox {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 20px;
    height: 20px;
    margin: 0 12px 0 0;
}

/* Hide the browser's default checkbox */
.box-form .checkbox input,
.item_insc .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.box-form .checkmark,
.item_insc .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    border: none;
    background-color: #E5E5E5;
    width: 20px;
    height: 20px;
    outline: 1px solid;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* On mouse-over, add a grey background color */
.box-form .checkbox:hover input ~ .checkmark,
.item_insc .checkbox:hover input ~ .checkmark {
    background-color: #000;
}

/* When the checkbox is checked, add a blue background */
.box-form .checkbox input:checked ~ .checkmark,
.item_insc .checkbox input:checked ~ .checkmark {
    background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.box-form .checkmark:after,
.item_insc .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.box-form .checkbox input:checked ~ .checkmark:after,
.item_insc .checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.box-form .checkbox .checkmark:after,
.item_insc .checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox .checkbox-span {
    padding-left: 35px;
    font-size: 22px;
    line-height: 22px;
    color: #000000;
    font-family: 'Ilisarniq Light';
    font-weight: 400;
    display: flex;
    align-items: center;
}

.place-order .checkbox {
    width: 100%;
    height: auto;
}

.terms.checkbox .checkmark {
    width: 14px;
    height: 14px;
}
.terms.checkbox .checkmark::after {
    left: 4px;
    top: 2px;
    height: 8px;
    width: 5px;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);

}
.terms.checkbox .checkbox-span {
    padding-left: 35px;
    margin: 0;
    font-family: 'Ilisarniq Light';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #828282;
}

.terms.checkbox input:checked ~ .checkbox-span {
    color: #000000;
}

.payment-page {
    display: flex;
    align-items: center;
    margin: 200px 0 100px;
    min-height: calc(100vh - 660px);
}

.payment-page .container-payment-page {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1400px;
    max-width: 100%;
    padding: 0 20px;
}
.payment-page .container-payment-page img {}
.payment-page .container-payment-page h1{
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 34px;
    text-align: center;
    color: #000;
    margin: 10px 0;
    font-family: 'Ilisarniq Regular';
}
.payment-page .container-payment-page h1.error {
    color: #E04E5E;
}
.payment-page .container-payment-page h1.valide {}
.payment-page .container-payment-page p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-family: 'Ilisarniq Light';
    color: #1D1D1B;
    width: 100%;
    margin: 0 0 15px 0;
}
.payment-page .container-payment-page a {}

.payment-page .container-payment-page a {
    margin-top: 26px;
    width: 250px;
    max-width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    background-color: black;
    font-family: 'Ilisarniq Regular';
    color: white;
    margin-top: 30px;
    border: 1px solid black;
    transition: 0.5s;
}

.payment-page .container-payment-page a:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

@media (max-width: 1200px) {
    .image_paralax {
        background-attachment: inherit;
    }
}
@media (max-width: 1400px) {
    .container-inscriptions .reservation .inscription .renseignez {
        width: calc(100% - 490px);
    }
}
@media (max-width: 992px) {
    .container-inscriptions .reservation .inscription {
        flex-direction: column-reverse;
    }
    .container-inscriptions .reservation .inscription .reserv {
        margin-bottom: 25px;
    }
    .container-inscriptions .reservation .inscription .reserv,
    .container-inscriptions .reservation .inscription .renseignez {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .event-gallerySwiper .swiper-slide img {
        height: auto;
    }
    .payment-page {
        margin: 80px 0;
        min-height: calc(100vh - 360px);
    }
}

.popup-wrapper {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all .3s linear 0s;
}

.popup-wrapper.active {
    visibility: visible;
    overflow: visible;
    opacity: 1;
    transition: all .3s linear 0s;
}

.popup-wrapper .popup-box {
    background-color: #fff;
    width: 40%;
    height: 100%;
    padding: 0 9.2%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: all .3s linear 0s;
}
.popup-wrapper.active .popup-box {
    transform: translateX(0);
    transition: all .3s linear 0s;
}

.popup-wrapper .popup-box .close {
    margin-bottom: 3vh;
}
.popup-wrapper .popup-box .form-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}
.popup-wrapper .popup-box .form-box .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 7vh;
}
.popup-wrapper .popup-box .form-box .top h3 {
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 31px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.popup-wrapper .popup-box .form-box .top p {
    margin: 0 0 15px 0 !important;
    font-family: 'Ilisarniq Regular';
    font-size: 20px;
    line-height: 26px;
    color: #000000;
}
.popup-wrapper .popup-box .form-box .top p:last-child {
    margin-bottom: 0 !important;
}
.popup-wrapper .popup-box .form-box .wpcf7 {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;

}
.popup-wrapper .popup-box .form-box .wpcf7 {

}

.popup-wrapper .popup-box .form-box .wpcf7 .input-box {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.popup-wrapper .popup-box .form-box .wpcf7 .input-box label {
    position: absolute;
    font-family: 'Ilisarniq Light';
    top: 5px;
    width: calc(100% - 20px);
    left: 20px;
    transition: all .5s;
    pointer-events: none;
    font-size: 14px;
    line-height: 16px;
    margin: 0;
    font-weight: 400;
    color: #828282;
    z-index: 2;
}

.popup-wrapper .popup-box .form-box .wpcf7 .input-box label:hover {
    color: #000;
}

.popup-wrapper .popup-box .form-box .wpcf7 .input-box .wpcf7-not-valid-tip {
    position: absolute;
    font-family: 'Ilisarniq Light';
    bottom: -15px;
    left: 0;
    font-size: 10px;
}
.popup-wrapper .popup-box .form-box .wpcf7 .input-box .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    height: 35px;
}
.popup-wrapper .popup-box .form-box .wpcf7 .input-box input {
    font-family: 'Ilisarniq Light';
    outline: none;
    border: 0;
    color: #000000;
    text-indent: 20px;
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #000000;
}

.popup-wrapper .popup-box .form-box .wpcf7 .input-box input:focus {
    outline: none;
}

.popup-wrapper .popup-box .form-box .wpcf7 .input-box.focus label {
    color: #000000;
    left: 0;
    transform: translateY(-18px);
    font-size: 12px;
}


.popup-wrapper .popup-box .form-box #name_event {
    display: none;
}
.popup-wrapper .popup-box .form-box .wpcf7 .wpcf7-submit {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    background-color: black;
    font-family: 'Ilisarniq Regular';
    color: white;
    margin-top: 30px;
    border: 1px solid black;
    transition: 0.5s;
    font-size: 16px;
    text-transform: uppercase;
}
.popup-wrapper .popup-box .form-box .wpcf7 .wpcf7-response-output {
    margin: 0;
    padding: 10px 5px;
}

.popup-wrapper .popup-box .form-box .wpcf7 .wpcf7-submit:hover {
    background-color: #ffffff;
    color: #000000;
    transition: 0.5s;
}

section.formations_agenda {
    max-width: 1290px;
    padding: 0 20px;
    margin: 0 auto 120px auto;
    padding-top: 120px;
}

section.formations_agenda h2 {
    text-align: left;
    max-width: none;
}

section.formations_agenda .wrapper-formations {
    display: flex;
    flex-wrap: wrap;
    margin: 26px -14px 0;
    justify-content: center;
}

section.formations_agenda .wrapper-formations .wrapper-item {
    width: 50%;
    padding: 14px;
    min-width: 360px;
}
section.formations_agenda .wrapper-formations .item {
    position: relative;
    min-height: 170px;
}
section.formations_agenda .wrapper-formations .item:after {
    content: '';
    width: 100%;
    left: 0;
    top: 0;
    position: relative;
    display: block;
    z-index: -1;
    padding-bottom: 28.5%;
}
section.formations_agenda .wrapper-formations .item>div {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: auto 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
}
section.formations_agenda .wrapper-formations .item>.image {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .5s;
}
section.formations_agenda .wrapper-formations .item:hover>.image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
section.formations_agenda .wrapper-formations .item .info-wrap {
    background: rgba(0, 0, 0, 0.4);
    font-family: 'Ilisarniq Regular';
    font-size: 24px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: .5s;
}
section.formations_agenda .wrapper-formations .item .info-wrap .title,
section.formations_agenda .wrapper-formations .item .info-wrap .price {
    color: #FFFFFF;
    margin: 0 24px;
}
section.formations_agenda .wrapper-formations .item .info-wrap .title {
    padding-bottom: 24px;
}
section.formations_agenda .wrapper-formations .item .info-wrap .price {
    padding-bottom: 20px;
    padding-top: 8px;
}
section.formations_agenda .wrapper-formations .item .info-wrap a {
    background: transparent;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    transition: .5s;
    overflow: hidden;
    max-width: 230px;
}
section.formations_agenda .wrapper-formations .item .info-wrap a:hover {
    background: #ffffff;
    color: #000000;
}
section.formations_agenda .wrapper-formations .item:hover .info-wrap {

}
section.formations_agenda .wrapper-formations .item:hover .info-wrap a {
    height: 51px;
    border: 1px solid #ffffff;
    margin: 0 24px 24px 24px;
    max-width: 230px;
}
section.formations_agenda .wrapper-formations .item:hover .info-wrap .title {
    padding-bottom: 15px;
}
.inscription-cycle h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'Ilisarniq Regular';
    margin-top: 40px;
}
.inscription-cycle h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #000000;
    margin-top: 10px;
    font-family: 'Ilisarniq Regular';
}
.inscription-cycle p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    margin-top: 26px;
    font-family: 'Ilisarniq Regular';
}
.cycle_post {
    width: 100%;
    max-width: 1290px;
    margin: 100px auto;
    padding: 0 20px;
}
.cycle_post .wrapper-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.cycle_post .wrapper-content .button_cycle {
    max-width: 290px;
    color: #ffffff;
    margin-top: 0;
}
.cycle_post .wrapper-content .button_cycle.new-button_cycle {
    margin-top: 40px;
}
.cycle_events .item .wrap_date .checkmark {
    display: none;
}
.cycle_post h1 {
    font-family: 'Ilisarniq Light';
    font-weight: 400;
    font-size: 51px;
    line-height: 71px;
    text-transform: uppercase;
    color: #000000;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    font-family: 'Ilisarniq Light';
    margin: 16px 0 44px;
    flex-wrap: wrap;
}
.breadcrumbs span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
}
.breadcrumbs .separator {
    padding: 0 16px;
}
.breadcrumbs .separator.grey {
    color: #737373;
}
.breadcrumbs a {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #737373;
}

.cycle_content   {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    align-items: center;
    color: #000000;
}
.cycle_content h2 {
    font-family: 'Ilisarniq Light';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 36px;
}
.cycle_events .item .wrapper-flex {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #999999;
}
.cycle_events .item .wrap_date {
    min-width: 320px;
    padding-right: 30px;
}
.cycle_events .item .title-r {
    font-family: 'Ilisarniq Regular';
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: .5em;
}
.cycle_events .item .wrap_date .title-r {
    margin-bottom: 1em;
}
.cycle_events .item .cont {
    margin-bottom: 32px;
}
.cycle_events .item .cont ul {
    padding-left: 27px;
}
.cycle_events .item .content-formation {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    align-items: center;
    color: #000000;
}
.cycle_events .item .checkmark {
    top: 2px;
}
.cycle_post .cycle_events .item .checkbox {
    padding-left: 0;
}
.cycle_post .cycle_events .item .checkbox input:disabled ~ .text {
    color: #000000;
}
.cycle_events .item .checkbox {
    padding-left: 35px;
    width: auto;
    height: auto;
    font-family: 'Ilisarniq Light';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #010101;
}
.events-template-default .cycle_events .item .checkbox input:disabled + .checkmark {
    opacity: 0;
}
.cycle_events .item .checkbox input {
    width: 20px;
    height: 20px;
    scroll-margin-top: 170px;
}
.cycle_events .item .checkbox input:disabled ~ .text {
    color: #737373;
}

.title_forma {
    font-family: 'Ilisarniq Light';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 12px;
    margin-top: 40px;
}
.button_header a {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 16px 49px;
    border: 1px solid #FFFFFF;
}
.button_header:hover>a {
    color: #000000;
    background: #ffffff;
}
.navbar-nav li.button_header {
    margin-left: 60px;
    padding-left: 0;
    padding-right: 0;
}
.wrapper-button {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    margin-top: 60px;
}
.button_cycle {
    font-family: 'Ilisarniq Light';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #000000;
    border: 1px solid #FFFFFF;
    padding: 16px 49px;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    transition: .5s;
    cursor: pointer;
}
.button_cycle.white {
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #000000;
}
.button_cycle:hover {
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #000000;
}
.button_cycle.white:hover {
    color: #FFFFFF;
    background: #000000;
}
.banner-cycle {
    background-size: cover;
	margin-top: 120px;
}
.banner-cycle .wrapper-banner {
    max-width: 1290px;
    padding: 0 20px;
    margin: 120px auto 0;
    display: flex;
}
.banner-cycle .wrapper-banner .banner-img {
    width: 31.8%;
    background-size: cover;
}
.banner-cycle .wrapper-banner .banner-content {
    width: 68.2%;
    background: #000000;
    padding: 60px;
}
.banner-cycle .wrapper-banner .banner-content .title_main {
    color: #FFFFFF;
    line-height: 50px;
    text-align: left;
    margin-bottom: 60px;
    font-size: 36px;
    font-family: 'Ilisarniq Light';
}
.banner-cycle .wrapper-banner .banner-content .sub-title {
    font-family: 'Ilisarniq Light';
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 24px;
    max-width: 500px;
}
.banner-cycle .wrapper-banner .banner-content .wrapper-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
.banner-cycle .wrapper-banner .banner-content .wrapper-links .links {
    display: flex;
    flex-direction: column;
}
.banner-cycle .wrapper-banner .banner-content .wrapper-links .links a {
    font-family: 'Ilisarniq Light';
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    padding-left: 30px;
    margin-bottom: 4px;
    position: relative;
}
.banner-cycle .wrapper-banner .banner-content .wrapper-links .links a:after {
    content: '';
    position: absolute;
    left: 14px;
    top: 15px;
    display: block;
    width: 4px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 50%;
}
.banner-cycle .wrapper-banner .banner-content .wrapper-links .button {
    font-family: 'Ilisarniq Light';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #000000;
    border: 1px solid #FFFFFF;
    padding: 16px 49px;
    margin-top: 24px;
}
.banner-cycle .wrapper-banner .banner-content .wrapper-links .button:hover {
    background: #ffffff;
    color: #000000;
}
.small-btn {
    display: flex;
    align-items: center;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    color: black;
    transition: .5s;
    border: 1px solid black;
    padding: 3px 7px 5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    min-width: 161px;
    flex-shrink: 0;
}
.page-template-page-inscription-cycle .small-btn {
    margin-left: 13px;
}
.small-btn-new {
    display: flex;
    align-items: center;
    font-family: 'Ilisarniq Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    color: black !important;
    transition: .5s;
    border: 1px solid black !important;
    padding: 3px 7px 5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    min-width: 161px;
    flex-shrink: 0;
}
.page-template-page-inscription-cycle .small-btn-new {
    margin-left: 13px;
}
.small-btn svg {
    margin-left: 6px;
    flex-shrink: 0;
    margin-bottom: -1px;
}
.small-btn:hover {
    background: black;
    color: white;
}
.small-btn:hover svg path {
    stroke: white;
}
@media (max-width: 1600px) {
    .popup-wrapper .popup-box {
        width: 50%;
    }
}
@media (max-width: 1200px) {
    .popup-wrapper .popup-box {
        width: 70%;
    }
}
@media (max-width: 992px) {
    .banner-cycle {
        margin-top: 60px;
    }
    .popup-wrapper .popup-box {
        width: 100%;
    }
    .banner-cycle .wrapper-banner {
        flex-direction: column;
        margin-top: 60px;
    }
    .banner-cycle .wrapper-banner .banner-img {
        padding-bottom: 80%;
        width: 100%;
        background-position: bottom;
    }
    .banner-cycle .wrapper-banner .banner-content {
        width: 100%;
    }
    #inscriptions {
        margin: 100px 0 20px;
    }
    section.formations_agenda {
        margin: 0 auto 60px auto;
    }
    section.formations_agenda .wrapper-formations .wrapper-item {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .event-main .container-event {
        flex-direction: column-reverse;
    }
    section.formations_agenda {
        padding-top: 60px;
    }
    .container-event > .btn-box-y {
        margin-bottom: 20px;
    }
    .container-event > .btn-box-y .btn {
        margin-top: 0;
    }

    .event-main .title-event {
        font-size: 30px;
        line-height: 40px;
    }

    .popup-wrapper {
        height: calc(100vh - 60px);
        top: 60px;
    }

    .popup-wrapper .popup-box {
        width: 100%;
        max-width: 100vh;
        overflow: auto;
        position: relative;
        padding-top: 140px;
    }
    .popup-wrapper .popup-box .form-box .top p{
        font-size: 16px;
        line-height: 20px;
    }
    .popup-wrapper .popup-box .close {
        margin-bottom: 10px;
    }
    .popup-wrapper .popup-box .form-box .wpcf7 {
        margin-bottom: 0;
    }
    .banner-cycle .wrapper-banner .banner-content {
        padding: 25px;
    }
    .cycle_events .item .wrap_date {
        padding-bottom: 32px;
    }
    .banner-cycle .wrapper-banner .banner-content .title_main {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 34px;
    }
    .banner-cycle .wrapper-banner .banner-content .sub-title {
        font-size: 22px;
        line-height: 26px;
    }
    .banner-cycle .wrapper-banner .banner-content .wrapper-links .links a {
        font-size: 18px;
    }
    .cycle_post h1 {
        font-size: 36px;
        line-height: 42px;
    }
    .title_forma {
        font-size: 28px;
        line-height: 32px;
        margin-top: 25px;
    }
    .cycle_post {
        margin: 50px auto;
    }
    .wrapper-button {
        margin-top: 25px;
    }
    .breadcrumbs {
        margin-bottom: 25px;
    }
}
#name_event_in {
    display: none;
}
/*LT*/
@media (max-width: 768px) {
    .cycle_events .item .wrapper-flex {
        flex-direction: column;
    }
    .cycle_events .item .content-formation {
        width: 100%;
    }
    .cycle_events .item .wrapper-flex {
        padding: 25px 0;
    }
    section.formations .wrapper-formations .wrapper-item {
        width: 100%;
        padding: 14px;
        min-width: 360px;
    }
    .event-gallerySwiper{
        margin-bottom: 70px;
    }
    .event-gallery {
        margin-bottom: 70px;
    }
    .event-gallerySwiper .swiper-button-next {
        margin-left: 15px;
    }

    .event-gallery .btn-box-y, .event-main .btn-box-y {
        padding: 0 15px;
        align-self: center;
    }

    .event-gallery .btn {
        max-width: 100%;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        left: 15px;
        right: 15px;
    }
    .event-gallery h2.title-r {
        padding-left: 15px
    }

    .event-main .count-wrapper{
        flex-wrap: wrap;
    }

    .event-main .count-wrapper .left {
        width: 100%;
        margin-bottom: 15px;
    }

    .event-main .count-wrapper .right {
        width: 100%;
    }
    .container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date.disabled-date-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .container-inscriptions .reservation .inscription .renseignez .item_insc .after_item_insc .wrap_date .date.disabled-date-item .small-btn {
        align-self: flex-end;
        margin-top: 5px;
    }
    .navbar-nav li.button_header .sub-menu {
        max-width: 237px;
        padding: 0;
    }
}
@media (max-width: 576px) {
    .event_single_top_img {
        height: 149px;
        margin: 60px 0 10px;
    }

    .event-main .dates {
        flex-wrap: wrap;
    }

    .event-main .dates .left {
        width: 100%;
    }

    .event-main .dates .tarif {
        width: 100%;
        margin-top: 30px;
        margin-left: 0;
    }

    .container-inscriptions h1 {
        font-size: 40px;
    }

    .container-inscriptions .box-form .submit {
        width: 100%;
    }

    .container-inscriptions .box-form .btn {
        width: 100%;
    }
}
