@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* @import url("https://fonts.googleapis.com/css2?family=Belleza&display=swap"); */

/* SPACING SYSTEM (px) 2 / 4 / 8 / 12 / 16 / 24 /
 32 / 48 / 64 / 80 / 96 / 128
FONT SIZE SYSTEM (px) 10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 /
  62 / 74 / 86 / 98

  colors
  main color:  #D4AF37 

  tints: #ffffff #323232
  shades:
  greys

  font-size
  400(regular)
  500 (medium) 
  600(semi bold) 
  700(bold)
  1rem=10px 
  
  setup
  10px=1rem */

:root {
  --color-primary: #319BFF;
  /* #d4af37; */
  --color-background: #ffffff;
  --color-text: #000000;
  /* #323232; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Belleza", sans-serif; */
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow: hidden;
}

html {
  /* font-size: 62.5%; */
  font-size: 62.5%;
  overflow-x: hidden;
  font-family: "Belleza", sans-serif;
  scroll-behavior: smooth;
}

/* resuable code */
.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid--columns--2 {
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

.grid--columns--3 {
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.grid--columns--4 {
  /* align-items: center; */
  grid-template-columns: repeat(4, 1fr);
}

.grid--columns--5 {
  /* align-items: center; */
  grid-template-columns: repeat(5, 1fr);
}

.grid-center-v {
  align-items: center;
}

/* hero */
.hero-text-p {
  text-decoration: none;
  font-weight: 600;
  font-size: 3rem;
  color: var(--color-primary);
}

.hero {
  justify-content: center;
  align-items: center;
  max-width: 130rem;
  margin-top: 8.6rem;
  column-gap: 1.8rem;
  transition: 1s all;
}

.hero-text {
  font-family: "Belleza", sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 3.2rem;
  line-height: normal;
  margin-bottom: 6.4rem;
}

.hero-text p {
  font-size: 1.8rem;
  text-align: justify;
  /* letter-spacing: 1px; */
  margin-top: 2rem;
}

.hero-text-h3 {
  margin-top: 2.4rem;
  font-size: 3.2rem;
  font-weight: 500;
}

.hero-img {
  width: 85%;
  border-top-right-radius: 2.2rem;
  border-top-left-radius: 2.2rem;
  justify-content: center;
  align-items: center;
  margin-left: 6.4rem;
}

.highlight {
  color: var(--color-primary);
}

.highlight2 {
  font-weight: 500;
}

.text-wrap {
  display: flex;
  flex-direction: column;
}

.button-wrap {
  margin: 4.4rem 0;
}

.hero-btn {
  background-color: var(--color-text);
  padding: 1.8rem;
  text-decoration: none;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-background);
  /* border: 2.5px solid var(--color-primary); */
  border-radius: 3.2rem;
  transition: all 0.3s;
}

.hero-btn:hover {
  border: 2.5px solid var(--color-background);
  outline-style: solid;
  outline-color: var(--color-text);
  color: var(--color-background);
  /* background-color: var(--color-primary); */
}

/* navbar */
.nav-header img {
  width: 20%;
  height: 6rem;
  /* height: 3rem; */
}

.nav-header {
  font-family: "Belleza", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 12rem;
  padding: 0 8.6rem;
  transition: 1s all;
  margin-bottom: 1rem;
  /* margin: 0 5.2rem; */
}

.sticky {
  position: fixed;
  background-color: #ffffff;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  z-index: 2000000000000000;
  box-shadow: 0 1.2rem 3rem rgb(0, 0, 0, 0.03);
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

.sticky .hero {
  margin-top: 9.6rem;
}

.mobile-btn {
  display: none;
}

.wrap {
  /* margin-right: 7.4rem; */
}

.nav-child a {
  text-decoration: none;
  color: var(--color-text);
  /* padding: 0.5rem 4.8rem; */
}

.nav-par {
  list-style: none;
  display: flex;
  font-size: 1.8rem;
  gap: 5rem;
  border: 1px solid var(--color-text);
  border-radius: 40px;
  padding: 0.5rem 4.8rem;
}

.nav-child {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  transition: all 0.3s;
}

.nav-child:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
  cursor: pointer;
  text-decoration: none;
}

/* /////////////////////////////////////////// */
/* featured section  */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logo {
  margin: 5.2rem 0;
  white-space: nowrap;
  transition: all 1s;
  overflow: hidden;
  position: relative;
}

.logo:before,
.logo:after {
  content: "";
  position: absolute;
  top: 0;
  width: 25rem;
  height: 10.8rem;
  z-index: 2;
}

.logo::before {
  left: 0;
  background: linear-gradient(to left, rgb(255, 255, 255, 0), #ffffff);
}

.logo:after {
  right: 0;
  background: linear-gradient(to right, rgb(255, 255, 255, 0), #ffffff);
}

.featured-wrap img {
  height: 9.8rem;
  margin: 1rem 3.2rem;
}

.featured-wrap {
  display: inline-block;
  /* filter: grayscale(100); */
  animation: 18s slide infinite linear;
}

.logo:hover .featured-wrap {
  animation-play-state: paused;
}

/* about */
.wrapper-box {
  background-color: var(--color-text);
  color: #ffffff;
  padding: 6.4rem 12rem;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  text-align: justify;
}

.box1 h1 {
  font-weight: 700;
  font-size: 4rem;
  margin: 2rem 0;
}

.box1-highlight {
  margin-bottom: 3.2rem;
  color: var(--color-primary);
}

.box1 p {
  color: #ffffffd2;
  font-size: 2.1rem;
  line-height: 1.3;
  letter-spacing: 1.5px;
  padding-right: 2rem;
  margin-bottom: 6.4rem;
  font-family: inherit;
}

.p-text {
  margin-bottom: 2.4rem !important;
}

/* box2 */
.box2-section {
  background-color: var(--color-text);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 9.6rem;
  padding-bottom: 4.4rem;
}

.box2-wrapper {
  background-color: #ffffff;
  padding: 5.2rem 7.2rem;
  /* margin: 0; */
  border-radius: 20px;
  /* display: flex; */
  /* grid-template-rows: 1fr 1fr; */
}

.box2-wrap {
  justify-content: center;
  row-gap: 5.2rem;
  column-gap: 30rem;
}

.box2 {
  display: flex;
  flex-direction: column;
  padding: 8.2rem 2rem;
  border: 1px solid #cacaca;
  border-radius: 20px;
}

.title {
  font-size: 2.4rem;
  color: var(--color-primary);
  padding-bottom: 2.4rem;
}

.context {
  font-size: 1.6rem;
  line-height: 1.5;
}

.box2-text-wrap {
  grid-column: 1/-1;
  justify-self: center;
  /* width: 100%; */
  /* text-align: center; */
}

.box2-title {
  /* transform: translateX(-30rem);
  display: inline-block; */
  /* transform: translateX(0); */
  font-weight: 700;
  font-size: 3.6rem;
}

/* transition */
.section {
  /* padding: 15rem 3rem; */
  /* border-top: 1px solid #ddd; */
  transition: transform 1s, opacity 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}



/* image */

/* featured section  */
@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slidess {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.logos {
  margin: 5.2rem 0;
  white-space: nowrap;
  transition: all 1s;
  overflow: hidden;
  position: relative;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 20rem;
  height: 35rem;
  z-index: 2;
}

.logos::before {
  left: 0;
  background: linear-gradient(to left, rgb(255, 255, 255, 0), #ffffff);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgb(255, 255, 255, 0), #ffffff);
}

.featured-wraps img {
  height: 30rem;
  border-radius: 6px;
  margin: 1rem 3.2rem;
}

.featured-wraps {
  display: inline-block;
  /* filter: grayscale(100); */
  animation: 30s slides infinite linear;
}

.logos:hover .featured-wraps .featured-wrap2 {
  animation-play-state: paused;
}

.featured-wrap2 {
  display: inline-block;
  animation: 30s slidess infinite linear !important;
}