* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: "Mooli", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 1.2rem;
}

body::-webkit-scrollbar-thumb {
  background: #32b0ce;
  border-radius: 5rem;
}

body::-webkit-scrollbar-track {
  background: #212121;
}

@keyframes anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-200%);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(0.6rem);
    opacity: 1;
  }
  80% {
    transform: translateX(0.3rem);
  }
  100% {
    transform: translateX(0);
  }
}

.container {
  width: 100%;
  height: 100%;
  background: #212121;
}

.menu-icon {
  width: 4rem;
  height: 2rem;
  position: fixed;
  top: 7rem;
  right: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999 !important;
}

.line {
  height: 0.2rem;
  background: #deaa86;
  transition: all 0.3s;
}

.line-1,
.line-3 {
  width: 100%;
}

.line-2 {
  width: 70%;
}

.navigate .line-1 {
  width: 50%;
  transform: translate(103%, 0.5rem) rotateZ(25deg);
}

.navigate .line-3 {
  width: 50%;
  transform: translate(103%, -0.5rem) rotateZ(-25deg);
}

.navigate .line-2 {
  width: 100%;
}

.menu-icon:hover .line-1,
.menu-icon:hover .line-3 {
  width: 70%;
}

.navigate .menu-icon:hover .line-1,
.navigate .menu-icon:hover .line-3 {
  width: 50%;
}

.navigate .menu-icon:hover .line-2 {
  margin-left: 0;
}

.menu-icon:hover .line-2 {
  margin-left: 30%;
}

.navigation {
  width: 100%;
  height: 100vh;
  background: #191919;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.navigate .navigation {
  opacity: 1;
  visibility: visible;
}

.nav-left {
  width: 50%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.navigate .nav-left {
  opacity: 1;
  visibility: visible;
  transition: all 1s 0.7s;
}

.nav-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 1s;
}

.nav-left:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.nav-right {
  width: 100%;
  height: 100%;
  background: #171717;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-200%);
}

.navigate .nav-right {
  transform: translateX(0);
  width: 50%;
  transition: all 1s;
}

.nav-items {
  display: flex;
  flex-direction: column;
}

.nav-items a:first-child {
  padding-left: 6rem;
  position: relative;
}

