@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #fff;
  background-image: url("../img/bg-shape-white.png");
  background-size: 100% 100%;
  font-family: "Poppins", sans-serif;
  cursor: none;
}
body::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar-track {
  display: none;
}

body::-webkit-scrollbar-thumb {
  display: none;
}
body.hidden {
  overflow: hidden;
}
::selection {
  background-color: #121212;
  color: #fff;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: -5px;
  top: -5px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor.grow {
  background-color: #fff;
}
.grow {
  width: 100px;
  height: 100px;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
}
.loading-screen {
  position: fixed;
  top: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transform: scaleX(0);
}
.load-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 900;
  pointer-events: none;
}
.container {
  max-width: 955px;
  margin: auto;
}
.btn {
  padding: 8px 30px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  background-color: transparent;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background-color: #fff;
  color: #000;
}
section {
  padding: 20px;
  background-color: #fff;
  background-image: url("../img/bg-shape-white.png");
  background-size: cover;
  overflow: hidden;
}
header {
  background-color: #fff;
  background-image: url("../img/bg-shape-white.png");
  background-size: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}
header .nav {
  padding: 0 20px;
}
header .nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin: 25px 0;
  gap: 100px;
}
.nav .nav-list .list-item {
  margin-right: -10px;
}
.nav .nav-list a {
  color: #090709;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: block;
}
.nav .nav-list .list-item a:hover {
  transform: scale(1.2);
}
.nav .nav-list .link-item-logo.no-point:hover {
  transform: scale(1);
}
.list-item {
  width: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.nav-list .list-item .header-logo {
  max-width: 83px;
  margin: auto;
}
/* Preloader Portfolio */
.load-portfolio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9;
  background-color: #fff;
  background-image: url(../img/bg-shape-white.png);
  background-size: 100% 100%;
  transition: transform 0.5s ease;
}
.load-portfolio.hidden {
  transform: translateY(-100%);
}
.load-portfolio .load-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  flex-direction: column;
}
.load-portfolio .primary-heading {
  margin: 0;
  margin-top: -50px;
  line-height: 1.2;
}
.load-portfolio .portfolio-num {
  margin-top: 100px;
  margin-bottom: auto;
}
.load-portfolio .brand-text {
  text-align: center;
  margin-top: 10px;
  color: #090709;
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
.load-portfolio .scroll-down-text {
  margin-top: 40px;
}
.load-portfolio .scroll-down-img {
  margin-bottom: auto;
  animation: scroll 1s infinite alternate;
}

@keyframes scroll {
  to {
    transform: translateY(10px);
  }
}
.slider-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 200px;
  width: 3798px;
  animation: slider 15s linear infinite;
}
.rabbido-slider {
  width: 4288px !important;
}
.trait-slider {
  width: 3580px !important;
}
.pizza-slider {
  width: 4820px !important;
}
.antares-slider {
  width: 4208px !important;
}
.clear-slider {
  width: 5808px !important;
}
.offine-slider {
  width: 3592px !important;
}
.cobalt-slider {
  width: 3924px !important;
}
.gbot-slider {
  width: 3520px !important;
}

@keyframes slider {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(calc(-50% - 100px)) translateY(-50%);
  }
}
@keyframes inner_slider {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(calc(-50% - 100px)) translateY(0);
  }
}
/* ----------------------------------------------- */
#section-1 {
  position: relative;
  padding: 20px;
}
#section-1 .slider-wrapper {
  top: 50px !important;
  animation: inner_slider 15s linear infinite;
}
.portfolio-wrapper-top {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 43px;
}
.portfolio-wrapper-bottom {
  padding-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 43px;
}
.primary-heading {
  font-size: 60px;
  font-family: "Archivo Black", sans-serif;
  color: #090709;
  text-align: center;
}
.portfolio-wrapper-top .left-col {
  overflow: hidden;
}
.portfolio-wrapper-top .left-col img {
  margin-inline: -2px;
  margin-top: -2px;
}
.portfolio-wrapper-bottom .left-col {
  overflow: hidden;
}
.portfolio-wrapper-bottom .left-col img:nth-child(2) {
  margin-inline: -2px;
}
#section-1 .portfolio-wrapper-top .left-col {
  flex-basis: 70%;
  max-width: 70%;
}
#section-1 .portfolio-wrapper-top .right-col {
  flex-basis: 30%;
  max-width: 30%;
  position: relative;
  gap: 43px;
  z-index: 2;
}
#section-1 .portfolio-wrapper-top .right-col img {
  flex-grow: 1;
  flex-shrink: 0;
}
#section-1 .portfolio-wrapper-bottom .left-col {
  flex-basis: 30%;
  max-width: 30%;
  gap: 43px;
}
#section-1 .portfolio-wrapper-bottom .left-col img {
  flex-grow: 1;
  flex-shrink: 0;
}
#section-1 .portfolio-wrapper-bottom .right-col {
  flex-basis: 70%;
  max-width: 70%;
  position: relative;
  gap: 43px;
  z-index: 2;
}
.portfolio-wrapper-top .right-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.portfolio-wrapper-bottom .left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.portfolio-wrapper-bottom .right-col img {
  margin-left: auto;
}

#section-2 .container {
  max-width: 1150px;
  margin: auto;
}
#section-2 .banner-wrapper {
  display: flex;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 30px;
}

