@import url('https://fonts.googleapis.com/css?family=Rubik:400,500,700&display=swap');
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #2a3739;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.wrapper600 {
    max-width: 600px;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1%;
    margin-left: -1%;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.table {
    display: table;
    height: 100%;
    width: 100%;
}

.cell {
    display: table-cell;
    vertical-align: middle;
}

ul,
li {
    list-style: none;
}

h1 {
    color: #4ab0d8;
    font-size: 50px;
    font-weight: 500;
}

.fromWYSIWYG a {
    color: #b2ca5e;
    text-decoration: underline;
}

.CTA_Sub a,
.btn {
    background-color: #b2ca5e;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
}

.CTA_Sub a:hover,
.btn:hover {
    background-color: #a3bf43;
}

.CTA_Sub a,
.btnSmall {
    padding: 4px 10px;
    font-size: 11px;
}

.btnFb {
    background: #385c8e url(../img/facebook.png) no-repeat left 15px center / 10px;
    padding-left: 35px;
    padding-right: 20px;
}

.backLink {
    text-decoration: none;
    color: #4ab0d8;
    background: url(../img/arrow_back.png)no-repeat left center / 40px;
    padding-left: 50px;
}

.box {
    background-color: #4ab0d8;
    border-radius: 30px;
    color: #fff;
    padding: 30px;
}

.box h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 21px;
    font-weight: 500;
}

h2 {
    color: #b2ca5e;
    font-size: 40px;
    font-weight: 500;
}


/* HEADER */

header {
    background-color: #fff;
    box-shadow: 0px 9px 50px 6.06px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: relative;
}

header .wrapper {
    position: relative;
}

header:after {
    content: '.';
    width: 100%;
    font-size: 0;
    display: block;
    clear: both;
}

header .logo {
    float: left;
    width: 150px
}

header .logo img {
    display: block;
    width: 100%;
}

header nav {
    float: right;
    position: relative;
    z-index: 3;
}

header nav ul {
    display: inline-block;
}

header nav ul.nav {
    margin-right: 30px;
}

header nav li {
    display: inline-block;
}

header nav li a {
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    color: #2a3739;
    padding: 0 5px;
    margin: 0 5px;
}

header nav li.active a {
    color: #b2ca5e;
    /*border-bottom: 1px solid #b2ca5e
    text-decoration: underline;*/
    position: relative;
}

header nav li.active a:after {
    content: '-';
    width: calc( 100% - 10px);
    height: 1px;
    display: block;
    left: 5px;
    font-size: 0;
    background-color: #b2ca5e;
    position: absolute;
    bottom: 0
}

header nav li.active.cta a:after {
    display: none
}

header nav li.cta a,
header .mobnav li.cta a {
    background-color: #b2ca5e;
    color: #fff;
    padding: 4px 13px;
    border-radius: 20px
}

header nav li.cta.active a {
    text-decoration: none;
}

header nav ul.lang a,
header nav ul.lang li,
header .upline ul.lang a,
header .upline ul.lang li {
    color: #4ab0d8;
    display: inline-block;
}

header nav ul.lang a,
header .upline ul.lang a {
    padding: 0;
}


/* MOBILE NAV */

.menu-burger {
    border-radius: 50%;
    height: 60px;
    width: 60px;
    padding: 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0px 2px 21px 0px rgba(236, 237, 253, 0.93);
    transition: all 0.4s;
}

header .icon {
    display: block;
    position: fixed;
    top: 20px;
    right: 5%;
    z-index: 100;
    display: none;
}

.menu-burger>div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
}

.menu-burger>div:before,
.menu-burger>div:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background-color: inherit;
    transition: transform 0.4s;
}

.menu-burger>div:after {
    top: 10px;
}

.menu-burger:hover>div {
    transform: rotate(90deg);
    background-color: white;
}

.menu-burger:hover {
    background-color: #000;
}

.menu-burger.cross>div:before,
.menu-burger.cross>div:after {
    top: 0;
    transform: rotate(90deg);
}

.menu-burger.cross>div {
    background-color: #000;
}

.menu-burger.cross {
    transform: rotate(45deg);
    box-shadow: none;
    background-color: transparent;
}


