@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Adieu";
  src: url("./fonts/Adieu-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1;
  font-family: "Gilroy", sans-serif;
  background: #090500;
  color: #ffffff;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Adieu", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.button {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.64px;
  color: #ffffff;
  padding: 0.875rem 3rem;
  background: #803a09;
  font-weight: 500;
  clip-path: polygon(10% 0, 100% 0, 100% 69%, 90% 100%, 0 100%, 0 31%);
  transition: 0.3s all;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #803a09, #d7b792);
  transition: 0.8s ease top;
}

.button:hover::after {
  top: 100%;
}

.button span {
  position: relative;
  z-index: 10;
  text-shadow: 0px 1.4px 0 #803a09;
}

/* NAVBAR */

main {
  position: relative;
  z-index: 10;
}

.navbar {
  padding-block: 1.5rem;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.navbar ul li {
  display: flex;
}

.navbar ul a {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #767c8c;
  transition: 0.3s all;
  letter-spacing: 1px;
}

.navbar ul a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Header */

.header {
  position: relative;
  padding-block: 3.5rem;
}

.header .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.header h1 {
  font-size: 4.125rem;
  line-height: 1.1;
  letter-spacing: 2.64px;
  font-weight: 500;
  color: #d9d9d9;
  margin-bottom: 2.5rem;
}

.header h1 span {
  display: inline-block;
  margin-top: 0.5rem;
}

.header p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #a8aebf;
  margin-bottom: 2.5rem;
}

.header__media {
  position: relative;
}

.header__image-background {
  position: absolute;
  top: 0;
  right: 16%;
  width: max-content;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}

.header__media-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.header__media-bottom-center {
  position: absolute;
  bottom: -6.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.header__media-bottom-left {
  position: absolute;
  bottom: -5rem;
  left: 40%;
  object-fit: cover;
  transform: translateX(-50%);
}

.header__media-top-left {
  position: absolute;
  top: 2rem;
  left: 45%;
  object-fit: cover;
  transform: translateX(-50%);
}

/* ABOUT */

.about {
  margin-block: 12.5rem;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1rem;
}

.about__title {
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.36rem;
  text-transform: capitalize;
}

.about__title img {
  display: block;
  margin-bottom: 10px;
}

.about__content-desc {
  color: #a8aebf;
  font-size: 1.125rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.about__security {
  position: relative;
  padding: 0.1875rem;
}

.body__dust-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about__security-wrapper {
  position: relative;
  padding: 1.5rem 1.25rem;
}

.about__security-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  font-weight: bold;
  cursor: pointer;
}

.about__security-title span {
  color: #6e6158;
}

.about__security-desc {
  color: #a8aebf;
  font-size: 1rem;
  line-height: 1.5;
  height: 0;
  overflow: hidden;
  transition: 0.3s all;
}

.features {
  margin-block: 6.25rem;
}

.features__title {
  font-size: 4rem;
  letter-spacing: 0.16rem;
  max-width: 50rem;
  text-align: center;
  margin: 0 auto 4rem;
}

.features__triangle {
  position: relative;
  width: 15rem;
  height: 12rem;
  background: url("./images/polygon-image.png") no-repeat;
  background-size: 100% 100%;
  margin: 0 auto 6rem;
}

.features__triangle img {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features__triangle::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  width: 2px;
  height: 53%;
  background: linear-gradient(#ab8851, #311907);
}

.features__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-end;
  gap: 1.5rem;
  z-index: 10;
  overflow: hidden;
}

.features__card {
  position: relative;
  padding: 2.5rem;
}

.features__card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0 !important;
  object-fit: fill !important;
  z-index: -1;
}

