* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;

  overflow-x: hidden;
}

body {
  font-family: "rubik", "noto serif armenian", sans-serif;
  line-height: 1;
  font-weight: 400;
  background-color: #c5c8c6;

  overflow-x: hidden;
}

/**********************************************/
/* GENERAL REUSABLE COMPONENTS ****************/
/**********************************************/
.container {
  max-width: 180rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 4.6rem;
}

.grid--2-col {
  grid-template-columns: 1fr 1fr;
}
.grid--3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.heading-primary {
  font-size: 5.2rem;
  letter-spacing: 0.15rem;
  text-shadow: 0 0 2.5rem #000000;
}

.heading-secondary {
  font-size: 4.6rem;
  letter-spacing: 0.15rem;
  text-shadow: 0 0 5rem #000000;
}

.heading-tertiary {
  font-size: 3rem;
  letter-spacing: 0.15rem;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  padding: 1.6rem 3.2rem;
  border-radius: 5px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  transition: all 0.3s;
}

/* HELPER/SETTINGS CLASSES *********************/

.center-text {
  text-align: center;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center {
  display: flex;
  flex-direction: column;
  align-content: center;
  /* justify-self: center; */
}

/********************************************/
/* HEADER *******************************/
/********************************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #014421;

  height: 9.6rem;
  padding: 3.2rem;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.7);
  z-index: 60;
}

.header-site-name:link,
.header-site-name:visited {
  font-size: 3.6rem;
  font-family: "Noto Serif Armenian", "Francois One", "Bree Serif", Arial,
    sans-serif;
  font-weight: 700;

  color: black;
  text-decoration: none;
  transition: all 0.3s;
}

.header-site-name:hover,
.header-site-name:active {
  text-shadow: 0 0 0.5rem #0eb25d;
}
/********************************************/
/* Navigation *******************************/
/********************************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;

  gap: 4.8rem;
}

.nav-icon-cthulu {
  height: 5rem;
  width: auto;
}
.nav-icon-cthulu:hover,
.nav-icon-cthulu:active {
  scale: 1.5;
}
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  text-justify: distribute-all-lines;
  color: black;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  transition: all 0.5s;
}

.main-nav-link:hover,
.main-nav-link:active {
  text-shadow: 0 0 0.7rem #0eb25d;
}

/****MOBILE NAV  *******************/

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}
.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/********************************************/
/* FOOTER************************************/
/********************************************/

.footer-grid {
  display: grid;
  /* column-gap: 5.8rem; */
  grid-template-columns: 3fr 2fr 3fr;
  /* align-items: center; */
  /* display: flex;
  justify-content: space-between; */
  row-gap: 4.6rem;
  padding: 3.2rem;

  background-color: #a1aca6;
  border-top: 1rem solid #014421;
}

.footer-site-name:link,
.footer-site-name:visited {
  font-size: 3.6rem;
  font-family: "Noto Serif Armenian", "Francois One", "Bree Serif", Arial,
    sans-serif;
  font-weight: 700;
  margin-bottom: 3.2rem;
  margin-right: auto;

  color: black;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-site-name:hover,
.footer-site-name:active {
  text-shadow: 0 0 10px rgba(1, 68, 33, 0.767);
}

.logo-col {
  display: flex;
  flex-direction: column;
  max-width: 35rem;
  color: black;
}
.logo-col-text {
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}

.social-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  margin-bottom: 2.4rem;
}

.footer-link {
  text-decoration: none;
  line-height: 1.3;
}

.social-link {
  height: 2rem;
  width: 2rem;
  color: black;
}

.copyright {
  font-size: 1.2rem;
  margin-top: auto;
}

.company-link:link,
.company-link:visited {
  text-decoration: none;

  font-weight: 500;
  color: #014421;
}

.footer-nav-link {
  display: flex;

  justify-content: center;
}

.footer-nav-link .nav-icon-cthulu {
  width: 6rem;
  height: 6rem;
}

.footer-nav-list {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.nav-col {
  width: 16rem;
}
.footer-nav-list .nav-col:first-child {
  width: 10rem;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.4rem;
  color: #151515;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  font-weight: 600;
  color: #050505;
}
