*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  box-sizing: border-box;
  font-size: 14px;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--main-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.line {
  position: relative;
  overflow: hidden;
  display: flex;
}
.line div {
  visibility: hidden;
}

/* Fonts */
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "eina01-bold";
  src: url("../fonts/eina01-bold.woff2");
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "NeueHaasUnicaW1G-Light";
  src: url("../fonts/NeueHaasUnicaW1G-Light.woff2");
}
.page-content {
  --main-color: #fff;
  --secondary-color: #9b700a;
  --text-color: #333;
  --accent-color: #a1a1a1;
  --header-font: "eina01-bold";
  --text-font: "NeueHaasUnicaW1G-Light";
}
a {
  text-decoration: none;
  color: var(--text-color);
}
a:hover {
  text-decoration: none;
  color: var(--text-color);
}

/*change color of text highlight*/
::-moz-selection {
  color: var(--main-color);
  background: var(--text-color);
}

::selection {
  color: var(--main-color);
  background: var(--text-color);
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--text-color);
  border-radius: 6px;
}

/************************ Hero-Section *****************************/
#hero {
  margin-top: 10%;
}
.hero-intro {
  margin: 3%;
}
#return_link {
  margin-left: 65%;
  margin-bottom: 40%;
}
#return-link_img {
  width: 60%;
}
#return_link h6 {
  color: var(--text-color);
  letter-spacing: 1px;
  font-family: var(--text-font);
  font-size: 2vh;
}
.hero-intro h1 {
  color: var(--text-color);
  letter-spacing: 1px;
  font-family: var(--header-font);
  font-size: 4vh;
}
.hero-intro p {
  color: var(--text-color);
  letter-spacing: 1px;
  font-family: var(--text-font);
  line-height: 1.3;
  font-size: 2.2vh;
}
#check__icon {
  width: 20%;
  margin-top: 10%;
}
#p_tag {
  margin-top: 5%;
}
#check__icon_p {
  width: 8%;
}
.hero-intro a {
  color: var(--text-color);
  letter-spacing: 1px;
  font-family: var(--header-font);
  font-size: 2.5vh;
  margin-top: 5%;
}
.hero-intro a span {
  border-bottom: 1px solid var(--text-color);
}

/********************** Extra small devices (portrait phones, less than 576px) ****************************/
@media (max-width: 575.98px) {
  body {
    display: none;
  }
}
/************************ Small devices (landscape phones, 576px and up) *****************************/
@media (min-width: 576px) and (max-width: 767.98px) {
  body {
    display: none;
  }
}
/***************************** Medium devices (tablets, 768px and up) ********************************/
@media (min-width: 768px) and (max-width: 991.98px) {
  body {
    display: none;
  }
}
/********************************** Large devices (desktops, 992px and up) *********************************/
@media (min-width: 992px) and (max-width: 1199.98px) {
  body {
    display: none;
  }
}
/************************ Extra large devices (large desktops, 1200px and up) ********************************/
@media (min-width: 1200px) {
  /****** Hero-Section ******/
  #hero {
    margin-top: 2%;
  }
  .hero-intro {
    margin: 3%;
  }
  #return_link {
    margin-left: 85%;
    margin-bottom: 12%;
  }
  #return-link_img {
    width: 30%;
  }
  #return_link h6 {
    font-size: 1.8vh;
  }
  .hero-intro h1 {
    font-size: 4vh;
  }
  .hero-intro p {
    font-size: 2.3vh;
  }
  #check__icon {
    width: 3%;
    margin-top: 2%;
  }
  #p_tag {
    margin-top: 1%;
  }
  #check__icon_p {
    width: 2%;
  }
  .hero-intro a {
    font-size: 2.5vh;
    margin-top: 5%;
  }
}

/************************ Extra large devices (extra large desktops, 1900px and up) ********************************/
@media (min-width: 2000px) {
  body {
    display: none;
  }
}