.features__card img {
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.features__card h2 {
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  margin-bottom: 1.5rem;
}

.features__card p {
  color: #a8aebf;
  font-size: 1rem;
  line-height: 1.5;
}

.features__card:nth-child(2),
.features__card:nth-child(5) {
  margin-bottom: 50px;
}

.features__triangle-wrapper {
  position: relative;
}

.features__triangle-left,
.features__triangle-right {
  width: 23rem;
  height: 14.5625rem;
  position: absolute;
  top: 55%;
  padding: 2px;
  border-top: 2px solid #733c01;
}

.features__triangle-left {
  left: 15%;
  border-left: 2px solid #733c01;
}

.features__triangle-right {
  right: 15%;
  border-right: 2px solid #733c01;
}

.features__card-flex {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-block: 2rem;
}

.features__card-flex li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.features__card-flex p {
  color: #a8aebf;
}

.features__card-flex img {
  margin-bottom: 0;
}

.features__card-price {
  font-size: 2.25rem;
  letter-spacing: 2px;
  margin-block: 2rem;
}

.features__card-price span {
  opacity: 24%;
  font-size: 1.25rem;
}

.slider .container {
  margin: 0 0 0 auto;
  max-width: 99.0625rem;
}

.faq {
  margin-block: 6.25rem;
}

.faq__accordion-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq__accordion-trigger h2 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.faq__accordion {
  color: #a8aebf;
  font-size: 1rem;
}

.faq .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
}

.faq__title h2 {
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.1875rem;
  display: none;
}

.faq__desc {
  color: #a8aebf;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.single__faq-accordion {
  position: relative;
  padding: 1.5rem;
}

.single__faq-accordion p {
  color: #a8aebf;
  font-size: 1rem;
  line-height: 1.5;
}

.single__faq-accordion:not(:last-child) {
  margin-bottom: 1.25rem;
}

.single__faq-accordion .svg {
  transition: 0.3s all;
  rotate: 180deg;
}

.single__faq-accordion.active .svg {
  rotate: 0deg;
}

.single__faq-accordion p {
  height: 0;
  overflow: hidden;
  transition: 0.3s all;
}

footer {
  position: relative;
  padding-block: 3rem 1.5rem;
  border-top: 0.125rem solid #ffab1716;
}

