@font-face {
font-family: "Monst";
src: url("/assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("opentype");
font-weight: 700, 500;
font-style: normal;
font-display: auto;
font-display: swap;
}

@font-face {
font-family: "Fraunces";
src: url("/assets/fonts/Fraunces/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf") format("opentype");
font-weight: 700;
font-style: normal;
font-display: auto;
font-display: swap;
}

:root {
    --color-light: hsl(0, 0%, 100%);
    --Dark-cyan: hsl(158, 36%, 37%);
    --Cream: hsl(30, 38%, 92%);
    --Very-dark-blue: hsl(212, 21%, 14%);
    --Dark-grayish-blue: hsl(228, 12%, 48%);
    --animation-primary: 1s ease;
    --border-radius: 0.8em;
    --container-padding: 25vw;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


li,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: 'Hanken', sans-serif;
    color: var(--color-dark);
    line-height: 1.1;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    font-size: clamp(18px, 1.2vw, 19px);
   background-color: var(--Cream);
}

html,
body {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
   
}


canvas,
img,
video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

svg {
    max-width: none;
    height: auto;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul,
ol,
span,
strong,
em {
    padding: 0;
    margin: 0;
    font-style: normal;
    font-weight: 500;
    letter-spacing: normal;
}

h2 {
    font-family: 'Fraunces', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    line-height: 1.1;
    color: var(--color-white);
}

h4 {
    font-family: 'Monst', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    line-height: 0.70;
     letter-spacing: 2px;
    color: var(--color-dark);
    opacity: 0.54;
    text-transform: uppercase;
}

p {
     font-family: 'Monst', sans-serif;
     font-style: normal;
     font-family: 500;
     color: var(--color-dark);
     font-size: 0.9rem;
    opacity: 0.64;
}

/*-------------------------format--------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.flex-col {
    display: block;
    width: 100%;
    order: 2;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

img.overlay {
    object-fit: cover;
}
.container {
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

@media screen and (max-width: 720px){
    .container {
    padding-left: 3vw ;
    padding-right: 3vw;
}
   .section {
    position: relative;
    padding-top: 4vw ;
    padding-bottom: 4vw;
}
}

.btn-row {
    width: 100%;
    position: relative;
    display: flex;
}

.btn {
    position: relative;
    border: 0;
    outline: 0;
}


.btn .btn-click {
    cursor: pointer;
    border: 0;
    outline: 0;
    background-color: var(--Dark-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    padding: 13px;
    overflow: hidden; /* Ensure the pseudo-element doesn't exceed the button bounds */
    position: relative;
}

.btn .btn-click::before {
   content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--Very-dark-blue);
    opacity: 0;
    transition: var(--animation-primary); /* Adjust the duration and timing function */
    border-radius: inherit; /* To match the button's border-radius */
}

.btn .btn-click:hover::before {
    opacity: 1;
}

.btn .btn-text {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--color-light);
    position: relative; /* To ensure text appears above the pseudo-element */
}