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

body {
  font-family: "Lilita One", cursive;
  width: 100vw;
  overflow-x: hidden;
}

.nav {
  width: 120px;
  background-color: #3a677e;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 2;
}

.nav__img {
  width: 70%;
}

.nav__social {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: translate(-50%, -50%);
}

.nav__social__div {
  height: 100px;
  width: 1px;
  background-color: white;
}

.nav__social__text {
  width: max-content;
  writing-mode: vertical-rl;
}
.nav__social__icons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav__social__icons img {
  width: 25px;
}

.hero {
  position: relative;
  min-height: 120vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__bg {
  height: 140vh;
  width: 120vw;
  background: url("assets/bg.png") repeat;
  animation: slide 10s linear infinite;
  background-size: cover;

  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero__left {
  display: flex;
  flex-direction: column;
  transform: translateX(100px);
}

.hero__left__one {
  font-size: 32px;
  color: #fffffe;
  position: relative;
  font-family: "Lilita One", cursive;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  padding: 12px 0 2px 18px;
  width: 244px;
  background: #414c6b;
}

.hero__left__two {
  text-transform: capitalize;
  color: #ffeb3b;
  font-size: 92px;
  margin-left: -9px;
  font-weight: 700;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
}

.hero__left__three {
  color: #222222;
  font-size: 28px;
  position: relative;
  padding: 5px 0;
  padding-left: 12px;
  margin-bottom: 27px;
  display: inline-block;
  background: #dddddd;
}

.hero__left__three::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background: #ffc455;
  line-height: 1.5;
}

.hero__left__btn button {
  position: relative;
  display: inline-block;
  outline: none;
  overflow: hidden;
  min-width: 200px;
  height: 60px;
  background: rgb(252, 194, 85);
  border-radius: 30px;
  text-align: center;
  line-height: 64px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  font-size: 16px;
  color: #ffffff;
  font-family: inherit;
  border: none;
  cursor: pointer;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-20vw, -20vh, 0); /* The image width */
  }
}

.hero__right {
  height: 100vh;
  /* animation: hover 3s linear infinite; */
}

@keyframes hover {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 1120px) {
  .nav {
    width: 80px;
  }

  .hero {
    flex-direction: column-reverse;
  }

  .hero__left {
    transform: translateX(0);
  }

  .hero__right {
    height: 80vh;
  }
}

@media screen and (max-width: 600px) {
  .nav {
    width: 50px;
  }
  .hero {
    padding-left: 60px;
    min-height: 100vh;
  }
  .hero__right {
    height: unset;
    width: 100%;
  }

  .hero__left__one {
    font-size: 22px;
  }

  .hero__left__two {
    font-size: 42px;
    margin-bottom: 10px;
    margin-left: 5px;
  }

  .hero__left__three {
    font-size: 22px;
  }

  .hero__left__btn button {
    min-width: 150px;
    height: 40px;
    line-height: 44px;
  }
}

.info {
  background-color: #d4edf4;
  width: 100vw;
  overflow-x: hidden;
}

.info__wrapper {
  width: 1200px;
  max-width: 90%;
  display: flex;
  margin: 0 auto;
  padding: 100px;
  gap: 50px;
}

.info__img {
  width: 445px;
  height: 445px;
  position: relative;
  z-index: 1;
}

.info__left {
  position: relative;
  height: max-content;
  width: max-content;
}

.info__img__border {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border: 4px solid #ff517e;
  transform: translate(-25px, 25px);
  z-index: 0;
}

.info__one {
  font-size: 22px;
  color: #222222;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: default;
  z-index: 0;
  text-transform: capitalize;
  width: max-content;
}

.info__one::after {
  content: "";
  position: absolute;
  background: #ffc454;
  left: -12%;
  right: -12%;
  top: 10px;
  bottom: 11px;
  margin: auto;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.5s;
}

.info__two {
  margin: 15px 0px 17px 0;
  text-transform: capitalize;
  font-family: "Lilita One", cursive;
  font-weight: 600;
  font-size: 33px;
  line-height: 1.3;
  color: #00c8da;
}

.info__blog p {
  color: #777777;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  width: 100%;
}

.info__blog p span {
  color: #00c8da;
}

@media screen and (max-width: 1100px) {
  .info__wrapper {
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
    padding: 50px 30px;
  }

  .info__left {
    width: 100%;
  }

  .info__img {
    width: 100%;
    height: unset;
  }

  .info__blog p {
    font-size: 12px;
  }

  .contract {
    font-size: 8px;
  }
}