/* POP-UP MENU */

.responsive-menu {
    display: none;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
}

.responsive-menu .upline {
    display: block;
    text-align: center;
    padding: 5%;
}

.responsive-menu .moblogo {
    text-align: center;
    margin-top: 40px;
    width: 70%;
    max-width: 200px;
    margin: 80px auto 0 auto;
}

.responsive-menu .moblogo img {
    display: block;
    width: 100%;
}

.responsive-menu.display {
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
}

.responsive-menu .mobnav {
    padding: 30px 5% 0 5%;
    text-align: center;
}

.responsive-menu .mobnav li {
    display: block;
    margin-bottom: 30px;
}

.responsive-menu .mobnav li a {
    font-size: 21px;
    text-decoration: none;
    color: #2a3739;
    text-transform: uppercase;
}


/* main */

main {
    background-color: #e0f2f8;
}


/* HOMEPAGE */

#homepage {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f0f9ff+0,a1dbff+100&0+0,1+100 */
    background: -moz-linear-gradient(top, rgba(240, 249, 255, 0) 0%, rgba(161, 219, 255, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(240, 249, 255, 0) 0%, rgba(161, 219, 255, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(240, 249, 255, 0) 0%, rgba(161, 219, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00f0f9ff', endColorstr='#a1dbff', GradientType=0);
    /* IE6-9 */
}

#homepage header {
    background: none;
    box-shadow: none;
}

#homepage header:before {
    content: '.';
    width: 150px;
    height: 220px;
    background: url(../img/circle1.png) no-repeat left top / cover;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
}

#homepage main {
    background: none;
}

#sect-hp-mainBanner {
    height: 80vh;
    position: relative;
}

#sect-hp-mainBanner::after {
    display: inline-block;
    height: 0;
    width: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    content: '.';
    border-bottom: 100px solid #fff;
    border-left: 2000px solid transparent;
    width: 100%
}

#sect-hp-mainBanner h1 {
    font-size: 40px;
    margin-bottom: 50px;
}

#sect-hp-mainBanner .text-content {
    width: 50%;
    height: 80vh;
    float: left;
}

#sect-hp-mainBanner .wrapper {
    position: relative;
}

#sect-hp-mainBanner .visual {
    position: relative;
    right: 0;
    top: 0;
    width: 50%;
    float: right;
    min-height: 600px;
}

#sect-hp-mainBanner .visual .circleDeco {
    width: 520px;
    height: 460px;
    background: url(../img/circle2.png) no-repeat center center / 100% 100%;
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 3;
}

.scrollDown {
    position: absolute;
    left: calc( 10% - 20px);
    bottom: 90px;
    z-index: 4;
    background: url(../img/arrow_bottom.png) no-repeat center center / 20px;
    width: 30px;
    height: 80px;
    font-size: 0;
}

#sect-hp-mainBanner .visual:before {
    content: '.';
    font-size: 0;
    width: 279px;
    height: 344px;
    background: url(../img/dots.png) repeat;
    display: block;
    position: absolute;
    bottom: 40px;
    right: -30px;
    z-index: 2;
}

#sect-hp-mainBanner .visual img.home {
    width: 90%;
    position: absolute;
    left: 10%;
    bottom: 6vh;
    z-index: 4;
}


/* hp about */

#sect-hp-about {
    background-color: #fff;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

#sect-hp-about::before {
    content: '.';
    width: 290px;
    height: 380px;
    background: url(../img/circle2.png) no-repeat center right / cover;
    display: block;
    position: absolute;
    top: 20%;
    left: 0;
    font-size: 0;
}

#sect-hp-about:after {
    content: '.';
    width: 100%;
    font-size: 0;
    display: block;
    clear: both;
}

#sect-hp-about .asideVisual {
    float: left;
    width: 35%;
    position: relative;
}

.hoverHg {
    position: absolute;
    bottom: -30px;
    right: 2%;
    width: 70%;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 26px 50.76px 3.24px rgba(0, 0, 0, 0.08);
    color: #4ab0d8;
    font-weight: 500;
    padding: 6%;
    line-height: 26px;
    font-size: 16px;
}

