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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

blockquote, q {
  quotes: none;
}

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

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

input {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Wix;
}

section {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

h1 {
  font-size: 88px;
  line-height: 1.1;
  font-family: Medium;
}

h2 {
  font-size: 48px;
  line-height: 1.1;
  font-family: Regular;
}

h3 {
  font-size: 32px;
  line-height: 1.1;
  font-family: Medium;
}

.btn {
  font-size: 24px;
  background-color: #303030;
  border-radius: 10px;
  color: #F9F9F9;
  padding: 17px 35px;
  text-decoration: none;
  display: flex;
  width: fit-content;
  border: 1px solid #303030;
  transition: ease 0.3s;
}
.btn:hover {
  background-color: transparent;
  color: #303030;
}

.btn-outline {
  background-color: transparent;
  color: #262626;
}
.btn-outline:hover {
  background-color: #262626;
  color: #F9F9F9;
}

.text-link:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 32px;
  }
  .btn {
    font-size: 18px;
    padding: 13px 19px;
  }
}
body {
  background-color: #262626;
  color: #F9F9F9;
}

@font-face {
  font-family: "Wix";
  src: url("../fonts/wix_regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Regular";
  src: url("../fonts/bdo_regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/bdo_medium.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  padding: 40px 32px;
  background-color: #FDFE02;
  transition: ease 0.5s;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0;
}

.header-btns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  fill: #262626;
  width: 184px;
  height: 50px;
}

.header-ismoving {
  padding: 16px 32px;
}

@media (max-width: 768px) {
  header {
    padding: 16px;
  }
  .header-btns {
    gap: 16px;
  }
  .logo {
    width: 130px;
    height: 36px;
  }
  .header-ismoving {
    padding: 8px 16px;
  }
}
.hero {
  position: relative;
  background-color: #FDFE02;
  color: #303030;
  overflow: hidden;
  padding: 0 32px;
}
.hero .container {
  padding: 360px 0 116px;
  position: relative;
  z-index: 1;
}
.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero-wrap h1 {
  max-width: 680px;
}
.hero-wrap p {
  font-size: 24px;
  max-width: 600px;
  line-height: 1.3;
}
.hero .btn {
  margin-top: 32px;
}
.hero-sun {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 572px;
  height: 509px;
  fill: #262626;
}

@media (max-width: 1300px) {
  .hero-sun {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 0 16px;
  }
  .hero .container {
    padding: 260px 0 88px;
  }
  .hero-wrap {
    gap: 32px;
  }
  .hero-wrap p {
    font-size: 18px;
  }
  .hero .btn {
    margin-top: 24px;
  }
  .hero-sun {
    fill: #F9F9F9;
    transform: translate(40%, 30%);
  }
}
.about {
  background-color: #262626;
  color: #F9F9F9;
  display: flex;
}
.about-col {
  width: 50%;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text {
  margin: 48px 32px 48px 100px;
  max-width: 600px;
}
.about-text h2 {
  margin-bottom: 48px;
}
.about-text p {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .about-text {
    margin: 48px 32px;
  }
}
@media (max-width: 1100px) {
  .about {
    flex-direction: column;
  }
  .about-col {
    width: 100%;
  }
  .about-text {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .about-text {
    margin: 32px 16px;
  }
  .about-text h2 {
    margin-bottom: 24px;
  }
  .about-text p {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.cta-big {
  padding: 96px 32px 0;
  color: #F9F9F9;
}
.cta-big .container {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  align-items: center;
}
.cta-big-wrap p {
  max-width: 680px;
  margin: 24px 0;
  font-size: 24px;
  line-height: 1.3;
}
.cta-big-img {
  max-width: 500px;
  aspect-ratio: 800/966;
  width: 100%;
  height: auto;
  display: flex;
}

.cta-big-magenta {
  background-color: #E900FF;
}
.cta-big-magenta .btn {
  background-color: #FDFE02;
  border: 1px solid #FDFE02;
  color: #262626;
}
.cta-big-magenta .btn:hover {
  background-color: #262626;
  border: 1px solid #262626;
  color: #E900FF;
}

.cta-big-black {
  background-color: #262626;
}
.cta-big-black .btn {
  background-color: #FDFE02;
  border: 1px solid #FDFE02;
  color: #262626;
}
.cta-big-black .btn:hover {
  background-color: #F9F9F9;
  border: 1px solid #F9F9F9;
  color: #262626;
}

@media (max-width: 1200px) {
  .cta-big .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .cta-big {
    padding: 32px 16px 0;
  }
  .cta-big-wrap p {
    margin: 16px 0;
    font-size: 16px;
  }
  .cta-big-img {
    width: 90%;
    margin: 0 auto;
  }
}
.cta {
  overflow: hidden;
  position: relative;
  padding: 32px;
  color: #F9F9F9;
}
.cta .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.cta-header {
  font-size: 32px;
  font-family: Medium;
  line-height: 1.1;
}
.cta-text {
  max-width: 500px;
  font-family: Medium;
}

.cta-btns {
  display: flex;
  gap: 24px;
}
.cta-btns .btn {
  width: max-content;
}
.cta-btns .btn svg {
  width: 28px;
  height: 26px;
}

.cta-sun {
  position: absolute;
  top: 0;
  right: 27%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
}

.cta-magenta {
  background-color: #E900FF;
}
.cta-magenta .cta-sun {
  fill: #7664B0;
}
.cta-magenta .btn {
  align-items: center;
  background-color: #FDFE02;
  border: 1px solid #FDFE02;
  color: #262626;
}
.cta-magenta .btn:hover {
  background-color: #262626;
  color: #E900FF;
  border: 1px solid #262626;
}
.cta-magenta .btn:hover .cta-arrow {
  fill: #E900FF;
}

.cta-green {
  color: #262626;
  background-color: #0BFF01;
}
.cta-green .cta-sun {
  fill: #F9F9F9;
}
.cta-green .btn {
  align-items: center;
  color: #FDFE02;
}
.cta-green .btn .cta-arrow {
  fill: #FDFE02;
}
.cta-green .btn:hover {
  background-color: #F9F9F9;
  border: 1px solid #F9F9F9;
  color: #262626;
}
.cta-green .btn:hover .cta-arrow {
  fill: #262626;
}

.cta-red {
  background-color: #FE0000;
}
.cta-red .cta-sun {
  fill: #F85932;
}
.cta-red .btn {
  align-items: center;
  background-color: #FDFE02;
  border: 1px solid #FDFE02;
  color: #262626;
}
.cta-red .btn:hover {
  background-color: #262626;
  border: 1px solid #262626;
  color: #FE0000;
}
.cta-red .btn:hover .cta-arrow {
  fill: #FE0000;
}

@media (max-width: 1200px) {
  .cta .container {
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-header {
    font-size: 28px;
  }
  .cta-sun {
    right: 16px;
    width: 100px;
    height: 100px;
  }
  .cta-btns {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .cta {
    padding: 32px 16px;
  }
}
.team {
  background-color: #262626;
  padding: 120px 32px 0;
  color: #F9F9F9;
}
.team h2 {
  margin-bottom: 48px;
}
.team-row {
  display: flex;
}
.team-tile {
  position: relative;
  overflow: hidden;
  width: 50%;
}
.team-tile img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/8;
}

.team-tile-one {
  background-color: #FDFE02;
  padding: 32px;
  color: #262626;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.team-tile-two {
  position: relative;
  background-color: #0BFF01;
  padding: 32px;
  color: #262626;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.team-icon-top {
  position: absolute;
  z-index: 1;
  fill: #F9F9F9;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  transform: translateY(-50%);
}

.team-icon-bottom {
  position: absolute;
  z-index: 1;
  fill: #F9F9F9;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  transform: translateY(50%);
}

@media (max-width: 1000px) {
  .team-row {
    flex-direction: column;
  }
  .team-row:nth-child(2) {
    flex-direction: column-reverse;
  }
  .team-tile {
    min-height: 150px;
    width: 100%;
    max-width: 500px;
  }
  .team-tile h3 {
    font-size: 22px;
  }
  .team-tile-one {
    min-height: 150px;
    padding: 24px;
  }
  .team-tile-two {
    min-height: 150px;
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .team {
    padding: 64px 16px 0;
  }
  .team h2 {
    margin-bottom: 32px;
  }
  .team-icon-top {
    width: 100px;
    height: 100px;
    right: 30px;
  }
  .team-icon-bottom {
    width: 100px;
    height: 100px;
    right: 30px;
  }
}
.duration {
  background-color: #262626;
  padding: 0 32px;
}
.duration .container {
  background-color: #303030;
  padding: 50px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  color: #F9F9F9;
}
.duration .container-icon {
  width: 416px;
  height: 41px;
  stroke: #FDFE02;
  stroke-width: 4;
}
.duration .lable {
  background-color: #E900FF;
  padding: 12px 24px;
  font-size: 32px;
  line-height: 1.1;
  font-family: Medium;
}

@media (max-width: 768px) {
  .duration {
    padding: 0 16px;
  }
  .duration .container {
    padding: 24px;
    gap: 24px;
  }
  .duration .lable {
    font-size: 18px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.task {
  padding: 128px 32px;
}
.task-wrap {
  display: flex;
  flex-wrap: wrap;
}
.task-tile {
  position: relative;
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  overflow: hidden;
  padding: 32px;
  min-height: 300px;
}
.task-index {
  font-size: 48px;
  line-height: 1.1;
  font-family: Regular;
}
.task-body {
  font-size: 32px;
  line-height: 1.3;
  font-family: Regular;
}

.task-sun {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  transform: translateY(50%);
  fill: #3C3C3C;
}

.task-tile:nth-child(1) {
  background-color: #303030;
  justify-content: flex-end;
}

.task-tile:nth-child(2) {
  background-color: #FE0000;
}

.task-tile:nth-child(3) {
  background-color: #E900FF;
}

.task-tile:nth-child(4) {
  background-color: #0BFF01;
  color: #303030;
}

@media (max-width: 1100px) {
  .task-tile {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .task {
    padding: 88px 16px;
  }
  .task-tile {
    min-height: 150px;
    padding: 24px;
  }
  .task-sun {
    width: 100px;
    height: 100px;
  }
  .task-index {
    font-size: 32px;
  }
  .task-body {
    font-size: 18px;
  }
}
.four {
  padding: 0 32px;
}
.four .container h2 {
  margin-bottom: 48px;
}
.four-wrap-row {
  display: flex;
}

.four-tile {
  width: 50%;
  background-color: #FDFE02;
  color: #262626;
}
.four-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.four-head {
  padding: 12px 24px;
  font-size: 32px;
  font-family: Regular;
  line-height: 1.1;
  color: #F9F9F9;
  background-color: #303030;
}

.four-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.four-item-icon {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
}
.four-item-wrap-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-family: Medium;
}
.four-item-wrap-desc {
  font-size: 24px;
  font-family: Medium;
  line-height: 1.3;
}

.four-tile-one {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.four-tile-four {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1000px) {
  .four-wrap-row {
    flex-direction: column;
  }
  .four-wrap-row:nth-child(2) {
    flex-direction: column-reverse;
  }
  .four-tile {
    width: 100%;
  }
  .four-tile-img {
    aspect-ratio: 16/8;
  }
  .four-head {
    font-size: 18px;
    padding: 8px 16px;
    line-height: 1.3;
  }
  .four-tile-one, .four-tile-four {
    gap: 24px;
    padding: 24px 16px;
  }
  .four-item {
    align-items: flex-start;
    gap: 8px;
  }
  .four-item-icon {
    width: 18px !important;
    height: 18px !important;
    margin-top: 1px;
  }
  .four-item-wrap-title {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .four-item-wrap-desc {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .four {
    padding: 0 16px;
  }
}
@media (max-width: 420px) {
  .four-tile-img {
    height: 260px;
  }
}
footer {
  background-color: #FDFE02;
  max-width: 1920px;
  margin: 0 auto;
  padding: 48px 32px;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  color: #262626;
}

.copyright {
  font-family: Regular;
  text-align: center;
}

.social {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 40px;
  height: 40px;
  background-color: #262626;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: ease 0.3s;
}
.social-icon svg {
  fill: #FDFE02;
  width: 24px;
  height: 24px;
}
.social-icon:hover {
  background-color: #FE0000;
}

@media (max-width: 1000px) {
  footer {
    padding: 32px 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
  }
}