.footer__title {
  display: block;
  margin: 0 auto 4rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.footer__social {
  transition: 0.3s all;
}

.footer__social:hover {
  scale: 1.1;
}

.footer p {
  color: #a8aebf;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}

.footer__background {
  position: absolute;
  top: 0;
  right: 0;
}

.about__security-wrapper img {
  opacity: 0;
  transition: 0.3s all;
}

.about__security-wrapper.active img {
  opacity: 1;
}

.hamburger__trigger {
  display: none;
}

@media (max-width: 1250px) {
  .container {
    max-width: 62.5rem;
  }

  .slider .container {
    max-width: 90%;
  }

  .features__triangle-left,
  .features__triangle-right {
    width: 17.7rem;
  }

  .faq .container {
    gap: 3.5rem;
  }

  .header h1 {
    font-size: 3.75rem;
  }

  .header h1 span {
    display: block;
  }

  .features__card {
    padding: 1.75rem;
  }

  .header__media-top-left {
    left: 50%;
  }

  .header__media-bottom-left {
    width: 10rem;
    height: 7.5rem;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 720px;
  }

  .header {
    padding-block: 1rem;
  }

  .header .container {
    gap: 2rem;
  }

  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .header h1 span img {
    max-width: 15rem;
  }

  .header p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .header__media .header__media-image {
    object-fit: contain;
  }

  .header__image-background {
    right: 0;
    width: 25rem;
  }

  .button {
    padding: 0.875rem 2rem;
  }

  .header__media-bottom-left {
    width: 7rem;
    height: 5rem;
    bottom: 4rem;
  }

  .header__media-bottom-center {
    bottom: -0.25rem;
    width: 8rem;
    height: 5rem;
  }

  .header__media-top-right {
    top: 1rem;
  }

  .about__title {
    font-size: 2.8rem;
  }

  .about__title img {
    max-width: 14rem;
    object-fit: contain;
    height: auto;
  }

  .about__content-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .about__security-wrapper {
    padding: 1rem;
  }

  .about__security-title {
    font-size: 1.25rem;
  }

  .about__security-desc {
    font-size: 0.875rem;
  }

  .about {
    margin-block: 3rem;
  }

  .navbar ul {
    gap: 1.5rem;
  }

  .navbar ul a {
    font-size: 1rem;
  }

  .features__title {
    font-size: 2.5rem;
    max-width: 35rem;
    margin-bottom: 2rem;
  }

  .features {
    margin-block: 3.5rem;
  }

  .features__triangle {
    width: 10rem;
    height: 8rem;
  }

  .features__triangle img {
    height: 2rem;
    width: 4rem;
    object-fit: contain;
  }

  .features__triangle-left,
  .features__triangle-right {
    width: 13.9rem;
    height: 11.7rem;
  }

  .features__card {
    padding: 1rem;
  }

  .features__card .featured__traingles-icon {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    margin-bottom: 1rem;
  }

  .features__card h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .features__card p {
    font-size: 0.8125rem;
  }

  .features__card:nth-child(2),
  .features__card:nth-child(5) {
    margin-bottom: 2rem;
  }

  .features__card-flex {
    margin-block: 0.75rem;
  }

  .features__card-price {
    font-size: 1.5rem;
    margin-block: 1rem;
  }

  .features__card-price span {
    font-size: 1rem;
  }

  .button {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
  }

  .faq .container {
    gap: 2rem;
  }

  .faq__title img {
    object-fit: contain;
  }

  .faq__desc {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }

  .single__faq-accordion {
    padding: 0.875rem;
  }

  .faq__accordion-trigger h2 {
    font-size: 1.125rem;
  }

  .single__faq-accordion .svg {
    width: 1rem;
    height: 0.625rem;
    object-fit: contain;
  }

  .single__faq-accordion p {
    font-size: 0.8125rem;
  }

  .faq {
    margin-block: 3.5rem;
  }

  footer {
    padding-block: 1.5rem;
  }

  .footer__title {
    object-fit: contain;
    max-width: 291px;
    height: auto;
    margin-bottom: 2rem;
  }

  .footer__social img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
  }

  .footer__socials {
    margin-bottom: 1rem;
  }

  .footer p {
    font-size: 0.875rem;
  }

  .footer__background {
    width: 15rem;
  }

  .features__triangle::after {
    height: 78%;
  }
}

@media (max-width: 767px) {
  .hamburger__trigger {
    display: block;
  }

  .navbar .button {
    display: none;
  }

  .navbar {
    position: relative;
    padding-block: 1rem;
    z-index: 200;
  }

  .navbar ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 70%;
    background: #090500;
    z-index: 100;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1rem;
    transition: 0.3s all;
  }

  .navbar ul.active {
    left: 0;
  }

  .hamburger__trigger {
    display: flex;
    background: none;
    outline: none;
    border: none;
  }

  .container {
    max-width: 90%;
  }

  .header .container {
    grid-template-columns: 1fr;
  }

  .header__content {
    text-align: center;
  }

  .header h1 span img {
    margin: 0 auto;
  }

  .header__media-top-left,
  .header__media-bottom-left {
    display: none;
  }

  .header__media .header__media-image {
    margin: 0 auto;
  }

  .header h1 {
    font-size: 2.75rem;
  }

  .header__image-background {
    height: auto;
    right: unset;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about__title {
    text-align: center;
  }

  .about__title img {
    margin: 0 auto;
    margin-bottom: 1rem;
  }

  .about .container {
    gap: 2rem;
  }

  .about__title {
    font-size: 2.5rem;
  }

  .about__content-desc {
    text-align: center;
  }

  .about__security-title {
    gap: 1rem;
  }

  .features__triangle-left,
  .features__triangle-right {
    display: none;
  }

  .features__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  .features__card:nth-child(2),
  .features__card:nth-child(5) {
    margin-bottom: 0;
  }

  .features__card {
    padding: 1.5rem;
  }

  .features__triangle {
    margin-bottom: 4rem;
  }

  .features__triangle::after {
    height: 51%;
  }

  .faq__title img {
    display: none;
  }

  .faq__title h2 {
    display: block;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
  }

  .faq .container {
    grid-template-columns: 1fr;
  }

  .faq__desc {
    text-align: center;
  }

  .faq__accordion-trigger h2 {
    font-size: 1rem;
  }

  .single__faq-accordion:not(:last-child) {
    margin-bottom: 1rem;
  }

  .footer__background {
    width: 6rem;
  }

  .footer__title {
    margin-bottom: 1rem;
  }

  .header h1 {
    color: #ffffff;
  }

  .header p,
  .about__content-desc,
  .about__security-desc,
  .features__card p,
  .faq__desc,
  .single__faq-accordion p,
  .footer p {
    font-family: "Adieu";
  }

  .body__lock {
    position: relative;
    overflow-y: hidden !important;
  }

  .body__lock::after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
}
