/* The page is NOT responsive. You can implement responsiveness yourself if you wanna have some fun 😃 */

:root {
  --color-primary: #5ec576;
  --color-secondary: #ffcb03;
  --color-tertiary: #ff585f;
  --color-primary-darker: #4bbb7d;
  --color-secondary-darker: #ffbb00;
  --color-tertiary-darker: #fd424b;
  --color-primary-opacity: #5ec5763a;
  --color-secondary-opacity: #ffcd0331;
  --color-tertiary-opacity: #ff58602d;
  --gradient-primary: linear-gradient(to top left, #39b385, #9be15d);
  --gradient-secondary: linear-gradient(to top left, #ffb003, #ffcb03);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #444;
  line-height: 1.9;
  background-color: #f3f3f3;
}

/* preloader css start */
#preloader {
  background: #eee url(/img/loader.gif) no-repeat center center;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
}
/* preloader css end */
.hamburger {
  display: none;
}

.hamburger .line {
  width: 38px;
  height: 3px;
  background-color: #000;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}
.offcanvas-header .btn-close {
  width: 4rem;
  font-size: 1.5rem;
}
.offcanvas-body .nav__link {
  list-style: none;
}
.nav__link.btn {
  width: 5rem;
}
.offcanvas-header .btn-close {
  width: 4rem;
  font-size: 1.5rem;
}
.offcanvas-body .nav__link {
  list-style: none;
  padding: 0;
}
.nav__link.btn {
  width: 5rem;
}
.nav__link .dropdown-menu {
  transform: translate3d(140px, 214px, 0px) !important;
}
.offcanvas-body .dropdown-menu .nav__link {
  border: none;
  margin-bottom: 3px;
}
.offcanvas-body .nav__item {
  margin-bottom: 1.5rem;

  margin-left: 0;
}
.offcanvas-body .nav__item a {
  border-bottom: 1px solid #000;
}
.grid-view {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.grid-view li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  font-size: 2rem;
  padding: 1.6rem;
  margin: 1rem;
  background-color: #2f2b2b;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

/* back to top button css start  */

#button {
  display: inline-block;
  background-color: #ff9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 65px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  border-radius: 50%;
}
#button::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/* back to top button css end  */

/* GENERAL ELEMENTS */
.section {
  padding: 15rem 3rem;
  border-top: 1px solid #ddd;
  transition: transform 1s, opacity 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section__title {
  max-width: 80rem;
  margin: 0 auto 8rem auto;
}

.section__description {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section__header {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  font-size: 1.6rem;
  font-family: inherit;
  font-weight: 500;
  border: none;
  padding: 1.25rem 4.5rem;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background-color: var(--color-primary-darker);
}

.btn--text {
  display: inline-block;
  background: none;
  font-size: 1.7rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--color-primary);
  border: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

p {
  color: #666;
}

/* This is BAD for accessibility! Don't do in the real world! */
button:focus {
  outline: none;
}

img {
  transition: filter 0.5s;
}

.lazy-img {
  filter: blur(20px);
}
/* social media css */
.social {
  position: fixed;
  top: 30%;
}

.social ul {
  list-style-type: none;
  padding: 0;
  transform: translatex(-260px);
}

.social ul li {
  display: block;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: ease-in-out 0.5s;
  /* transform: translatex(110px); */
}

.social ul li:hover {
  transform: translatex(110px);
}

.social ul li.twitter {
  background-color: #55acee;
}

.social ul li.facebook {
  background-color: #3b5999;
}

.social ul li.linkedin {
  background-color: #053379;
}

.social ul li.instagram {
  background-color: #e4405f;
}

.social ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

.social ul li i {
  text-align: center;
  margin: 0 14px;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 20px;
  transform: rotate(0deg);
}

.social ul li:hover i {
  /*   transform: rotate(360deg); */
  transition: ease-in-out 0.5s;
}
/* NAVIGATION */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9rem;
  width: 100%;
  padding: 0 6rem;
  z-index: 100;
}

/* nav and stickly class at the same time */
.nav.sticky {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
}

.nav__logo {
  height: 4.5rem;
  transition: all 0.3s;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav__item {
  margin-left: 4rem;
}
.nav__item .dropdown-item {
  padding-right: 3rem;
  padding-left: 2rem;
}
.nav__link:link,
.nav__link:visited {
  font-size: 1.7rem;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.nav__link--btn:link,
.nav__link--btn:visited {
  padding: 0.8rem 2.5rem;
  border-radius: 3rem;
  background-color: var(--color-primary);
  color: #222;
}
.nav__link.btn {
  padding: 1rem 1.5rem;
  border-radius: 50%;
}
.nav__link.btn i {
  font-size: 2rem;
}

.nav__link--btn:hover,
.nav__link--btn:active {
  color: inherit;
  background-color: var(--color-primary-darker);
  color: #333;
}

/* HEADER */
.header {
  padding: 0 3rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__title {
  flex: 1;

  max-width: 115rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  row-gap: 3rem;
  align-content: center;
  justify-content: center;

  align-items: start;
  justify-items: start;
}

h1 {
  font-size: 5.5rem;
  line-height: 1.35;
}

h4 {
  font-size: 2.4rem;
  font-weight: 500;
}
h4 small {
  color: var(--color-tertiary);
}
.header__img {
  /* width: 100%; */
  width: 360px;
  grid-column: 2 / 3;
  grid-row: 1 / span 4;
  /* transform: translateY(-6rem); */
}

.highlight {
  position: relative;
}

.highlight::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.7;
  transform: scale(1.07, 1.05) skewX(-15deg);
  background-image: var(--gradient-primary);
}
/* SERVICES START*/
.areas ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4rem;
  margin: 0 12rem;
  text-align: center;
  list-style: none;
}
.areas ul li {
  font-weight: 500;
}
.areas_header {
  font-size: 2rem;
}
.areas ul li a {
  text-decoration: none;
  color: var(--bs-heading-color);
  border-bottom: 2px solid black;
  padding: 10px;
  /* transition: ease-in-out 0.5s; */
}
.areas ul li a:hover {
  padding-bottom: 0.5rem;
  transition: ease-in-out 0.2s;
}
/* SERVICES ENDS*/
/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 0 12rem;
}

.features__img {
  width: 100%;
}

.features__feature {
  align-self: center;
  justify-self: center;
  width: 70%;
  font-size: 1.5rem;
}

.features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-opacity);
  height: 5.5rem;
  width: 5.5rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.features__icon svg {
  height: 2.5rem;
  width: 2.5rem;
  fill: var(--color-primary);
}

.features__header {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* OPERATIONS */
.operations {
  max-width: 100rem;
  margin: 12rem auto 0 auto;

  background-color: #fff;
}

.operations__tab-container {
  display: flex;
  justify-content: center;
}

.operations__tab {
  margin-right: 2.5rem;
  transform: translateY(-50%);
}

.operations__tab span {
  margin-right: 1rem;
  font-weight: 600;
  display: inline-block;
}

.operations__tab--1 {
  background-color: var(--color-secondary);
}

.operations__tab--1:hover {
  background-color: var(--color-secondary-darker);
}

.operations__tab--3 {
  background-color: var(--color-tertiary);
  margin: 0;
}

.operations__tab--3:hover {
  background-color: var(--color-tertiary-darker);
}

.operations__tab--active {
  transform: translateY(-66%);
}

.operations__content {
  display: none;

  /* JUST PRESENTATIONAL */
  font-size: 1.7rem;
  padding: 2.5rem 7rem 6.5rem 7rem;
}

.operations__content--active {
  display: grid;
  grid-template-columns: 7rem 1fr;
  column-gap: 3rem;
  row-gap: 0.5rem;
}

.operations__header {
  font-size: 2.25rem;
  font-weight: 500;
  align-self: center;
}

.operations__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.operations__icon svg {
  height: 2.75rem;
  width: 2.75rem;
}

.operations__content p {
  grid-column: 2;
}

.operations__icon--1 {
  background-color: var(--color-secondary-opacity);
}
.operations__icon--2 {
  background-color: var(--color-primary-opacity);
}
.operations__icon--3 {
  background-color: var(--color-tertiary-opacity);
}
.operations__icon--1 svg {
  fill: var(--color-secondary-darker);
}
.operations__icon--2 svg {
  fill: var(--color-primary);
}
.operations__icon--3 span {
  color: var(--color-tertiary);
  font-size: 2.5rem;
}
/* Verification Module */

.veri-module {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem;
  margin: 0 12rem;
  text-align: center;
  list-style: none;
}
.veri-module p {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 2rem;
}
.veri-size {
  display: flex;
  justify-content: center;
  align-items: center;
}
.veri-size span {
  font-size: 2.5rem;
  padding: 3rem;
  border-radius: 50%;
}
#veri-icon-1 {
  color: #30ce09;
  background-color: #5ee61a26;
  border: 1px solid rgba(42, 189, 12, 0.686);
}
#veri-icon-2 {
  color: #0fd2d5;
  background-color: #1ad3e626;
  border: 1px solid rgba(26, 210, 230, 0.568);
}
#veri-icon-3 {
  color: var(--color-tertiary-darker);
  background-color: var(--color-tertiary-opacity);
  border: 1px solid var(--color-tertiary);
  width: 87px;
}
#veri-icon-4 {
  color: var(--color-secondary-darker);
  background-color: var(--color-secondary-opacity);
  border: 1px solid var(--color-secondary);
}

