.unbounded {
  font-family: "Unbounded", serif;
  font-optical-sizing: auto;
}
.anton-regular {
  font-family: "Anton", serif;
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.inside-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
ul.nav-list {
  display: flex;
  width: 50%;
  justify-content: space-between;
  list-style: none;
  padding: 1rem;
  font-family: unbounded;
  font-size: 15px;
  color: #fff;
}
.nav-list a {
  text-decoration: none;
  color: #fff;
}

footer {
  width: 100%;
  padding: 4rem 2rem;
  background-color: #252525;
}
footer ul {
  list-style: none;
}
.inside-footer {
  display: flex;
  flex-direction: column;
}
.footer-upper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6rem;
}
.about-company {
  width: 35%;
  text-align: justify;
  font-family: unbounded;
  font-size: 14px;
  color: #a3a3a3;
  font-weight: 300;
}
.about {
  padding: 2rem 0;
  border-bottom: 1px solid;
}
p.add {
  padding: 1rem 0;
}
.quick-links {
  display: flex;
  width: 60%;
  justify-content: space-around;
}
.links h3 {
  font-family: anton;
  color: #fff;
  font-weight: 200;
  margin-bottom: 1rem;
}

.links ul li {
  font-family: unbounded;
  font-size: 14px;
  margin-bottom: 1rem;
}
.links ul li a {
  color: #a3a3a3;
  text-transform: capitalize;
  font-family: unbounded;
  font-weight: 200;
  transition: color 0.3s ease;
}
.links ul li a:hover {
  color: #00c16e;
}
.footer-lower {
  border-top: 5px solid #fff;
  padding-top: 3rem;
  font-family: unbounded;
  color: #a3a3a3;
  position: relative;
}
.footer-lower p {
  width: 45%;
}
.footer-lower a {
  color: #00c16e;
}
.f-img {
  position: absolute;
  top: -5rem;
  width: 12rem;
  left: 44%;
  z-index: 100;
}
/* .socials {
  padding: 4rem;
  width: 100%;
  background-color: #2df4a1;
} */
.heading {
  font-size: 100px;
  font-family: anton;
  text-transform: uppercase;
  line-height: 100px;
  margin: 1rem 0;
}

.social-section {
  background-color: #2df4a1;
  padding: 4rem;
  position: relative;
  height: max-content;
}

.bg-text {
  position: absolute;
  font-size: 8rem;
  font-family: anton;
  font-weight: bold;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  letter-spacing: 10px;
}
.social-card {
  display: flex;
  align-items: center;
  font-family: anton;
  color: #fff;
  font-size: 35px;
  transition: all 0.5s ease;
  text-transform: capitalize;
}
.social-card:hover {
  scale: 0.95;
  color: black;
}
.inside-social-section {
  display: flex;
  justify-content: space-between;
}
.s-icon {
  display: flex;
  align-items: center;
}
.s-icon img {
  width: 35px;
  margin-right: 1rem;
  transition: filter 0.3s ease;
}
.social-card:hover .s-icon img {
  filter: invert(1);
}

