/*
Theme Name: Formation Child
Theme URI: https://soma-dev.com
Author: Soma MORADI
Author URI: https://soma-dev.com
Template: askida_main
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General ../Public License v2 or later
License URI: LICENSE
Text Domain: askida_main
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 480px) {
  .container:not(.is-fluid) {
    max-width: 444px;
  }
}
@media only screen and (min-width: 576px) {
  .container:not(.is-fluid) {
    max-width: 528px;
  }
}
@media only screen and (min-width: 768px) {
  .container:not(.is-fluid) {
    max-width: 736px;
  }
}
@media only screen and (min-width: 992px) {
  .container:not(.is-fluid) {
    max-width: 932px;
  }
}
@media only screen and (min-width: 1200px) {
  .container:not(.is-fluid) {
    max-width: 1120px;
  }
}
@media only screen and (min-width: 1400px) {
  .container:not(.is-fluid) {
    max-width: 1300px;
  }
}
@media only screen and (min-width: 1920px) {
  .container:not(.is-fluid) {
    max-width: 1620px;
  }
}
@media only screen and (min-width: 2400px) {
  .container:not(.is-fluid) {
    max-width: 2050px;
  }
}

.container-xs {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 480px) {
  .container-xs {
    max-width: 444px;
  }
}

.container-sm {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .container-sm {
    max-width: 528px;
  }
}

.container-md {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .container-md {
    max-width: 736px;
  }
}

.container-lg {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .container-lg {
    max-width: 932px;
  }
}

.container-xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .container-xl {
    max-width: 1120px;
  }
}

.container-2xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .container-2xl {
    max-width: 1300px;
  }
}

.container-3xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 1920px) {
  .container-3xl {
    max-width: 1620px;
  }
}

.container-4xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 2400px) {
  .container-4xl {
    max-width: 2050px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
  width: calc(100% + 2rem);
  box-sizing: border-box;
}
.row-no-gutters {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.row-no-gutters > [class*=col] {
  padding-left: 0;
  padding-right: 0;
}
.row-sm-gutters {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  width: calc(100% + 1rem);
}
.row-sm-gutters > [class*=col] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.row-lg-gutters {
  margin-left: -2rem;
  margin-right: -2rem;
  width: calc(100% + 4rem);
}
.row-lg-gutters > [class*=col] {
  padding-left: 2rem;
  padding-right: 2rem;
}
.row-center {
  justify-content: center;
}
.row-start {
  justify-content: flex-start;
}
.row-end {
  justify-content: flex-end;
}
.row-between {
  justify-content: space-between;
}
.row-around {
  justify-content: space-around;
}
.row-align-start {
  align-items: flex-start;
}
.row-align-center {
  align-items: center;
}
.row-align-end {
  align-items: flex-end;
}
@media only screen and (max-width: 575px) {
  .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    width: calc(100% + 1.5rem);
  }
  .row > [class*=col] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media only screen and (max-width: 480px) {
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    width: calc(100% + 1rem);
  }
  .row > [class*=col] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.row-equal-height > [class*=col] {
  display: flex;
  flex-direction: column;
}
.row-equal-height > [class*=col] > * {
  flex: 1 0 auto;
}
.row-reverse {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 480px) {
  .row-xs-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 576px) {
  .row-sm-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 768px) {
  .row-md-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 992px) {
  .row-lg-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1200px) {
  .row-xl-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1400px) {
  .row-2xl-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1920px) {
  .row-3xl-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 2400px) {
  .row-4xl-reverse {
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 480px) {
  .row-xs-center {
    justify-content: center;
  }
  .row-xs-start {
    justify-content: flex-start;
  }
  .row-xs-end {
    justify-content: flex-end;
  }
  .row-xs-between {
    justify-content: space-between;
  }
  .row-xs-around {
    justify-content: space-around;
  }
  .row-xs-align-start {
    align-items: flex-start;
  }
  .row-xs-align-center {
    align-items: center;
  }
  .row-xs-align-end {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 576px) {
  .row-sm-center {
    justify-content: center;
  }
  .row-sm-start {
    justify-content: flex-start;
  }
  .row-sm-end {
    justify-content: flex-end;
  }
  .row-sm-between {
    justify-content: space-between;
  }
  .row-sm-around {
    justify-content: space-around;
  }
  .row-sm-align-start {
    align-items: flex-start;
  }
  .row-sm-align-center {
    align-items: center;
  }
  .row-sm-align-end {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .row-md-center {
    justify-content: center;
  }
  .row-md-start {
    justify-content: flex-start;
  }
  .row-md-end {
    justify-content: flex-end;
  }
  .row-md-between {
    justify-content: space-between;
  }
  .row-md-around {
    justify-content: space-around;
  }
  .row-md-align-start {
    align-items: flex-start;
  }
  .row-md-align-center {
    align-items: center;
  }
  .row-md-align-end {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 992px) {
  .row-lg-center {
    justify-content: center;
  }
  .row-lg-start {
    justify-content: flex-start;
  }
  .row-lg-end {
    justify-content: flex-end;
  }
  .row-lg-between {
    justify-content: space-between;
  }
  .row-lg-around {
    justify-content: space-around;
  }
  .row-lg-align-start {
    align-items: flex-start;
  }
  .row-lg-align-center {
    align-items: center;
  }
  .row-lg-align-end {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1200px) {
  .row-xl-center {
    justify-content: center;
  }
  .row-xl-start {
    justify-content: flex-start;
  }
  .row-xl-end {
    justify-content: flex-end;
  }
  .row-xl-between {
    justify-content: space-between;
  }
  .row-xl-around {
    justify-content: space-around;
  }
  .row-xl-align-start {
    align-items: flex-start;
  }
  .row-xl-align-center {
    align-items: center;
  }
  .row-xl-align-end {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1400px) {
  .row-2xl-center {
    justify-content: center;
  }
  .row-2xl-start {
    justify-content: flex-start;
  }
  .row-2xl-end {
    justify-content: flex-end;
  }
  .row-2xl-between {
    justify-content: space-between;
  }
  .row-2xl-around {
    justify-content: space-around;
  }
  .row-2xl-align-start {
    align-items: flex-start;
  }
  .row-2xl-align-center {
    align-items: center;
  }
  .row-2xl-align-end {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1920px) {
  .row-3xl-center {
    justify-content: center;
  }
  .row-3xl-start {
    justify-content: flex-start;
  }
  .row-3xl-end {
    justify-content: flex-end;
  }
  .row-3xl-between {
    justify-content: space-between;
  }
  .row-3xl-around {
    justify-content: space-around;
  }
  .row-3xl-align-start {
    align-items: flex-start;
  }
  .row-3xl-align-center {
    align-items: center;
  }
  .row-3xl-align-end {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 2400px) {
  .row-4xl-center {
    justify-content: center;
  }
  .row-4xl-start {
    justify-content: flex-start;
  }
  .row-4xl-end {
    justify-content: flex-end;
  }
  .row-4xl-between {
    justify-content: space-between;
  }
  .row-4xl-around {
    justify-content: space-around;
  }
  .row-4xl-align-start {
    align-items: flex-start;
  }
  .row-4xl-align-center {
    align-items: center;
  }
  .row-4xl-align-end {
    align-items: flex-end;
  }
}
.col-1 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.col-xs-1 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-xs-4 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-xs-7 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-xs-10 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .col-2xl-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-2xl-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-2xl-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-2xl-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-2xl-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-2xl-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-2xl-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-2xl-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-2xl-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-2xl-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-2xl-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-2xl-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1920px) {
  .col-3xl-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-3xl-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-3xl-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-3xl-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-3xl-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-3xl-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-3xl-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-3xl-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-3xl-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-3xl-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-3xl-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-3xl-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 2400px) {
  .col-4xl-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-4xl-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-4xl-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-4xl-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-4xl-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-4xl-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-4xl-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-4xl-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-4xl-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-4xl-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-4xl-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-4xl-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .col-xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xs-1 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xs-2 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xs-3 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xs-5 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xs-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xs-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xs-9 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xs-11 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xs-12 {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-start {
  justify-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.flex-between {
  justify-content: space-between;
}
.flex-around {
  justify-content: space-around;
}

.grid {
  gap: 1rem;
  display: grid;
}
.grid-justify-center {
  justify-items: center;
}
.grid-vc > .vc_column-inner > .wpb_wrapper {
  display: grid;
}
.grid-vc-col-2 > .vc_column-inner > .wpb_wrapper {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-flow-column {
  grid-auto-flow: column;
}

.grid-col-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-col-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-col-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-col-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-col-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-col-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-col-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-col-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-col-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* ===== Function Render Fonts Query ===== */
/* ===== Fonts Rendered ===== */
@font-face {
  font-family: Avantt-Regular;
  src: url("../assets/fonts/Avantt-Regular.eot");
  src: url("../assets/fonts/Avantt-Regular.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Avantt-Regular.woff") format("woff"), url("../assets/fonts/Avantt-Regular.ttf") format("truetype"), url("../assets/fonts/Avantt-Regular.svg#Avantt-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Avantt-SemiBold;
  src: url("../assets/fonts/Avantt-SemiBold.eot");
  src: url("../assets/fonts/Avantt-SemiBold.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Avantt-SemiBold.woff") format("woff"), url("../assets/fonts/Avantt-SemiBold.ttf") format("truetype"), url("../assets/fonts/Avantt-SemiBold.svg#Avantt-SemiBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Avantt-Bold;
  src: url("../assets/fonts/Avantt-Bold.eot");
  src: url("../assets/fonts/Avantt-Bold.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Avantt-Bold.woff") format("woff"), url("../assets/fonts/Avantt-Bold.ttf") format("truetype"), url("../assets/fonts/Avantt-Bold.svg#Avantt-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: SeasonSerif-Regular;
  src: url("../assets/fonts/SeasonSerif-Regular.eot");
  src: url("../assets/fonts/SeasonSerif-Regular.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/SeasonSerif-Regular.woff") format("woff"), url("../assets/fonts/SeasonSerif-Regular.ttf") format("truetype"), url("../assets/fonts/SeasonSerif-Regular.svg#SeasonSerif-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: SeasonSerif-Medium;
  src: url("../assets/fonts/SeasonSerif-Medium.eot");
  src: url("../assets/fonts/SeasonSerif-Medium.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/SeasonSerif-Medium.woff") format("woff"), url("../assets/fonts/SeasonSerif-Medium.ttf") format("truetype"), url("../assets/fonts/SeasonSerif-Medium.svg#SeasonSerif-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ===== stylelint-enable value-keyword-case ===== */
/* ===== Custom Fonts Variables ===== */
/* ===== Custom font hack size ===== */
.site-header {
  justify-content: normal;
  height: 6rem;
  flex-direction: row;
}
@media only screen and (max-width: 991px) {
  .site-header {
    height: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .site-header {
    margin-bottom: 3em;
  }
}
.site-header .site-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.site-header .site-branding h2, .site-header .site-branding h3 {
  margin: 0.3em;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .site-header .site-branding h2, .site-header .site-branding h3 {
    font-size: 1em;
  }
}
.site-header .header-navigation {
  left: 0;
  right: 0;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
  position: fixed;
  top: 6rem;
  padding: 1em;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .site-header .header-navigation {
    top: 3rem;
    padding-top: 2em;
    background-color: rgba(0, 0, 0, 0.6117647059);
  }
}
.site-header .header-navigation #header-nav {
  padding: 0;
  margin: 0;
  gap: 2em;
  list-style: none;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .site-header .header-navigation #header-nav {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5em;
    position: absolute;
    background: #ffffff;
    width: 100%;
    left: 0;
    right: 0;
    padding-top: 2em !important;
  }
}
@media only screen and (min-width: 992px) {
  .site-header .header-navigation #header-nav {
    display: flex;
  }
  .site-header .header-navigation #header-nav > li {
    width: 16%;
  }
  .site-header .header-navigation #header-nav > li a {
    padding-bottom: 8px;
  }
}
.site-header .header-navigation #header-nav li {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  position: relative;
}
.site-header .header-navigation #header-nav li a {
  color: #000000;
  font-family: Avantt-Regular;
  text-decoration: none;
  font-size: 1.3rem;
  padding-top: 0.5em;
  z-index: 1;
  transition: all 0.2s ease;
}
.site-header .header-navigation #header-nav li a:hover {
  color: #8CA8E7;
}
@media only screen and (max-width: 991px) {
  .site-header .header-navigation #header-nav li a {
    font-size: 1rem;
    color: #707070;
    padding-top: 1em;
  }
}
.site-header .header-navigation #header-nav li.current-menu-parent > a {
  border-bottom: 1px solid #8CA8E7;
  color: #8CA8E7;
}
.site-header .header-navigation #header-nav li.current-menu-item > a {
  color: #8CA8E7;
}
.site-header .header-navigation #header-nav li ul {
  visibility: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  list-style: none;
  border: 1px solid #8CA8E7;
  border-top: none;
  border-bottom-right-radius: 45px;
  background-color: #ffffff;
  padding: 2em;
  padding-top: 4em;
  margin: 0;
  align-items: flex-start;
  z-index: -1;
  box-shadow: 0px 2px 10px 0px rgba(140, 168, 231, 0.1882352941);
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
@media only screen and (min-width: 992px) {
  .site-header .header-navigation #header-nav li ul {
    width: 130%;
  }
}
.site-header .header-navigation #header-nav li ul li {
  width: 100%;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
}
.site-header .header-navigation #header-nav li ul li a {
  font-size: 1.1rem;
  padding: 0.5em 0;
  width: 100%;
  display: block;
  transition: all 0.2s ease;
}
.site-header .header-navigation #header-nav li ul li a:hover {
  color: #8CA8E7;
  transform: translateX(5px);
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover > a {
  border-bottom: 1px solid #8CA8E7;
  color: #8CA8E7;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li {
  opacity: 1;
  transform: translateX(0);
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(1) {
  transition-delay: 0.05s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(2) {
  transition-delay: 0.1s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(3) {
  transition-delay: 0.15s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(4) {
  transition-delay: 0.2s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(5) {
  transition-delay: 0.25s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(6) {
  transition-delay: 0.3s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(7) {
  transition-delay: 0.35s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(8) {
  transition-delay: 0.4s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(9) {
  transition-delay: 0.45s;
}
.site-header .header-navigation #header-nav li.menu-item-has-children:hover ul li:nth-child(10) {
  transition-delay: 0.5s;
}
.site-header .header-navigation .header-nav-toggle-wrap {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .site-header .header-navigation .header-nav-toggle-wrap {
    display: flex;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 0;
    justify-content: center;
  }
  .site-header .header-navigation .header-nav-toggle-wrap .header-nav-toggle {
    background: transparent;
    border: none;
    padding: 0.3em 0.6em;
    border-top: none;
    border-radius: 0;
    border-bottom-right-radius: 15px;
    background-color: #C6D3F3;
    font-family: SeasonSerif-Regular;
    font-size: 1rem;
    color: #ffffff;
    margin-top: -1px;
  }
}
@media only screen and (max-width: 991px) {
  .site-header .header-navigation {
    height: 0;
    padding: 0;
  }
  .site-header .header-navigation #header-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    background-color: transparent;
  }
  .site-header .header-navigation #header-nav.nav-collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  }
  .site-header .header-navigation #header-nav.nav-expanded {
    opacity: 1;
    visibility: visible;
    transition: max-height 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease-in;
    max-height: fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 1em 4em;
    border: 1px solid #8CA8E7;
    border-top: none;
    border-bottom-right-radius: 45px;
    background-color: #ffffff;
  }
  .site-header .header-navigation .header-nav-toggle {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }
  .site-header .header-navigation .header-nav-toggle i {
    visibility: hidden;
    font-size: 0;
  }
  .site-header .header-navigation .header-nav-toggle.open {
    z-index: 1;
    border: none;
  }
  .site-header .header-navigation.right-nav-open {
    height: 100%;
    z-index: -1;
  }
  .site-header .header-navigation.right-nav-open i {
    visibility: visible;
    font-size: 11px;
  }
}
.site-header.shrunk {
  height: 4rem;
}
.site-header.shrunk .header-navigation {
  top: 4rem;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.0509803922);
}
@media only screen and (min-width: 992px) {
  .site-header.shrunk .header-navigation {
    padding-top: 8px;
  }
}
.site-header.shrunk .header-navigation #header-nav li a {
  font-size: 1.1rem;
  padding-top: 0;
}
.site-header.shrunk .header-navigation #header-nav li .sub-menu {
  top: 2.3rem;
  padding-top: 2em;
}
.site-header.shrunk .header-navigation #header-nav li .sub-menu a {
  font-size: 1.1rem;
}
.site-header.shrunk .site-branding h2, .site-header.shrunk .site-branding h3 {
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  .site-header.shrunk {
    height: 3rem;
  }
  .site-header.shrunk .header-navigation {
    top: 3rem;
  }
  .site-header.shrunk .header-navigation #header-nav li a {
    font-size: 1rem;
    padding-top: 0.5em;
  }
  .site-header.shrunk .site-branding h2, .site-header.shrunk .site-branding h3 {
    font-size: 14px;
  }
}

.site-header {
  height: 8rem;
}
@media only screen and (max-width: 991px) {
  .site-header {
    height: 5rem;
  }
}
.site-header .site-branding {
  flex-direction: column;
}
.site-header .header-navigation {
  top: 8rem;
}
@media only screen and (max-width: 991px) {
  .site-header .header-navigation {
    top: 5rem;
  }
}
.site-header.shrunk {
  height: 5rem;
}
.site-header.shrunk .header-navigation {
  top: 5rem;
}
@media only screen and (max-width: 991px) {
  .site-header.shrunk {
    height: 4rem;
  }
  .site-header.shrunk .header-navigation {
    top: 4rem;
  }
}

.pagination {
  padding-top: 1em;
}
.pagination .nav-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.8em;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination .nav-links .page-numbers {
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .nav-links .page-numbers.current {
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.pagination .nav-links .page-numbers.next i:before, .pagination .nav-links .page-numbers.prev i:before {
  font-weight: 500;
}

.pagination .nav-links .page-numbers {
  background: #ffffff;
  color: #8CA8E7;
  border: 1px solid #8CA8E7;
  border-radius: 100%;
}
.pagination .nav-links .page-numbers.current {
  background: #1746B0;
  border-radius: 100%;
  color: #ffffff;
  border-color: #1746B0;
}

/* Abstracts
--------------------------------------------- */
h1 {
  font-size: clamp(1.8rem, 1.8rem + (5.5 - 1.8) * (100vw - 320px) / (1200 - 320), 5.5rem);
}

h2 {
  font-size: clamp(1.6rem, 1.6rem + (5 - 1.6) * (100vw - 320px) / (1200 - 320), 5rem);
}

h3 {
  font-size: clamp(1.4rem, 1.4rem + (3.8 - 1.4) * (100vw - 320px) / (1200 - 320), 3.8rem);
}

h4 {
  font-size: clamp(1.3rem, 1.3rem + (3.5 - 1.3) * (100vw - 320px) / (1200 - 320), 3.5rem);
}

h5 {
  font-size: clamp(1.2rem, 1.2rem + (3 - 1.2) * (100vw - 320px) / (1200 - 320), 3rem);
}

h6 {
  font-size: clamp(1.2rem, 1.2rem + (2 - 1.2) * (100vw - 320px) / (1200 - 320), 2rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }
}

.sticky {
  display: block;
  position: sticky;
}

.updated:not(.published) {
  display: none;
}

.btn-classic {
  font-family: SeasonSerif-Regular;
  color: #000000;
  text-decoration: none;
  position: relative;
  width: fit-content;
}
.btn-classic a,
.btn-classic p,
.btn-classic strong,
.btn-classic .wpb_wrapper,
.btn-classic .wpb_text_column {
  position: relative;
  width: fit-content;
}
.btn-classic:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  left: -0.6rem;
  top: -0.3rem;
  background-color: #C6D3F3;
  z-index: -1;
  transition: all 1s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%), transform 2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.btn-classic:hover {
  color: #0D2968;
}
.btn-classic:hover:before {
  left: auto;
  top: auto;
  right: -0.6rem;
  bottom: -0.3rem;
}

.btn-ronde a {
  border: 1px solid #C6D3F3;
  border-bottom-right-radius: 22px;
  text-decoration: none;
  padding: 0.4em;
  position: relative;
  width: 100%;
  display: block;
  font-size: 1.3rem;
}
.btn-ronde a:before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  z-index: -1;
  background-color: #C6D3F3;
  margin-left: -5px;
  margin-top: -1px;
}

.flex_column {
  flex-direction: column;
}

/* Components
--------------------------------------------- */
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-content p, .page-content a,
.entry-content p,
.entry-content a,
.entry-summary p,
.entry-summary a {
  font-family: SeasonSerif-Regular;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-summary h1,
.entry-summary h2,
.entry-summary h3,
.entry-summary h4,
.entry-summary h5,
.entry-summary h6 {
  font-family: Avantt-Regular;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.box-tel .wpb_wrapper {
  background: #C6D3F3;
  padding: 1em;
  line-height: 1.5;
  text-align: center;
  color: #1B52CF;
  font-size: 18px;
}

.box-bleu > .vc_column-inner > .wpb_wrapper {
  border: 0.3rem solid #1B52CF;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box-bleu > .vc_column-inner > .wpb_wrapper .vc_icon_element, .box-bleu > .vc_column-inner > .wpb_wrapper .vc_icon_element-inner, .box-bleu > .vc_column-inner > .wpb_wrapper .wpb_content_element {
  margin-bottom: 0 !important;
}
.box-bleu > .vc_column-inner > .wpb_wrapper h2 {
  font-size: 2.2rem;
  color: #1746B0;
  font-family: Avantt-Bold;
}
.box-bleu > .vc_column-inner > .wpb_wrapper h3 {
  color: #0D2968;
}

.site-main {
  padding-top: 3em;
}

@media only screen and (min-width: 992px) {
  .site-main #content:not(.no-sidebar) {
    padding-right: 3em;
  }
  .site-main #secondary {
    padding-left: 2em;
  }
}
@media only screen and (max-width: 991px) {
  .site-main {
    padding-top: 3em !important;
  }
}

.title-block h2 {
  padding: 0;
  margin: 0;
  font-family: Avantt-Bold;
}

@media only screen and (min-width: 992px) {
  .merola-widget {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.catalogue-gallery__title {
  font-family: Avantt-Regular !important;
}

/* Widgets
--------------------------------------------- */
/* Widgets
--------------------------------------------- */
/* Abstracts
--------------------------------------------- */
.list-articles article {
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.list-articles article:not(:last-child) {
  border-bottom: 2px solid rgb(187, 184, 184);
}
.list-articles .post-thumbnail {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: 1em;
}
.list-articles .post-thumbnail:before, .list-articles .post-thumbnail:after {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  z-index: 2;
  background-color: #C6D3F3;
}
.list-articles .post-thumbnail::before {
  top: -0.5em;
  left: -0.5em;
}
.list-articles .post-thumbnail::after {
  bottom: -0.5em;
  right: -0.5em;
}
.list-articles .post-thumbnail img {
  width: 100%;
}
.list-articles .read_more {
  font-family: SeasonSerif-Regular;
}
.list-articles .article-content p {
  font-family: SeasonSerif-Regular;
}

.titre-post,
.title-page h1, .title-page h2, .title-page h3 {
  font-family: Avantt-Bold;
  line-height: 1.3;
  color: #8CA8E7;
}

a .titre-post:hover,
a .title-page h1:hover, a .title-page h2:hover, a .title-page h3:hover {
  color: #1746B0;
}

/* Abstracts
--------------------------------------------- */
#mailchimp_contact_form_wrap {
  background-color: #e7e7e7;
  padding: 4em 5em;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background: #fafafa;
}
@media only screen and (max-width: 767px) {
  #mailchimp_contact_form_wrap {
    padding: 2em;
  }
}
#mailchimp_contact_form_wrap #mailchimp-ajax-form label,
#mailchimp_contact_form_wrap #mailchimp-ajax-form input,
#mailchimp_contact_form_wrap #mailchimp-ajax-form textarea {
  color: #000000;
}
#mailchimp_contact_form_wrap #mailchimp-ajax-form input,
#mailchimp_contact_form_wrap #mailchimp-ajax-form textarea {
  border: 1px solid rgb(186, 186, 186);
}
#mailchimp_contact_form_wrap #mailchimp-ajax-form .g-recaptcha {
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
#mailchimp_contact_form_wrap #mailchimp-ajax-form .flex_column {
  gap: 1em;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #mailchimp_contact_form_wrap #mailchimp-ajax-form .checks .form-field {
    justify-content: left;
  }
}
#mailchimp_contact_form_wrap #mailchimp-ajax-form .btn-send .form-field input:hover {
  background-color: #C6D3F3;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  #mailchimp_contact_form_wrap #mailchimp-ajax-form .form-group {
    gap: 1em;
  }
}
#mailchimp_contact_form_wrap #mailchimp-ajax-form #agree_policy_conditions {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mailchimp_contact_form_wrap #mailchimp-ajax-form .has-child .checks {
    order: 2;
  }
  #mailchimp_contact_form_wrap #mailchimp-ajax-form .has-child .recaptcha {
    order: 1;
  }
}