#section-2 .left-col {
  padding: 50px 0;
  flex-basis: 50%;
  max-width: 50%;
  background: #343435;
}
#section-2 .rabbido-bg {
  background: #01ffa9 !important;
}
#section-2 .pizza-bg {
  background: #ef2a33 !important;
}
#section-2 .trait-bg {
  background: linear-gradient(82deg, #da2c83 0%, #1b98c6 112.17%) !important;
}
#section-2 .antares-bg {
  background: #ff4b00 !important;
}
#section-2 .clear-bg {
  background: #0072ff !important;
}
#section-2 .cobalt-bg {
  background: #0606b1 !important;
}
#section-2 .gbot-bg {
  background: linear-gradient(
    82deg,
    #d623df -0.99%,
    #2ae6ff 106.14%
  ) !important;
}
#section-2 .rabbido-bg .banner-message {
  color: #090709 !important;
}

#section-2 .right-col {
  padding: 50px 0;
  flex-basis: 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #090709;
}
#section-2 .banner-message {
  max-width: 450px;
  margin: auto;
  color: #fff;
  font-size: 42px;
  font-family: "Archivo Black", sans-serif;
}
#section-2 .contact-btn {
  background-color: #fff;
  color: #090709;
}
#section-2 .contact-btn:hover {
  background-color: #090709;
  color: #fff;
}

/* ----------------------------------------- */

#footer {
  background-color: #fff;
  background-image: url("../img/bg-shape-white.png");
  background-size: cover;
  margin-bottom: 55px;
  position: relative;
  width: 100%;
  bottom: 0;
}
.footer-wrapper {
  transition: all 0.8s ease;
  opacity: 1;
  visibility: visible;
}
#footer p {
  color: #090709;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
  max-width: 160px;
  margin: auto;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer-social-icons a {
  width: 16px;
}
.footer-social-icons a svg path {
  fill: #090709;
  transition: all 0.3s ease;
}
.footer-social-icons a:hover svg path {
  fill: #000;
}

@media (max-width: 1600px) {
  .primary-heading {
    margin: 25px 0;
  }
  #section-1 .slider-wrapper {
    top: 10px !important;
  }
}
@media (max-width: 1024px) {
  .cursor {
    display: none;
  }
  .portfolio-wrapper-bottom {
    padding-top: 43px;
  }
  .primary-heading {
    margin: 20px 0;
    font-size: 48px;
  }
  #section-2 .banner-message {
    font-size: 32px;
    max-width: 340px;
    line-height: 1.2;
  }
  #section-2 .right-col {
    gap: 15px;
  }
  .slider-wrapper {
    width: 2498px;
  }
  #section-1 .slider-wrapper {
    top: 30px !important;
  }
  .rabbido-slider {
    width: 3688px !important;
  }
  .trait-slider {
    width: 2880px !important;
  }
  .pizza-slider {
    width: 3620px !important;
  }
  .antares-slider {
    width: 3708px !important;
  }
  .clear-slider {
    width: 4608px !important;
  }
  .offine-slider {
    width: 2692px !important;
  }
  .cobalt-slider {
    width: 3024px !important;
  }
  .gbot-slider {
    width: 2820px !important;
  }
}
@media (max-width: 900px) {
  .primary-heading {
    margin: 10px 0;
  }
  #section-1 .slider-wrapper {
    top: 20px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 8px 20px;
  }
  header .nav .nav-list {
    gap: 40px;
  }
  .nav .nav-list a {
    font-size: 20px;
  }
  .primary-heading {
    font-size: 34px;
    margin: 0;
  }
  .portfolio-wrapper-top {
    flex-direction: column;
  }
  .portfolio-wrapper-bottom {
    flex-direction: column;
  }
  .col {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
  .portfolio-wrapper-top .left-col {
    flex-basis: 100%;
    max-width: 100%;
  }
  .portfolio-wrapper-top .right-col {
    flex-basis: 100%;
    max-width: 100%;
  }
  #section-1 .portfolio-wrapper-top .right-col {
    flex-direction: row;
    gap: 15px;
  }
  .portfolio-wrapper-top .right-col img {
    flex-basis: 48%;
    max-width: 48%;
    flex-shrink: 1;
    flex-grow: 0;
  }
  #section-1 .portfolio-wrapper-bottom .left-col {
    flex-direction: row;
    gap: 15px;
  }
  .portfolio-wrapper-bottom .left-col img {
    flex-basis: 48%;
    max-width: 48%;
    flex-shrink: 1;
    flex-grow: 0;
  }
  .portfolio-wrapper-bottom,
  .portfolio-wrapper-top {
    gap: 30px;
  }
  .portfolio-wrapper-bottom {
    padding-top: 30px;
  }
  #section-2 .banner-message {
    font-size: 28px;
    max-width: 300px;
  }
  #section-2 .left-col {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
  #section-2 .banner-wrapper {
    flex-direction: column;
    padding-top: 20px;
  }
  #section-2 .left-col {
    padding: 40px 0;
  }
  #section-2 .right-col {
    flex-wrap: wrap;
  }
  .slider-wrapper {
    width: 1698px;
  }
  #section-1 .slider-wrapper {
    top: 10px !important;
  }
  .rabbido-slider {
    width: 2588px !important;
  }
  .trait-slider {
    width: 2180px !important;
  }
  .pizza-slider {
    width: 2820px !important;
  }
  .antares-slider {
    width: 2708px !important;
  }
  .clear-slider {
    width: 3208px !important;
  }
  .offine-slider {
    width: 2192px !important;
  }
  .cobalt-slider {
    width: 2424px !important;
  }
  .gbot-slider {
    width: 2320px !important;
  }
}
