* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  cursor: none;
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.6;
}

h1, h2 {
  margin-bottom: 20px;
  font-size: 110px;
  font-family: "Anton", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 1.1;
}
@media (max-width: 1450px) {
  h1, h2 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  h1, h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  h1, h2 {
    font-size: 50px;
  }
}
h1.smaller, h2.smaller {
  font-size: 90px;
}
@media (max-width: 1450px) {
  h1.smaller, h2.smaller {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  h1.smaller, h2.smaller {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  h1.smaller, h2.smaller {
    font-size: 40px;
  }
}
h1 strong, h2 strong {
  font-size: 150px;
  color: #f39c12;
  font-weight: 700;
}
@media (max-width: 1450px) {
  h1 strong, h2 strong {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  h1 strong, h2 strong {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  h1 strong, h2 strong {
    font-size: 70px;
  }
}
h1.animate strong, h2.animate strong {
  background: linear-gradient(to right, #f39c12 10%, #ffffff 50%, #f39c12 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 500% auto;
  color: transparent;
  animation: gradientAnimation 3s ease infinite alternate;
}
h1.animate strong ~ strong, h2.animate strong ~ strong {
  background: linear-gradient(to right, #ffffff 10%, #f39c12 50%, #ffffff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 500% auto;
}

h3 {
  font-size: 54px;
  font-family: "Anton", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  letter-spacing: 3px;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 1450px) {
  h3 {
    font-size: 42px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
p {
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 1450px) {
  p {
    font-size: 16px;
  }
}

.custom-cursor {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #f39c12;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: animation 0.3s ease;
}

a,
a:hover {
  cursor: none;
}

.custom-cursor.link {
  animation: pulse 1s infinite ease-in-out;
}

@media (max-width: 1199px) {
  .dots {
    top: 10px;
    transform: none;
    left: auto;
    right: 10px;
  }
}
.dots li a:before {
  transform: rotate(45deg);
  border-radius: 0;
}
.dots li a.active:before {
  border-radius: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 70px;
  right: 70px;
  z-index: 99;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1450px) {
  header {
    left: 50px;
    right: 50px;
  }
}
@media (max-width: 1199px) {
  header {
    left: 15px;
    right: 15px;
  }
}
header .logo a {
  color: #ffffff;
  font-size: 28px;
  font-family: "Anton", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
}
header .logo a strong {
  color: #f39c12;
  font-weight: 700;
}
@media (max-width: 1199px) {
  header nav.navigation {
    display: none;
  }
}
header nav.navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -20px;
}
header nav.navigation ul li {
  padding: 5px 15px;
  list-style: none;
}
header nav.navigation ul li a {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1;
  position: relative;
  padding: 2px 0px 2px 2px;
}
@media (max-width: 1450px) {
  header nav.navigation ul li a {
    font-size: 14px;
  }
}
header nav.navigation ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  margin: auto;
  z-index: -1;
  background-color: #f39c12;
  transition: all 0.15s;
}
header nav.navigation ul li a:hover:after, header nav.navigation ul li a.active:after {
  width: 100%;
}

.dots li a:before {
  background-color: rgba(255, 255, 255, 0.5);
}

.dots li a.active:before {
  background-color: #f39c12;
}

@keyframes pulse {
  0% {
    width: 25px;
    height: 25px;
    opacity: 1;
  }
  50% {
    width: 15px;
    height: 15px;
    opacity: 0.8;
  }
  100% {
    width: 25px;
    height: 25px;
    opacity: 1;
  }
}
footer {
  position: fixed;
  bottom: 0;
  left: 70px;
  right: 70px;
  display: flex;
  justify-content: center;
  z-index: 99;
  padding: 20px 30px;
  color: #ffffff;
  font-size: 12px;
  font-family: "League Spartan", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media (max-width: 767px) {
  footer {
    left: 0;
    right: 0;
    font-size: 10px;
  }
}
footer svg {
  width: 12px;
}
footer svg path {
  fill: #f39c12;
}

main.content section.section {
  position: relative;
  overflow: hidden;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1c1c1c;
}
@media (max-width: 1450px) {
  main.content section.section {
    padding: 80px;
  }
}
@media (max-width: 1199px) {
  main.content section.section {
    padding: 70px;
  }
}
@media (max-width: 767px) {
  main.content section.section {
    padding: 30px;
  }
}
main.content section.section .wrapper-front {
  position: relative;
  z-index: 5;
}
main.content section.section .wrapper-front.img-txt {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  main.content section.section .wrapper-front.img-txt {
    flex-direction: column;
  }
}
main.content section.section .wrapper-front.img-txt .wrapper-left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  main.content section.section .wrapper-front.img-txt .wrapper-left {
    flex-direction: column;
  }
}
main.content section.section .wrapper-front.img-txt .wrapper-left img {
  max-width: 200px;
  height: auto;
  border-radius: 100%;
  filter: grayscale(90%);
  margin-bottom: 20px;
  margin-right: 40px;
}
@media (max-width: 767px) {
  main.content section.section .wrapper-front.img-txt .wrapper-left img {
    max-width: 100px;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
main.content section.section .wrapper-front.img-txt .wrapper-right {
  padding-left: 150px;
  letter-spacing: 2px;
  text-align: right;
}
@media (max-width: 1450px) {
  main.content section.section .wrapper-front.img-txt .wrapper-right {
    padding-left: 70px;
  }
}
@media (max-width: 1199px) {
  main.content section.section .wrapper-front.img-txt .wrapper-right {
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  main.content section.section .wrapper-front.img-txt .wrapper-right p {
    font-size: 12px;
  }
}
main.content section.section .wrapper-front .intro {
  text-transform: uppercase;
  position: relative;
  font-size: 16px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
main.content section.section .wrapper-front .wrapper-text.half {
  max-width: 40%;
}
@media (max-width: 1199px) {
  main.content section.section .wrapper-front .wrapper-text.half {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  main.content section.section .wrapper-front .wrapper-text.half {
    max-width: 95%;
  }
}
main.content section.section .wrapper-front .wrapper-text.half .text {
  font-size: 18px;
  letter-spacing: 2px;
}
@media (max-width: 1450px) {
  main.content section.section .wrapper-front .wrapper-text.half .text {
    font-size: 16px;
  }
}
main.content section.section .wrapper-front .wrapper-text.half .text a {
  display: inline-block;
  color: #f39c12;
  text-decoration: none;
  position: relative;
}
main.content section.section .wrapper-front .wrapper-text.half .text a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 0%;
  margin: auto;
  z-index: -1;
  background-color: #f39c12;
  transition: all 0.15s;
}
main.content section.section .wrapper-front .wrapper-text.half .text a:hover:after {
  width: 100%;
}
main.content section.section#portfolio {
  padding: 0;
}
main.content section.section#portfolio h2 {
  text-align: center;
  color: #f39c12;
  font-weight: 700;
}

.parallax-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.parallax-container.diamonds {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 30vw;
  z-index: 0;
}
.parallax-container.diamonds .diamond:nth-child(1) {
  width: 1900px;
  height: 1900px;
  opacity: 0.05;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 15px;
  --shift-y: 15px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -1;
}
.parallax-container.diamonds .diamond:nth-child(2) {
  width: 1800px;
  height: 1800px;
  opacity: 0.06;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 30px;
  --shift-y: 30px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -2;
}
.parallax-container.diamonds .diamond:nth-child(3) {
  width: 1700px;
  height: 1700px;
  opacity: 0.07;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 45px;
  --shift-y: 45px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -3;
}
.parallax-container.diamonds .diamond:nth-child(4) {
  width: 1600px;
  height: 1600px;
  opacity: 0.08;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 60px;
  --shift-y: 60px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -4;
}
.parallax-container.diamonds .diamond:nth-child(5) {
  width: 1500px;
  height: 1500px;
  opacity: 0.09;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 75px;
  --shift-y: 75px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -5;
}
.parallax-container.diamonds .diamond:nth-child(6) {
  width: 1400px;
  height: 1400px;
  opacity: 0.1;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 90px;
  --shift-y: 90px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -6;
}
.parallax-container.diamonds .diamond:nth-child(7) {
  width: 1300px;
  height: 1300px;
  opacity: 0.11;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 105px;
  --shift-y: 105px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -7;
}
.parallax-container.diamonds .diamond:nth-child(8) {
  width: 1200px;
  height: 1200px;
  opacity: 0.12;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 120px;
  --shift-y: 120px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -8;
}
.parallax-container.diamonds .diamond:nth-child(9) {
  width: 1100px;
  height: 1100px;
  opacity: 0.13;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 135px;
  --shift-y: 135px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -9;
}
.parallax-container.diamonds .diamond:nth-child(10) {
  width: 1000px;
  height: 1000px;
  opacity: 0.14;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 150px;
  --shift-y: 150px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -10;
}
.parallax-container.diamonds .diamond:nth-child(11) {
  width: 900px;
  height: 900px;
  opacity: 0.15;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 165px;
  --shift-y: 165px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -11;
}
.parallax-container.diamonds .diamond:nth-child(12) {
  width: 800px;
  height: 800px;
  opacity: 0.16;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 180px;
  --shift-y: 180px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -12;
}
.parallax-container.diamonds .diamond:nth-child(13) {
  width: 700px;
  height: 700px;
  opacity: 0.17;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 195px;
  --shift-y: 195px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -13;
}
.parallax-container.diamonds .diamond:nth-child(14) {
  width: 600px;
  height: 600px;
  opacity: 0.18;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 210px;
  --shift-y: 210px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -14;
}
.parallax-container.diamonds .diamond:nth-child(15) {
  width: 500px;
  height: 500px;
  opacity: 0.19;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 225px;
  --shift-y: 225px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -15;
}
.parallax-container.diamonds .diamond:nth-child(16) {
  width: 400px;
  height: 400px;
  opacity: 0.2;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 240px;
  --shift-y: 240px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -16;
}
.parallax-container.diamonds .diamond:nth-child(17) {
  width: 300px;
  height: 300px;
  opacity: 0.21;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 255px;
  --shift-y: 255px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -17;
}
.parallax-container.diamonds .diamond:nth-child(18) {
  width: 200px;
  height: 200px;
  opacity: 0.22;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 270px;
  --shift-y: 270px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -18;
}
.parallax-container.diamonds .diamond:nth-child(19) {
  width: 100px;
  height: 100px;
  opacity: 0.23;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 285px;
  --shift-y: 285px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -19;
}
@media (max-width: 1450px) {
  .parallax-container.diamonds .diamond:nth-child(1) {
    width: 1600px;
    height: 1600px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 15px;
    --shift-y: 15px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .parallax-container.diamonds .diamond:nth-child(2) {
    width: 1520px;
    height: 1520px;
    opacity: 0.06;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 30px;
    --shift-y: 30px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .parallax-container.diamonds .diamond:nth-child(3) {
    width: 1440px;
    height: 1440px;
    opacity: 0.07;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 45px;
    --shift-y: 45px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .parallax-container.diamonds .diamond:nth-child(4) {
    width: 1360px;
    height: 1360px;
    opacity: 0.08;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 60px;
    --shift-y: 60px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .parallax-container.diamonds .diamond:nth-child(5) {
    width: 1280px;
    height: 1280px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 75px;
    --shift-y: 75px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .parallax-container.diamonds .diamond:nth-child(6) {
    width: 1200px;
    height: 1200px;
    opacity: 0.1;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 90px;
    --shift-y: 90px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .parallax-container.diamonds .diamond:nth-child(7) {
    width: 1120px;
    height: 1120px;
    opacity: 0.11;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 105px;
    --shift-y: 105px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .parallax-container.diamonds .diamond:nth-child(8) {
    width: 1040px;
    height: 1040px;
    opacity: 0.12;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 120px;
    --shift-y: 120px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
  .parallax-container.diamonds .diamond:nth-child(9) {
    width: 960px;
    height: 960px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 135px;
    --shift-y: 135px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -9;
  }
  .parallax-container.diamonds .diamond:nth-child(10) {
    width: 880px;
    height: 880px;
    opacity: 0.14;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 150px;
    --shift-y: 150px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -10;
  }
  .parallax-container.diamonds .diamond:nth-child(11) {
    width: 800px;
    height: 800px;
    opacity: 0.15;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 165px;
    --shift-y: 165px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -11;
  }
  .parallax-container.diamonds .diamond:nth-child(12) {
    width: 720px;
    height: 720px;
    opacity: 0.16;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 180px;
    --shift-y: 180px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -12;
  }
  .parallax-container.diamonds .diamond:nth-child(13) {
    width: 640px;
    height: 640px;
    opacity: 0.17;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 195px;
    --shift-y: 195px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -13;
  }
  .parallax-container.diamonds .diamond:nth-child(14) {
    width: 560px;
    height: 560px;
    opacity: 0.18;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 210px;
    --shift-y: 210px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -14;
  }
  .parallax-container.diamonds .diamond:nth-child(15) {
    width: 480px;
    height: 480px;
    opacity: 0.19;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 225px;
    --shift-y: 225px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -15;
  }
  .parallax-container.diamonds .diamond:nth-child(16) {
    width: 400px;
    height: 400px;
    opacity: 0.2;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 240px;
    --shift-y: 240px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -16;
  }
  .parallax-container.diamonds .diamond:nth-child(17) {
    width: 320px;
    height: 320px;
    opacity: 0.21;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 255px;
    --shift-y: 255px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -17;
  }
  .parallax-container.diamonds .diamond:nth-child(18) {
    width: 240px;
    height: 240px;
    opacity: 0.22;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 270px;
    --shift-y: 270px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -18;
  }
  .parallax-container.diamonds .diamond:nth-child(19) {
    width: 160px;
    height: 160px;
    opacity: 0.23;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 285px;
    --shift-y: 285px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -19;
  }
  .parallax-container.diamonds .diamond:nth-child(20) {
    width: 80px;
    height: 80px;
    opacity: 0.24;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 300px;
    --shift-y: 300px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -20;
  }
}
@media (max-width: ) {
  .parallax-container.diamonds .diamond:nth-child(1) {
    width: 700px;
    height: 700px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 15px;
    --shift-y: 15px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .parallax-container.diamonds .diamond:nth-child(2) {
    width: 630px;
    height: 630px;
    opacity: 0.06;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 30px;
    --shift-y: 30px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .parallax-container.diamonds .diamond:nth-child(3) {
    width: 560px;
    height: 560px;
    opacity: 0.07;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 45px;
    --shift-y: 45px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .parallax-container.diamonds .diamond:nth-child(4) {
    width: 490px;
    height: 490px;
    opacity: 0.08;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 60px;
    --shift-y: 60px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .parallax-container.diamonds .diamond:nth-child(5) {
    width: 420px;
    height: 420px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 75px;
    --shift-y: 75px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .parallax-container.diamonds .diamond:nth-child(6) {
    width: 350px;
    height: 350px;
    opacity: 0.1;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 90px;
    --shift-y: 90px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .parallax-container.diamonds .diamond:nth-child(7) {
    width: 280px;
    height: 280px;
    opacity: 0.11;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 105px;
    --shift-y: 105px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .parallax-container.diamonds .diamond:nth-child(8) {
    width: 210px;
    height: 210px;
    opacity: 0.12;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 120px;
    --shift-y: 120px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
  .parallax-container.diamonds .diamond:nth-child(9) {
    width: 140px;
    height: 140px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 135px;
    --shift-y: 135px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -9;
  }
  .parallax-container.diamonds .diamond:nth-child(10) {
    width: 70px;
    height: 70px;
    opacity: 0.14;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 150px;
    --shift-y: 150px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -10;
  }
}
.parallax-container.split-parts {
  background-color: #1c1c1c;
  transition: all 0.3s ease;
}
.parallax-container.split-parts .right-part {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(10% - 85px);
  transition: all 0.3s ease;
  z-index: 1;
  right: 0;
  background-color: #2c2c2c;
}
.parallax-container.split-parts .right-part::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background-color: inherit;
  transform: skewX(-10deg);
  transform-origin: top left;
}
.parallax-container.split-parts.switch {
  background-color: #2c2c2c;
}
.parallax-container.split-parts.switch .right-part {
  width: calc(90% - 85px);
  background-color: #1c1c1c;
}

.cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cols .col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.cols .col .diamonds {
  margin-bottom: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .cols .col h2 {
    font-size: 0;
  }
}
.cols .col.col-left {
  width: 90%;
  align-items: flex-start;
  perspective: 1000px;
}
.cols .col.col-left h2 {
  transform: rotateY(30deg);
  transform-origin: left center;
}
.cols .col.col-left .arrow {
  right: 0;
}
@media (max-width: 767px) {
  .cols .col.col-left .arrow {
    right: -30px;
  }
}
.cols .col.col-left .diamonds .diamond:nth-child(1) {
  width: 700px;
  height: 700px;
  opacity: 0.05;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -60px;
  --shift-y: -110px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -1;
}
.cols .col.col-left .diamonds .diamond:nth-child(2) {
  width: 680px;
  height: 680px;
  opacity: 0.09;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -120px;
  --shift-y: -220px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -2;
}
.cols .col.col-left .diamonds .diamond:nth-child(3) {
  width: 660px;
  height: 660px;
  opacity: 0.13;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -180px;
  --shift-y: -330px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -3;
}
.cols .col.col-left .diamonds .diamond:nth-child(4) {
  width: 640px;
  height: 640px;
  opacity: 0.17;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -240px;
  --shift-y: -440px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -4;
}
.cols .col.col-left .diamonds .diamond:nth-child(5) {
  width: 620px;
  height: 620px;
  opacity: 0.21;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -300px;
  --shift-y: -550px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -5;
}
.cols .col.col-left .diamonds .diamond:nth-child(6) {
  width: 600px;
  height: 600px;
  opacity: 0.25;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -360px;
  --shift-y: -660px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -6;
}
.cols .col.col-left .diamonds .diamond:nth-child(7) {
  width: 580px;
  height: 580px;
  opacity: 0.29;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -420px;
  --shift-y: -770px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -7;
}
.cols .col.col-left .diamonds .diamond:nth-child(8) {
  width: 560px;
  height: 560px;
  opacity: 0.33;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -480px;
  --shift-y: -880px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -8;
}
.cols .col.col-left .diamonds .diamond:nth-child(9) {
  width: 540px;
  height: 540px;
  opacity: 0.37;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -540px;
  --shift-y: -990px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -9;
}
.cols .col.col-left .diamonds .diamond:nth-child(10) {
  width: 520px;
  height: 520px;
  opacity: 0.41;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -600px;
  --shift-y: -1100px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -10;
}
.cols .col.col-left .diamonds .diamond:nth-child(11) {
  width: 500px;
  height: 500px;
  opacity: 0.45;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -660px;
  --shift-y: -1210px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -11;
}
.cols .col.col-left .diamonds .diamond:nth-child(12) {
  width: 480px;
  height: 480px;
  opacity: 0.49;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -720px;
  --shift-y: -1320px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -12;
}
.cols .col.col-left .diamonds .diamond:nth-child(13) {
  width: 460px;
  height: 460px;
  opacity: 0.53;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -780px;
  --shift-y: -1430px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -13;
}
.cols .col.col-left .diamonds .diamond:nth-child(14) {
  width: 440px;
  height: 440px;
  opacity: 0.57;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -840px;
  --shift-y: -1540px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -14;
}
.cols .col.col-left .diamonds .diamond:nth-child(15) {
  width: 420px;
  height: 420px;
  opacity: 0.61;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -900px;
  --shift-y: -1650px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -15;
}
.cols .col.col-left .diamonds .diamond:nth-child(16) {
  width: 400px;
  height: 400px;
  opacity: 0.65;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -960px;
  --shift-y: -1760px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -16;
}
.cols .col.col-left .diamonds .diamond:nth-child(17) {
  width: 380px;
  height: 380px;
  opacity: 0.69;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1020px;
  --shift-y: -1870px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -17;
}
.cols .col.col-left .diamonds .diamond:nth-child(18) {
  width: 360px;
  height: 360px;
  opacity: 0.73;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1080px;
  --shift-y: -1980px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -18;
}
.cols .col.col-left .diamonds .diamond:nth-child(19) {
  width: 340px;
  height: 340px;
  opacity: 0.77;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1140px;
  --shift-y: -2090px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -19;
}
.cols .col.col-left .diamonds .diamond:nth-child(20) {
  width: 320px;
  height: 320px;
  opacity: 0.81;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1200px;
  --shift-y: -2200px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -20;
}
.cols .col.col-left .diamonds .diamond:nth-child(21) {
  width: 300px;
  height: 300px;
  opacity: 0.85;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1260px;
  --shift-y: -2310px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -21;
}
.cols .col.col-left .diamonds .diamond:nth-child(22) {
  width: 280px;
  height: 280px;
  opacity: 0.89;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1320px;
  --shift-y: -2420px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -22;
}
.cols .col.col-left .diamonds .diamond:nth-child(23) {
  width: 260px;
  height: 260px;
  opacity: 0.93;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1380px;
  --shift-y: -2530px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -23;
}
.cols .col.col-left .diamonds .diamond:nth-child(24) {
  width: 240px;
  height: 240px;
  opacity: 0.97;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1440px;
  --shift-y: -2640px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -24;
}
.cols .col.col-left .diamonds .diamond:nth-child(25) {
  width: 220px;
  height: 220px;
  opacity: 1.01;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1500px;
  --shift-y: -2750px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -25;
}
.cols .col.col-left .diamonds .diamond:nth-child(26) {
  width: 200px;
  height: 200px;
  opacity: 1.05;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1560px;
  --shift-y: -2860px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -26;
}
.cols .col.col-left .diamonds .diamond:nth-child(27) {
  width: 180px;
  height: 180px;
  opacity: 1.09;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1620px;
  --shift-y: -2970px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -27;
}
.cols .col.col-left .diamonds .diamond:nth-child(28) {
  width: 160px;
  height: 160px;
  opacity: 1.13;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1680px;
  --shift-y: -3080px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -28;
}
.cols .col.col-left .diamonds .diamond:nth-child(29) {
  width: 140px;
  height: 140px;
  opacity: 1.17;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1740px;
  --shift-y: -3190px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -29;
}
.cols .col.col-left .diamonds .diamond:nth-child(30) {
  width: 120px;
  height: 120px;
  opacity: 1.21;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1800px;
  --shift-y: -3300px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -30;
}
.cols .col.col-left .diamonds .diamond:nth-child(31) {
  width: 100px;
  height: 100px;
  opacity: 1.25;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1860px;
  --shift-y: -3410px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -31;
}
.cols .col.col-left .diamonds .diamond:nth-child(32) {
  width: 80px;
  height: 80px;
  opacity: 1.29;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1920px;
  --shift-y: -3520px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -32;
}
.cols .col.col-left .diamonds .diamond:nth-child(33) {
  width: 60px;
  height: 60px;
  opacity: 1.33;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -1980px;
  --shift-y: -3630px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -33;
}
.cols .col.col-left .diamonds .diamond:nth-child(34) {
  width: 40px;
  height: 40px;
  opacity: 1.37;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -2040px;
  --shift-y: -3740px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -34;
}
.cols .col.col-left .diamonds .diamond:nth-child(35) {
  width: 20px;
  height: 20px;
  opacity: 1.41;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: -2100px;
  --shift-y: -3850px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -35;
}
@media (max-width: 1450px) {
  .cols .col.col-left .diamonds .diamond:nth-child(1) {
    width: 500px;
    height: 500px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -60px;
    --shift-y: -110px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(2) {
    width: 480px;
    height: 480px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -120px;
    --shift-y: -220px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(3) {
    width: 460px;
    height: 460px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -180px;
    --shift-y: -330px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(4) {
    width: 440px;
    height: 440px;
    opacity: 0.17;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -240px;
    --shift-y: -440px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(5) {
    width: 420px;
    height: 420px;
    opacity: 0.21;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -300px;
    --shift-y: -550px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(6) {
    width: 400px;
    height: 400px;
    opacity: 0.25;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -360px;
    --shift-y: -660px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(7) {
    width: 380px;
    height: 380px;
    opacity: 0.29;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -420px;
    --shift-y: -770px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(8) {
    width: 360px;
    height: 360px;
    opacity: 0.33;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -480px;
    --shift-y: -880px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(9) {
    width: 340px;
    height: 340px;
    opacity: 0.37;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -540px;
    --shift-y: -990px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -9;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(10) {
    width: 320px;
    height: 320px;
    opacity: 0.41;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -600px;
    --shift-y: -1100px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -10;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(11) {
    width: 300px;
    height: 300px;
    opacity: 0.45;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -660px;
    --shift-y: -1210px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -11;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(12) {
    width: 280px;
    height: 280px;
    opacity: 0.49;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -720px;
    --shift-y: -1320px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -12;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(13) {
    width: 260px;
    height: 260px;
    opacity: 0.53;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -780px;
    --shift-y: -1430px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -13;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(14) {
    width: 240px;
    height: 240px;
    opacity: 0.57;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -840px;
    --shift-y: -1540px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -14;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(15) {
    width: 220px;
    height: 220px;
    opacity: 0.61;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -900px;
    --shift-y: -1650px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -15;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(16) {
    width: 200px;
    height: 200px;
    opacity: 0.65;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -960px;
    --shift-y: -1760px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -16;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(17) {
    width: 180px;
    height: 180px;
    opacity: 0.69;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1020px;
    --shift-y: -1870px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -17;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(18) {
    width: 160px;
    height: 160px;
    opacity: 0.73;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1080px;
    --shift-y: -1980px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -18;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(19) {
    width: 140px;
    height: 140px;
    opacity: 0.77;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1140px;
    --shift-y: -2090px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -19;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(20) {
    width: 120px;
    height: 120px;
    opacity: 0.81;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1200px;
    --shift-y: -2200px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -20;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(21) {
    width: 100px;
    height: 100px;
    opacity: 0.85;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1260px;
    --shift-y: -2310px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -21;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(22) {
    width: 80px;
    height: 80px;
    opacity: 0.89;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1320px;
    --shift-y: -2420px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -22;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(23) {
    width: 60px;
    height: 60px;
    opacity: 0.93;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1380px;
    --shift-y: -2530px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -23;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(24) {
    width: 40px;
    height: 40px;
    opacity: 0.97;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1440px;
    --shift-y: -2640px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -24;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(25) {
    width: 20px;
    height: 20px;
    opacity: 1.01;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -1500px;
    --shift-y: -2750px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -25;
  }
}
@media (max-width: 1199px) {
  .cols .col.col-left .diamonds .diamond:nth-child(1) {
    width: 300px;
    height: 300px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -60px;
    --shift-y: -110px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(2) {
    width: 280px;
    height: 280px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -120px;
    --shift-y: -220px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(3) {
    width: 260px;
    height: 260px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -180px;
    --shift-y: -330px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(4) {
    width: 240px;
    height: 240px;
    opacity: 0.17;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -240px;
    --shift-y: -440px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(5) {
    width: 220px;
    height: 220px;
    opacity: 0.21;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -300px;
    --shift-y: -550px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(6) {
    width: 200px;
    height: 200px;
    opacity: 0.25;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -360px;
    --shift-y: -660px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(7) {
    width: 180px;
    height: 180px;
    opacity: 0.29;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -420px;
    --shift-y: -770px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(8) {
    width: 160px;
    height: 160px;
    opacity: 0.33;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -480px;
    --shift-y: -880px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(9) {
    width: 140px;
    height: 140px;
    opacity: 0.37;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -540px;
    --shift-y: -990px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -9;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(10) {
    width: 120px;
    height: 120px;
    opacity: 0.41;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -600px;
    --shift-y: -1100px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -10;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(11) {
    width: 100px;
    height: 100px;
    opacity: 0.45;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -660px;
    --shift-y: -1210px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -11;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(12) {
    width: 80px;
    height: 80px;
    opacity: 0.49;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -720px;
    --shift-y: -1320px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -12;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(13) {
    width: 60px;
    height: 60px;
    opacity: 0.53;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -780px;
    --shift-y: -1430px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -13;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(14) {
    width: 40px;
    height: 40px;
    opacity: 0.57;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -840px;
    --shift-y: -1540px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -14;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(15) {
    width: 20px;
    height: 20px;
    opacity: 0.61;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -900px;
    --shift-y: -1650px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -15;
  }
}
@media (max-width: 767px) {
  .cols .col.col-left .diamonds .diamond:nth-child(1) {
    width: 150px;
    height: 150px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -60px;
    --shift-y: -110px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(2) {
    width: 130px;
    height: 130px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -120px;
    --shift-y: -220px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(3) {
    width: 110px;
    height: 110px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -180px;
    --shift-y: -330px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(4) {
    width: 90px;
    height: 90px;
    opacity: 0.17;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -240px;
    --shift-y: -440px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(5) {
    width: 70px;
    height: 70px;
    opacity: 0.21;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -300px;
    --shift-y: -550px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(6) {
    width: 50px;
    height: 50px;
    opacity: 0.25;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -360px;
    --shift-y: -660px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(7) {
    width: 30px;
    height: 30px;
    opacity: 0.29;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -420px;
    --shift-y: -770px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .cols .col.col-left .diamonds .diamond:nth-child(8) {
    width: 10px;
    height: 10px;
    opacity: 0.33;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: -480px;
    --shift-y: -880px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
}
.cols .col.col-left .diamonds .diamond {
  left: 40%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cols .col.col-right {
  width: 0%;
  align-items: flex-end;
  text-align: right;
  opacity: 0;
  perspective: 1000px;
}
.cols .col.col-right h2 {
  transform: rotateY(-30deg);
  transform-origin: right center;
}
.cols .col.col-right .arrow {
  left: 0;
}
@media (max-width: 767px) {
  .cols .col.col-right .arrow {
    left: -30px;
  }
}
.cols .col.col-right .diamonds .diamond:nth-child(1) {
  width: 700px;
  height: 700px;
  opacity: 0.05;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 60px;
  --shift-y: 110px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -1;
}
.cols .col.col-right .diamonds .diamond:nth-child(2) {
  width: 680px;
  height: 680px;
  opacity: 0.09;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 120px;
  --shift-y: 220px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -2;
}
.cols .col.col-right .diamonds .diamond:nth-child(3) {
  width: 660px;
  height: 660px;
  opacity: 0.13;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 180px;
  --shift-y: 330px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -3;
}
.cols .col.col-right .diamonds .diamond:nth-child(4) {
  width: 640px;
  height: 640px;
  opacity: 0.17;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 240px;
  --shift-y: 440px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -4;
}
.cols .col.col-right .diamonds .diamond:nth-child(5) {
  width: 620px;
  height: 620px;
  opacity: 0.21;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 300px;
  --shift-y: 550px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -5;
}
.cols .col.col-right .diamonds .diamond:nth-child(6) {
  width: 600px;
  height: 600px;
  opacity: 0.25;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 360px;
  --shift-y: 660px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -6;
}
.cols .col.col-right .diamonds .diamond:nth-child(7) {
  width: 580px;
  height: 580px;
  opacity: 0.29;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 420px;
  --shift-y: 770px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -7;
}
.cols .col.col-right .diamonds .diamond:nth-child(8) {
  width: 560px;
  height: 560px;
  opacity: 0.33;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 480px;
  --shift-y: 880px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -8;
}
.cols .col.col-right .diamonds .diamond:nth-child(9) {
  width: 540px;
  height: 540px;
  opacity: 0.37;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 540px;
  --shift-y: 990px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -9;
}
.cols .col.col-right .diamonds .diamond:nth-child(10) {
  width: 520px;
  height: 520px;
  opacity: 0.41;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 600px;
  --shift-y: 1100px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -10;
}
.cols .col.col-right .diamonds .diamond:nth-child(11) {
  width: 500px;
  height: 500px;
  opacity: 0.45;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 660px;
  --shift-y: 1210px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -11;
}
.cols .col.col-right .diamonds .diamond:nth-child(12) {
  width: 480px;
  height: 480px;
  opacity: 0.49;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 720px;
  --shift-y: 1320px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -12;
}
.cols .col.col-right .diamonds .diamond:nth-child(13) {
  width: 460px;
  height: 460px;
  opacity: 0.53;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 780px;
  --shift-y: 1430px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -13;
}
.cols .col.col-right .diamonds .diamond:nth-child(14) {
  width: 440px;
  height: 440px;
  opacity: 0.57;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 840px;
  --shift-y: 1540px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -14;
}
.cols .col.col-right .diamonds .diamond:nth-child(15) {
  width: 420px;
  height: 420px;
  opacity: 0.61;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 900px;
  --shift-y: 1650px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -15;
}
.cols .col.col-right .diamonds .diamond:nth-child(16) {
  width: 400px;
  height: 400px;
  opacity: 0.65;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 960px;
  --shift-y: 1760px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -16;
}
.cols .col.col-right .diamonds .diamond:nth-child(17) {
  width: 380px;
  height: 380px;
  opacity: 0.69;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1020px;
  --shift-y: 1870px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -17;
}
.cols .col.col-right .diamonds .diamond:nth-child(18) {
  width: 360px;
  height: 360px;
  opacity: 0.73;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1080px;
  --shift-y: 1980px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -18;
}
.cols .col.col-right .diamonds .diamond:nth-child(19) {
  width: 340px;
  height: 340px;
  opacity: 0.77;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1140px;
  --shift-y: 2090px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -19;
}
.cols .col.col-right .diamonds .diamond:nth-child(20) {
  width: 320px;
  height: 320px;
  opacity: 0.81;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1200px;
  --shift-y: 2200px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -20;
}
.cols .col.col-right .diamonds .diamond:nth-child(21) {
  width: 300px;
  height: 300px;
  opacity: 0.85;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1260px;
  --shift-y: 2310px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -21;
}
.cols .col.col-right .diamonds .diamond:nth-child(22) {
  width: 280px;
  height: 280px;
  opacity: 0.89;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1320px;
  --shift-y: 2420px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -22;
}
.cols .col.col-right .diamonds .diamond:nth-child(23) {
  width: 260px;
  height: 260px;
  opacity: 0.93;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1380px;
  --shift-y: 2530px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -23;
}
.cols .col.col-right .diamonds .diamond:nth-child(24) {
  width: 240px;
  height: 240px;
  opacity: 0.97;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1440px;
  --shift-y: 2640px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -24;
}
.cols .col.col-right .diamonds .diamond:nth-child(25) {
  width: 220px;
  height: 220px;
  opacity: 1.01;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1500px;
  --shift-y: 2750px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -25;
}
.cols .col.col-right .diamonds .diamond:nth-child(26) {
  width: 200px;
  height: 200px;
  opacity: 1.05;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1560px;
  --shift-y: 2860px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -26;
}
.cols .col.col-right .diamonds .diamond:nth-child(27) {
  width: 180px;
  height: 180px;
  opacity: 1.09;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1620px;
  --shift-y: 2970px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -27;
}
.cols .col.col-right .diamonds .diamond:nth-child(28) {
  width: 160px;
  height: 160px;
  opacity: 1.13;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1680px;
  --shift-y: 3080px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -28;
}
.cols .col.col-right .diamonds .diamond:nth-child(29) {
  width: 140px;
  height: 140px;
  opacity: 1.17;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1740px;
  --shift-y: 3190px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -29;
}
.cols .col.col-right .diamonds .diamond:nth-child(30) {
  width: 120px;
  height: 120px;
  opacity: 1.21;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1800px;
  --shift-y: 3300px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -30;
}
.cols .col.col-right .diamonds .diamond:nth-child(31) {
  width: 100px;
  height: 100px;
  opacity: 1.25;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1860px;
  --shift-y: 3410px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -31;
}
.cols .col.col-right .diamonds .diamond:nth-child(32) {
  width: 80px;
  height: 80px;
  opacity: 1.29;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1920px;
  --shift-y: 3520px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -32;
}
.cols .col.col-right .diamonds .diamond:nth-child(33) {
  width: 60px;
  height: 60px;
  opacity: 1.33;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1980px;
  --shift-y: 3630px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -33;
}
.cols .col.col-right .diamonds .diamond:nth-child(34) {
  width: 40px;
  height: 40px;
  opacity: 1.37;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 2040px;
  --shift-y: 3740px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -34;
}
.cols .col.col-right .diamonds .diamond:nth-child(35) {
  width: 20px;
  height: 20px;
  opacity: 1.41;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 2100px;
  --shift-y: 3850px;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -35;
}
@media (max-width: 1450px) {
  .cols .col.col-right .diamonds .diamond:nth-child(1) {
    width: 500px;
    height: 500px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 60px;
    --shift-y: 110px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(2) {
    width: 480px;
    height: 480px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 120px;
    --shift-y: 220px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(3) {
    width: 460px;
    height: 460px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 180px;
    --shift-y: 330px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(4) {
    width: 440px;
    height: 440px;
    opacity: 0.17;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 240px;
    --shift-y: 440px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(5) {
    width: 420px;
    height: 420px;
    opacity: 0.21;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 300px;
    --shift-y: 550px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(6) {
    width: 400px;
    height: 400px;
    opacity: 0.25;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 360px;
    --shift-y: 660px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(7) {
    width: 380px;
    height: 380px;
    opacity: 0.29;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 420px;
    --shift-y: 770px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(8) {
    width: 360px;
    height: 360px;
    opacity: 0.33;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 480px;
    --shift-y: 880px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(9) {
    width: 340px;
    height: 340px;
    opacity: 0.37;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 540px;
    --shift-y: 990px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -9;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(10) {
    width: 320px;
    height: 320px;
    opacity: 0.41;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 600px;
    --shift-y: 1100px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -10;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(11) {
    width: 300px;
    height: 300px;
    opacity: 0.45;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 660px;
    --shift-y: 1210px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -11;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(12) {
    width: 280px;
    height: 280px;
    opacity: 0.49;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 720px;
    --shift-y: 1320px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -12;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(13) {
    width: 260px;
    height: 260px;
    opacity: 0.53;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 780px;
    --shift-y: 1430px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -13;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(14) {
    width: 240px;
    height: 240px;
    opacity: 0.57;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 840px;
    --shift-y: 1540px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -14;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(15) {
    width: 220px;
    height: 220px;
    opacity: 0.61;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 900px;
    --shift-y: 1650px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -15;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(16) {
    width: 200px;
    height: 200px;
    opacity: 0.65;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 960px;
    --shift-y: 1760px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -16;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(17) {
    width: 180px;
    height: 180px;
    opacity: 0.69;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1020px;
    --shift-y: 1870px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -17;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(18) {
    width: 160px;
    height: 160px;
    opacity: 0.73;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1080px;
    --shift-y: 1980px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -18;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(19) {
    width: 140px;
    height: 140px;
    opacity: 0.77;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1140px;
    --shift-y: 2090px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -19;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(20) {
    width: 120px;
    height: 120px;
    opacity: 0.81;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1200px;
    --shift-y: 2200px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -20;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(21) {
    width: 100px;
    height: 100px;
    opacity: 0.85;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1260px;
    --shift-y: 2310px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -21;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(22) {
    width: 80px;
    height: 80px;
    opacity: 0.89;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1320px;
    --shift-y: 2420px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -22;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(23) {
    width: 60px;
    height: 60px;
    opacity: 0.93;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1380px;
    --shift-y: 2530px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -23;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(24) {
    width: 40px;
    height: 40px;
    opacity: 0.97;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1440px;
    --shift-y: 2640px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -24;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(25) {
    width: 20px;
    height: 20px;
    opacity: 1.01;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1500px;
    --shift-y: 2750px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -25;
  }
}
@media (max-width: 1199px) {
  .cols .col.col-right .diamonds .diamond:nth-child(1) {
    width: 300px;
    height: 300px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 60px;
    --shift-y: 110px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(2) {
    width: 280px;
    height: 280px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 120px;
    --shift-y: 220px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(3) {
    width: 260px;
    height: 260px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 180px;
    --shift-y: 330px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(4) {
    width: 240px;
    height: 240px;
    opacity: 0.17;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 240px;
    --shift-y: 440px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(5) {
    width: 220px;
    height: 220px;
    opacity: 0.21;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 300px;
    --shift-y: 550px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(6) {
    width: 200px;
    height: 200px;
    opacity: 0.25;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 360px;
    --shift-y: 660px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(7) {
    width: 180px;
    height: 180px;
    opacity: 0.29;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 420px;
    --shift-y: 770px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(8) {
    width: 160px;
    height: 160px;
    opacity: 0.33;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 480px;
    --shift-y: 880px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(9) {
    width: 140px;
    height: 140px;
    opacity: 0.37;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 540px;
    --shift-y: 990px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -9;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(10) {
    width: 120px;
    height: 120px;
    opacity: 0.41;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 600px;
    --shift-y: 1100px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -10;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(11) {
    width: 100px;
    height: 100px;
    opacity: 0.45;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 660px;
    --shift-y: 1210px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -11;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(12) {
    width: 80px;
    height: 80px;
    opacity: 0.49;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 720px;
    --shift-y: 1320px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -12;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(13) {
    width: 60px;
    height: 60px;
    opacity: 0.53;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 780px;
    --shift-y: 1430px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -13;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(14) {
    width: 40px;
    height: 40px;
    opacity: 0.57;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 840px;
    --shift-y: 1540px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -14;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(15) {
    width: 20px;
    height: 20px;
    opacity: 0.61;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 900px;
    --shift-y: 1650px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -15;
  }
}
@media (max-width: 767px) {
  .cols .col.col-right .diamonds .diamond:nth-child(1) {
    width: 150px;
    height: 150px;
    opacity: 0.05;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 60px;
    --shift-y: 110px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(2) {
    width: 130px;
    height: 130px;
    opacity: 0.09;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 120px;
    --shift-y: 220px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(3) {
    width: 110px;
    height: 110px;
    opacity: 0.13;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 180px;
    --shift-y: 330px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(4) {
    width: 90px;
    height: 90px;
    opacity: 0.17;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 240px;
    --shift-y: 440px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(5) {
    width: 70px;
    height: 70px;
    opacity: 0.21;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 300px;
    --shift-y: 550px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(6) {
    width: 50px;
    height: 50px;
    opacity: 0.25;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 360px;
    --shift-y: 660px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(7) {
    width: 30px;
    height: 30px;
    opacity: 0.29;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 420px;
    --shift-y: 770px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .cols .col.col-right .diamonds .diamond:nth-child(8) {
    width: 10px;
    height: 10px;
    opacity: 0.33;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 480px;
    --shift-y: 880px;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
}
.cols .col.col-right .diamonds .diamond {
  right: 40%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cols .col svg {
  margin-bottom: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
.cols .col svg path {
  fill: #ffffff;
}
.cols .col svg.arrow {
  height: 40px;
}
@media (max-width: 1199px) {
  .cols .col svg.arrow {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .cols .col svg.arrow {
    height: 20px;
  }
}
.cols .col h2 {
  white-space: nowrap;
  transition: transform 0.5s ease;
}
.cols .col .skills ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cols .col .skills ul li {
  margin-bottom: 8px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 5px;
}
@media (max-width: 767px) {
  .cols .col .skills ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.cols.right .col-left {
  width: 0%;
  opacity: 0;
}
.cols.right .col-right {
  width: 90%;
  opacity: 1;
}

.wrapper-gallery {
  position: relative;
}
.wrapper-gallery .filter-links {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1450px) {
  .wrapper-gallery .filter-links {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .wrapper-gallery .filter-links {
    margin-bottom: 20px;
  }
}
.wrapper-gallery .filter-links a {
  position: relative;
  margin: 0 15px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  padding: 3px 0px 3px 3px;
}
@media (max-width: 767px) {
  .wrapper-gallery .filter-links a {
    margin: 0 5px;
  }
}
.wrapper-gallery .filter-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  margin: auto;
  z-index: -1;
  background-color: #f39c12;
  transition: all 0.15s;
}
.wrapper-gallery .filter-links a:hover:after, .wrapper-gallery .filter-links a.active:after {
  width: 100%;
}
.wrapper-gallery .wrapper-projects {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 500px;
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects {
    flex-direction: column;
    min-height: 0;
  }
}
.wrapper-gallery .wrapper-projects .project-info-slider {
  width: 50%;
  text-align: right;
  padding-right: 50px;
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects .project-info-slider {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-track {
    display: flex;
    align-items: flex-end;
  }
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide {
  opacity: 0;
  transition: opacity 0.5s;
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide.slick-active {
  opacity: 1;
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info {
    align-items: center;
    padding: 20px 50px;
  }
}
@media (max-width: 767px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info {
    padding: 20px;
  }
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .name {
  margin-bottom: 20px;
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .tags {
  max-width: 500px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .tags {
    max-width: 100%;
    margin: 0 0 10px;
  }
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .tags li {
  display: inline-flex;
  margin: 0 8px 10px 0;
  padding: 2px 8px 0 12px;
  align-items: center;
  justify-content: center;
  height: 34px;
  white-space: nowrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .tags li {
    margin: 0 6px 8px 0;
    padding: 2px 6px 0 10px;
    height: 34px;
    font-size: 12px;
  }
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .text {
  max-width: 500px;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 1450px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .text {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .text {
    max-width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .text {
    display: none;
  }
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .link a {
  display: inline-flex;
  color: #f39c12;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
@media (max-width: 767px) {
  .wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .link a {
    font-size: 14px;
  }
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .link a:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l82.7 0L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3l0 82.7c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160c0-17.7-14.3-32-32-32L320 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z' fill='%23f39c12' /%3E%3C/svg%3E%0A");
  background-size: contain;
  margin-top: -3px;
  margin-right: 6px;
  opacity: 0;
  transition: all 0.15s;
}
.wrapper-gallery .wrapper-projects .project-info-slider .slick-slide .project-info .link a:hover:before {
  margin-right: 10px;
  opacity: 1;
}
.wrapper-gallery .wrapper-projects .project-gallery {
  overflow: hidden;
  width: 50%;
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects .project-gallery {
    width: 100%;
  }
}
.wrapper-gallery .wrapper-projects .project-gallery .slick-list {
  overflow: visible;
  padding: 0 20% 0 0 !important;
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects .project-gallery .slick-list {
    padding: 0 15% !important;
  }
}
.wrapper-gallery .wrapper-projects .project-gallery .slick-slide {
  padding: 0;
  position: relative;
  text-align: center;
  transition: opacity 0.5s, transform 0.5s;
}
@media (max-width: 1199px) {
  .wrapper-gallery .wrapper-projects .project-gallery .slick-slide {
    opacity: 0.2;
    transform: scale(0.8);
  }
}
.wrapper-gallery .wrapper-projects .project-gallery .slick-slide.slick-current {
  opacity: 1;
  transform: scale(1);
}
.wrapper-gallery .wrapper-projects .project-gallery .slick-slide.slick-current ~ .slick-slide {
  opacity: 0.2;
  transform: scale(0.8);
}
.wrapper-gallery .wrapper-projects .project-gallery .slick-slide img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.wrapper-gallery .wrapper-projects .project-gallery .slick-slide .project-info {
  display: none;
}
.wrapper-gallery .arrows {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  padding: 0 50px;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1450px) {
  .wrapper-gallery .arrows {
    margin-top: 20px;
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .wrapper-gallery .arrows {
    margin-top: 10px;
  }
}
.wrapper-gallery .arrows .arrow {
  height: 25px;
  width: 35px;
  transition: all 0.15s ease-in-out;
}
.wrapper-gallery .arrows .arrow.prev-arrow {
  padding-left: 10px;
}
.wrapper-gallery .arrows .arrow.next-arrow {
  padding-right: 10px;
  text-align: right;
}
.wrapper-gallery .arrows .arrow .arrow-svg {
  height: 25px;
}
.wrapper-gallery .arrows .arrow .arrow-svg path {
  fill: #ffffff;
  transition: all 0.15s ease-in-out;
}
.wrapper-gallery .arrows .arrow:hover {
  padding: 0px;
}
.wrapper-gallery .arrows .slide-counter {
  padding: 2px 0 0 4px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  color: #ffffff;
}
.wrapper-gallery .diamonds {
  margin-bottom: 10px;
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.wrapper-gallery .diamonds .diamond:nth-child(1) {
  width: 2000px;
  height: 2000px;
  opacity: 0.04;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 90px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -1;
}
.wrapper-gallery .diamonds .diamond:nth-child(2) {
  width: 1900px;
  height: 1900px;
  opacity: 0.06;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 180px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -2;
}
.wrapper-gallery .diamonds .diamond:nth-child(3) {
  width: 1800px;
  height: 1800px;
  opacity: 0.08;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 270px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -3;
}
.wrapper-gallery .diamonds .diamond:nth-child(4) {
  width: 1700px;
  height: 1700px;
  opacity: 0.1;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 360px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -4;
}
.wrapper-gallery .diamonds .diamond:nth-child(5) {
  width: 1600px;
  height: 1600px;
  opacity: 0.12;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 450px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -5;
}
.wrapper-gallery .diamonds .diamond:nth-child(6) {
  width: 1500px;
  height: 1500px;
  opacity: 0.14;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 540px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -6;
}
.wrapper-gallery .diamonds .diamond:nth-child(7) {
  width: 1400px;
  height: 1400px;
  opacity: 0.16;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 630px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -7;
}
.wrapper-gallery .diamonds .diamond:nth-child(8) {
  width: 1300px;
  height: 1300px;
  opacity: 0.18;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 720px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -8;
}
.wrapper-gallery .diamonds .diamond:nth-child(9) {
  width: 1200px;
  height: 1200px;
  opacity: 0.2;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 810px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -9;
}
.wrapper-gallery .diamonds .diamond:nth-child(10) {
  width: 1100px;
  height: 1100px;
  opacity: 0.22;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 900px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -10;
}
.wrapper-gallery .diamonds .diamond:nth-child(11) {
  width: 1000px;
  height: 1000px;
  opacity: 0.24;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 990px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -11;
}
.wrapper-gallery .diamonds .diamond:nth-child(12) {
  width: 900px;
  height: 900px;
  opacity: 0.26;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1080px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -12;
}
.wrapper-gallery .diamonds .diamond:nth-child(13) {
  width: 800px;
  height: 800px;
  opacity: 0.28;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1170px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -13;
}
.wrapper-gallery .diamonds .diamond:nth-child(14) {
  width: 700px;
  height: 700px;
  opacity: 0.3;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1260px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -14;
}
.wrapper-gallery .diamonds .diamond:nth-child(15) {
  width: 600px;
  height: 600px;
  opacity: 0.32;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1350px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -15;
}
.wrapper-gallery .diamonds .diamond:nth-child(16) {
  width: 500px;
  height: 500px;
  opacity: 0.34;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1440px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -16;
}
.wrapper-gallery .diamonds .diamond:nth-child(17) {
  width: 400px;
  height: 400px;
  opacity: 0.36;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1530px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -17;
}
.wrapper-gallery .diamonds .diamond:nth-child(18) {
  width: 300px;
  height: 300px;
  opacity: 0.38;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1620px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -18;
}
.wrapper-gallery .diamonds .diamond:nth-child(19) {
  width: 200px;
  height: 200px;
  opacity: 0.4;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1710px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -19;
}
.wrapper-gallery .diamonds .diamond:nth-child(20) {
  width: 100px;
  height: 100px;
  opacity: 0.42;
  border: 1px solid #ffffff;
  position: absolute;
  --shift-x: 1800px;
  --shift-y: 0;
  transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
  z-index: -20;
}
@media (max-width: 1450px) {
  .wrapper-gallery .diamonds .diamond:nth-child(1) {
    width: 1600px;
    height: 1600px;
    opacity: 0.04;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 90px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -1;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(2) {
    width: 1520px;
    height: 1520px;
    opacity: 0.06;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 180px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -2;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(3) {
    width: 1440px;
    height: 1440px;
    opacity: 0.08;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 270px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -3;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(4) {
    width: 1360px;
    height: 1360px;
    opacity: 0.1;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 360px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -4;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(5) {
    width: 1280px;
    height: 1280px;
    opacity: 0.12;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 450px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -5;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(6) {
    width: 1200px;
    height: 1200px;
    opacity: 0.14;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 540px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -6;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(7) {
    width: 1120px;
    height: 1120px;
    opacity: 0.16;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 630px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -7;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(8) {
    width: 1040px;
    height: 1040px;
    opacity: 0.18;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 720px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -8;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(9) {
    width: 960px;
    height: 960px;
    opacity: 0.2;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 810px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -9;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(10) {
    width: 880px;
    height: 880px;
    opacity: 0.22;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 900px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -10;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(11) {
    width: 800px;
    height: 800px;
    opacity: 0.24;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 990px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -11;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(12) {
    width: 720px;
    height: 720px;
    opacity: 0.26;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1080px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -12;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(13) {
    width: 640px;
    height: 640px;
    opacity: 0.28;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1170px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -13;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(14) {
    width: 560px;
    height: 560px;
    opacity: 0.3;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1260px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -14;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(15) {
    width: 480px;
    height: 480px;
    opacity: 0.32;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1350px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -15;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(16) {
    width: 400px;
    height: 400px;
    opacity: 0.34;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1440px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -16;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(17) {
    width: 320px;
    height: 320px;
    opacity: 0.36;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1530px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -17;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(18) {
    width: 240px;
    height: 240px;
    opacity: 0.38;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1620px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -18;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(19) {
    width: 160px;
    height: 160px;
    opacity: 0.4;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1710px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -19;
  }
  .wrapper-gallery .diamonds .diamond:nth-child(20) {
    width: 80px;
    height: 80px;
    opacity: 0.42;
    border: 1px solid #ffffff;
    position: absolute;
    --shift-x: 1800px;
    --shift-y: 0;
    transform: translate(var(--shift-x), var(--shift-y)) rotate(45deg);
    z-index: -20;
  }
}
.wrapper-gallery .diamonds .diamond {
  right: 50%;
  margin: auto;
}

.wrapper-cube {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-container {
  perspective: 1000px;
}

.cube {
  width: 400px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.5s;
}
.cube .face {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cube .face.front {
  transform: translateZ(200px);
}
.cube .face.back {
  transform: rotateY(180deg) translateZ(200px);
}
.cube .face.left {
  transform: rotateY(-90deg) translateZ(200px);
}
.cube .face.right {
  transform: rotateY(90deg) translateZ(200px);
}
.cube .face.top {
  transform: rotateX(90deg) translateZ(200px);
}
.cube .face.bottom {
  transform: rotateX(-90deg) translateZ(200px);
}
.cube .small-cube {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
  transition: transform 0.5s;
}
.cube .small-cube .face {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.cube .small-cube .face.front {
  transform: translateZ(150px);
}
.cube .small-cube .face.back {
  transform: rotateY(180deg) translateZ(150px);
}
.cube .small-cube .face.left {
  transform: rotateY(-90deg) translateZ(150px);
}
.cube .small-cube .face.right {
  transform: rotateY(90deg) translateZ(150px);
}
.cube .small-cube .face.top {
  transform: rotateX(90deg) translateZ(150px);
}
.cube .small-cube .face.bottom {
  transform: rotateX(-90deg) translateZ(150px);
}/*# sourceMappingURL=styles.css.map */