/* Abstracts
--------------------------------------------- */
#site-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
#site-sidebar .widget-formation {
  display: flex;
  justify-content: flex-start;
  padding: 1.7em;
  flex-direction: column;
  position: relative;
  font-family: SeasonSerif-Regular;
}
#site-sidebar .widget_media_image img {
  width: 100%;
}

/* Abstracts
--------------------------------------------- */
.widget-quote {
  margin-bottom: 1em;
  position: relative;
  border: 5px solid #8CA8E7;
}
.widget-quote.border-right {
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
}
.widget-quote.border-left {
  border-top-left-radius: 45px;
  border-bottom-right-radius: 45px;
}
.widget-quote .icon-guillemets-down {
  font-size: 1.5rem;
}
.widget-quote .icon-guillemet-top {
  align-self: flex-end;
  display: block;
  text-align: right;
  font-size: 1.5rem;
}
.widget-quote blockquote {
  position: relative;
  margin: 0;
}
.widget-quote blockquote .quote_details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-size: 14px;
}
.widget-quote blockquote .quote_details .quote_formation {
  font-size: 14px;
  font-family: SeasonSerif-Medium;
}
.widget-quote blockquote .quote_details .quote_name {
  z-index: 1;
  position: relative;
}
.widget-quote blockquote .quote_details .quote_name:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: -0.2em;
  top: -0.2em;
  background: #C6D3F3;
  z-index: -1;
}
.widget-quote blockquote .quote_details .quote_name:before {
  color: #C6D3F3;
}
.widget-quote blockquote p.quote_text {
  font-style: italic;
  font-size: 15px;
}

