body, a, button {
  color: #fff;
  font-family: 'Red Hat Display', sans-serif;
}
body * {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.d-none {
  display: none;
}
.is-hidden {
  visibility: hidden;
}

body {
  background-color: #140651;
  background-image: url('../img/background3.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.header {
  margin: 30px 0px 30px 0px;
}
.header__logo {
  display: block;
  margin: auto;
  height: 100px;
}

.main {
  margin: auto;
  width:90%;
  max-width: 992px;
}
@media (min-width:576px) {
  .main {
    width:80%;
  }
}

.video-section{
  margin: auto;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
@media (min-width:400px) {
  .video-section {
    width: 400px;
    min-height: 200px;
    padding: 0;
  }
}
.video-section .mejs__container{
  width: 100%;
  position: absolute;
  top:0;
  left: 0;
  background-color: #2E3192;
}
@media (min-width:400px) {
  .video-section .mejs__container{
    width: 400px;
    height: 200px;
    position: unset;
  }
}

.form-section {
  padding: 20px 40px 20px 40px;
  margin: 40px auto 0;
  background-color: #2E319255;
  border-radius: 10px;
  max-width: 600px;
}
.form-section__title {
  margin-top: 0;
  text-align: center;
}
.form-section__text {
  text-align: center;
}
.form-section__text--ty {
  font-size: 110%
}
.form-section__buttons {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button {
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.button--next {
  padding: 8px 16px;
  border-radius: 48px;
  background-color: #00ACA8;
  font-weight: 600;
}
.button--next:hover {
  color: #00ACA8;
  background-color: #fff;
}
.button--last {
  background-color: transparent;
  color: #00ACA8;
  font-size: 80%;
}
.button--last:hover {
  text-decoration: underline;
}
.button__info {
  padding-left: 8px;
  color : #00ACA8;
}
.button__info strong {
  font-weight: 500;
}
.button__info strong:after {
  content:' ↲';
  color: #fff;
}

#form-thankyou {
  position: relative;
  top: -50px;
  color: #2AADA8;
  font-weight: bold;
}
[data-id="error"]  {
  color:#FF0000;
  font-weight:bold;
  font-size:10px;
}

.carousel-section {
  margin: 20px auto 0;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 10px;
  max-width: 780px;
}

.footer {
  margin: 48px auto 32px;
  text-align: center;
  font-weight: 500;
  font-size: 80%;
}
.footer__mentions {
  text-transform: uppercase;
  letter-spacing: 3px;
  padding-bottom: 24px;
}
.footer__mentions a:hover {
  text-decoration: underline;
}
.footer__copyright a {
  font-size:90%;
  color:  #008E3F;
}
.footer__copyright a:hover {
  text-decoration: underline;
}

/*
    startin'blox
*/

solid-form-dropdown-label,
solid-form-label-text,
solid-form-checkbox,
input[type="submit"] {
  display: none;
}
.is-animated {
  animation: fadeInDown 1s;
}
.form-section label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: .5px;
}
.form-section input[type="text"],
.form-section select {
  width: 100%;
  height: 48px;
  margin-bottom: 16px;
  padding: 8px;
  border: 1px solid white;
  border-radius: 4px;
}
.form-section input,
.form-section select {
  background-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,1);
}
.form-section select {
  cursor: pointer;
}
.form-section option {
  color:#140651;
}
.form-section solid-form-checkbox {
  height: 102px;
  padding-top: 16px;
}
@media(min-width:768px) {
  .form-section solid-form-checkbox {
    padding-top: 32px;
    font-size: 110%;
  }
}
.form-section solid-form-checkbox label {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.form-section solid-form-checkbox label input {
  margin-left: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: solid 2px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  padding: 0.75em;

  outline: 2px solid #ff0000;
}
.form-section solid-form-checkbox label input[type="checkbox"]::before {
  position: absolute;
  content: '';
  display: block;
  top: 2px;
  left: 8px;
  width: 8px;
  height: 14px;
  border-style: solid;
  border-color: white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}
.form-section solid-form-checkbox label input[type="checkbox"]:checked::before {
    opacity: 1;
}
.form-section solid-form-checkbox > label > div {
  max-width: 480px;
}

.form-section solid-form-label-text[required] > label:after,
.form-section solid-form-dropdown-label[required] > label:after {
    content: ' *';
    color: red;
}


/*
    media element
*/
.mejs__overlay-button {
  background: url('../img/PlayButton.svg') no-repeat !important;
}

/*
    swiper
*/
.swiper-slide {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  font-size: 90%;
  padding: 32px;
  color:#2E3192;
}
@media (min-width:768px) {
  .swiper-slide {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 64px;
  }
}
.swiper-container .swiper-button-prev:after,
.swiper-container .swiper-button-next:after {
  width:20px;
  height:20px;
}
.swiper-container .swiper-button-prev:after {
  content: url('../img/Left_arrow.svg');
}
.swiper-container .swiper-button-next:after {
  content: url('../img/Right_arrow.svg');
}
.swiper-slide__portrait {
  position: relative;
  margin: auto;
  margin-bottom: 16px;
}
@media (min-width:768px) {
  .swiper-slide__portrait {
    margin: 0;
  }
}
.swiper-slide__portrait__img img{
  height: 120px;
  border-radius: 50%;
}
.swiper-slide__portrait__deco {
  position: absolute;
}

.swiper-slide__portrait__deco img {
  height: 16px;
}
.swiper-slide__portrait__deco--1 {
  top: 4px;
  left: 4px;
}
.swiper-slide__portrait__deco--2 {
  bottom: 4px;
  right: 4px;
}

@media (min-width:768px) {
  .swiper-slide__text {
    padding: 0 16px;
  }
}
.swiper-slide__text__statement {
  text-align: center;
}
@media (min-width:768px) {
  .swiper-slide__text__statement {
    text-align: left;
  }
}
.swiper-slide__text__statement p {
  margin: 0;
}

.swiper-slide__text__presentation {
  width: 100%;
  padding: 0 16px 16px;
  text-align: center;
}
@media (min-width:768px) {
  .swiper-slide__text__presentation {
    padding: 0 0 16px;
    text-align: left;
  }
}
.swiper-slide__text__presentation__name-role {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
  font-weight: 600;
}
@media (min-width:768px) {
  .swiper-slide__text__presentation__name-role {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.swiper-slide__text__presentation__name-role__name {
  color:  #008E3F;
}
.swiper-slide__text__presentation__name-role__sep {
  display: none;
}
@media (min-width:768px) {
  .swiper-slide__text__presentation__name-role__sep {
    display: block;
    padding: 0 .25em;
  }
}
.swiper-slide__text__presentation__name-role__role {

}
.swiper-slide__text__presentation__company-url {
  display: flex;
  flex-direction: column;
}
@media (min-width:768px) {
  .swiper-slide__text__presentation__company-url {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.swiper-slide__text__presentation__company-url__sep {
  display: none;
}
@media (min-width:768px) {
  .swiper-slide__text__presentation__company-url__sep {
    display: block;
    padding: 0 .25em;
  }
}
.swiper-slide__text__presentation__company-url__url {
  color:#2E3192;
}
.swiper-slide__text__presentation__company-url__url:hover {
  text-decoration: underline;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}