#sect-hp-about .asideVisual .visual {
    padding-right: 15%;
}

#sect-hp-about .asideVisual .visual img {
    display: block;
    width: 100%;
}

#sect-hp-about .about-content {
    float: right;
    width: 61%;
}

#sect-hp-about .about-content .wrapBtn {
    text-align: center;
}

#sect-hp-about h2 {
    margin-bottom: 30px;
    text-align: left;
}

#sect-hp-numbers {
    background-color: #fff;
    position: relative;
    overflow: hidden
}

#sect-hp-numbers:before {
    display: inline-block;
    height: 0;
    width: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    content: '.';
    border-bottom: 100px solid #e0f2f8;
    border-left: 2000px solid transparent;
}

#sect-hp-numbers .box {
    padding: 30px 100px;
    position: relative;
}

#sect-hp-numbers .box ul {
    display: table;
    width: 100%;
}

#sect-hp-numbers .box ul li {
    padding: 0 20px;
    display: table-cell;
    vertical-align: middle;
}

#sect-hp-numbers .box ul li strong {
    font-size: 35px;
    font-weight: 500;
    display: block;
    line-height: 30px;
}

#sect-hp-numbers .box ul li .ico {
    margin-right: 20px;
    float: left;
}

#sect-hp-numbers .box ul li .ico img {
    display: block;
    max-height: 60px;
}

#sect-hp-numbers .box ul li span {
    float: left;
}

#sect-hp-services {
    background-color: #e0f2f8;
    padding: 80px 0;
    text-align: center;
}

#sect-hp-services h2 {
    color: #4ab0d8;
    margin-bottom: 40px;
}

#sect-hp-services .wrap-services article {
    width: 31%;
}

#sect-hp-services .wrap-services article .content {
    position: relative;
}

#sect-hp-services .wrap-services article .btn {
    display: none;
    position: absolute;
    top: -20px;
    width: 60%;
    text-align: center;
    margin-left: -30%;
    left: 50%
}

#sect-hp-services .wrap-services article:hover .btn {
    display: block;
}


/* @HOMEPAGE */

#sect-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

#sect-intro p {
    font-size: 15px;
    line-height: 24px;
    opacity: 0.9;
}

.wrap-title {
    margin-bottom: 20px
}

article.artPrev {
    background-color: #fff;
    box-shadow: 0px 2px 7.52px 0.48px rgba(0, 0, 0, 0.09);
}

article.artPrev .picture {
    position: relative;
    overflow: hidden;
}

article.artPrev .picture:before {
    content: '.';
    background-color: #4ab0d8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0.4;
}

article.artPrev:hover .picture:before {
    display: block;
}

article.artPrev .picture img {
    display: block;
    width: 100%;
}

article.artPrev .content {
    text-align: center;
    padding: 30px 50px;
}

article.artPrev .picture::after {
    display: inline-block;
    height: 0;
    width: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    content: '.';
    border-bottom: 30px solid #fff;
    border-left: 700px solid transparent;
}

article.artPrev .content h4 {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 200;
}

article.artPrev .content h5 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 200;
    color: #337791
}

article.artPrev .content .title {
    margin-bottom: 20px;
}

article.artPrev .intro {
    text-align: justify;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.wrap-services,
.wrap-news {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1%;
    margin-left: -1%;
}

.wrap-services article,
.wrap-news article {
    width: 48%;
    margin: 1%;
}


/* AGENDA */

#sect-agenda {
    padding: 50px 0;
    background-color: #fff;
}

#sect-agenda article {
    background-color: #fff;
    box-shadow: 0px 0px 50px 4px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

#sect-agenda article .date {
    background-color: #4ab0d8;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    width: 20%;
}

#sect-agenda article .date strong {
    display: block;
}

#sect-agenda article .date a {
    color: #fff;
    text-decoration: none;
    background-color: #b2ca5e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-top: 10px;
}

#sect-agenda article .pict {
    width: 10%;
    overflow: hidden;
}

#sect-agenda article .pict img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

#sect-agenda article .content {
    padding: 40px;
    width: 70%;
}

#sect-agenda h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #4ab0d8;
    font-size: 50px;
}

