.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 9999;
  text-align: center;
}

.preloader-icon {
  position: relative;
  top: 45%;
  width: 200px;
  -webkit-animation: shake 1.5s infinite;
          animation: shake 1.5s infinite;
}

@-webkit-keyframes shake {
  0% {
    transform: translate(1px, -1px) rotate(0deg);
  }
  10% {
    transform: translate(1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(1px, -5px) rotate(-3deg);
  }
  30% {
    transform: translate(1px, -7px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -9px) rotate(1deg);
  }
  50% {
    transform: translate(1px, -11px) rotate(3deg);
  }
  60% {
    transform: translate(1px, -9px) rotate(0deg);
  }
  70% {
    transform: translate(1px, -7px) rotate(-1deg);
  }
  80% {
    transform: translate(1px, -5px) rotate(-3deg);
  }
  90% {
    transform: translate(1px, -3px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -1px) rotate(-1deg);
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, -1px) rotate(0deg);
  }
  10% {
    transform: translate(1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(1px, -5px) rotate(-3deg);
  }
  30% {
    transform: translate(1px, -7px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -9px) rotate(1deg);
  }
  50% {
    transform: translate(1px, -11px) rotate(3deg);
  }
  60% {
    transform: translate(1px, -9px) rotate(0deg);
  }
  70% {
    transform: translate(1px, -7px) rotate(-1deg);
  }
  80% {
    transform: translate(1px, -5px) rotate(-3deg);
  }
  90% {
    transform: translate(1px, -3px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -1px) rotate(-1deg);
  }
}
.container {
  width: 100%;
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1100px;
  }
}
@media screen and (min-width: 1560px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
}

