/* ==========================================================================
   General Styles
   ========================================================================== */

/* Color Palette */

:root {
  --color-primary: #2534a2;
  --color-secondary: #eb5757;
  --color-yellow: #f2c94c;
  --color-blue: #2f80ed;

  --color-white: #fff;
  --color-black: #062752;
  --color-gray: #c0ccd1;

  --color-messageError: #ffc4c4;
  --color-messageSuccess: #00fff5;
  --color-fieldError: #eb5757;

  --font-title: "Dosis", sans-serif;
  --font-text: "Dosis", monospace;
}

/* Main */

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: var(--font-text);
  color: var(--color-white);
  margin: 0;
}

body {
  width: 100%;
}

.main {
  background: linear-gradient(
    0deg,
    rgba(83, 168, 247, 1) 0%,
    rgba(83, 168, 247, 0) 100%
  );
}

/* Titles */
h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 700;
  font-family: var(--font-title);
}

h1 {
  font-size: 72px;
  line-height: 86px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h2 {
  font-size: 56px;
  line-height: 60px;
}

h3 {
  font-size: 42px;
  margin: 0 0 20px 0px;
}

h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

p, ul, ol {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  margin-top: 0px;
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: var(--color-white);
}

.bold {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0px;
}

.big-type {
  font-size: 24px;
  line-height: 28px;
  color: var(--color-secondary);
}

.color-blue {
  color: var(--color-blue);
}

.underline {
  width: 100px;
  height: 10px;
  background: var(--color-yellow);
  display: block;
  border-radius: 10px;
  margin-bottom: 20px;
}

/***********************
        CAREERS
***********************/

.hero {
  padding-top: 10vh;
}

.underline {
  z-index: 1;
}

.over {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.job-description {
  background: var(--color-white);
  border-radius: 30px;
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 5vh;
  z-index: 9;
  box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}
.job-description p{
    text-align: justify;
}

.job-description .w-50 {
  padding: 20px;
}

.location {
  font-weight: bold;
  color: var(--color-secondary);
  display: flex;
}

.location:before {
  content: url("/static/images/location.svg");
  display: block;
  margin-right: 10px;
}

.items-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  overflow: hidden;
}

.items-container img {
  position: absolute;
}

/**** Over ****/

.item-3 {
  position: absolute;
  top: 20%;
  left: 2%;
  animation: rotation 20s infinite;
}

.item-5 {
  position: absolute;
  top: 55%;
  right: 5%;
  z-index: 999;
  transform: rotate(330deg);
  animation: shine 2s infinite;
}

/**** Under ****/

.item-1 {
  top: 5%;
  left: 0%;
  animation: wobble-small 4s infinite;
}

.item-2 {
  top: -6%;
  left: 15%;
  transform: rotate(330deg);
  animation: pulse-glow 2s infinite;
}

.item-4 {
  top: 80%;
  left: -5%;
  transform: rotate(330deg);
  animation: wobble 4s infinite;
}

.item-6 {
  top: 2%;
  right: 25%;
  animation: wobble-up 4s infinite;
}

.item-7 {
  top: 0%;
  right: 50px;
  transform: rotate(20deg);
  animation: wobble 3s infinite;
}

.item-8 {
  top: 39%;
  left: 2%;
  animation: shine 5s infinite;
}

.item-9 {
  top: 80%;
  left: 5%;
  transform: rotate(20deg);
  animation: wobble-up 2s infinite;
}

.item-10 {
  top: 80%;
  right: 30px;
  transform: rotate(20deg);
  animation: pulse-glow 4s infinite;
}

.item-11 {
  top: 60%;
  right: 3%;
  animation: wobble-small 6s infinite;
}

.item-12 {
  top: 60%;
  left: 10%;
  animation: pulse-glow 2s infinite;
}

.item-13 {
  top: 41%;
  right: 10%;
  animation: rotation 20s infinite;
}

/**** Footer ****/

.footer {
  height: 60vh;
  min-height: 1080px;
  display: flex;
  align-items: center;
  background: url("/static/images/footer-bg.svg");
  background-position: bottom;
  background-size: cover;
}

.arrow {
  margin-left: 20%;
  margin-top: 10%;
}

/***********************
        CAREERS
***********************/

.about {
  background: linear-gradient(
    0deg,
    rgba(83, 168, 247, 1) 0%,
    rgba(255, 255, 255, 1) 85%
  );
}

.counters {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding: 30px;
  background: var(--color-white);
  border-radius: 30px;
  color: var(--color-secondary);
  display: grid;
  grid-template-columns: 33% 33% 33%;
  justify-items: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  animation: puff-in-center 0.5s ease-in;
}

.stat {
  padding: 20px;
}

.stat h4 {
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 86px;
  line-height: 86px;
}

.mission {
  height: 100vh;
  background: url("/static/images/mission-bg.svg") var(--color-yellow);
  background-position: center center;
  background-size: cover;
  color: var(--color-blue);
  min-height: 1080px;
}

.mission p {
  color: var(--color-blue);
}

.mission .underline {
  background: var(--color-blue);
}

.different {
  height: 100vh;
  min-height: 800px;
  background: #63a7f2;
}

.different p {
  color: var(--color-white);
}

.features {
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 20px 40px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 28px;
  margin-bottom: 20px;
  width: 60%;
  cursor: pointer;
  transition: 0.3s all;
}

.features:hover {
  transform: scale(1.1);
  box-shadow: 0px 20px 26px #37639b;
}

.features:hover img {
  animation: shake-lr 1s ease-out;
}

.features img {
  width: 80px;
}

.technologies {
  height: 100vh;
  min-height: 1080px;
  background: url("/static/images/technologies-bg.svg") var(--color-yellow);
  background-position: center center;
  background-size: cover;
  color: var(--color-white);
}

.technologies p {
  color: var(--color-white);
}

.partners {
  height: 80vh;
  min-height: 800px;
}

.logos {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  column-gap: 6.8%;
  justify-items: center;
  align-items: center;
  width: 80%;
  margin-top: 5vh;
}

.logos img {
  width: 100%;
  max-width: 200px;
  max-height: 100px;
  margin-bottom: 50px;
  cursor: pointer;
}

.logos img:hover {
  animation: shake-lr 1s ease-out;
}

.map-img {
  animation: jello-vertical 4s infinite;
}

.tech-img {
  animation: shake-lr 3s infinite;
}

.partners {
  height: 60vh;
  display: flex;
  align-items: center;
  background: url("/static/images/footer-bg.svg") #63a7f2;
  background-position: top;
  background-size: cover;
}