#sect-agenda .agenda-prev h2 {
    color: #337791;
    margin-top: 40px;
    font-size: 40px;
}

#sect-agenda article .content h4 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 500;
}

#sect-agenda .agenda-prev .wrap-agenda {
    opacity: 0.75;
}

#sect-agenda .agenda-prev .wrap-agenda .date {
    background-color: #317590;
}

#sect-horaireBox {
    margin-bottom: -80px;
    padding: 30px 0;
    background-color: #f2f9fc;
    position: relative;
}

#sect-horaireBox:before {
    content: '.';
    width: 250px;
    height: 150px;
    background: url(../img/circle2.png) no-repeat center center / 100% 100%;
    display: block;
    position: absolute;
    top: 20px;
    right: 20%;
    font-size: 0;
}

#sect-horaireBox .box {
    position: relative;
    z-index: 2;
}

#sect-horaireBox .wrapBox {
    position: relative;
}

#sect-horaireBox .wrapBox:before {
    content: '.';
    font-size: 0;
    width: 300px;
    height: 154px;
    background: url(../img/dots.png) repeat;
    display: block;
    position: absolute;
    bottom: -10px;
    left: -10px;
    z-index: 0;
}

.horaireContent {
    column-count: 2;
    column-gap: 3rem;
    line-height: 23px;
}


/* NEWS */

#sect-news {
    padding-bottom: 50px
}


/* fromWYSIWYG */

.fromWYSIWYG p {
    line-height: 25px;
    text-align: justify;
    margin-bottom: 20px;
    opacity: 0.9;
}

.fromWYSIWYG strong {
    font-weight: 500
}

.fromWYSIWYG img {
    max-width: 100%;
    height: auto!important
}

.fromWYSIWYG iframe {
    max-width: 100%;
}

.fromWYSIWYG li {
    line-height: 25px;
    list-style: circle;
    list-style-position: inside;
    opacity: 0.9;
}

.fromWYSIWYG ul {
    margin-bottom: 20px
}

.fromWYSIWYG h2 {
    margin: 15px 0;
    color: #2a3739;
    font-size: 30px;
}

.fromWYSIWYG h3 {
    margin: 15px 0;
    color: #2a3739;
    font-size: 28px;
    font-weight: 500;
}

.fromWYSIWYG h4 {
    margin: 15px 0;
    color: #2a3739;
    font-size: 24px;
    font-weight: 500;
}

.fromWYSIWYG h5 {
    margin: 15px 0;
    color: #2a3739;
    font-size: 20px;
    font-weight: 500;
}


/* PAGE SERVICES */

#sect-services {
    position: relative;
    padding-bottom: 80px;
}

#sect-services::before {
    content: '.';
    width: 290px;
    height: 380px;
    background: url(../img/circle2.png) no-repeat center right / cover;
    display: block;
    position: absolute;
    top: 200px;
    left: 0;
    font-size: 0;
}

#sect-services::after {
    content: '.';
    width: 200px;
    height: 320px;
    background: url(../img/circle3.png) no-repeat center right / 100% 100%;
    display: block;
    position: absolute;
    top: -370px;
    right: 0;
    font-size: 0;
}

#sect-services .wrapper {
    position: relative;
}

#sect-detail {
    padding: 50px 0;
    background-color: #f2f9fc;
    position: relative;
}

#sect-detail::after {
    content: '.';
    width: 200px;
    height: 320px;
    background: url(../img/circle3.png) no-repeat center right / 100% 100%;
    display: block;
    position: absolute;
    bottom: -100px;
    right: 0;
    font-size: 0;
}

#sect-detail h1 {
    text-align: center;
}

#sect-detail .detail-title {
    margin-bottom: 40px;
    text-align: center;
}

#sect-detail .detail-title h1 {
    font-size: 30px
}

#sect-detail .detail-title h2.date-title {
    color: #337791;
    font-size: 24px;
    position: relative;
    padding-top: 20px;
    font-weight: 500;
}

#sect-detail .detail-title h2.date-title:before {
    content: '-';
    width: 60px;
    top: 6px;
    left: 50%;
    margin-left: -30px;
    height: 2px;
    background-color: #337791;
    position: absolute;
    font-size: 0;
}

