/* ============== ANIMATION ============== */

@keyframes btnclick {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* ============== GLOBAL ============== */

h1, h2, h3, h4, h5, h6 {
	font-family: Inter;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	color: rgba(51, 48, 47, 1);
}

/* ============== HERO ============== */

.hero-section {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
	padding: 0;
    background: var(--styx-base-color-1);
}

@supports not (height: 100dvh) { .hero-section { height: 100vh; } }

.hero-section h1 {
	font-family: Inter;
    font-size: 1.15rem;
    font-weight: 300;
    margin: -0.5rem 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.extra-bg {
    position: absolute;
	top: 0;
    width: 100%;
	height: 100%;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
    width: 100%;
    height: 100%;
}

.bg-overlay{
	position:absolute;
	background:radial-gradient(75% 64% at 50% 50%,var(--styx-base-color-1) 18%,var(--styx-base-color-3));
    height: calc(100% - 80px);
    width: calc(100% - 80px);
    inset: 40px;
    box-sizing: border-box;
	opacity: .1;
	z-index:2
}
.bg-wrapp{
	position: absolute;
    height: calc(100% - 80px);
    width: calc(100% - 80px);
    inset: 40px;
    box-sizing: border-box;
	/*-webkit-filter:grayscale(1);*/
	/*filter:grayscale(1);*/
	opacity:.45;
	z-index:1;
	overflow: hidden;
}
.bg-wrapp > .hero-poster,
.bg-wrapp > .v-background {
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.bg-wrapp > .hero-poster {
  opacity: 1;
  transition: opacity .35s ease;
  will-change: opacity;
}
.bg-wrapp.is-video-ready > .hero-poster {
  opacity: 0;
  pointer-events: none;
}
.v-background{
  object-fit:cover;
  display:block;
  object-position:50% 50%
}
	
.hero-section .content {
	position: absolute;
	top: 0;
}

.hero-section .content .logo {
	max-width: calc(4 * 3.4rem);
    margin: 0 0 -0.8rem;
}

.hero-section .content h2 {
	font-family: Rubik;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 4rem;
}

.discover-button {
	position: relative;
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid rgba(51, 48, 47, 1);
    background-color: transparent;
	backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(51, 48, 47, 1);
    font-family: Inter;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
	font-weight: 500;
    text-decoration: none;
    cursor: pointer;
	overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.discover-button:hover {
	background-color: rgba(51, 48, 47, 1);
	color: rgba(229, 228, 226, 1);
}

.discover-button .ripple {
    position: absolute;
	width: 50px;
	height: 50px;
	background-color: rgba(248, 244, 230, 1);
	border-radius: 50%;
	pointer-events: none;
	
	transform: translate(-50%, -50%) scale(0);
	transform-origin: center;
	
	animation: btnclick 0.7s ease-out;
}

/* ============== ABOUT ============== */
.about-section {
	background: var(--styx-base-color-1);
	padding: 80px;
}

.about-section .content {
	flex-direction: row;
	align-items: flex-start;
	box-sizing: border-box;
	gap: 100px;
}

.about-section .content .content-left,
.about-section .content .content-right {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.about-section .content img {
    height: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.content-left img {
	display: none;
	visibility: hidden;
}

.about-section h2 {
  font-family: Rubik;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-title {
	font-family: Rubik !important;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
}

.about-section h3 {
  font-family: Rubik;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.03em;
  margin: 0;
}

.about-section li {
  font-family: Inter;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: rgba(32, 30, 29, 1);
}
/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */
@media (hover: none) and (pointer: coarse) {

.discover-button {
	font-size: 0.8rem;
}

.content .content-left {
    min-height: calc(var(--vh) * 60);
    flex: none;
}

.content .content-right {
    height: 0;
	display: none !important;
}

.content .content-right h2 {
    font-size: clamp(3.8rem, 14vw, 8rem);
}

.content .content-right h1 {
    font-size: clamp(1.1rem, 5vw, 1.88rem);
    margin: 0 0 2rem 0;
}

.about-section {
    padding: 0 5vw 24px;
}

.about-title {
	font-family: Rubik !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    margin: 0 !important;
    padding: 0 0 12px !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.about-section h2 {
    order: 1;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-block {
	order: 3;
}

.about-section h2 {
    margin: 0;
}

.about-section .content {
	display: flex;
    flex-direction: column;
	align-items: center;
	padding: 0;
}

.content-left img {
	display: inline-block;
	visibility: visible;
	order: 2;
}

.content-right img {
	display: none;
	visibility: hidden;
}

.about-section .content img {
    width: 100%;
    margin: 0;
}

.about-section .content p {
    margin-bottom: 0;
}

.title-line {
	position: relative;
    left: auto;
    width: 40px;
    height: 2px;
    background-color: #A8A9AD;
    margin: 12px 0;
    order: 3;
}

#globe-container {
    aspect-ratio: 1 / 1;
}
}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {
.about-section h1 {
    order: 2;
    margin-top: 1rem;
    font-size: 2.5rem;
}
}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {
.hero-section .content .content-right {
    flex: 1.4;
}

.content .content-right h2 {
    font-size: 6.8rem;
}

.about-section .content img {
    max-width: 600px;
}
}