@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* global CSS */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-size: 1.8rem;
  font-family: "Urbanist", sans-serif;
  background-color: #f8f5ee;
}
:root {
  --black-color: #000000;
  --heading-color: #311643;
  --blue: #0146b1;
  --light-blue: #326cc3;
  --light-green: #b3fd4c;
  --white-color: #ffffff;
  --white-light: #f8f5ee;
  --red: #ff2102;
}
.btn-sign {
  background-color: #0146b1;
  font-size: 2rem;
  padding: 1rem 1rem;
  width: 15rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border-radius: 0.5rem;
}

.btn-login {
  background-color: var(--blue);
  font-size: 2rem;
  padding: 0.7rem 5rem;
  color: #fff;
  width: 100%;
}
.btn-sign:hover,
.btn-login:hover {
  background-color: var(--light-blue);
  color: var(--white-color);
}
.bg-gray {
  background: rgb(255, 255, 255, 0.7);
  color: #311643;
}

.postings-btn {
  background: var(--red);
  font-size: 1.9rem;
  color: var(--white-color);
  border-radius: 0.5rem;
  position: absolute;
  right: 6%;
  top: 180px;
  z-index: 9;
}

.btn-trasnperent:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.section-heading {
  font-size: 3rem;
  color: var(--heading-color);
  font-weight: 700;
}
.section-heading span {
  color: var(--blue);
}
section {
  padding: 5rem 0;
  overflow: hidden;
}
.mail-link {
  color: var(--blue) !important;
  font-weight: 500;
  text-decoration: none;
}

.bg-red-btn {
  background-color: #ff2100;
}
.btn-trasnperent {
  font-size: 1.9rem;
  font-weight: 500;
  margin-left: 2rem;
  color: #fff;
  min-width: 9rem;
  border-radius: 0.5rem;
  outline: 0;
  background: #ff2100;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-trasnperent:hover,
.bg-red-btn:hover,
.postings-btn:hover {
  background-color: #e02103;
  color: #fff;
}
.bg-red {
  background-color: #ff2100;
}
.bg-red:hover {
  background: #e02003dc;
}
.blue-tr-btn {
  background-color: transparent;
  border: 1px solid blue;
}
.blue-tr-btn:hover {
  background: #326cc3;
}
.opacity-0 {
  opacity: 0;
}
p {
  font-size: 1.9rem;
  font-weight: 500;
}

/* onscroll animation */
.js-scroll {
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  -webkit-animation: fade-in 0.5s ease-in-out both;
  animation: fade-in 0.5s ease-in-out both;
}

.scrolled.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.5s ease-in-out both;
  animation: fade-in-bottom 0.5s ease-in-out both;
}

.scrolled.slide-left {
  -webkit-animation: slide-in-left 0.5s ease-in-out both;
  animation: slide-in-left 0.5s ease-in-out both;
}
.scrolled.slide-left-own {
  -webkit-animation: slide-in-left-own 0.5s ease-in-out both;
  animation: slide-in-left-own 0.5s ease-in-out both;
}

.scrolled.slide-right {
  -webkit-animation: slide-in-right 0.5s ease-in-out both;
  animation: slide-in-right 0.5s ease-in-out both;
}