/* Document suported */
.document_module {
  margin: 0 12rem;
}
.document_module .title {
  max-width: 80rem;
  margin: 0 auto 2rem auto;
  font-size: 3rem;
}
.document_module ul {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  /* text-align: center; */
}
.document_module ul li {
  font-size: 2rem;
  font-weight: 400;
}
/* Verification Module end*/
/* //acordian */
.accordion {
  margin: 0 12rem;
  --bs-accordion-bg: none;
}
.accordion .accordion-button {
  font-size: 2.5rem;
  padding: 2rem 1rem;
}
.accordion-button:hover {
  background-color: none;
  color: var(--color-tertiary);
}
.accordion-button:not(.collapsed) {
  background: none;
}
.accordion .accordion-body {
  font-size: 1.5rem;
  font-weight: 400;
}
.accordion-button:focus {
  box-shadow: none;
  background-color: none;
}
/* Easy Navigation */
.easy-navi-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 12rem;
  list-style: none;
}
.easy-navi-module li {
  font-size: 2rem;
  padding: 1rem;
}
.easy-navi-module li a {
  text-decoration: none;
  color: inherit;
}
.easy-navi-module li a:hover {
  color: var(--color-tertiary);
}
/* SIGNUP */
.section--contact {
  background-color: #37383d;
  border-top: none;
  border-bottom: 1px solid #444;
  text-align: center;
  padding: 10rem 3rem;
}

.section--contact .section__header {
  color: #fff;
  text-align: center;
}

.section--contact .section__title {
  margin-bottom: 6rem;
}

.section--contact .btn {
  font-size: 3rem;
  padding: 2rem 3rem;
  border-radius: 50%;
}

.section--contact .btn-1 {
  background-color: var(--color-secondary);
  margin: 0 1rem;
}
.section--contact .btn-3 {
  background-color: var(--color-tertiary);
  margin: 0 1rem;
}

/* FOOTER */
.footer {
  padding: 10rem 3rem;
  background-color: #37383d;
}

.footer__nav {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.footer__item {
  margin-right: 4rem;
}

.footer__link {
  font-size: 1.6rem;
  color: #eee;
  text-decoration: none;
}

.footer__logo {
  height: 8rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.footer__copyright {
  font-size: 1.4rem;
  color: #d4d2d2;
  text-align: center;
}

.footer__copyright .footer__link {
  font-size: 1.4rem;
}