.content-footer {
    overflow: hidden;
    margin-top: 60px;
    z-index: 2;
    position: relative;
}

.content-footer .backLink {
    float: left;
}

.content-footer .btn {
    float: right;
}

#sect-subnav {
    text-align: center;
    background-color: #d2e9f2;
    padding: 30px;
}

#sect-subnav li {
    display: inline-block;
}

#sect-subnav li a {
    color: #4d5558;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    font-size: 14px;
}

#sect-subnav .bx-wrapper .bx-controls-direction a {
    top: 0;
    margin-top: 0;
    width: 60px;
    height: 18px;
}

.bx-viewport {
    max-width: 80%;
    margin: 0 10%;
}

.bx-wrapper .bx-pager {
    display: none;
}

#sect-subnav .bx-wrapper .bx-next {
    right: 0;
    background: url('../img/next.png') no-repeat center center / 35px
}

#sect-subnav .bx-wrapper .bx-prev {
    left: 0;
    background: url('../img/prev.png') no-repeat center center / 35px
}

#sect-subnav .bx-wrapper {
    max-width: none!important;
}


/* PAGE ABOUT */

.sect-about {
    padding: 40px 0;
    position: relative;
}

.sect-about:after {
    content: '.';
    width: 100%;
    display: block;
    clear: both;
    font-size: 0;
}

.sect-about h2 {
    margin-bottom: 30px;
}

#sect-about-1 {
    background-color: #fff;
}

#sect-about-1::before {
    content: '.';
    width: 290px;
    height: 380px;
    background: url(../img/circle2.png) no-repeat center right / cover;
    display: block;
    position: absolute;
    top: 20%;
    left: 0;
    font-size: 0;
}

#sect-about-1 .aside-visual {
    float: left;
    width: 35%;
    position: relative;
}

#sect-about-1 .aside-visual .visual {
    padding-right: 15%;
    position: relative;
}

#sect-about-1 .aside-visual .visual:before {
    content: '.';
    font-size: 0;
    width: 189px;
    height: 154px;
    background: url(../img/dots.png) repeat;
    display: block;
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 0;
}

#sect-about-1 .aside-visual .visual img {
    display: block;
    width: 100%;
    z-index: 2;
    position: relative;
    box-shadow: 0px 17px 30.08px 1.92px rgba(0, 0, 0, 0.23);
}

#sect-about-1 .aside-content {
    float: right;
    width: 61%;
}

#sect-about-2 {
    background-color: #f2f9fc;
}

#sect-about-2 .content {
    column-count: 2;
    column-gap: 3rem;
}

#sect-about-3 {
    background-color: #fff;
}

#sect-about-3 .aside-visual {
    float: right;
    width: 35%;
    position: relative;
}

#sect-about-3 .aside-visual .visual {
    padding-left: 15%;
}

#sect-about-3 .aside-visual .visual img {
    display: block;
    width: 100%;
}

#sect-about-3 .aside-content {
    float: left;
    width: 61%;
}

#sect-about-4 {
    background-color: #f2f9fc;
}

#sect-about-4::before {
    content: '.';
    width: 290px;
    height: 380px;
    background: url(../img/circle2.png) no-repeat center right / cover;
    display: block;
    position: absolute;
    bottom: -30px;
    left: 0;
    font-size: 0;
}

#sect-about-4 .aside-visual {
    float: left;
    width: 35%;
    position: relative;
}

#sect-about-4 .aside-visual .visual {
    padding-right: 15%;
}

#sect-about-4 .aside-visual .visual img {
    display: block;
    width: 100%;
}

#sect-about-4 .aside-content {
    float: right;
    width: 61%;
}

#sect-about-5 {
    background-color: #fff;
}

#sect-about-5 .content {
    column-count: 2;
    column-gap: 3rem;
    position: relative;
    z-index: 2;
}

#sect-about-5::after {
    content: '.';
    width: 270px;
    height: 450px;
    background: url(../img/circle3.png) no-repeat center right / 100% 100%;
    display: block;
    position: absolute;
    bottom: -100px;
    right: 0;
    font-size: 0;
}