/* Abstracts
--------------------------------------------- */
.widget-rating {
  position: relative;
  margin-bottom: 1em;
  border: 5px solid #8CA8E7;
}
.widget-rating.border-right {
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
}
.widget-rating.border-left {
  border-top-left-radius: 45px;
  border-bottom-right-radius: 45px;
}
.widget-rating .widget-title {
  text-align: center;
  padding-right: 1rem;
}
.widget-rating .widget-title h3 {
  font-size: 1rem;
  text-align: right;
  font-family: Avantt-Bold;
  position: relative;
  z-index: 1;
  margin-bottom: -1.5rem;
  margin-top: 0;
}
.widget-rating .widget-title h3:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: -0.2em;
  top: -0.2em;
  background: #8CA8E7;
  z-index: -1;
}
.widget-rating .widget-title h3:before {
  background-color: #C6D3F3;
}
.widget-rating .rating_details {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.widget-rating .rating_details p.rating_text {
  font-style: italic;
  font-size: 15px;
  color: #000;
}
.widget-rating .rating_details .rating_total {
  font-size: 22px;
  text-align: left;
  font-family: Avantt-Bold;
  margin-top: -1em;
  margin-bottom: 1em;
}
.widget-rating .rating_details .rating_total .icon-Etoiles span:before {
  color: #ffcd0c;
}
.widget-rating .rating_details .rating-col {
  display: flex;
  justify-content: space-between;
}
.widget-rating .rating_details .rating-col span {
  font-size: 13px;
}
.widget-rating .rating_details .rating-col .icons {
  font-size: 2rem;
  align-self: center;
}
.widget-rating .rating_details .rating-col .icons:before {
  color: #ffcd0c;
}
.widget-rating .rating_details .rating-source {
  margin-top: 2em;
  font-size: 12px;
  text-align: center;
  margin-bottom: 0;
}

/* Abstracts
--------------------------------------------- */
.widget-qualiopi {
  position: relative;
  margin-bottom: 1em;
  border: 5px solid #8CA8E7;
  text-align: center;
}
.widget-qualiopi.border-right {
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
}
.widget-qualiopi.border-left {
  border-top-left-radius: 45px;
  border-bottom-right-radius: 45px;
}
.widget-qualiopi .widget-body {
  align-items: center;
}
.widget-qualiopi .widget-body a {
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.widget-qualiopi .widget-body a .q_text {
  font-family: SeasonSerif-Regular;
  color: #000000;
  text-align: center;
}
.widget-qualiopi .widget-body a .q_text p {
  line-height: 1.5;
  margin-bottom: 0;
}
.widget-qualiopi .widget-body a .q_text p:first-child {
  position: relative;
}
.widget-qualiopi .widget-body a .q_text p:first-child:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: -0.2em;
  top: -0.2em;
  background: #C6D3F3;
  z-index: -1;
}

/* Abstracts
--------------------------------------------- */
.formation-slider {
  position: relative;
}
.formation-slider .control {
  list-style: none;
  margin: 0;
  padding: 0;
}
.formation-slider .control li {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  padding: 3px 11px;
  border-radius: 50%;
  cursor: pointer;
  background: none;
}
.formation-slider .control li i {
  font-size: 25px;
}
.formation-slider .control li i:before {
  font-weight: 500;
}
.formation-slider .control li:hover {
  color: #1B52CF;
  background: none;
}
.formation-slider .control li.prev {
  left: 10px;
}
.formation-slider .control li.next {
  right: 10px;
}
.formation-slider .tns-nav {
  text-align: center;
}
.formation-slider .tns-nav button {
  height: 10px;
  width: 10px;
  background-color: #8CA8E7;
  border: none;
  margin-left: 7px;
  border-radius: 0;
  padding: inherit;
}
.formation-slider .tns-nav .tns-nav-active {
  background-color: #1B52CF;
}
.formation-slider .tns-inner {
  text-align: center;
}
.formation-slider .tns-item {
  padding: 1em;
  padding-top: 0;
}
.formation-slider .tns-item img {
  width: 100%;
  padding-right: 1em;
}

/* Abstracts
--------------------------------------------- */
.widget-membres {
  position: relative;
  margin-bottom: 1em;
  border: 5px solid #8CA8E7;
}
.widget-membres.border-right {
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
}
.widget-membres.border-left {
  border-top-left-radius: 45px;
  border-bottom-right-radius: 45px;
}
.widget-membres .widget-body {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
}
.widget-membres .widget-body .widget-title h3 {
  font-size: 1rem;
  text-align: left;
  font-family: SeasonSerif-Regular;
  font-weight: 100;
  position: relative;
}
.widget-membres .widget-body .widget-title h3:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: -0.2em;
  top: -0.2em;
  background: #C6D3F3;
  z-index: -1;
}
.widget-membres .widget-body .membres_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  row-gap: 1em;
}
.widget-membres .widget-body .membres_wrap span {
  width: 50%;
  text-align: center;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 480px) {
  .container:not(.is-fluid) {
    max-width: 444px;
  }
}
@media only screen and (min-width: 576px) {
  .container:not(.is-fluid) {
    max-width: 528px;
  }
}
@media only screen and (min-width: 768px) {
  .container:not(.is-fluid) {
    max-width: 736px;
  }
}
@media only screen and (min-width: 992px) {
  .container:not(.is-fluid) {
    max-width: 962px;
  }
}
@media only screen and (min-width: 1200px) {
  .container:not(.is-fluid) {
    max-width: 1160px;
  }
}
@media only screen and (min-width: 1400px) {
  .container:not(.is-fluid) {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1920px) {
  .container:not(.is-fluid) {
    max-width: 1320px;
  }
}
@media only screen and (min-width: 2400px) {
  .container:not(.is-fluid) {
    max-width: 1600px;
  }
}

.container-xs {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 480px) {
  .container-xs {
    max-width: 444px;
  }
}

.container-sm {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .container-sm {
    max-width: 528px;
  }
}

.container-md {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .container-md {
    max-width: 736px;
  }
}

.container-lg {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .container-lg {
    max-width: 962px;
  }
}

.container-xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .container-xl {
    max-width: 1160px;
  }
}

.container-2xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .container-2xl {
    max-width: 1200px;
  }
}

.container-3xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 1920px) {
  .container-3xl {
    max-width: 1320px;
  }
}

.container-4xl {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (min-width: 2400px) {
  .container-4xl {
    max-width: 1600px;
  }
}

@media only screen and (max-width: 991px) {
  .site-main {
    padding: 1em;
  }
}

/*# sourceMappingURL=style.css.map */
