@font-face {
  font-family: Montserrat-Regular;
  src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: Montserrat-Bold;
  src: url("../fonts/Montserrat-Bold.ttf");
}

@font-face {
  font-family: Montserrat-Black;
  src: url("../fonts/Montserrat-Black.ttf");
}

a {
  color: #2f3bcb;
}

body {
  font-family: Montserrat-Regular, sans-serif;
  margin: 0px;
  line-height: 1;
}

h2 {
  font-family: Montserrat-SemiBold, sans-serif;
}

p {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

.container-index {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    /*flex-wrap: wrap;*/
    justify-content: center;
    /*align-items: center;*/
    background: #f2f2f2;
}

/* Split the screen in half */
.split {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow-x: hidden;

  display: flex;
  text-align: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2vw;
}

.split>p {
  margin-top: auto;
  margin-bottom: 3vw;
}

/* Control the left side */
.left {
  background-color: #cc132f;
}

/* Control the right side */
.right {
  background-image: url("../images/trace.svg");
  background-color: whitesmoke;
  background-repeat: no-repeat;
  background-position: 90% 0;
  background-size: 20%;
}

.centered {
  align-items: center;
  justify-content: center;
}

img.mascotte {
  width: 30vw;
  border-radius: 50%;
  background-color: whitesmoke;
}

.logo {
  width: 20vw;
  margin-top: 10vw;
}

.logo-small {
}

.logo-full {
  display: none;
}

.icons {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  gap: 5vw;
}

a.icon {
  text-decoration: none;
  text-align: center;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

span.icon {
    font-size: 2.5vw;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
    width: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.icon p {
  margin-top: 1vw;
  color: #f5f5f5;
  text-decoration: solid;
  font-family: Montserrat-Bold, sans-serif;
}

.circle {
    position: absolute;
    text-align: center;
    width: 2em;
    height: 2em;
    line-height: 1;
    border-radius: 50%;
    background-color: #f5f5f5;
}

img.icon {
    position: absolute;
    text-align: center;
    height: 1.5em;
    line-height: 2em;
}

#buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 60%;
  flex-grow: 1;
}

.button {
  color: white;
  font-family: Montserrat-Bold, sans-serif;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: background-color 0.5s ease;
}

.button:hover {
  color: white;
  background-color: #52606a !important;
  transition: background-color 0.5s ease;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #cc132f;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 900px) {
	.right {
		width: 100%;
	}

	.left {
		display: none;
	}

  .logo-small {
    display: none;
  }

  .logo-full {
    display: unset;
  }
}


