/*
      SPACING SYSTEM (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

      FONT SIZE SYSTEM (px)
      10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
      */

/* colors: 
*/

/* Default reset  */
* {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  overflow-x: hidden;
}
/* preloader */
#preloader {
  background: #fff url(../img/preloader.gif) no-repeat center center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  background-size: 15%;
}
/* grid  */
.grid {
  display: grid;
}

.grid--col--2 {
  grid-template-columns: 1fr 1fr;
}

.grid--col--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid--col--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid--col--6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

/* navigation */
.main-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent;
  color: #eee;
  padding: 3.6rem;
  position: absolute;
  z-index: 100;
}

/* .header-logo-box {
} */

.header-logo-box-1 img {
  width: 8rem;
  border-radius: 10%;
  /* box-shadow: 0.2rem 0.2rem #e6e7e5; */
  opacity: 0.5;
}

.header-logo-box img {
  width: 8rem;
  border-radius: 10%;
  /* box-shadow: 0.2rem 0.2rem #e6e7e5; */
  opacity: 0.8;
}

.c-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 3.6rem;
  margin-bottom: 0;
  /* margin-top: 1.2rem; */
}
.c-nav-link:link,
.c-nav-link:visited {
  text-transform: capitalize !important;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: #eee;
}

.c-nav-link:hover,
.c-nav-link:active {
  color: #f7d3ba;
}

/* other navbar */
.hidden-1 {
  display: none;
}

.other-nav {
  min-height: 10.5rem;
  font-size: 1.6rem;
  padding: 1.6rem;
  /* background-color: #ecbe18 !important; */
  background-color: #212121 !important;
  border-bottom: 1px solid #767676;
  /* border-bottom: 1px solid #212121; */
}

.other-nav-list-div {
  justify-content: end;
}

.other-nav-list-div ul {
  gap: 2.4rem;
  justify-content: center;
  align-items: center;
}

.nav-link:link,
.nav-link:visited {
  font-size: 2rem;
  color: #fff !important;
  font-weight: 300;
  box-sizing: border-box;
  padding: 0.6rem 1.2rem;
  font-weight: 400;

  transition: all 0.1s;
}

.nav-link:hover,
.nav-link:active {
  color: #fff !important;
  /* background-color: #857b59; */
  background-color: #1a1a1a;
  font-weight: 400;
  border-radius: 5px;
}

/* heading  */
.heading-secondary {
  color: #555;
  font-size: 3.6rem;
  font-weight: 400;
  margin-bottom: 2.4rem;
}

.heading-secondary-helper {
  color: #ecbe18;
  font-size: 10rem;
  letter-spacing: 4rem;
  line-height: 8rem;
  font-weight: 100;
  text-transform: capitalize !important;
  /* margin-bottom: 1rem; */
}

.center-title {
  text-align: center;
}

/* General text  */
.general-text {
  color: #333;
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 4.8rem;

  font-weight: 300;
}

.footer {
  margin-top: 9.6rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
  align-items: center;
  gap: 1.2rem;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

.social-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-link:link,
.social-media-link:visited {
  font-size: 2.4rem;
  text-decoration: none;
  color: #888;
}

.social-media-link:hover,
.social-media-link:active {
  color: #777;
}

.logo-footer {
  width: 12rem;
  border-radius: 10%;
  box-shadow: 0.2rem 0.2rem #e6e7e5;
  opacity: 0.8;
}

.copyright {
  font-size: 1.6rem;
  color: #aaa;
  text-align: center;
  /* line-height: 0; */
}

.developer {
  font-size: 1.4rem;
  color: #999;
  line-height: 0;
}

.developer a:link,
.developer a:visited {
  font-size: 1.4rem;
  color: #999;
  text-decoration: underline;
  line-height: 0;
}

.nav-clr,
.navbar-toggler {
  background-color: #e6e7e5 !important;
}