.nav-items a:first-child::before {
  content: "";
  width: 4.8rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.nav-items a:first-child:hover::before {
  background: #deaa86;
}

.nav-items a {
  font-size: 1.8rem;
  margin: 2rem 0;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.navigate .nav-items a {
  opacity: 1;
  visibility: visible;
}

.navigate .nav-items a:nth-child(1) {
  transition: opacity 0.5s 1s, color 0.3s;
}

.navigate .nav-items a:nth-child(2) {
  transition: opacity 0.5s 1.2s, color 0.3s;
}
.navigate .nav-items a:nth-child(3) {
  transition: opacity 0.5s 1.4s, color 0.3s;
}
.navigate .nav-items a:nth-child(4) {
  transition: opacity 0.5s 1.6s, color 0.3s;
}
.navigate .nav-items a:nth-child(5) {
  transition: opacity 0.5s 1.8s, color 0.3s;
}

.navigate .nav-items a:nth-child(6) {
  transition: opacity 0.5s 2s, color 0.3s;
}

.navigate .nav-items a:nth-child(7) {
  transition: opacity 0.5s 2.2s, color 0.3s;
}

.nav-items a:hover {
  color: #deaa86;
}

.nav-items a span {
  font-family: "Cinzel", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-right: 1rem;
  letter-spacing: 0.2rem;
  position: relative;
}

.nav-items a span::before {
  content: "";
  width: 0;
  height: 0.5rem;
  background: #deaa86;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-items a:hover span::before {
  width: 100%;
}

header {
  width: 100%;
  height: 100vh;
  position: relative;
}

.logo {
  position: absolute;
  top: 3rem;
  left: 25rem;
}

.banner {
  position: absolute;
  top: 20%;
  left: 10%;
  text-align: center;
}

.banner h3 {
  font-family: "Kaushan Script", cursive;
  font-size: 7rem;
  font-weight: 300;
  color: #fff;
  transform: translate(3rem, 11rem);
}

.banner h1 {
  font-size: 15rem;
  color: #deaa86;
  margin: 5rem 0;
  letter-spacing: 1rem;
}

.banner h1 span {
  font-size: 25rem;
  transform: rotateZ(25deg);
}

.page-header {
  width: 100%;
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.page-header .section-heading-sm {
  margin-top: 15rem;
}

.about {
  width: 100%;
  background: #202020;
  padding: 10rem 0 15rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  width: 100%;
  height: 100%;
  display: flex;
}

.about-content-left {
  width: 50%;
  text-align: right;
  padding-right: 6rem;
}

.about-content-left img {
  width: 70%;
  border-radius: 2rem;
  margin-left: 5rem;
  box-shadow: 0 1rem 1rem rgba(255, 255, 255, 0.2);
}

.about-content-right {
  width: 50%;
  //padding: 8rem 0 0 6rem;
}

.main-btn {
  width: 28rem;
  height: 6rem;
  margin-top: 2rem;
  background: #deaa86;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.main-btn:active {
  transform: translateY(0.2rem);
}

.main-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.3s;
}

.main-btn:hover::before {
  left: 100%;
}

.main-btn a {
  color: #fff;
  font-size: 2rem;
  font-family: "Mooli", sans-serif;
}

.section-heading-sm {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: #deaa86;
}

.section-heading-lg {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: #fff;
  margin: 3rem 0;
}

.section-border {
  width: 50rem;
  height: 0.1rem;
  background: #333;
  margin-bottom: 3rem;
  position: relative;
}

.section-border::after {
  content: "";
  width: 7rem;
  height: 0.7rem;
  background: #deaa86;
  position: absolute;
  top: 0;
  left: 0;
}

.about p {
  width: 50rem;
  font-size: 1.4rem;
  color: #fff;
  line-height: 3.5rem;
  margin-bottom: 4rem;
}

.gms {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem 0 15rem 0;
  overflow: hidden;
}

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

.gms-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10rem;
}

.gms-header {
  text-align: right;
  margin-right: 10rem;
}

.gms-header .section-border::after {
  right: 0;
  left: auto;
}

.gms-list {
  display: flex;
  flex-direction: column;
}

.gm {
  width: 35rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin: 6rem;
  text-align: center;
}

.gm img {
  width: 30rem;
  height: auto;
  filter: grayscale(100%);
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 1s;
}

.gm img:hover {
  filter: grayscale(0%);
}

.gm-name {
  font-family: "Kaushan Script", cursive;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #deaa86;
  letter-spacing: 1rem;
  margin: 3rem 0;
}

.gm-line {
  width: 10rem;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.gm-author {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5rem;
}

.gms-content .main-btn {
  margin-top: 10rem;
}

.testimonials {
  width: 100%;
  height: 160vh;
  background: #202020;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10rem 0 15rem 0;
  position: relative;
}

.testimonials-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.feedback-top {
  display: flex;
  align-items: center;
  padding-left: 7rem;
  margin-bottom: 5rem;
}

.feedback-top img {
  width: 30rem;
  height: 30rem;
  object-fit: cover;
  border-radius: 2rem;
  border: 0.8rem solid #202020;
  margin-right: 3rem;
  filter: grayscale(100%);
  cursor: pointer;
  transition: filter 1s;
  z-index: 1;
}

.feedback-top img:hover {
  filter: grayscale(0);
}

.feedback-heading {
  display: flex;
  width: 50%;
  text-align: center;
}

.feedback-heading h1 {
  font-size: 7rem;
  color: #fff;
}

.feedback-heading h1 span {
  font-family: "Kaushan Script", cursive;
  font-size: 8rem;
  color: #deaa86;
  letter-spacing: 0.2rem;
}

.quote-bg {
  width: 35rem;
  height: 40rem;
  background: #deaa86;
  position: absolute;
  top: 26rem;
  left: 4.5rem;
  border-radius: 3rem;
}

.quote-bg::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
  border-bottom: 4rem transparent;
  bottom: -3rem;
  left: 1rem;
  transform: rotate(-45deg);
}

.quote {
  width: 80rem;
  height: 20rem;
  background: #282828;
  border-radius: 3rem;
  position: absolute;
  top: 33rem;
  left: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}

.quote::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
  border-bottom: 4rem solid #282828;
  bottom: -3rem;
  left: 0;
  transform: rotate(-45deg);
}

.quote-header {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.quote-header i {
  font-size: 8rem;
  color: #deaa86;
}

.quote-header h1 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.2rem;
  padding: 0 10rem;
}

.quote-body p {
  width: 50rem;
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
}

.quote-stars {
  font-size: 1.8rem;
  color: #deaa86;
  margin: 0 0.5rem;
}