html {
  height: -webkit-fill-available;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

.title {
  font-size: 30px;
  text-align: center;
  position: relative;
}
.title.-color-gray {
  color: gray;
}
.title.-color-blue {
  color: #24009c;
}
.title.-color-pink {
  color: rgb(238, 0, 139);
}
.title.-gray {
  color: gray;
}
.title.-blue {
  color: #24009c;
}
.title.-small {
  font-size: 20px;
}
.title.-main {
  font-size: 30px;
}
.title.-left {
  text-align: left;
}
.title.-margin {
  margin: 20px 0;
}
.title.-noMargin {
  margin: 0 !important;
}

p {
  font-size: 13px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1560px) {
  p {
    font-size: 18px;
  }
}

.fadeIn {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}

.fadeInTrigger {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1s, opacity 1s;
}

/*
    HTML5 Reset :: style.css
    ----------------------------------------------------------
    We have learned much from/been inspired by/taken code where offered from:
    Eric Meyer                  :: http://meyerweb.com
    HTML5 Doctor                :: http://html5doctor.com
    and the HTML5 Boilerplate   :: http://html5boilerplate.com
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

main,
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

* {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-before: 0;
          padding-block-start: 0;
  -webkit-padding-after: 0;
          padding-block-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
    In fact, it *will* cause problems with Google Maps' controls at small size.
    If this is the case for you, try uncommenting the following:
#map img {
        max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
    you'll have to restore the bullets within content,
    which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select,
input,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td,
td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #24009c;
}

.about-me .main-box {
  display: flex;
  justify-content: space-between;
}
.about-me .main-box > .text {
  flex-basis: 60%;
}
.about-me .main-box > .text > .button-show {
  background-color: #24009c;
  color: white;
  border: 2px solid #24009c;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.4s;
  margin: 3vh 0 5vh;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.about-me .main-box > .text > .button-show:hover {
  background-color: white;
  cursor: pointer;
  color: #24009c;
  transition: 0.4s;
  transform: translateY(10px);
}
.about-me .main-box > .text > .hidden {
  transition: 0.4s;
  height: 0;
  width: 100%;
  overflow: hidden;
}
.about-me .main-box > .text > .show-text {
  transition: 0.4s;
  height: auto;
}
.about-me .main-box > .text p {
  margin: 20px 0;
}
.about-me .main-box > .image {
  flex-basis: 30%;
  display: flex;
  align-items: center;
}
.about-me .main-box > .image img {
  width: 100%;
}
.about-me .about-me-list ul {
  margin: 4vh;
  list-style-type: disc;
}
.about-me .about-me-list ul li {
  margin: 2vh 0;
}
.about-me .about-me-second {
  margin: 10vh auto;
}
.about-me .about-me-second > .first {
  background-color: #f4f0ff;
  padding: 20px 5px;
  margin: 20px 0;
}
.about-me .about-me-second > .first em {
  font-style: normal;
  font-weight: 600;
}
.about-me .about-me-second > .second {
  padding: 20px 5px;
  margin: 20px 0;
}
.about-me .about-me-second .button {
  background-color: #24009c;
  color: white;
  border: 2px solid #24009c;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.4s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4vh auto;
}
.about-me .about-me-second .button:hover {
  background-color: white;
  cursor: pointer;
  color: #24009c;
  transition: 0.4s;
  transform: translateY(10px);
}
.about-me .about-me-second > .image-box {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about-me .about-me-second > .image-box {
    flex-direction: row;
  }
}
.about-me .about-me-second > .image-box .element {
  flex-basis: 50%;
}
.about-me .about-me-second > .image-box .element-violent {
  background-color: #f4f0ff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}
.about-me .about-me-second > .image-box img {
  flex-basis: 40%;
}
.about-me .about-me-second p {
  margin: 10px 0;
}
.about-me .about-me-join {
  background-color: #f4f0ff;
  padding: 4vh 0;
}
.about-me .about-me-join .about-me-join-box > .text {
  margin: 4vh 0;
}
.about-me .about-me-join .about-me-join-box > .text p {
  font-size: 18px;
}
.about-me .about-me-join .about-me-join-box > .button {
  background-color: #24009c;
  color: white;
  border: 2px solid #24009c;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.4s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
}
.about-me .about-me-join .about-me-join-box > .button:hover {
  background-color: white;
  cursor: pointer;
  color: #24009c;
  transition: 0.4s;
  transform: translateY(10px);
}

.offer-page .offer-head {
  background-image: url("../../assets/image/offer.webp");
  background-position: center;
  background-size: cover;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}
.offer-page > .offer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.offer-page > .offer-box > .element {
  flex-basis: 80%;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .offer-page > .offer-box > .element {
    flex-basis: 20%;
  }
}
.offer-page > .offer-box > .element > .image {
  transform: translateY(40px);
  width: 70%;
  margin: 0 auto;
}
.offer-page > .offer-box > .element > .title {
  font-weight: 600;
  margin: 20px 0;
  font-size: 15px;
}
.offer-page > .offer-box > .element > .button {
  background-color: #24009c;
  color: white;
  border: 2px solid #24009c;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.4s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.offer-page > .offer-box > .element > .button:hover {
  background-color: white;
  cursor: pointer;
  color: #24009c;
  transition: 0.4s;
  transform: translateY(10px);
}
.offer-page .offer-program {
  margin: 15vh auto;
}
.offer-page .offer-program .offer-program-box {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10vh 0;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .offer-page .offer-program .offer-program-box {
    justify-content: space-between;
  }
}
.offer-page .offer-program .offer-program-box > .element {
  flex-basis: 80%;
  flex-direction: column;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 5vh;
}
@media screen and (min-width: 768px) {
  .offer-page .offer-program .offer-program-box > .element {
    flex-basis: 18%;
  }
}
.offer-page .offer-program .offer-program-box > .element > .number {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 15px;
  border-radius: 50%;
  background-color: #24009c;
  margin: 0 auto;
  font-weight: 700;
}
.offer-page .offer-program .offer-program-box > .element > .title {
  margin: 20px 0;
  font-size: 20px;
}
.offer-page .offer-page-more {
  background-color: #24009c;
  padding: 4vh 0;
  color: white;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  flex-direction: column;
  text-align: center;
}
.offer-page .offer-page-more a {
  text-decoration: none;
  color: rgb(238, 0, 139);
}
.offer-page .pwz {
  margin: 5vh 0;
  padding: 5vh 0;
  background-color: #f4f0ff;
}
.offer-page .pwz .pwz-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.offer-page .pwz .pwz-box .element {
  flex-basis: 100%;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .offer-page .pwz .pwz-box .element {
    flex-basis: 32%;
  }
}
.offer-page .pwz .pwz-box .element div {
  display: flex;
  align-items: center;
}
.offer-page .pwz .pwz-box .element > .title {
  font-size: 24px;
  text-align: left;
}
.offer-page .pwz .pwz-box .element > p {
  font-size: 15px;
  margin: 20px 0;
}
.offer-page .pwz .pwz-box .element > p.-blue {
  color: #24009c;
  font-weight: 600;
}
.offer-page .pwz .pwz-box .element img {
  width: 50px;
  margin-right: 10px;
  vertical-align: middle;
}
.offer-page .pwz .pwz-box .element p {
  margin: 20px 0;
}

header {
  z-index: 999;
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}

.header--component {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 999;
  margin: 0 auto;
  width: 100%;
  justify-content: space-between;
  padding: 10px;
}
.header--component .header--logo {
  position: relative;
  width: 90px;
}
.header--component .header--logo img {
  width: 100%;
}
.header--component .header--menu ul {
  display: flex;
  transition: 0.3s;
  margin: 0;
}
.header--component .header--menu ul li {
  padding: 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  transition: 0.4s;
}
.header--component .header--menu ul li:hover {
  color: white;
  transform: translateY(-5px);
  transition: 0.4s;
}
.header--component .header--menu ul li:hover a:after {
  width: 100%;
}
.header--component .header--menu ul a {
  font-weight: 400;
  position: relative;
  font-size: 16px;
  color: #24009c;
  text-decoration: none;
  display: flex;
}
.header--component .header--menu ul a:after {
  content: "";
  position: absolute;
  background-color: rgb(238, 0, 139);
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.4s;
}
.header--component .header-social {
  display: flex;
  align-items: center;
}
.header--component .header-social img {
  margin: 5px;
  width: 18px;
  transition: 0.4s;
}
.header--component .header-social img:hover {
  transform: translateY(-5px);
  transition: 0.4s;
  cursor: pointer;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #24009c;
  margin: 5px;
  transition: 0.3s;
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.scroll {
  width: 100%;
  position: fixed;
  top: 0px;
  background-color: white;
  right: 0px;
  border-bottom: 2px solid #24009c;
  justify-content: space-between;
}

@media (max-width: 900px) {
  body {
    /* All your regular code including overflow-x: hidden; */
    position: relative;
    overflow-x: hidden;
  }
  .burger {
    display: block;
    z-index: 999;
  }
  .header--component {
    transition: 0.4s;
    justify-content: space-between;
  }
  .header--component .header--menu {
    order: 1;
  }
}
@media screen and (max-width: 900px) and (min-width: 992px) {
  .header--component .header--menu {
    order: 0;
  }
}
@media (max-width: 900px) {
  .header--component .header--menu ul {
    background-color: white;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(150%);
    transition: 0.3;
    padding: 0;
  }
}
.nav-active {
  transform: translateX(0) !important;
  display: block;
  background-color: white !important;
}

