@charset "UTF-8";
/* COLORS */
/* LAYOUT */
/* MEDIA QUERY */
/* PADDING */
/* BORDER */
/* Webfont: Campton-Extra Light */
@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton/Campton-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Campton-Light */
@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton/Campton-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Campton-Medium */
@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton/Campton-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Campton-ExtraBold */
@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton/Campton-ExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Humane-Regular */
@font-face {
  font-family: "Humane";
  src: url("../fonts/Humane/Humane-Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Humane-Medium */
@font-face {
  font-family: "Humane";
  src: url("../fonts/Humane/Humane-Medium.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Humane-Bold */
@font-face {
  font-family: "Humane";
  src: url("../fonts/Humane/Humane-Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Monument Extended */
@font-face {
  font-family: "Monument";
  src: url("../fonts/Monument/MonumentExtended-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* FONT */
@keyframes flash-text-web {
  0% {
    top: 0;
    right: 10%;
  }
  100% {
    top: 100%;
    right: 80%;
  }
}
@keyframes flash-text-design {
  0% {
    top: 0;
    right: 60%;
  }
  100% {
    top: 100%;
    right: 100%;
  }
}
@keyframes flash-text-social {
  from {
    top: 0;
    right: 80%;
  }
  100% {
    top: 100%;
    right: 100%;
  }
}
@keyframes flash-text-photo {
  from {
    top: 0;
    right: 0%;
  }
  to {
    top: 100%;
    right: 100%;
  }
}
@keyframes flash-img {
  from {
    top: 0;
    right: 0%;
  }
  to {
    top: 100%;
    right: 100%;
  }
}
@keyframes float {
  from {
    transform: rotate(0deg) translatey(-12px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translatey(-12px) rotate(-360deg);
  }
}
.flash-text-design {
  animation: flash-text-design 6s linear;
}

.flash-text-web {
  animation: flash-text-web 6s linear;
}

.flash-text-social {
  animation: flash-text-social 6s linear;
}

@keyframes popup-open {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
    display: block;
  }
}
@keyframes popup-close {
  from {
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
    display: none;
  }
}
@keyframes menu-open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    display: block;
  }
}
@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes badge-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.wave__container {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: hidden;
  z-index: -1;
}
.wave__container svg {
  width: 200%;
  display: block;
}

.wave__container.animate svg {
  animation: wave 1s ease-out forwards;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes expandImage {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
    display: block;
  }
}
@keyframes shrinkImage {
  0% {
    width: 100px;
    opacity: 1;
  }
  100% {
    width: 0px;
    transform: translateX(100px) translateY(100px);
    opacity: 0;
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  @keyframes expandImage {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 70px;
      opacity: 1;
      display: block;
    }
  }
  @keyframes shrinkImage {
    0% {
      width: 70px;
      opacity: 1;
    }
    100% {
      width: 0px;
      transform: translateX(70px) translateY(70px);
      opacity: 0;
      display: none;
    }
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-family: "Humane", Arial, sans-serif;
  box-sizing: border-box;
  line-height: 1;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.about {
  padding: 70px 35px;
  background-color: #4694d0;
}
.about__container {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.about__container h2 {
  font-size: 40px;
  font-weight: 200;
  font-family: "Campton", Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 50px;
}
.about__container p {
  font-size: 150px;
  font-weight: 200;
  line-height: 1;
  font-family: "Humane", Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.about__container-hello {
  position: absolute;
  bottom: -150px;
  left: -250px;
  max-width: 300px;
  width: 100%;
  height: auto;
}
.about__container-badge {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 140px;
  height: 140px;
  margin-top: -100px;
}
.about__container-badge--base {
  width: 140px;
  height: 140px;
  animation: badge-rotate 10s linear infinite;
}
.about__container-badge--rocket {
  position: absolute;
  width: 40px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 900px) and (max-width: 1366px) {
  .about__container-hello {
    left: -40px;
  }
  .about__container h2 {
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .about {
    padding: 50px 25px;
  }
  .about__container p {
    font-size: 130px;
  }
  .about__container-hello {
    max-width: 250px;
    left: -20px;
    bottom: -120px;
  }
  .about__container-badge {
    width: 120px;
    height: 120px;
    top: 73%;
    left: 73%;
    margin-top: 0;
  }
  .about__container-badge--base {
    width: 120px;
    height: 120px;
  }
  .about__container-badge--rocket {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 40px 15px;
  }
  .about__container p {
    font-size: 50px;
  }
  .about__container h2 {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .about__container-hello {
    max-width: 165px;
    left: -10px;
    bottom: -170px;
  }
  .about__container-badge {
    width: 70px;
    height: 70px;
    top: 73%;
    left: 73%;
    margin-top: 0;
  }
  .about__container-badge--base {
    width: 70px;
    height: 70px;
  }
  .about__container-badge--rocket {
    width: 20px;
  }
}
.contact {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.contact__form {
  background-color: #ff7bca;
  width: 70%;
  padding: 70px 50px;
}
.contact__form-heading--first {
  display: block;
  font-size: 16px;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #020202;
  margin-bottom: 20px;
}
.contact__form-heading--second {
  display: block;
  font-size: 16px;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #020202;
  padding-bottom: 10px;
  padding-top: 20px;
}
.contact__form-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.contact__form-container input {
  width: 100%;
  background: transparent;
  color: #020202;
  padding: 10px 10px 10px 15px;
  font-family: "Campton", Arial, sans-serif;
  border-radius: 100px;
  border: 1px solid #020202;
  font-size: 14px;
}
.contact__form-container input:focus, .contact__form-container input:active {
  border: 1px solid #020202;
  outline: none;
}
.contact__form-container input::placeholder {
  color: rgba(2, 2, 2, 0.6392156863);
}
.contact__form-message {
  max-width: 55%;
  width: 100%;
  padding-right: 25px;
}
.contact__form textarea {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 10px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #020202;
}
.contact__form textarea:focus, .contact__form textarea:active {
  border: 1px solid #020202;
  outline: none;
}
.contact__form textarea::placeholder {
  color: rgba(2, 2, 2, 0.6392156863);
}
.contact__form-submit {
  border-radius: 100px;
  font-size: 16px;
  background: transparent;
  color: #020202;
  font-family: "Campton";
  border-radius: 100px;
  border: 1px solid #020202;
  padding: 8px 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}
.contact__form-submit:hover {
  background: #11bc7a;
  color: #fff;
}

.switch-container {
  display: flex;
  flex-direction: column;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-bottom: 10px;
}
.switch__text {
  position: relative;
  width: 240px;
  display: block;
  padding-left: 80px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-family: "Campton";
  font-weight: 400;
  color: #020202;
  cursor: pointer;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  border: 1px solid #020202;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 3px;
  background-color: #020202;
  transition: 0.4s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: #fff30d;
}

.switch input:checked + .slider:before {
  transform: translateX(26px);
}

.switch input:checked + .slider + .switch__text {
  color: #fff30d;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.contact__info {
  width: 30%;
  padding: 70px 35px;
  background-color: #11bc7a;
}
.contact__info img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.contact__info h2 {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 900;
  text-wrap: wrap;
  max-width: 400px;
}
.contact__info h3 {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  text-wrap: wrap;
  max-width: 400px;
  margin: 20px 0 0px 0;
}
.contact__info p {
  font-size: 17px;
  line-height: 1.2;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 300;
  text-wrap: wrap;
  max-width: 400px;
  text-transform: uppercase;
  -webkit-user-select: none;
  text-decoration: none;
}
.contact__info a {
  text-decoration: none;
  color: #020202;
}
.contact__info a:hover {
  color: #fff30d;
}
.contact__info-socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-top: 13px;
}
.contact__info-socials a:hover img {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.contact__info-socials img {
  width: 20px;
  transition: transform 0.6s ease;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .contact__form {
    padding: 50px 30px;
  }
  .contact__info {
    padding: 50px 20px;
  }
  .contact__info h2 {
    font-size: 18px;
  }
  .contact__info h3 {
    font-size: 18px;
  }
  .contact__info p {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .contact__form {
    padding: 50px 20px;
  }
  .contact__form-container {
    gap: 7px;
  }
  .contact__info {
    padding: 50px 20px;
  }
  .contact__info h2 {
    font-size: 17px;
    line-height: 1;
  }
  .contact__info h3 {
    font-size: 17px;
  }
  .contact__info p {
    font-size: 14px;
  }
  .contact__info img {
    margin-bottom: 20px;
  }
  .switch__text {
    position: relative;
    width: 240px;
    display: block;
    padding-left: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .contact__form-container--buttons {
    flex-direction: column;
  }
  .contact__form-message {
    max-width: 100%;
    width: 100%;
    height: 300px;
    padding-right: 0;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .contact {
    flex-direction: column;
  }
  .contact__form {
    width: 100%;
    padding: 40px 15px;
  }
  .contact__form-container {
    gap: 0px;
    margin-bottom: 0;
  }
  .contact__info {
    width: 100%;
    padding: 40px 15px;
  }
  .contact__info h2 {
    font-size: 17px;
    line-height: 1;
  }
  .contact__info h3 {
    font-size: 17px;
    line-height: 1.1;
  }
  .contact__info p {
    font-size: 14px;
  }
  .contact__info img {
    margin-bottom: 20px;
  }
  .switch__text {
    position: relative;
    width: 240px;
    display: block;
    padding-left: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .contact__form-container {
    flex-direction: column;
  }
  .contact__form-message {
    max-width: 100%;
    width: 100%;
    height: 300px;
    padding-right: 0;
    padding-top: 10px;
  }
  .contact__form-heading--second {
    padding-top: 0;
  }
  .contact__form-submit {
    margin-top: 20px;
  }
  .contact__form-container input {
    margin-bottom: 15px;
  }
  .contact__form-container input:last-child {
    margin-bottom: 20px;
  }
}
#responseMessage {
  font-size: 15px;
  font-family: "Campton", Arial, sans-serif;
  margin-top: 10px;
  line-height: 1.1;
  background: white;
  padding: 10px;
  border-radius: 10px;
  display: none;
}

.launch {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 35px;
  background-color: #020202;
  background-image: url(../images/launch/background-launch.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.launch__heading {
  position: relative;
  margin-bottom: 100px;
}
.launch__heading h2 {
  display: block;
  font-size: 500px;
  line-height: 0.5;
  font-family: "Humane";
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-top: 86px;
}
.launch__heading h3 {
  display: inline-block;
  line-height: 1;
  font-size: 60px;
  font-weight: 400;
  font-style: italic;
  padding: 5px 20px;
  background-color: #11bc7a;
  font-family: "Stix", Arial, sans-serif;
  transform: rotate(-15deg);
}
.launch__container-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
}
.launch__container-badge--base {
  width: 200px;
  height: 200px;
  animation: badge-rotate 10s linear infinite;
}
.launch__container-badge--rocket {
  position: absolute;
  width: 50px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.launch__button {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.launch__button:hover .launch__button-heading {
  transform: rotate(5deg);
}
.launch__button-heading {
  display: inline-block;
  line-height: 1;
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  padding: 11px 20px;
  background-color: #11bc7a;
  font-family: "Stix", Arial, sans-serif;
  transform: rotate(-15deg);
  border: 1px solid #020202;
  margin-right: -20px;
  margin-top: -20px;
}
.launch__button button {
  width: 421px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #020202;
  font-family: "Monument", Arial, sans-serif;
  font-size: 20px;
  background-color: #fff30d;
  padding: 15px 40px 12px 0px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid #020202;
  overflow: hidden;
  cursor: pointer;
}
.launch__button button i {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.launch__button button i img {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: auto;
  transition: right 0.3s ease;
}
.launch__button:hover button i img {
  right: -20px;
}

@keyframes roll {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(-70px);
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  .launch {
    padding: 70px 25px;
  }
  .launch__heading h2 {
    font-size: 300px;
  }
  .launch__heading h3 {
    font-size: 50px;
  }
  .launch__container-badge {
    width: 150px;
    height: 150px;
  }
  .launch__container-badge--base {
    width: 150px;
    height: 150px;
  }
  .launch__container-badge--rocket {
    width: 40px;
  }
  .launch__button-heading {
    font-size: 35px;
  }
  .launch__button button {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .launch {
    padding: 50px 25px;
  }
  .launch__heading h2 {
    font-size: 300px;
  }
  .launch__heading h3 {
    font-size: 40px;
  }
  .launch__container-badge {
    width: 150px;
    height: 150px;
  }
  .launch__container-badge--base {
    width: 150px;
    height: 150px;
  }
  .launch__container-badge--rocket {
    width: 40px;
  }
  .launch__button-heading {
    font-size: 30px;
  }
  .launch__button button {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .launch {
    padding: 50px 10px;
  }
  .launch__heading h2 {
    font-size: 170px;
  }
  .launch__heading h3 {
    font-size: 30px;
  }
  .launch__container-badge {
    width: 75px;
    height: 75px;
    right: 10px;
  }
  .launch__container-badge--base {
    width: 75px;
    height: 75px;
  }
  .launch__container-badge--rocket {
    width: 20px;
  }
  .launch__button-heading {
    font-size: 16px;
    padding: 6px;
    margin-right: -40px;
    transform: rotate(-30deg) translateY(-20px);
  }
  .launch__button button {
    width: 260px;
    font-size: 13px;
    padding: 15px 12px 12px 0px;
    margin-left: -15px;
  }
  .launch__button:hover .launch__button-heading {
    transform: rotate(-30deg) translateY(-20px);
  }
  .launch__button:hover button i img {
    right: -10px;
  }
  .launch__button button i img {
    width: 30px;
  }
}
.marquee {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  background: white;
  white-space: nowrap;
  position: relative;
  background-color: #ff7bca;
}
.marquee-items {
  display: inline-block;
  animation: 50s marquee-slide infinite linear;
}
.marquee-items span {
  height: 50px;
  margin: 0 40px;
  font-size: 25px;
  font-family: "Monument", Arial, sans-serif;
  color: #fff;
}

.references {
  width: 100%;
  background-color: #020202;
  padding: 70px 35px;
}
.references__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.references__partners {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.references__heading {
  font-size: 240px;
  line-height: 1;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding-bottom: 30px;
}
.references__partners-list {
  background-color: #020202;
  color: #fff;
  flex: 1 1 0;
}
.references__partners-list li {
  font-size: 16px;
  line-height: 1.1;
  font-family: "Campton", Arial, sans-serif;
  color: #fff;
  list-style: none;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
}
.references__partners-list li span {
  color: #fff;
  text-decoration: none;
  display: block;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}
.references__partners-list li:hover span {
  opacity: 1;
  transform: translate3d(0px, -90%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}
.references__partners-list li:not(:last-child) {
  border-bottom: 1px solid rgb(219, 219, 219);
}
.references__partners-list-second--item {
  font-size: 20px;
  font-family: "Stix", Arial, sans-serif;
  font-style: italic;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  opacity: 0;
}

.image-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
}

.hover-image {
  display: none;
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  animation: shrinkImage 0.5s ease forwards;
}
.hover-image.active {
  left: 0;
  display: block;
  animation: expandImage 0.4s ease forwards;
}

.rock {
  display: none;
  opacity: 0;
  top: 0;
  right: 0;
  position: absolute;
  animation: shrinkImage 0.5s ease forwards;
}
.rock.active {
  right: 0;
  display: block;
  animation: expandImage 0.4s ease forwards;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .references__heading {
    font-size: 200px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .references {
    padding: 50px 25px 10px 25px;
  }
  .references__heading {
    font-size: 150px;
  }
  .references__partners {
    gap: 30px;
  }
  .references__partners-list li:hover span {
    transform: translate3d(0px, -92%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@media (max-width: 767px) {
  .references {
    padding: 50px 15px 10px 15px;
  }
  .references__heading {
    font-size: 90px;
    padding-bottom: 20px;
  }
  .references__partners {
    gap: 15px;
  }
  .references__partners-list li {
    font-size: 11px;
  }
  .references__partners-list-second--item {
    font-size: 11px;
  }
  .references__partners-list li:hover span {
    transform: translate3d(0px, -92%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.portfolio {
  position: relative;
  background-color: #fff30d;
  padding: 70px 0 70px 0;
}
.portfolio__container {
  display: flex;
  flex-direction: column;
}
.portfolio__info {
  padding-left: 35px;
  width: 100%;
}
.portfolio__info h2 {
  font-size: 240px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  text-transform: uppercase;
  color: #020202;
}
.portfolio__info a {
  display: inline-flex;
  color: #fff;
  font-family: "Campton", Arial, sans-serif;
  font-size: 20px;
  background-color: #ff7bca;
  padding: 10px 30px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}
.portfolio__info a:hover {
  background-color: #020202;
  color: #ff7bca;
}

.portfolio__swiper-container {
  height: 537px;
  overflow-y: hidden;
}
.portfolio__swiper-container-project {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1 1 0;
}

.portfolio__swiper-container .swiper-slide {
  width: 100%;
  display: flex;
}
.portfolio__swiper-container .swiper-slide img {
  display: block;
}

.portfolio__swiper-container .swiper-wrapper {
  position: relative;
}

.portfolio__button {
  text-align: center;
}
.portfolio__button a {
  display: inline-flex;
  color: #fff;
  font-family: "Campton", Arial, sans-serif;
  font-size: 16px;
  background-color: #ff7bca;
  padding: 10px 25px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  margin-top: 30px;
}
.portfolio__button a:hover {
  background-color: #020202;
  color: #ff7bca;
}

.portfolio__page-section {
  padding: 100px 0 0 0;
  background-color: white;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .portfolio__page-section {
    padding: 90px 0 0 0;
  }
  .portfolio__info {
    padding-left: 25px;
  }
  .portfolio__info h2 {
    font-size: 200px;
  }
  .portfolio__button a {
    font-size: 15px;
    padding: 10px 25px;
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .portfolio__page-section {
    padding: 60px 0 0 0;
  }
  .portfolio__info {
    padding-left: 25px;
  }
  .portfolio__info h2 {
    font-size: 150px;
  }
  .portfolio__button a {
    font-size: 14px;
    padding: 10px 25px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .portfolio {
    padding: 0 0 40px 0;
  }
  .portfolio__info {
    padding-left: 0;
  }
  .portfolio__info h2 {
    font-size: 80px;
    padding: 50px 15px 5px 15px;
  }
  .portfolio__swiper-container {
    height: 322px;
  }
  .portfolio__swiper-container .swiper-slide img {
    width: 300px;
  }
  .portfolio__button a {
    font-size: 12px;
    padding: 8px 20px;
    margin-top: 20px;
  }
  .portfolio__page-section {
    padding: 0;
  }
}
.rocket {
  width: 100%;
  margin: 0 auto;
  background-color: #fff30d;
  padding: 70px 35px 0 35px;
}
.rocket__container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}
.rocket__container-tablet {
  display: none;
}
.rocket__first-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 0;
}
.rocket__first-container h2 {
  display: flex;
  flex-direction: column;
  font-size: 160px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  text-transform: uppercase;
  padding-right: 0px;
  padding-top: 30px;
}
.rocket__first-container img {
  position: absolute;
  right: 0px;
  bottom: -150px;
  max-width: 270px;
  width: 100%;
  height: auto;
  z-index: 999;
}
.rocket__second-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 0;
  padding: 0 20px 70px 20px;
}
.rocket__second-container p {
  font-size: 20px;
  line-height: 1.2;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 300;
  text-wrap: wrap;
  max-width: 400px;
}
.rocket__second-container img {
  width: 200px;
  height: auto;
  padding-bottom: 50px;
}
.rocket__third-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 0;
  padding-bottom: 50px;
}
.rocket__third-container--flow {
  width: 450px;
  height: auto;
}
.rocket__third-container-badge {
  position: relative;
  width: 180px;
  height: 180px;
  margin-top: -100px;
}
.rocket__third-container-badge--base {
  width: 180px;
  height: 180px;
  animation: badge-rotate 10s linear infinite;
}
.rocket__third-container-badge--rocket {
  position: absolute;
  width: 50px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.rocket__wrapper {
  display: flex;
}
.rocket__wrapper.center {
  justify-content: center;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .rocket {
    padding: 50px 25px 0 25px;
  }
  .rocket__first-container img {
    max-width: 240px;
  }
  .rocket__first-container h2 {
    font-size: 140px;
  }
  .rocket__second-container {
    padding: 0 20px 70px 20px;
    padding-bottom: 70px;
  }
  .rocket__second-container p {
    font-size: 18px;
  }
  .rocket__third-container {
    align-items: center;
  }
  .rocket__third-container-badge {
    align-self: flex-start;
    width: 150px;
    height: 150px;
    margin-top: -100px;
  }
  .rocket__third-container-badge--base {
    width: 150px;
    height: 150px;
  }
  .rocket__third-container-badge--rocket {
    width: 40px;
  }
  .rocket__third-container--flow {
    width: 300px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .rocket {
    padding: 50px 25px 0 25px;
  }
  .rocket__container {
    flex-direction: column;
    display: none;
  }
  .rocket__container-tablet {
    display: block;
  }
  .rocket__first-container-tablet {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
  }
  .rocket__first-container-tablet h2 {
    font-size: 140px;
    line-height: 0.8;
    font-family: "Humane";
    text-transform: uppercase;
    padding-right: 0px;
    padding-top: 30px;
  }
  .rocket__first-container-tablet img {
    width: 250px;
  }
  .rocket__second-container-tablet {
    font-size: 17px;
    line-height: 1.2;
    font-family: "Campton";
    font-weight: 300;
    text-wrap: wrap;
    max-width: 500px;
    padding-bottom: 30px;
  }
  .rocket__third-container-tablet {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .rocket__third-container-tablet-machine {
    max-width: 300px;
    width: 100%;
    margin-bottom: -100px;
    z-index: 999;
  }
  .rocket__third-container--flow {
    width: 300px;
  }
  .rocket__third-container-badge {
    width: 150px;
    height: 150px;
  }
  .rocket__third-container-badge--base {
    width: 150px;
    height: 150px;
  }
  .rocket__third-container-badge--rocket {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .rocket {
    padding: 50px 15px 40px 15px;
  }
  .rocket__container {
    flex-direction: column;
    display: none;
  }
  .rocket__container-tablet {
    display: block;
  }
  .rocket__first-container-tablet {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 30px;
    overflow: hidden;
  }
  .rocket__first-container-tablet h2 {
    font-size: 60px;
    line-height: 0.8;
    font-family: "Humane";
    text-transform: uppercase;
    padding-right: 30px;
    padding-top: 12px;
  }
  .rocket__first-container-tablet img {
    max-width: 105px;
    height: auto;
    width: 100%;
  }
  .rocket__second-container-tablet {
    font-size: 15px;
    line-height: 1.2;
    font-family: "Campton";
    font-weight: 300;
    text-wrap: wrap;
    max-width: 500px;
    padding-bottom: 30px;
  }
  .rocket__third-container-tablet {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .rocket__third-container-tablet-machine {
    max-width: 150px;
    width: 100%;
    margin-bottom: -100px;
  }
  .rocket__third-container--flow {
    width: 150px;
  }
  .rocket__third-container-badge {
    width: 70px;
    height: 70px;
    margin-top: -50px;
  }
  .rocket__third-container-badge--base {
    width: 70px;
    height: 70px;
  }
  .rocket__third-container-badge--rocket {
    width: 20px;
  }
  .rocket__text.space {
    margin-right: 15px;
  }
}
.rocket__text {
  display: inline-block;
  opacity: 0;
}

.heading.animate .rocket__text {
  animation: slide-up 0.5s forwards;
  animation-delay: calc(var(--index) * 0.1s);
}

.rocket__text.space {
  margin-right: 30px;
}

@media (max-width: 767px) {
  .rocket__text.space {
    margin-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .rocket__first-container-tablet img {
    max-width: 90px;
    width: 100%;
    height: auto;
  }
  .rocket__first-container-tablet h2 {
    padding-right: 20px;
  }
}
.services {
  width: 100%;
  margin: 0 auto;
  padding: 120px 35px;
  background-color: #ff7bca;
}
.services__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.services__first {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services__first h2 {
  font-size: 240px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  text-transform: uppercase;
  padding-right: 30px;
  color: #020202;
}
.services__first p {
  font-size: 30px;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #020202;
  text-align: left;
}

.accordion__heading {
  display: flex;
  flex-direction: column;
}
.accordion__heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 50px;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  padding-bottom: 5px;
  cursor: pointer;
}
.accordion__heading h2 img {
  width: 40px;
  text-align: left;
  padding-bottom: 8px;
}
.accordion__heading p {
  font-size: 16px;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  color: #fff;
}
.accordion__column {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 10px;
  position: relative;
}

.accordion-item {
  border-bottom: 1px solid #020202;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  font-size: 58px;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: #000000;
  padding: 10px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.accordion-header:hover {
  background-color: #ec6eb9;
  padding-left: 50px;
}

.accordion-header:hover {
  background-color: #ec6eb9;
}

.accordion-content {
  display: none;
  background: transparent;
  overflow: hidden;
}
.accordion-content__container {
  width: 100%;
  background-color: #020202;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 30px;
}

.active .accordion-content {
  display: block;
}

.accordion__icon {
  font-size: 48px;
  width: 40px;
  height: 40px;
}

.accordion__column ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.accordion__column ul li {
  margin-bottom: 5px;
  cursor: pointer;
}

.accordion__images {
  width: 50%;
  display: flex;
  justify-content: center;
}
.accordion__images-des {
  max-width: 550px;
  width: 100%;
  height: auto;
  text-align: right;
  margin: 0 auto;
}
.accordion__images-mob {
  display: none;
}

@media (max-width: 767px) {
  .accordion__images {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 1;
  }
  .accordion__images-des {
    display: none;
  }
  .accordion__images-mob {
    display: block;
    max-width: 767px;
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
  }
  .accordion__column {
    order: 2;
  }
}
.accordion__highlighted {
  color: #ff7bca !important;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .services {
    padding: 100px 25px;
  }
  .services__first h2 {
    font-size: 200px;
  }
  .services__first p {
    font-size: 28px;
  }
  .accordion-content__container {
    padding: 30px 20px;
  }
  .accordion-header {
    padding: 15px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .services {
    padding: 80px 25px;
  }
  .services__first h2 {
    font-size: 150px;
  }
  .services__first p {
    font-size: 23px;
  }
  .accordion-content__container {
    padding: 40px 20px;
  }
  .accordion__column {
    padding: 0;
    gap: 30px;
  }
  .accordion-header {
    padding: 15px;
  }
  .accordion__heading h2 {
    font-size: 45px;
    padding-bottom: 5px;
  }
  .accordion__heading h2 img {
    width: 35px;
    padding-bottom: 6px;
  }
  .accordion__heading p {
    font-size: 15px;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  .services {
    padding: 70px 15px 50px 15px;
  }
  .services__first {
    padding-bottom: 20px;
    gap: 20px;
  }
  .services__first h2 {
    font-size: 70px;
    padding: 0;
  }
  .services__first p {
    font-size: 11px;
  }
  .accordion-content__container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 10px;
  }
  .accordion__column {
    width: 100%;
    padding: 0;
    gap: 25px;
  }
  .accordion-header {
    font-size: 45px;
    padding: 10px 0 2px 0;
  }
  .accordion__icon {
    width: 25px;
    height: 25px;
  }
  .accordion__heading h2 {
    font-size: 40px;
    padding-bottom: 5px;
  }
  .accordion__heading h2 img {
    width: 30px;
    padding-bottom: 6px;
  }
  .accordion__heading p {
    font-size: 14px;
    line-height: 1.1;
  }
}
.team {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: black;
}
.team__wrapper {
  max-width: 2500px;
  width: 100%;
  margin: 0 auto;
}
.team__container {
  height: 550px;
  overflow-y: hidden;
}
.team__container-heading {
  font-size: 240px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  padding: 150px 35px 50px 35px;
}
.team__container-description {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.team__container-description h2 {
  font-size: 50px;
}
.team__container-description p {
  font-family: "Campton", Arial, sans-serif;
  font-size: 16px;
}
.team__container-andrea {
  position: relative;
  font-size: 40px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background-color: #ff7bca;
  width: 100%;
  height: 100%;
  flex: 1 1 0;
  cursor: url("../images/team/cursor/cursor-1.png"), auto;
}
.team__container-lazar {
  position: relative;
  font-size: 40px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background-color: #11bc7a;
  cursor: url("../images/team/cursor/cursor-2.png"), auto;
  flex: 1 1 0;
}
.team__container-nenad {
  position: relative;
  font-size: 40px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background-color: #4694d0;
  cursor: url("../images/team/cursor/cursor-4.png"), auto;
  flex: 1 1 0;
}
.team__container-nevena {
  position: relative;
  font-size: 40px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background-color: #ff7bca;
  cursor: url("../images/team/cursor/cursor-5.png"), auto;
  flex: 1 1 0;
}
.team__container-manja {
  position: relative;
  font-size: 40px;
  line-height: 0.8;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background-color: #4694d0;
  cursor: url("../images/team/cursor/cursor-3.png"), auto;
  flex: 1 1 0;
}

.swiper-slide {
  width: 100%;
  display: flex;
}
.swiper-slide img {
  display: block;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  position: relative;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .team__container-heading {
    font-size: 200px;
    padding: 150px 35px 20px 35px;
  }
  .team__container-description h2 {
    font-size: 45px;
  }
  .team__container-description p {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .team__container-heading {
    font-size: 150px;
    padding: 150px 35px 20px 35px;
  }
  .team__container-description h2 {
    font-size: 40px;
  }
  .team__container-description p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .team__container {
    height: 325px;
  }
  .team__container-heading {
    font-size: 100px;
    padding: 150px 15px 20px 15px;
  }
  .team__container-description h2 {
    font-size: 40px;
  }
  .team__container-description p {
    font-size: 12px;
  }
  .team__container-description {
    left: 20px;
    bottom: 15px;
  }
  .swiper-slide img {
    width: 300px;
  }
}
.team__container-andrea.default-position {
  margin-top: 0;
  transition: all 1s ease;
}

.team__container-andrea.minus-position {
  margin-top: 150px;
}

.team__container-lazar.default-position {
  margin-top: 0;
  transition: all 1s ease;
}

.team__container-lazar.minus-position {
  margin-top: 300px;
}

.team__container-nenad.default-position {
  margin-top: 0;
  transition: all 1s ease;
}

.team__container-nenad.minus-position {
  margin-top: 450px;
}

.team__container-teodora.default-position {
  margin-top: 0;
  transition: all 1s ease;
}

.team__container-teodora.minus-position {
  margin-top: 600px;
}

.team__container-bosko.default-position {
  margin-top: 0;
  transition: all 1s ease;
}

.team__container-bosko.minus-position {
  margin-top: 750px;
}

.menu {
  position: fixed;
  top: 0;
  width: 300px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url(../images/burger/burger-bgd.svg);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  z-index: 98;
}
.menu.open {
  opacity: 0;
  animation: 1s ease-in 0.5s menu-open forwards;
}
.menu.close {
  display: none;
}
.menu__burger {
  all: unset;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.menu__burger-line {
  display: inline-flex;
  fill: #020202;
  color: #020202;
}
.menu__burger-line img {
  width: 30px;
  height: 3px;
  z-index: 99;
}
.menu__burger-line:nth-child(1) {
  margin-bottom: 5px;
}
.menu__burger-line:nth-child(2) {
  margin-bottom: 5px;
}
.menu__burger.open {
  display: block;
}
.menu__burger.close-p {
  display: none;
}
.menu__burger.close {
  animation: 1s ease-in 3s popup-close forwards;
}
.menu__popup {
  width: 500px;
  height: max-content;
  position: fixed;
  inset: 0;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  z-index: 98;
}
.menu__popup-container {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 50px 35px 20px 35px;
  border-radius: 30px;
  background-color: #fff30d;
}
.menu__popup.open {
  animation: 0.7s popup-open forwards;
}
.menu__popup.close-p {
  display: none;
}
.menu__popup.close {
  animation: 1.5s popup-close 0.4s forwards;
}
.menu__items li {
  font-size: 16px;
  font-family: "Campton", Arial, sans-serif;
  color: #020202;
  list-style: none;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  padding-top: 3px;
}
.menu__items li a {
  color: #020202;
  text-decoration: none;
  display: block;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}
.menu__items li:hover a {
  opacity: 1;
  transform: translate3d(0px, -19px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}
.menu__items li:not(:last-child) {
  border-bottom: 1px solid rgb(219, 219, 219);
}
.menu__items-second--item {
  font-size: 20px;
  font-family: "Stix", Arial, sans-serif;
  font-style: italic;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  opacity: 0;
}
.menu__popup-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.menu__popup-socials a {
  font-size: 50px;
  text-decoration: none;
}
.menu__popup-socials a:hover img {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.menu__popup-socials a img {
  width: 20px;
  transition: transform 0.6s ease;
}
.menu__popup-close {
  background-image: url(../images/burger/burger-bgd.svg);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
}
.menu__toggle {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}
.menu__toggle-bar {
  width: 100%;
  height: 3px;
  background-color: #020202;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu__toggle-bar:nth-child(1) {
  top: 0;
  transform-origin: center;
}
.menu__toggle-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu__toggle-bar:nth-child(3) {
  bottom: 0;
  transform-origin: center;
}
.menu__toggle.open .menu__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu__toggle.open .menu__toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu__toggle.open .menu__toggle-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 767px) {
  .menu {
    width: 120px;
  }
  .menu__popup {
    max-width: 300px;
    width: 100%;
  }
  .menu__popup-container {
    padding: 50px 15px 20px 15px;
  }
  .menu__toggle {
    width: 30px;
  }
  .menu__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .menu__burger-line {
    display: inline-flex;
    fill: #020202;
    color: #020202;
  }
  .menu__burger-line img {
    width: 100%;
    height: 2px;
    z-index: 99;
  }
  .menu__burger-line:nth-child(1) {
    margin-bottom: 4px;
  }
  .menu__burger-line:nth-child(2) {
    margin-bottom: 4px;
  }
  .menu__items-first--item {
    font-size: 14px;
    color: #020202;
    text-decoration: none;
    display: block;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
  }
  .menu__items li:hover .menu__items-first--item {
    opacity: 1;
    transform: none;
    transform-style: initial;
    transition: none;
  }
  .menu__items li:hover .menu__items-second--item {
    opacity: 0;
    transform: none;
    transform-style: initial;
    transition: none;
  }
  .menu__items li:not(:last-child) {
    border-bottom: 1px solid rgb(219, 219, 219);
  }
}
.navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding-bottom: 100px;
}
.navigation__logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.navigation__logo-desktop {
  display: block;
}
.navigation__logo-mobile {
  display: none;
}
.navigation__contact {
  color: #fff;
  font-family: "Campton", Arial, sans-serif;
  font-size: 16px;
  background-color: #ff7bca;
  padding: 10px 30px 10px 30px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}
.navigation__contact:hover {
  background-color: #fff30d;
  color: #020202;
}
.navigation__group {
  display: inline-flex;
}
.navigation__language {
  cursor: pointer;
  align-self: center;
  margin-right: 20px;
}
.navigation__language img {
  display: block;
  width: 30px;
  height: auto;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .navigation {
    padding-bottom: 100px;
  }
  .navigation__logo {
    max-width: 250px;
  }
  .navigation__contact {
    font-size: 16px;
    padding: 10px 25px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .navigation {
    padding-bottom: 100px;
  }
  .navigation__logo {
    max-width: 250px;
  }
  .navigation__contact {
    font-size: 14px;
    padding: 8px 25px 10px 25px;
  }
}
@media (max-width: 767px) {
  .navigation {
    padding-bottom: 100px;
  }
  .navigation__logo {
    max-width: 90px;
  }
  .navigation__logo-desktop {
    display: none;
  }
  .navigation__logo-mobile {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
  }
  .navigation__contact {
    font-size: 10px;
    padding: 9px 10px 9px 10px;
    z-index: 0;
  }
  .navigation__language {
    cursor: pointer;
    align-self: center;
    margin-right: 7px;
  }
  .navigation__language img {
    display: block;
    width: 30px;
    height: auto;
  }
}
.hero {
  width: 100%;
  height: 700px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background-color: #11bc7a;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 400;
  padding: 20px 35px 100px 35px;
  background-image: url(../images/hero/background-hero.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__main {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__main-heading {
  font-size: 400px;
  font-weight: 600;
  color: white;
}
.hero__astronaut {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  padding: 100px;
  animation: float 3s linear infinite;
}
.hero__astronaut-head {
  display: inline-flex;
  position: relative;
  width: 135px;
  margin-left: -22px;
}
.hero__astronaut-head-main {
  position: relative;
  display: inline-flex;
}
.hero__astronaut-head-main img {
  width: 85px;
  width: 125px;
  overflow: hidden;
}
.hero__astronaut-head-elements {
  display: inline-flex;
  position: absolute;
  width: 125px;
  clip-path: path("M62.5,110.1C28,110.1,0,85.4,0,55.1C0,24.7,28,0,62.5,0S125,24.7,125,55.1C125,85.4,97,110.1,62.5,110.1z");
}
.hero__astronaut-head-shadow {
  position: absolute;
  width: 100px;
  width: 125px;
}
.hero__astronaut-head-shadow img {
  width: 100%;
  height: 100%;
}
.hero__astronaut-head-vizier {
  position: absolute;
  width: 100px;
  width: 125px;
}
.hero__astronaut-head-vizier img {
  width: 100%;
  height: 100%;
}
.hero__astronaut-head-overlay {
  position: absolute;
  display: inline-flex;
  width: 85px;
  width: 125px;
}
.hero__astronaut-head-overlay img {
  width: 100%;
  height: 100%;
}
.hero__astronaut-body {
  display: inline-flex;
  text-align: center;
}
.hero__astronaut-body img {
  width: 294px;
}
.hero__secondary-heading {
  align-self: flex-end;
}
.hero__secondary-heading h2 {
  font-size: 48px;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #fff;
  text-align: left;
}
.hero__secondary-heading h2 em {
  font-family: "Times New Roman", Times, serif;
}
.hero__flash-text {
  font-family: "Campton", Arial, sans-serif;
  position: absolute;
  font-size: 30px;
  color: #fff30d;
}
.hero__flash--design {
  top: 0;
  right: -300px;
  transform: rotate(-45deg);
}
.hero__flash--web {
  top: 0;
  right: -300px;
  transform: rotate(-45deg);
}
.hero__flash--social {
  top: 0;
  right: -300px;
  transform: rotate(-45deg);
}
.hero__flash--photo {
  top: 0;
  right: -300px;
  transform: rotate(-45deg);
}
.hero__flash-img1 {
  position: absolute;
  display: block;
  width: 100px;
  top: 0;
  right: -300px;
}
.hero__flash-img2 {
  position: absolute;
  display: block;
  width: 100px;
  top: 0;
  right: -300px;
}
.hero__flash-img3 {
  position: absolute;
  display: block;
  width: 100px;
  top: 0;
  right: -300px;
}

@media (min-width: 900px) and (max-width: 1366px) {
  .hero__main-heading {
    font-size: 400px;
  }
  .hero__secondary-heading h2 {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .hero__main-heading {
    font-size: 350px;
  }
  .hero__secondary-heading h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .hero {
    justify-content: flex-start;
    padding: 20px 10px 100px 10px;
    height: 700px;
  }
  .hero__main-heading {
    font-size: 190px;
  }
  .hero__secondary-heading {
    padding-top: 270px;
  }
  .hero__secondary-heading h2 {
    font-size: 20px;
  }
  .hero__astronaut {
    padding: 0;
  }
  .hero__flash-img1 {
    position: absolute;
    display: block;
    width: 80px;
    top: 0;
    right: -100px;
  }
  .hero__flash-img2 {
    position: absolute;
    display: block;
    width: 80px;
    top: 0;
    right: -100px;
  }
  .hero__flash-img3 {
    position: absolute;
    display: block;
    width: 80px;
    top: 0;
    right: -100px;
  }
}
#portfolio_page {
  margin: 0;
  padding: 0;
}

.portfolio_page-container {
  display: flex;
  flex-direction: column;
  padding: 70px 35px;
}

.portfolio_page-scroll-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.portfolio_page-scroll-section img {
  position: absolute;
  height: 100%;
  width: auto; /* Slika je šira od ekrana */
  left: 0;
  transition: transform 0.5s ease;
}

.portfolio_page-tab-section {
  text-align: center;
}

.portfolio_page-tab-buttons {
  margin-bottom: 20px;
}

.portfolio_page-tab-button {
  font-family: "Campton", sans-serif;
  font-size: 16px;
  padding: 12px 25px;
  margin: 5px;
  cursor: pointer;
  background-color: #11bc7a;
  border: 1px solid #11bc7a;
  color: white;
  border-radius: 50px;
  outline: none;
  user-select: none;
}
.portfolio_page-tab-button:hover {
  background-color: #fff;
  color: #11bc7a;
  border: 1px solid #11bc7a;
}
.portfolio_page-tab-button.active {
  background-color: #ff7bca;
  border: 1px solid #ff7bca;
  pointer-events: none;
  color: white;
}

.portfolio_page-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.portfolio_page-grid {
  width: 350px;
  height: 350px;
}

.portfolio_page-grid img {
  max-width: 350px;
  width: 100%;
  height: auto;
  cursor: pointer;
  user-select: none;
  filter: grayscale(100%);
}
.portfolio_page-grid img:hover {
  filter: grayscale(0%);
}

.portfolio_page-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.portfolio_page-lightbox.active {
  display: flex;
}

.portfolio_page-lightbox-image {
  max-width: 800px;
  height: auto;
  width: 100%;
}

.portfolio_page-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 100px;
  color: #ff7bca;
  cursor: pointer;
}

.portfolio__header {
  background-color: #1c1c33;
  padding: 15px 35px;
}

.portfolio__header-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio__navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
}

@media only screen and (min-width: 1280px) {
  .portfolio_page-container {
    padding: 70px 35px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .portfolio_page-container {
    padding: 50px 25px;
  }
  .portfolio_page-tab-button {
    font-size: 15px;
    padding: 12px 22px;
  }
  .portfolio__header {
    padding: 15px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio_page-container {
    padding: 30px 15px;
  }
  .portfolio__header {
    padding: 15px 10px;
  }
  .portfolio_page-tab-buttons {
    margin-bottom: 15px;
  }
  .portfolio_page-grid {
    width: 350px;
    height: auto;
  }
  .portfolio_page-tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 320px;
    width: 100%;
    margin: 0 auto 15px auto;
  }
  .portfolio_page-tab-button {
    font-size: 12px;
    padding: 7px 15px;
    flex: 1;
  }
  .portfolio_page-tab-button-first {
    flex: 1 1 100%;
  }
}
.single__portfolio_hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0 10px 0;
}

.single__portfolio_container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  background: #1c1c33;
  padding: 0 35px 70px 35px;
}

.single__portfolio_wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 1000px;
  background-color: white;
  z-index: 2;
  margin-top: -120px;
}
.single__portfolio_wrap img {
  width: 100%;
}

.single__portfolio-heading {
  display: flex;
  flex-direction: column;
  padding: 50px 35px;
}
.single__portfolio-heading h2 {
  display: block;
  width: 100%;
  font-family: "Humane", Arial, sans-serif;
  font-size: 70px;
  word-wrap: break-word;
  padding-bottom: 15px;
}

.single__portfolio-description {
  display: flex;
  width: 100%;
  gap: 30px;
}
.single__portfolio-description p {
  width: 70%;
  display: block;
  font-size: 15px;
  font-weight: 300;
  word-wrap: break-word;
  font-family: "Campton", Arial, sans-serif;
}

.single__portfolio-tags {
  width: 30%;
  text-align: right;
}
.single__portfolio-tags span {
  display: inline-block;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid black;
  border-radius: 50px;
  margin: 4px;
}

.single__portfolio-image {
  display: inline-flex;
}

.single__portfolio-buttons {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.single__portfolio-buttons a {
  text-decoration: none;
  display: inline-flex;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 8px 15px;
  border: 1px solid white;
  color: white;
  border-radius: 50px;
  margin: 4px;
}
.single__portfolio-buttons a:hover {
  border: 1px solid #fff30d;
  background-color: #fff30d;
  color: #020202;
}

.single__portfolio-back a {
  text-decoration: none;
  display: inline-flex;
  font-family: "Campton", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 8px 15px;
  border: 1px solid #ff7bca;
  color: white;
  border-radius: 50px;
  margin: 4px;
}
.single__portfolio-back a:hover {
  border: 1px solid #ff7bca;
  background-color: #ff7bca;
  color: #020202;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
}

.marquee-track-left {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-left 140s linear infinite;
}

.marquee-track-right {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-right 140s linear infinite;
}

.marquee-track span {
  display: inline-block;
  font-size: 100px;
  font-family: "Humane", Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  opacity: 0.3;
  margin-right: 100px; /* razmak između tekstova */
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* pomera polovinu track-a, ostatak se nastavlja odmah */
}
@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  } /* pomera polovinu track-a, ostatak se nastavlja odmah */
}
@media (min-width: 900px) and (max-width: 1366px) {
  .single__portfolio_container {
    gap: 40px;
  }
  .single__portfolio-description p {
    font-size: 14px;
  }
  .single__portfolio-heading h2 {
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .single__portfolio_container {
    padding: 0 35px 50px 35px;
    gap: 30px;
  }
  .marquee-track span {
    font-size: 80px;
    margin-right: 50px;
  }
  .single__portfolio_wrap {
    margin-top: -80px;
  }
  .single__portfolio-heading {
    flex-direction: column;
    padding: 40px 25px;
  }
  .single__portfolio-heading h2 {
    font-size: 60px;
    padding-bottom: 7px;
  }
  .single__portfolio-description {
    gap: 20px;
  }
  .single__portfolio-description p {
    width: 70%;
    font-size: 13px;
  }
  .single__portfolio-tags {
    width: 30%;
    text-align: right;
  }
  .single__portfolio-tags span {
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  .marquee-track span {
    font-size: 50px;
    margin-right: 30px;
  }
  .single__portfolio_container {
    padding: 0 20px 40px 20px;
    gap: 25px;
  }
  .single__portfolio_wrap {
    margin-top: -50px;
  }
  .single__portfolio-heading {
    flex-direction: column;
    padding: 30px 15px;
  }
  .single__portfolio-heading h2 {
    font-size: 40px;
    padding-bottom: 7px;
  }
  .single__portfolio-description {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .single__portfolio-description p {
    width: 100%;
    font-size: 12px;
  }
  .single__portfolio-tags {
    width: 100%;
    text-align: left;
  }
  .single__portfolio-tags span {
    font-size: 8px;
    margin: 3px;
  }
  .single__portfolio-buttons {
    gap: 10px;
  }
  .single__portfolio-buttons a {
    font-size: 10px;
    padding: 7px 10px;
  }
  .single__portfolio-back a {
    font-size: 12px;
  }
}
.project1 {
  background-color: #00c1f2;
}

.project2 {
  background-color: #f885e0;
}

.project3 {
  background-color: #f9b729;
}

.project4 {
  background-color: #f0c955;
}

.project5 {
  background-color: #e8b098;
}

.project6 {
  background-color: #0d5cf8;
}

.project7 {
  background-color: #e29bc3;
}

/*# sourceMappingURL=style.css.map */
