@font-face {
  font-family: "Basis Grotesque Pro";
  font-style: normal;
  font-weight: normal;
  src: url("../font/FontsFree-Net-BasisGrotesquePro-Regular.ttf");
}

@font-face {
  font-family: "Basis Grotesque Pro";
  font-style: normal;
  font-weight: bold;
  src: url("../font/FontsFree-Net-BasisGrotesquePro-Bold.ttf");
}

@font-face {
  font-family: "Basis Grotesque Pro";
  font-style: normal;
  font-weight: lighter;
  src: url("../font/FontsFree-Net-BasisGrotesquePro-Light.ttf");
}

@font-face {
  font-family: "Recoleta";
  font-style: normal;
  font-weight: normal;
  src: url("../font/Recoleta-RegularDEMO.otf");
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

:root {
  --primary-color: #f4d00a;
  --btn-hover: #f1c400;
  --text-color: #141414;
  --text-color-hover: #de313e;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.container {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

video,
img {
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

body {
  overflow-x: hidden;
}

.flex-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-cl-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.flex-cl-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.btn {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);
  background-color: white;
  padding: 8px 25px;
  border: 2px solid var(--text-color);
  border-radius: 5px;
  box-shadow: 5px 5px 0 var(--text-color);
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: var(--btn-hover);
  box-shadow: 7px 7px 0 var(--text-color);
}

/* Header - Navbar */

.header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 99;
}

.nav-desktop {
  /* background: rgb(255 255 255 / 20%);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px); */
  background: url("../images/noise-texture-200.png");
  background-color: var(--primary-color);
  padding: 20px 0;
}

.header_wraper {
  padding: 0px 40px;
}

.logo img {
  width: 100px;
}

.menu_list li {
  margin: 0 30px;
}

.menu_item_link {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

.menu_item_link::before {
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: var(--text-color);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}

.menu_item:hover .menu_item_link::before {
  opacity: 1;
}

.cur-page .menu_item_link::before {
  opacity: 1;
}

/* Banner */

.banner {
  background: url("../images/noise-texture-200.png");
  background-color: var(--primary-color);
  position: relative;
  padding: 70px 0;
}

@keyframes apperence {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
  }
}

.banner_content {
  width: 55%;
  /* animation: apperence 0.8s; */
}

.banner_heading {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  color: #141414;
  letter-spacing: 3px;
  margin: 10px 0;
}

.banner_des {
  font-family: "Recoleta";
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: #141414;
}

.banner_des_gif {
  position: relative;
}

.banner_des_gif::before {
  content: "";
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.banner_des_gif_arrow::before {
  background-image: url("../images/hero-arrow.gif");
}

.banner_des_gif_lines::before {
  background-image: url("../images/lines.gif");
  width: 50px !important;
  height: 50px !important;
  right: 0;
  top: -10px;
}

.banner_des_gif_twinkle::before {
  background-image: url("../images/hero-star.gif");
  width: 20px !important;
  height: 20px !important;
  right: 0;
}

.banner_des_gif_heart::before {
  background-image: url("../images/hero-heart.gif");
  left: 100%;
  top: 0;
  transform: translateY(-25%);
  width: 100px !important;
  height: 100px !important;
}

.banner_video {
  width: 40%;
  /* animation: apperence 0.8s; */
}

.banner_video video {
  width: 100%;
  height: 100%;
  display: block;
}

.banner_video {
  position: relative;
}

.banner_video::after {
  content: "";
  background: url("../images/noise-texture-200.png");
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/* Main video section */

.main_video {
  /* height: 100vh; */
  background: white;
  position: relative;
  cursor: none;
  overflow: hidden;
  z-index: 1;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mouse {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.mouse .shape {
  background-color: var(--text-color-hover);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.mouse .title {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: bold;
  color: var(--text-color-hover);
  margin: 10px 0;
}

/* Main and slide section */

.main {
  width: 500vw;
  display: flex;
  background: url("../images/noise-texture-200.png");
}

.slide1 {
  /* width: 100vw; */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.imgs_wraper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 50%;
  height: 500px;
}

.imgs_wraper img {
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.slide1_content {
  flex: 1;
}

.slide1_content_heading {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  color: var(--text-color-hover);
  letter-spacing: 2px;
}

.slide1_content_des {
  font-family: "Recoleta";
  font-weight: 400;
  font-size: 40px;
  line-height: 45px;
  color: var(--text-color);
  margin: 20px 0;
}

.slide {
  width: 400vw;
  display: flex;
}

.panel {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.slide_card {
  flex-wrap: nowrap;
  border-radius: 20px;
  width: 90vw;
  height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 100%;
  object-fit: cover;
  /* justify-content: space-around; */
  /* margin: 0 50px; */
  overflow: hidden;
}

.card_img {
  overflow: hidden;
}

.card_img img {
  width: 100%;
}

.slide2 .slide_card {
  background: url("../images/work-background1.webp") no-repeat;
}

.slide3 .slide_card {
  background: url("../images/work-background2.webp") no-repeat;
}

.slide4 .slide_card {
  background: url("../images/work-background3.webp") no-repeat;
}

.slide5 .slide_card {
  background: url("../images/work-background4.webp") no-repeat;
}

.card_content {
  width: 25%;
}

.card_heading {
  font-family: "Recoleta";
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  color: white;
}

.card_des {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: white;

  padding: 20px 0;
}

.card_link {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);

  padding: 10px 25px;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s ease;
}

.card_link:hover {
  background-color: white;
}

/* Expertise - What we do section */

.expertise_list {
  padding: 80px 0;
}

.expertise_list li {
  width: 25%;
  padding: 0 20px;
}

.expertise_item_svg {
  width: 200px;
  height: 200px;
  background: url("../images/option-background.svg") no-repeat;
  background-size: 100%;
  object-fit: cover;
}

.section_heading {
  font-family: "Recoleta";
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  color: var(--text-color);
}

.section_title {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
}

.expertise_item_heading {
  font-family: "Recoleta";
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--text-color);
  margin: 20px 0;
}

.whatwedo {
  width: 100vw;
  /* height: 100vh; */
  background: url("../images/noise-texture-200.png");
  overflow: hidden;
  padding: 50px 0;
}

/* overlay 6 collums */

.overlay-collum {
  height: 100vh;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 1;
}

.overlay-collum div {
  height: 160vh;
  width: calc(100% / 6);
  background-color: #edc100;
}

.overlay-collum div:nth-child(even) {
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
  transform: translateY(-100%);
}

.overlay-collum div:nth-child(odd) {
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  transform: translateY(100%);
}

/* Brand */

.brand {
  background: url("../images/noise-texture-200.png");
  background-color: #edc100;
  /* height: 100vh; */
  width: 100vw;
  /* z-index: 10; */
  padding: 50px 0;
}

.brand_headding {
  /* width: 50%; */
  font-family: "Recoleta";
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  color: var(--text-color);
}

.brand_img img {
  width: 100%;
}

.brand_content {
  padding: 50px 0;
}

.brand_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand_logo_img {
  margin: 0 5px;
  padding: 30px;
  background-color: white;
  border: 1px solid var(--text-color);
  border-radius: 15px;
  box-shadow: 2px 2px 0 var(--text-color);
}

.brand_logo img {
  width: 100%;
}

.brand_list-1 .brand_logo {
  padding: 20px 0;
  transform: translateX(-100px);
}

.brand_list-2 .brand_logo {
  padding: 20px 0;
  transform: translateX(100px);
}

/* Let's chat */
.Lets_chat {
  background: url("../images/noise-texture-200.png");
  padding: 80px 0;
}

.Lets_chat .right,
.Lets_chat .left {
  /* width: 50%; */
}

.mailbox {
  margin-right: 50px;
}

.lets_chat_des {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.lets_chat_link:hover {
  color: var(--text-color-hover);
}

.lets_chat_link:hover i {
  transform: translateX(10px);
}

.lets_chat_link i {
  transition: 0.3s ease;
}

.lets_chat_link {
  font-family: "Recoleta";
  font-weight: 500;
  font-size: 64px;
  line-height: 70px;
  position: relative;
  padding: 0 5px;
  transition: 0.3s ease;
}

.lets_chat_link::before {
  content: "";
  height: 1.5px;
  background: var(--text-color-hover);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: white;
}

.footer_logo {
  width: 220px;
}
.footer_logo img {
  width: 100%;
}

.footer_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .right {
  width: 45%;
  justify-content: space-between;
}

.square-dot {
  width: 5px;
  height: 5px;
  background-color: var(--btn-hover);
  position: absolute;
}

footer a {
  color: white;
  transition: 0.3s ease;
}

footer .footer_link:hover {
  color: var(--btn-hover);
}

.footer_nav_link {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  padding-left: 10px;
}

.footer_nav_item {
  margin: 10px 0;
}

.footer_nav_item,
.footer_info_item {
  position: relative;
}

.square-dot {
  width: 5px;
  height: 5px;
  background-color: var(--btn-hover);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.footer_info_item i {
  position: absolute;
  top: 5px;
  right: 100%;
  margin-right: 10px;
}

.footer_text {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

footer hr {
  background-color: #646464;
  height: 2px;
}

.footer_social_network {
  margin: 50px 0;
  display: flex;
}

.social_network_item {
  width: 40px;
  height: 40px;
  margin-right: 30px;
  border: 1px solid #646464;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.social_network_item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.social_network_item a:hover {
  color: var(--text-color);
  background-color: var(--btn-hover);
}

.rules div {
  margin-left: 30px;
}

.before_hr {
  padding-top: 50px;
}

.after_hr {
  padding: 30px 0;
}