.active-submenu {
  transform: translateX(0px) !important;
  position: relative !important;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  background-color: transparent !important;
}

.footer {
  padding: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fefeff;
}
.footer > .logo {
  width: 200px;
}
.footer > .logo img {
  width: 100%;
}
.footer > .footer-nav {
  margin: 3vh 0;
}
.footer > .footer-nav ul {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer > .footer-nav ul {
    display: flex;
  }
}
.footer > .footer-nav ul li {
  padding: 10px;
}
.footer > .footer-nav ul li a {
  text-decoration: none;
  color: #24009c;
}
.footer > .social {
  display: flex;
}
.footer > .social .element {
  margin: 20px;
  transition: 0.4s;
}
.footer > .social .element:hover {
  transform: translateY(-5px);
  transition: 0.4s;
  cursor: pointer;
}

.copyright {
  padding: 10px;
  border-top: 2px solid #24009c;
  text-align: center;
  color: #24009c;
}

.about {
  padding: 5vh 0;
  background-color: #fefeff;
}
.about .about-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 5vh;
}
.about .about-box .box-element {
  flex-basis: 80%;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about .about-box .box-element {
    flex-basis: 40%;
  }
}
@media screen and (min-width: 992px) {
  .about .about-box .box-element {
    flex-basis: 22%;
  }
}
.about .about-box .box-element > .image {
  margin-bottom: 20px;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
.about .about-box .box-element > .desc {
  color: gray;
  text-align: center;
}

.whom {
  padding: 5vh 0;
  background-color: #f4f0ff;
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}
.whom .whom-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 5vh;
}
.whom .whom-box .box-element {
  flex-basis: 80%;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .whom .whom-box .box-element {
    flex-basis: 40%;
  }
}
@media screen and (min-width: 992px) {
  .whom .whom-box .box-element {
    flex-basis: 22%;
  }
}
.whom .whom-box .box-element > .image {
  text-align: center;
  width: 35%;
  margin: 0 auto 4vh;
}
.whom .whom-box .box-element > .image img {
  width: 100%;
}
.whom .whom-box .box-element > .desc {
  color: gray;
}

.pwz {
  padding: 10vh 0;
  background-color: #fefeff;
}
.pwz .pwz-box {
  display: flex;
  justify-content: space-around;
  border-left: 2px solid #24009c;
}
.pwz .pwz-box ul {
  list-style-type: square;
}
.pwz .pwz-box ul li {
  margin: 10px 0;
}
.pwz .pwz-box > .text {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 600;
  color: #24009c;
}
.pwz .pwz-box > .image {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .pwz .pwz-box > .image {
    position: relative;
  }
}