/* CSS */
.button-32 {
  background-color: #fff000;
  border-radius: 12px;
  color: #000;
  font-family: unbounded;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  transition: 200ms;
  box-sizing: border-box;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-32:not(:disabled):hover,
.button-32:not(:disabled):focus {
  outline: 0;
  background: #f4e603;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2), 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}

.button-32:disabled {
  filter: saturate(0.2) opacity(0.5);
  -webkit-filter: saturate(0.2) opacity(0.5);
  cursor: not-allowed;
}
.button-52 {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 3px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  z-index: 100;
  font-family: anton;
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.button-52:after {
  content: "";
  background-color: #2df4a1;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}
.stroke {
  -webkit-text-stroke: 2px #000;
  color: transparent;
  letter-spacing: 3px;
}
.stroke-white {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  letter-spacing: 2px;
}
.stroke-aqua {
  -webkit-text-stroke: 2px #00c16e;
  color: transparent;
}
.heading.heading-white {
  color: white;
}
.heading-right {
  text-align: right;
}

.common-hero {
  height: 80vh;
  width: 100%;
  position: relative;
}
.inside-common-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(241 239 239 / 64%);
}
.inside-common-hero h1 {
  z-index: 40;
  position: relative;
  font-size: 9rem;
  font-weight: 500;
}

ul.drop-down {
  background: #fff;
  padding: 1rem;
  list-style: none;
  border-radius: 10px;
  width: 14rem;
  position: absolute;
  transform: translateY(40%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
}
.dd-link {
  position: relative;
}
.dd-link:hover .drop-down {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.drop-down li {
  padding: 1rem 0;
}

.drop-down li a {
  color: #000;
}
.h-logo {
  margin: 0 2rem;
  height: 7rem;
}
.h-logo img {
  width: auto;
  height: 8rem;
}

.button-52-small {
  font-size: 14px;
  padding: 10px 15px 7px;
  border: 2px solid black;
  font-weight: 400;
}
.sp-font {
  font-family: anton;
  font-size: 95px;
  line-height: 105px;
}

.hamburger {
  z-index: 100;
  display: none;
}
.h-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  /* background-color: rebeccapurple; */
}
.hidden-nav {
  background: white;
  padding: 1rem;
  height: 100vh;
  /* width: 104%; */
  position: fixed;
  top: 0;
  right: -100%;
  /* left: 64.5%; */
  z-index: 1000;
  width: 35vw;
  /* transform: translateX(100%); */
  transition: all 0.3s ease;
  transition-delay: 0.5s;
}
.hidden-nav.active {
  /* transform: translateX(0%); */
  right: 0%;
  overflow-y: scroll;
}
.hn-logo img {
  width: 100px;
}
.hn-logo p {
  font-size: 30px;
  font-family: "anton";
  text-transform: capitalize;
  margin-left: 0.5rem;
  color: #112437;
  font-weight: 600;
  letter-spacing: 1px;
}

.hn-nav {
  padding: 1rem;
}
.hn-nav ul {
  list-style: none;
}
.hn-nav ul li {
  border-bottom: 1px solid;
  padding: 1rem 0;
  color: #112437;
  font-family: "anton";
  font-weight: 500;
}

.hn-nav ul li a {
  text-decoration: none;
  color: #112437;
  font-family: "anton";
  font-weight: 500;
}
.about-info {
  font-family: unbounded;
  color: #112437bd;
  font-weight: 500;
  font-size: 15px;
  padding: 1rem;
}
.hn-contact-info {
  padding: 1rem;
}
.hn-contact-info h2 {
  font-family: "anton";
  text-transform: capitalize;
  margin-bottom: 1rem;
  color: #112437;
}
.hnc-info {
  display: flex;
  font-family: unbounded;
  font-size: 15px;
  line-height: 30px;
  color: #112437bd;
  font-weight: 600;
}
.cross {
  position: absolute;
  right: 25px;
  top: 35px;
}
.cross img {
  width: 18px;
}
.dd-container {
  background-color: transparent;
  margin-top: 1rem;
}

@media (max-width: 1150px) {
  ul.nav-list {
    width: 60%;
  }
}
@media (max-width: 1100px) {
  .sp-font {
    font-size: 85px;
    line-height: 95px;
  }
}

@media (max-width: 1024px) {
  .sp-font {
    font-size: 75px;
    line-height: 85px;
  }
  .inside-common-hero h1 {
    font-size: 8rem;
  }
  ul.nav-list {
    width: 70%;
  }
}

@media (max-width: 900px) {
  .inside-common-hero h1 {
    font-size: 7rem;
  }
  ul.nav-list {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .inside-nav {
    padding: 0 2rem;
  }
  .heading {
    font-size: 65px;
    line-height: 90px;
  }
}
@media (max-width: 765px) {
  .common-hero {
    height: 70vh;
    width: 100%;
    position: relative;
  }
  .inside-common-hero h1 {
    font-size: 6rem;
  }
  .hidden-nav {
    width: 50vw;
  }
  .h-logo img {
    width: auto;
    height: 5rem;
  }
  .h-logo {
    margin: 0 0rem;
  }
  .about-company {
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer-upper {
    flex-wrap: wrap;
  }
  .quick-links {
    width: 100%;
    margin: 2rem 0;
  }
  .f-img {
    width: 10rem;
  }
  .footer-lower {
    padding-top: 5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hidden-nav {
    width: 65vw;
    height: 100%;
  }
  .sp-font {
    font-size: 55px;
    line-height: 63px;
  }
  .inside-common-hero h1 {
    font-size: 4rem;
  }
  .common-hero {
    height: 55vh;
  }
  .button-52 {
    font-size: 16px;
    padding: 4px 13px 8px;
  }
  .f-img {
    left: 40%;
  }
  .heading {
    font-size: 55px;
    line-height: 65px;
  }
}

@media (max-width: 500px) {
  .inside-common-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 465px) {
  .common-hero {
    height: 45vh;
  }
  .sp-font {
    font-size: 42px;
    line-height: 48px;
  }
  .hidden-nav {
    width: 100vw;
    height: 100%;
  }
  .quick-links {
    flex-direction: column;
  }
  .links {
    margin: 0.5rem 0;
  }
  .about-company {
    margin-bottom: 0rem;
  }
  .f-img {
    left: 36%;
    width: 9rem;
    top: -4rem;
  }
  .footer-lower p {
    font-size: 14px;
  }
}