.link2chart {
    color: white !important; display:block; margin-top: 1rem; margin-left: 1rem;
}

/* CONTACT */

#sect-contact {
    background-color: #e6f3f9;
    padding: 50px 0;
}

#subnav-contact {
    text-align: center;
    background-color: #d2e9f2;
    padding: 30px;
}

#subnav-contact li {
    display: inline-block;
}

#subnav-contact li a {
    color: #4d5558;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    font-size: 14px;
}

#subnav-contact li a:hover {
    font-weight: 500;
}

#sect-contactInfos {
    background-color: #fff;
    padding: 50px 0;
}

#sect-contactInfos address {
    font-style: normal;
}

#sect-contactInfos address a {
    color: #4ab0d8;
}

#sect-contactInfos h3 {
    font-size: 23px;
    color: #4ab0d8;
    margin-bottom: 10px;
    font-weight: 500;
}

#sect-map iframe {
    width: 100%!important;
}

#sect-team {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
}

#sect-team::after {
    content: '.';
    width: 270px;
    height: 450px;
    background: url(../img/circle3.png) no-repeat center right / 100% 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
}

#sect-team h2 {
    text-align: center;
    margin-bottom: 40px;
}

.wrap-team {
    display: flex;
    flex-wrap: wrap;
}

.wrap-team article {
    background-color: white;
    box-shadow: 0px 0px 65.8px 4.2px rgba(0, 0, 0, 0.08);
    width: 31%;
    margin: 1%;
    padding: 30px;
    z-index: 2;
}

.wrap-team article h5 {
    font-size: 25px;
    font-weight: normal;
}

.wrap-team article h6 {
    font-size: 20px;
    font-weight: normal;
}


/*  FOOTER */

footer {
    border-top: 1px solid #e3e3e3;
    font-size: 12px;
    line-height: 18px;
    background-color: #fff;
    position: relative;
    z-index: 3;
}

footer .foot-main {
    padding: 60px 0
}

footer .foot-copy {
    padding: 15px 0;
    border-top: 1px solid #4ab0d8;
}

footer .foot-copy p,
footer .foot-copy a {
    color: #929292;
    font-size: 12px;
}

footer p a {
    color: #4ab0d8
}

.foot-main {
    display: flex;
    justify-content: space-between;
}

footer h5 {
    color: #4ab0d8;
    font-size: 15px;
    margin-bottom: 5px;
    text-transform: none;
    font-weight: 600;
}

.foot-about {
    width: 25%;
}

.foot-infosPractical {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

footer .line {
    margin-bottom: 10px;
}

footer .foot-logos li {
    margin-bottom: 10px;
}

.cta-newsletter {
    position: absolute;
    left: 0;
    bottom: 10%;
    z-index: 5;
    padding: 1rem;
    background-color: #4ab0d8;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    transition: .3s;
}

.cta-newsletter a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    max-width: 25ch;
}

.cta-newsletter a svg {
    flex-shrink: 0;
}

.cta-newsletter:hover {
    padding-left: 2rem;
}

