* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
}

@font-face {
  font-family: "aeonik_bold";
  src: url("../fonts/aeonik-bold.woff2") format("woff2"), url("../fonts/aeonik-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "aeonik_regular";
  src: url("../fonts/aeonik-regular.woff2") format("woff2"), url("../fonts/aeonik-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "aeonik_light";
  src: url("../fonts/aeonik-light.woff2") format("woff2"), url("../fonts/aeonik-light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "aeonik_thin";
  src: url("../fonts/aeonik-thin.woff2") format("woff2"), url("../fonts/aeonik-thin.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --purple: #6A15CC;
  --light_purple: #735DA6;
  --dark_purple: #2B1F5A;
  --green: #00F0B5;
  --purple_gradient: linear-gradient(to right, #6A15CC 0%, #1F0042 100%);
  --coral_gradient: linear-gradient(to right, #AB55FE 0%, #FD716C 100%);
}

::-moz-selection {
  color: white;
  background: var(--purple);
}

::selection {
  color: white;
  background: var(--purple);
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "aeonik_regular";
  font-size: 18px;
  color: white;
  overflow-x: hidden;
  background-image: url(../images/background.avif);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Classes */
small {
  font: normal 400 14px "aeonik_regular";
}

strong {
  font-family: "aeonik_bold";
}

.highlights {
  font: normal 400 20px "aeonik_regular";
}

.titles {
  font: normal 400 60px/60px "aeonik_thin";
}

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

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

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

.coral_gradient {
  background: var(--coral_gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.img_transform img {
  transition: transform 0.2s ease-out;
}

.btn_default {
  transition: all 0.3s ease-in-out;
  display: flex;
  padding: 13px 20px;
  font: normal 400 16px/16px "aeonik_bold";
  border-radius: 20px;
  color: var(--dark_purple);
  background: var(--green);
  cursor: pointer;
}
.btn_default:hover {
  box-shadow: 0px 0px 15px 0px rgba(246, 255, 253, 0.3019607843);
  color: white;
  background: var(--coral_gradient);
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  padding: 0 50px;
  margin: auto;
}

main {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

nav {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 50px;
  right: 0;
  z-index: 15;
}
nav .wrapper {
  align-items: center;
}
nav .items_menu {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: row;
  gap: 50px;
  align-items: center;
}
nav .items_menu a {
  transition: all 0.3s ease-in-out;
  color: white;
}
nav .items_menu a:hover {
  color: var(--light_purple);
}

footer {
  padding: 50px 0;
  border-top: 1px solid rgba(115, 93, 166, 0.1882352941);
  background: white;
}
footer .sitemap {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 150px;
}
footer .sitemap .items_sitemap {
  display: flex;
  flex-direction: column;
}
footer .sitemap .items_sitemap a {
  color: var(--light_purple);
}

#modal_form {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(106, 21, 204, 0.6549019608);
  z-index: 100;
}
#modal_form .content_modal_form {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 450px;
  padding: 50px;
  border-radius: 30px;
  background: white;
  box-shadow: 0px 10px 30px 0px rgba(96, 96, 96, 0.15);
}
#modal_form .content_modal_form .btn_modal_form {
  display: flex;
  justify-content: center;
  padding: 13px 20px;
  font: normal 400 18px/18px "aeonik_bold";
  color: var(--green);
  border-radius: 100px;
  cursor: pointer;
  background: var(--purple_gradient);
  transition: all 0.3s ease-in-out;
}
#modal_form .content_modal_form .btn_modal_form:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 240, 180, 0.5882352941);
  color: white;
  background: var(--coral_gradient);
}

#banner_cookie {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  gap: 20px;
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 20px;
  border-radius: 30px;
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgba(96, 96, 96, 0.15);
  z-index: 100;
}

.video_banner {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(../images/background.avif) no-repeat center;
  background-size: cover;
}
.video_banner .wrapper {
  z-index: 5;
  gap: 30px;
  flex-direction: column;
}
.video_banner .wrapper h1 {
  max-width: 950px;
  margin: auto;
  text-align: center;
}
.video_banner .wrapper .ico_scroll_down {
  width: 60px;
  height: 60px;
  margin: auto;
}
.video_banner .bg_video_banner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}

.about_us {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  padding: 100px 0;
  background: white;
}
.about_us .content_about_us {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 565px;
  margin: auto 0;
  gap: 30px;
}

.what_we_do {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  padding: 100px 0;
}
.what_we_do .header_what_we_do {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: center;
  gap: 30px;
}
.what_we_do .content_what_we_do {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 500px);
  gap: 30px;
}
.what_we_do .grid_what_we_do {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.what_we_do .grid_what_we_do li {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 10px;
  align-content: flex-start;
  padding: 30px;
  border-radius: 30px;
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgba(96, 96, 96, 0.15);
}

.latest_jobs {
  width: 100%;
  padding: 50px 0;
  margin-bottom: 100px;
  background-color: white;
}
.latest_jobs .content_latest_jobs {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: auto;
  gap: 20px;
}
.latest_jobs .content_latest_jobs .titles {
  text-align: center;
  margin: auto;
  line-height: 77px;
}
.latest_jobs .content_latest_jobs p {
  margin: auto;
  max-width: 800px;
}
.latest_jobs .grid_latest_jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.latest_jobs .grid_latest_jobs li {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 30px;
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgba(96, 96, 96, 0.15);
}
.latest_jobs .grid_latest_jobs li img {
  border-radius: 20px;
}
.latest_jobs .btn_instagram {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 20px;
  color: var(--dark_purple);
  border: 1px solid var(--dark_purple);
  margin: 50px auto;
}
.latest_jobs .btn_instagram:hover {
  color: white;
  background-color: var(--dark_purple);
}

.get_in_touch {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 100px;
  background: url(../images/holographic_shape.avif) no-repeat right bottom -50px;
  background-size: 45%;
}
.get_in_touch .titles {
  max-width: 500px;
}
.get_in_touch .form_group {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
}
.get_in_touch .form_group .input_default {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 13px 20px;
  border-radius: 20px;
  font: normal 400 18px/18px "aeonik_regular";
  color: var(--light_purple);
}
.get_in_touch .form_group .input_default::-moz-placeholder {
  font: normal 400 18px/18px "aeonik_regular";
  color: var(--light_purple);
}
.get_in_touch .form_group .input_default::placeholder {
  font: normal 400 18px/18px "aeonik_regular";
  color: var(--light_purple);
}
.get_in_touch .form_group .input_default:focus {
  box-shadow: 0px 0px 15px 0px rgba(246, 255, 253, 0.3019607843);
}
.get_in_touch .form_group .input_default.textarea {
  height: 150px;
  border-radius: 20px;
  resize: none;
}
.get_in_touch .form_group .send_button {
  transition: all 0.3s ease-in-out;
  display: flex;
  padding: 13px 20px;
  font: normal 400 18px/18px "aeonik_bold";
  border-radius: 20px;
  color: var(--dark_purple);
  background: var(--green);
  cursor: pointer;
}
.get_in_touch .form_group .send_button:hover {
  box-shadow: 0px 0px 15px 0px rgba(246, 255, 253, 0.3019607843);
  color: white;
  background: var(--coral_gradient);
}

.cookie_policy_page {
  background: white;
}
.cookie_policy_page .wrapper {
  gap: 50px;
  margin: 50px auto;
}
.cookie_policy_page a {
  color: var(--dark_purple);
}
.cookie_policy_page .section_cookies {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: row;
}
.cookie_policy_page .section_cookies .titles_cookies {
  width: 250px;
}
.cookie_policy_page .section_cookies .titles_cookies h2 {
  font-family: "aeonik_bold", sans-serif;
  font-size: 22px;
  background: linear-gradient(to right, #6A15CC 0%, #1F0042 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cookie_policy_page .section_cookies .content_cookies {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column;
  width: 70%;
  margin-left: 50px;
  padding-left: 50px;
  border-left: 1px solid var(--light_purple);
}
.cookie_policy_page .section_cookies .content_cookies li {
  list-style: circle;
}

@media screen and (max-width: 1100px) {
  #banner_cookie {
    width: 90%;
    gap: 15px;
    padding: 15px;
    flex-direction: column;
  }
  nav {
    padding: 0 25px;
    top: 30px;
  }
  nav .items_menu {
    display: none;
  }
  footer .wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  footer .wrapper .sitemap {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  .titles {
    font: normal 400 42px/42px "aeonik_thin";
  }
  .wrapper {
    padding: 0 25px;
  }
  .about_us {
    padding: 50px 0;
  }
  .what_we_do .content_what_we_do {
    width: 100%;
  }
  .what_we_do .grid_what_we_do {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .latest_jobs .grid_latest_jobs {
    grid-template-columns: repeat(1, 1fr);
  }
  .cookie_policy_page .section_cookies {
    flex-direction: column;
    gap: 10px;
  }
  .cookie_policy_page .section_cookies .titles_cookies {
    width: 100%;
  }
  .cookie_policy_page .section_cookies .content_cookies {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border: 0;
  }
}/*# sourceMappingURL=master.css.map */