.scrolled.scale {
  -webkit-animation: scale-in-full 0.5s ease-in-out both;
  animation: scale-in-full 0.5s ease-in-out both;
}
@-webkit-keyframes scale-in-full {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-full {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-left-own {
  0% {
    -webkit-transform: translate(-70%, -50%);
    transform: translate(-70%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes slide-in-left-own {
  0% {
    -webkit-transform: translate(-70%, -50%);
    transform: translate(-70%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* header */
.navbar-toggler {
  font-size: 1.5rem;
}

header {
  background-color: var(--blue);
}
.navbar {
  background: var(--menu-bg) !important;
  color: var(--white-color);
}
.navbar-nav {
  gap: 1rem;
}
.navbar-brand img {
  max-width: 400px;
}
.navbar-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.navbar-dark .navbar-nav .nav-link {
  color: var(--white-color);
  font-weight: 500;
  font-size: 1.9rem;
  border: 1px solid #326cc3;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
}
.login-button a {
  border: 0.2rem solid #b3fd4c;
  font-size: 1.7rem;
  border-radius: 0.5rem;
}
.login-button a:hover {
  background-color: #b3fd4c;
  color: #0146b1 !important;
}

/* hero section style  */
.hero-section {
  background: var(--light-green);
  padding: 0.9rem 0;
  position: relative;
}
.hero-bg-image img {
  width: 100%;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ff2100;
  background-position: center;
  padding: 5rem 2rem;
  border-radius: 5rem;
  color: var(--white-color);
  text-align: center;
  -webkit-box-shadow: 1px -1px 3px 0px #0146b1, -1px 1px 3px 0px #0146b1;
  box-shadow: 1px -1px 3px 0px #0146b1, -1px 1px 3px 0px #0146b1;
}
.hero-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
}
.hero-content h1 {
  font-size: 3.8rem;
  font-weight: bold;
  margin: 1.5rem 0;
}
.hero-content p {
  font-size: 2rem;
  margin-top: 1rem;
  line-height: 125%;
  font-weight: 600;
}
/* we-do-section */
.we-do-section {
  padding: 7rem 0;
}
/* testimonial-section"  */
.testimonial-section {
  background: #b3fd4c;
}
.testimonial-section .item {
  background: rgb(255, 255, 255, 0.5);
  padding: 3rem 2rem;
  border-radius: 0.5rem;
}
.testimonial-section .item p {
  color: #311643;
  font-weight: 500;
  line-height: 135%;
}

.list li {
  margin: 0.5rem 0;
  font-weight: 500;
}
/* testimonial-section"  */
.testimonial-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 100%;
}
.testimonial-section .item {
  background: rgb(255, 255, 255, 0.9);
  padding: 4rem 3rem;
  border-radius: 0.5rem;
}
.testimonial-section .item p {
  color: #311643;
  font-weight: 500;
  line-height: 155%;
}

.owl-carousel {
  width: 100%;
}

/* Login page style */
.login-section {
  background-color: var(--light-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10rem 0;
}
.login-frm {
  background: rgb(255, 255, 255, 0.4);
  padding: 7rem 5rem;
  position: relative;
  z-index: 99;
  -webkit-backdrop-filter: 5rem;
  backdrop-filter: 5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.2);
}

.login-frm .input-field {
  margin: 1rem 0;
}
.login-frm .input-field input {
  padding: 0.7rem 1rem;
  font-size: 1.8rem;
  border-radius: 0.5rem;
}
.login-frm .input-field label {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--heading-color);
}
.login-frm label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.login-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.forget-pass {
  text-decoration: none;
  color: var(--heading-color);
}
.bulleting-board {
  position: relative;
}
.bulleting-board::after {
  content: "";
  position: absolute;
  bottom: 2.5%;
  left: 53%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  height: 20%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-filter: blur(5px);
  filter: blur(7px);
}
.bulleting-board-txt {
  position: absolute;
  left: 57%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -3rem;
}
/* signup page */
.signup-frm {
  padding: 7rem 3rem;
}
.underline {
  text-decoration: underline;
}

footer p {
  margin-top: 1rem;
  font-weight: 500;
}

/* blur loading */
.blur-load {
  background-size: cover;
  background-position: center;
}
.blur-load img {
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 90vh;
}
.blur-load > img {
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}
.blur-load.loaded > img {
  opacity: 1;
}

/* bulletin board page stye */
.bulleting-board-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: var(--light-green);
}
.bulletin-board {
  background: url(../media/img/bulletin-board.jpeg);
  background-position: center;
  background-size: 100% 100%;
  padding: 5rem 10rem;
  color: #fff;
  position: relative;
}
.hands {
  position: absolute;
  right: 4%;
  top: 50px;
  width: 22rem;
}
.hands img {
  width: 100%;
  border-radius: 0.5rem;
  border: 0.2rem solid var(--red);
}
.board-heading {
  font-size: 3.7rem;
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 800;
  color: #f8f5ee;
  position: relative;
  z-index: 9;
}
.bulletin-board-frm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.bullein-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.bullein-field input,
.bullein-field select,
.bullein-field textarea {
  font-size: 1.8rem;
  width: 15rem;
}

.bullein-field textarea {
  width: 100%;
  height: 28rem;
  resize: none;
}
.bullein-field label {
  font-weight: 600;
}
/* category-section */
.category-section {
  background: var(--light-green);
  padding-top: 1rem;
  padding-bottom: 12rem;
}
.row-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
}

.category {
  background: rgb(255, 255, 255, 0.4);
  padding: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.4);
  -ms-flex-preferred-size: 18%;
  flex-basis: 18%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.category:hover {
  -webkit-box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 1);
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 1);
}
.category:hover .category-content {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.category-heading {
  background: var(--red);
  color: var(--white-color);
  text-align: center;
  font-size: 2.3rem;
  font-weight: 600;
  padding: 0.6rem 0;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.category-content {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  margin-bottom: 0;
  padding-left: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.category-content li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1.8px solid rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  color: var(--heading-color);
}
.category-content li span {
  width: 0.6rem;
  height: 0.6rem;
  background: var(--heading-color);
  border-radius: 50%;
}
.category-content li {
  font-weight: 500;
  font-size: 1.9rem;
}
.category-content li:last-child {
  border-bottom: 0;
}

.category-content p {
  margin-bottom: 0;
}
.category-content span {
  font-weight: 700;
}

/* mechanic-info-page */
.mechanic-info-page {
  background-color: var(--light-green);
  padding-top: 5rem;
  padding-bottom: 1rem;
}
.mechanic-info {
  background: -o-linear-gradient(
      rgb(255, 255, 255, 0.5),
      rgb(255, 255, 255, 0.4)
    ),
    url(../media/img/bg.svg);
  background: -o-linear-gradient(
      rgb(255, 255, 255, 0.5),
      rgb(255, 255, 255, 0.4)
    ),
    url(../media/img/bg.svg);
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(255, 255, 255, 0.5)),
      to(rgb(255, 255, 255, 0.4))
    ),
    url(../media/img/bg.svg);
  background: -o-linear-gradient(
      rgb(255, 255, 255, 0.5),
      rgb(255, 255, 255, 0.4)
    ),
    url(../media/img/bg.svg);
  background: linear-gradient(rgb(255, 255, 255, 0.5), rgb(255, 255, 255, 0.4)),
    url(../media/img/bg.svg);
  padding: 3rem 2rem;
  border-radius: 1rem;
  width: 90%;
  margin: 2rem auto;
}
.desc {
  font-size: 2rem;
  color: var(--heading-color);
}
.bulleting-board-mechanic-page {
  width: 50%;
  margin: auto;
  margin-top: 6rem;
}

/* thankyou-section */
.thankyou-section {
  background: var(--light-green);
  height: 92vh;
  text-align: center;
  position: relative;
}
.thank-you-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.thank-you-inner h2 {
  background: var(--red);
  padding: 1rem 1.5rem;
  font-size: 4.5rem;
  color: var(--white-color);
  border-radius: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  display: inline-block;
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.thank-image {
  max-width: 45rem;
  margin: auto;
}
.thank-image img {
  width: 100%;
}

/* affiliate-section page style */
.affiliate-section {
  background: var(--light-green);
}
.affiliate-header {
  background-color: var(--red);
  padding: 3rem 5rem;
}
.affiliate {
  position: relative;
  border-radius: 1rem;
}
.affiliate-header {
  border-radius: 1rem 1rem 0 0;
}
.affiliate-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white-color);
}
.affiliate-main {
  background: -o-linear-gradient(
      rgb(255, 255, 255, 0.5),
      rgb(255, 255, 255, 0.5)
    ),
    url(../media/img/bg.svg);
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(255, 255, 255, 0.5)),
      to(rgb(255, 255, 255, 0.5))
    ),
    url(../media/img/bg.svg);
  background: -o-linear-gradient(
      rgb(255, 255, 255, 0.5),
      rgb(255, 255, 255, 0.5)
    ),
    url(../media/img/bg.svg);
  background: linear-gradient(rgb(255, 255, 255, 0.5), rgb(255, 255, 255, 0.5)),
    url(../media/img/bg.svg);
  /* background: rgb(255, 255, 255, 0.5); */
  padding: 2rem 5rem;
  border-radius: 0 0 1rem 1rem;
}
.affiliate-main h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3rem;
}
.affiliate-img {
  width: 25rem;
  position: absolute;
  top: -25px;
  right: 70px;
}

/* another thankyou page */
.remineded {
  background-color: var(--red);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.712);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.712);
  padding: 1rem 3rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  border-radius: 1rem;
  text-decoration: none;
}
.remineded h3 {
  font-size: 3rem;
  color: var(--white-color);
  font-weight: 700;
}
.remineded p {
  color: var(--white-color);
}
/* posts-section */
.posts-section {
  background-color: var(--light-green);
  padding-bottom: 9rem;
}
.posts-left,
.posts-right {
  background: rgb(255, 255, 255, 0.4);
  -webkit-box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}

.posts-left {
  text-align: center;
  padding: 4rem 1rem;
  margin-right: 1rem;
}
.posts-left img {
  width: 90%;
  border: 0.3rem solid var(--red);
  border-radius: 1rem;
}
.action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
}
.action a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.action a:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.action a img {
  width: 2.5rem;
}
.popup-head {
  width: 22% !important;
}
.view-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.view-popup.active {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  width: 75%;
  background: rgb(255, 255, 255, 0.7);
}
.popup-clouse {
  font-size: 5rem;
  color: var(--red);
  cursor: pointer;
  position: absolute;
  top: 5%;
  right: 5%;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  padding: 1.5rem 1rem !important;
}
