/**
 * @file
 * Global rules
 *
 * Theme global rules.
 */

html {
  height: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}
html, body {
  position: relative;
  font-family: Arial, sans-serif;
  color: #000000;
}
body {
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
p, h1, h2, h3 {
  position: relative;
}
::selection {
  background-color: #0A184D;
  color: #fff;
}
a:focus, button:focus, div:focus, input:focus{
  outline: none;
}
.title {
  margin-bottom: 50px;
  margin-top: 70px;
}
.title-white {
  color: #ffffff
}
.title-yellow {
  color: #FFDC40
}
.title-blue {
  color: #0A184D;
  font-weight:400;
}
.section-mt {
  margin-top: 88px;
}
.gradiant-background {
  background: rgb(10,24,77);
  background: linear-gradient(180deg, rgba(10,24,77,1) 0%, rgba(10,24,77,1) 75%, rgba(255,255,255,1) 75%);
}
.hero-layout .banner__content {
  top: 30%;
}
@media all and (min-width: 500px) {
  .hero-layout .banner__content {
    top: 46%;
  }
}
@media all and (min-width: 1000px) {
  .gradiant-background {
    background: rgb(10,24,77);
    background: linear-gradient(90deg, rgba(10,24,77,1) 0%, rgba(10,24,77,1) 75%, rgba(255,255,255,1) 75%);
  }
}


/**
 * Image style
 */
.image-mask .field--name-field-background-image::before,
.image-mask .field--name-field-image::before {
  position: absolute;
  display: block;
  content: '';
  background-color: hsla(227, 77%, 17%, 0.50);
  width: 100%;
  height: 100%;
}


/**
 * Card style
 */

.card-list {
  display: flex;
  justify-content: center;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 3px 15px 0 rgba(0, 0, 0, 0.01);
}
.card__link a {
  color: #0A184D;
  display: inline-flex;
  align-items: center;
}
.card__link > .field--type-link {
  display: inline-flex;
}
.card__link > .field--type-link::before {
  content: '';
  background-image: url('../images/content/arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 36px;
  width: 36.01px;
  margin-right: 10px;
}
.background-bleu {
  background-color: #0A184D
}
.background-blanc {
  background-color: #ffffff
}


/**
 * Line under title
 */

.highlight::after {
  content: '';
  position: absolute;
  display: block;
  height: 5px;
  width: 118px;
  top: 140%;
}
.highlight--white::after {
  background-color: white;
}
.highlight--yellow::after {
  background-color: #FFDC40;
}
.highlight--center::after {
  transform: translatex(50%);
  right: 50%;
}
.highlight--right::after {
  right: 0;
}


/**
 * Links
 */

a {
  color: blue;
  text-decoration: none;
}
.banner__link a,
.about__link a {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.6rem;
  background-color: #FFDC40;
  border-radius: 30px;
}
.banner__link a::before,
.about__link a::before {
  content: '';
  background-image: url('../images/content/arrow.svg');
  width: 36px;
  height: 36px;
  transform: translateX(-8px);
}
.banner__link a:hover,
.about__link a:hover {
  background-color: #0a194db9;
}
.banner__link a:hover span,
.about__link a:hover span {
  color: white;
}
.banner__link span,
.about__link span {
 color: #0A184D;
 font-size: 1.125em;
}



.cta-yellow {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.6rem;
  background-color: #FFDC40;
  border-radius: 30px;
  font-size: 20px!important;
}

.cta-yellow::before {
  content: '';
  background-image: url('../images/content/arrow.svg');
  width: 36px;
  height: 36px;
  transform: translateX(-8px);
}

.cta-yellow:hover {
  background-color: #0a194db9;
}

.cta-yellow:hover {
  color: white;
}

.cta-yellow  {
  color: #0A184D;
  font-size: 1.125em;
}

.text-28px {
  font-size: 28px;
}