.benefit {
  padding: 5vh 0;
  background-color: #f4f0ff;
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}
.benefit .benefit-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 5vh;
}
.benefit .benefit-box .box-element {
  flex-basis: 100%;
  padding: 10px;
}
.benefit .benefit-box .box-element > .image {
  text-align: center;
  width: 30%;
  margin: 20px auto;
}
.benefit .benefit-box .box-element > .image img {
  width: 100%;
}
.benefit .benefit-box .box-element > .desc {
  color: gray;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .benefit .benefit-box .box-element {
    flex-basis: 18%;
  }
}
.benefit .benefit-box button {
  background-color: #24009c;
  color: white;
  border: 2px solid #24009c;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
  transition: 0.4s;
}
.benefit .benefit-box button:hover {
  background-color: white;
  cursor: pointer;
  color: #24009c;
  transition: 0.4s;
  transform: translateY(10px);
}

.question {
  background-color: #fefeff;
}
.question .question-box {
  display: flex;
  flex-wrap: wrap;
}
.question .question-box > .box-element {
  flex-basis: 100%;
  padding: 10vh 5%;
}
.question .question-box > .box-element img {
  width: 80%;
}
@media screen and (min-width: 992px) {
  .question .question-box > .box-element {
    flex-basis: 50%;
  }
}
.question .question-box > .box-element:last-child {
  flex-basis: 100%;
  background-color: white;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .question .question-box > .box-element:last-child {
    flex-basis: 50%;
  }
}

.head {
  background-color: whitesmoke;
}
.head .head-box {
  display: flex;
  flex-wrap: wrap;
}
.head .head-box > .box-element {
  flex-basis: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .head .head-box > .box-element {
    flex-basis: 50%;
  }
}
.head .head-box > .box-element:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.head .head-box > .box-element img {
  transform: translateY(10px);
  width: 100%;
}

.contact-header {
  background-color: #24009c;
  height: 10vh;
  text-align: center;
  padding: 0 10%;
  width: 100%;
  font-size: 30px;
  line-height: 10vh;
  color: white;
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  margin-top: 10vh;
}
@media screen and (min-width: 768px) {
  .contact-header {
    width: 60%;
    text-align: right;
  }
}

.form {
  padding: 10vh 0;
}
.form .formBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: darkgray;
}
.form .formBox__element {
  flex-basis: 100%;
  margin: 2vh 0;
}
@media screen and (min-width: 992px) {
  .form .formBox__element {
    flex-basis: 45%;
  }
}
.form .formBox__title {
  text-align: center;
}
.form .formBox__title p:first-of-type {
  color: #24009c;
}
.form .formBox__title p:last-of-type {
  color: darkgray;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .form .formBox__title p:last-of-type {
    font-size: 30px;
  }
}
.form .formBox__logo {
  text-align: center;
  margin: 3vh auto 2vh;
  width: 200px;
}
.form .formBox__data {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.form .formBox__data div {
  margin-top: 20px;
}
.form .formBox__data div img {
  margin-right: 10px;
  vertical-align: middle;
  width: 20px;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  padding: 5%;
  border: 1px solid #24009c;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  border: none;
  outline: none;
  border-bottom: 1px solid #24009c;
  resize: none;
  transition: 0.4s;
}
.wpcf7-form textarea {
  border: 1px solid #24009c;
}
.wpcf7-form textarea::-moz-placeholder {
  color: gray;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.wpcf7-form textarea:-ms-input-placeholder {
  color: gray;
  -ms-transition: 0.4s;
  transition: 0.4s;
}
.wpcf7-form textarea::placeholder {
  color: gray;
  transition: 0.4s;
}
.wpcf7-form input::-moz-placeholder {
  color: gray;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.wpcf7-form input:-ms-input-placeholder {
  color: gray;
  -ms-transition: 0.4s;
  transition: 0.4s;
}
.wpcf7-form input::placeholder {
  color: gray;
  transition: 0.4s;
}
.wpcf7-form input:focus {
  color: gray;
  transition: 0.4s;
  border-bottom: 2px solid rgb(73, 73, 73);
}
.wpcf7-form .wpcf7-submit {
  border: none;
  background-color: #24009c;
  transition: 0.4s;
  color: white;
}
.wpcf7-form .wpcf7-submit:hover {
  transform: translateY(10px);
  transition: 0.4s;
}

.wpcf7-list-item {
  margin-bottom: 20px;
}

input[type=checkbox] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(14px);
  margin-right: 5px;
}/*# sourceMappingURL=style.css.map */