/* Home Page */

@font-face {
  font-family: "Rubik-Regular";
  src: url("../fonts/Rubik-Regular.ttf");
}

@font-face {
  font-family: "Rubik-Medium";
  src: url("../fonts/Rubik-Medium.ttf");
}

@font-face {
  font-family: "Rubik-SemiBold";
  src: url("../fonts/Rubik-SemiBold.ttf");
}
@font-face {
  font-family: "Rubik-Bold";
  src: url("../fonts/Rubik-Bold.ttf");
}

@font-face {
  font-family: "Rubik-Black";
  src: url("../fonts/Rubik-Black.ttf");
}

:root {
  --regular: "Rubik-Regular";
  --medium: "Rubik-Medium";
  --semibold: "Rubik-SemiBold";
  --bold: "Rubik-Bold";
  --black: "Rubik-Black";
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--regular);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #757575;
}

::-webkit-scrollbar-track {
  background-color: #eee;
}

a {
  text-decoration: none !important;
  color: #303030 !important;
}

header.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: 80px;
  max-height: 80px;
  transition: 0.2s ease;
}

header.header.scrolled {
  background: #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

header.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.header .logo img {
  width: 60px;
  max-width: 60px;
  min-width: 60px;
  padding: 12px;
}

header.header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

header.header .header-right img.wa-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 3px 0 rgba(0, 0, 0, 0.1);
}

header.header button.contact-us-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 30px;
  border-radius: 30px;
  outline-color: transparent;
  border: none;
  background-color: #303030;
  color: #fff;
}

header.header button.contact-us-btn img {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
}

section.page-wrap {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

section.page-wrap .home-text {
  position: relative;
  padding: 50px 0;
  background: url("../images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

section.page-wrap .home-text img.logo {
  width: 40px;
  max-width: 40px;
}

section.page-wrap .home-text .home-text-wrap {
  max-width: 70%;
  margin: 0 auto;
  padding: 80px 0 50px;
  text-align: center;
}

section.page-wrap .home-text h4 {
  font-family: var(--bold);
  color: #0b0f0d;
  font-size: 4.5rem;
  margin: 20px 0;
}

section.page-wrap .home-text h6 {
  font-family: var(--regular);
  font-size: 1rem;
  color: #616161;
  line-height: 28px;
  max-width: 80%;
  margin: 0 auto;
}

section.page-wrap .home-text h5 {
  display: inline-block;
  font-family: var(--medium);
  font-size: 1.2rem;
  color: #3047ad;
  background: transparent;
  padding: 8px 20px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 6px;
  border-radius: 8px;
}

section.page-wrap .home-text h2 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--bold);
  font-size: 3.5rem;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  width: 100%;
  opacity: 0.05;
  color: #222;
}

section.page-wrap .usp-wrap {
  padding: 60px 0;
}

section.page-wrap .usp-wrap .usp-item {
  text-align: center;
}

section.page-wrap .usp-wrap img {
  width: 60px;
  max-width: 60px;
  min-width: 60px;
}

section.page-wrap .usp-wrap h2 {
  font-family: var(--bold);
  font-size: 3rem;
  text-align: center;
  margin: 10px 0 50px;
}

section.page-wrap .usp-wrap h4 {
  font-family: var(--semibold);
  font-size: 20px;
  margin: 20px 0 10px;
  text-align: center;
}

section.page-wrap .usp-wrap h6 {
  font-family: var(--regular);
  font-size: 14px;
  color: #757575;
  text-align: center;
  max-width: 70%;
  line-height: 26px;
  margin: 0 auto;
}

.contact-wrap {
  padding: 50px 0;
  background: #fbfbfb;
}

.contact-wrap .contact-text .contact-item {
  padding: 15px 0;
}

.contact-wrap .contact-text h6 {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.contact-wrap .contact-text h6 img {
  width: 16px;
  height: 16px;
  max-width: 16px;
  min-width: 16px;
  min-height: 16px;
  max-height: 16px;
}

.contact-wrap .contact-text h4 {
  font-family: var(--semibold);
  font-size: 16px;
  line-height: 24px;
}

footer.footer {
  padding: 20px 0;
  text-align: center;
}

footer.footer p.copy-text {
  margin: 0;
}

/* End of Home Page */

.divider {
  width: 100%;
  height: 1px;
  margin: 10px 0;
}

/* Media Queries */

@media only screen and (max-width: 900px) {
  section.page-wrap .home-text .home-text-wrap {
    max-width: 90%;
    padding-inline: 10px;
  }

  section.page-wrap .home-text h2 {
    font-size: 1.75rem;
  }

  section.page-wrap .home-text h4 {
    font-size: 1.8rem;
  }

  section.page-wrap .home-text h5 {
    font-size: .8rem;
    line-height: 22px;
  }

  section.page-wrap .home-text h6 {
    font-size: .9rem;
    line-height: 22px;
    max-width: 100%;
  }

  section.page-wrap .usp-wrap .usp-item {
    padding: 25px 0;
  }

  section.page-wrap .usp-wrap h2 {
    font-size: 2rem;
    margin: 10px 0 25px;
  }

  section.page-wrap .usp-wrap h6 {
    max-width: 90%;
  }

  footer.footer .copy-text {
    font-size: .7rem;
  }
}