.testimonials .main-btn {
  position: absolute;
  left: 50%;
  bottom: 15rem;
  transform: translateX(-50%);
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15rem 0 3rem 0;
}

.footer-header {
  text-align: center;
  margin-bottom: 15rem;
}

.footer-header .section-border::after {
  left: 50%;
  transform: translateX(-50%);
}

.footer-content {
  width: 60%;
  display: flex;
  margin-bottom: 10rem;
}

.footer-social {
  width: 30%;
}

.address div {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.address i {
  font-size: 3.5rem;
  color: #fff;
  margin-right: 2.3rem;
}

.address div span {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #fff;
}

.address-par {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  padding-left: 6rem;
}

.address-par span {
  width: 10rem;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.social-media i {
  font-size: 3rem;
  color: #fff;
  margin-right: 3rem;
  cursor: pointer;
}

.footer-form {
  width: 70%;
}

.footer-form form {
  display: flex;
  flex-direction: column;
}

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

.input-group input {
  width: 37rem;
  height: 6rem;
  margin-bottom: 3rem;
}

.input-group input,
textarea {
  background: #1a1a1a;
  border: none;
  padding: 1rem;
  font-size: 1.4rem;
  color: #ccc;
  border-radius: 0.5rem;
}

textarea {
  height: 15rem;
  margin-bottom: 3rem;
  resize: none;
}

.footer-form button {
  width: 20rem;
  height: 5rem;
  background: #deaa86;
  margin-left: auto;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1rem;
  cursor: pointer;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.footer-form button:active {
  transform: translateY(0.2rem);
}

.footer-bottom {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 1.4rem;
  color: #ccc;
}

.footer-bottom button {
  width: 15rem;
  height: 5rem;
  border: none;
  background: none;
}

.footer-bottom button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.4rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* Responsive */

@media (max-width: 145rem) {
  html {
    font-size: 58%;
  }
  .about-section-header {
    transform: translate(60%, 50%);
  }
}

@media (max-width: 136rem) {
  html {
    font-size: 55%;
  }
  .banner {
    bottom: 25rem;
  }
  .testimonials {
    height: 170vh;
  }
}
@media (max-width: 1280px) {
  .about {
    transform: translate(50%, 50%);
  }
  .about-content-left {
    width: 45%;
  }
  .about-content-right {
    width: 55%;
  }

  .gms-list {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-content {
    width: 70%;
  }
  .footer-bottom {
    width: 70%;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    width: 80%;
  }
  .footer-bottom {
    width: 80%;
  }
}

@media (max-width: 820px) {
  html {
    font-size: 48%;
  }
  .banner {
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
  }
  .about-content-left {
    width: 60%;
  }
  .about-content-right {
    width: 40%;
  }
  .section-heading-sm {
    font-size: 1.4rem;
  }

  .section-heading-lg {
    font-size: 2.2rem;
  }
  .about p {
    font-size: 1.6rem;
    width: 45rem;
  }
  .gms .gms-header {
    width: 35rem;
  }
  .gms-header .section-border {
    width: 55rem;
  }
  .testimonials {
    height: 100vh;
  }
  .input-group input {
    width: 28rem;
  }
  .gm {
    width: 20rem;
    height: 20rem;
  }
  .footer-about {
    margin-top: 0;
  }
  .footer-about .footer-header {
    text-align: center;
    transform: transalteX(0);
  }
  .footer-about .footer-header .section-border::after {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .gm {
    width: 32rem;
  }
  .gm img {
    width: 27rem;
  }
  .testimonials {
    height: 115vh;
  }
  .input-group input {
    width: 26rem;
  }
}

@media (max-width: 430px) {
  html {
    font-size: 42%;
  }
  .container {
    overflow: hidden;
  }
  .logo {
    left: 5rem;
  }
  .banner h3 {
    font-size: 5rem;
  }
  .banner h1 {
    font-size: 12rem;
  }
  .about {
    height: 80vh;
    padding-bottom: 25rem;
    position: relative;
  }
  .about-content-left {
    padding-right: 0;
  }
  .about-content-right {
    padding: 4rem 0 0 6rem;
  }
  .about .main-btn {
    position: absolute;
    bottom: 15rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-heading-lg {
    font-size: 2.5rem;
  }
  .about-content-right .section-border {
    width: 25rem;
  }
  .about-content-right p {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .gms-header {
    margin-right: 3rem;
  }
  .gms .section-border {
    width: 30rem;
  }
}