@media (max-width: 900px) {
    .wrapper {
        padding: 0 10%;
    }
    header .icon {
        display: block;
    }
    header nav {
        display: none
    }
    /* HOMEPAGE */
    #sect-hp-mainBanner {
        height: auto;
    }
    #sect-hp-mainBanner .text-content {
        height: auto;
        width: 100%;
        float: none;
    }
    #sect-hp-mainBanner .visual {
        position: relative;
        width: 100%;
        height: auto;
        float: none;
    }
    #sect-hp-services .wrap-services article {
        width: 48%;
        margin-bottom: 20px;
    }
    #sect-hp-mainBanner .visual img.home {
        width: 90%;
        position: relative;
        left: 0;
        bottom: 0;
        z-index: 4;
    }
    #sect-hp-mainBanner .visual .circleDeco {
        opacity: 0.4;
        display: none
    }
    #sect-hp-mainBanner h1 {
        font-size: 30px
    }
    #sect-hp-mainBanner .visual:before {
        right: 0;
    }
    #sect-hp-about::before {
        display: none;
    }
    #sect-hp-about .asideVisual,
    #sect-hp-about .about-content {
        float: none;
        width: 100%;
        margin-bottom: 40px;
    }
    #sect-hp-numbers .box ul {
        display: block;
    }
    #sect-hp-numbers .box ul li {
        overflow: hidden;
        display: block;
        margin-bottom: 30px;
    }
    #sect-hp-numbers .box {
        padding: 5%;
        text-align: center;
    }
    #sect-hp-numbers .box ul li .ico {
        margin-bottom: 10px;
        float: none;
        display: inline-block;
    }
    #sect-hp-numbers .box ul li span {
        float: none;
    }
    /* ABOUT */
    .sect-about .aside-visual,
    .sect-about .aside-content {
        display: block;
        float: none!important;
        width: 100%!important;
        margin-bottom: 40px;
    }
    .sect-about .aside-visual .visual {
        padding: 0!important;
    }
    #sect-about-2 .content,
    #sect-about-5 .content {
        column-count: 1;
    }
    .content-footer .btn {
        float: none;
        margin-top: 20px;
        display: block;
        text-align: center;
    }
    .content-footer .backLink {
        float: none;
        display: block;
    }
    /* FOOTER */
    .foot-main {
        display: block;
    }
    .foot-about,
    .foot-infosPractical,
    .foot-logos {
        width: 100%;
        margin: 20px 0;
    }
    .foot-logos li {
        display: inline-block;
        margin: 0 20px 0 0;
    }
    .row {
        display: block;
    }
    .col {
        margin-bottom: 10px;
    }
    .wrap-team article {
        width: 48%;
    }
}

@media (max-width: 800px) {
    .foot-infosPractical {
        display: block;
    }
    .foot-col {
        margin-bottom: 20px;
    }
    #sect-agenda article .date {
        width: 100%;
    }
    #sect-agenda article .pict {
        display: none;
    }
    #sect-agenda article .content {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .wrap-services article,
    .wrap-news article,
    #sect-hp-services .wrap-services article {
        width: 100%;
        margin-bottom: 20px;
    }
    article.artPrev .content {
        padding: 20px;
    }
    .wrapper {
        padding: 0 5%;
    }
    .wrap-team article {
        width: 100%;
    }
    .cta-newsletter {
        display: none;
    }
}

#sect-hp-specialinfo {
    background-color: #fff;
    padding: 0 0 30px 0;
}

#sect-hp-specialinfo .box {
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 0px auto;
    z-index: 10;
    position: relative;
    box-shadow: 0px 16px 33.76px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
}

#sect-hp-specialinfo .fromWYSIWYG h2 {
    color: white;
}


/* newsletter */

.sib-form * {
    font-family: 'Rubik', sans-serif!important
}

.sib-form {
    padding: 0 0 0 100px!important;
}

.sib-form .input {
    font-size: 14px!important;
    color: #2a3739!important;
}

#sib-container {
    background-color: transparent!important;
    padding: 0!important;
    margin: 0!important;
}

.newsWrap {
    display: flex;
}

.form__entry {
    padding: 5px 0!important;
}

.entry__label {
    margin-bottom: 0!important;
}

.sib-form .entry__error {
    color: red!important
}

.newsletter {
    background-color: #4ab0d8;
    padding: 50px 0;
    color: #fff;
}

.entry__label::after {
    color: white!important;
}

.newsTitles {
    width: 40%;
    align-self: center;
}

.form__label-row {
    display: flex;
}

.newsletter label,
.newsTitles h2,
.newsTitles h1 {
    color: #fff;
}

.newsletter input {
    border-radius: 20px;
    margin-bottom: 20px;
}

.sib-form-block {
    min-width: 50%;
}

.newsTitles h1 {
    font-weight: 600;
}

.newsTitles h2 {
    font-size: 21px;
    font-weight: 100;
}

#sib-form {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .newsWrap {
        display: block;
    }
    .newsTitles {
        width: 100%;
        margin-bottom: 50px;
    }
    .sib-form {
        width: 100%;
        padding-left: 0px!important;
    }
    .sib-form-block {
        min-width: 100%;
    }
    .sib-form-block {
        padding: 0!important;
    }

    .link2chart {
        margin-left: 0;
    }
}