/**
 * Extended CSS Reset
 *
 * @format
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Reset all default margins, paddings, and borders */
/*=======================
        General
=======================*/
/* html,
p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--text-color-light);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}
h1 {
  font-size: 54px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
} */
a:hover {
  text-decoration: none;
}
a {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-decoration: none;
}
:focus {
  outline: none;
}
img {
  max-width: 100%;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

/* Utility classes */
.container {
  max-width: 1683px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

img {
  max-width: 100%;
}

/* Custom */
:root {
  --primary-color: #ffcf67;
  --secondary-color: #19191b;
  --text-color-light: #fff;
  --text-color-dark: #2a2a33;
}

body {
  font-family: "Inter", sans-serif;
  color: #fff;
  background-color: #19191b;
  font-weight: 300;
}
.pp-pangaia {
  font-family: "PP Pangaia", sans-serif !important;
  font-style: italic !important;
}

a {
  color: var(--text-color-light);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}

.hamburger-menu {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
  width: 28px;
  height: 28px;
  aspect-ratio: 1 / 1;
  right: 27px;
  top: 31px;
  margin-top: 14px;
}

@media (max-width: 1001px) {
  .hamburger-menu {
    display: flex;
  }
}

.hamburger-menu__bar {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 100px;
  background-color: var(--text-color-light);
  transition: all 0.3s ease-in-out;
}

.hamburger-menu__bar:nth-child(1) {
  top: 6px;
}

.hamburger-menu__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu__bar:nth-child(3) {
  bottom: 6px;
}

.hamburger-menu.toggle .hamburger-menu__bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.toggle .hamburger-menu__bar:nth-child(2) {
  width: 0;
}

.hamburger-menu.toggle .hamburger-menu__bar:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.sec-title {
  font-family: Inter;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.sec-title {
  line-height: 1.35;
  letter-spacing: 2px;
}

.sec-title .pp-pangaia {
  letter-spacing: 0.2px;
}

.sec-txt {
  font-family: Inter;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.sec-desc {
  font-weight: 300;
  font-size: 18.67px;
  line-height: 1;
}

.global-btn {
  display: inline-block;
  font-weight: 500;
  font-size: 18.67px;
  line-height: 1;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 53.33px;
  padding: 16px 21px;
}

.read-more:hover {
  color: var(--primary-color) !important;
}

.read-more-btn {
	position: relative;
	display: flex;
	flex-direction: row;
	gap: 10.67px;
	font-size: 18.67px;
	align-items: center;
}

.read-more-btn::after {
  content: url(../images/arrow-right.svg);
  margin-top: 1px;
  transition: transform 0.3s ease-in-out;
}

.read-more-btn:hover {
  color: var(--primary-color) !important;
}

.read-more-btn:hover::after {
  content: url(../images/arrow-right-yellow.svg);
  transform: translateX(10px) !important;
  filter: none !important;
}

.overlay {
  position: absolute;
  z-index: -1;
}

/* <span class="txt-highlight"></span> */
.txt-highlight {
  color: var(--primary-color);
}
