/* --- FONTS --- */
@font-face {
    font-family: 'GothamRounded';
    src: url('../fonts/GothamRounded-Book.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamRoundedBold';
    src: url('../fonts/GothamRounded-Bold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'JosefinSans';
    src: url('../fonts/JosefinSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Butler';
    src: url('../fonts/Butler_Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ButlerBold';
    src: url('../fonts/Butler_Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/*@font-face {*/
/*    font-family: 'YourFontName';*/
/*    src: url('fonts/medium.ttf') format('truetype');*/
/*    font-weight: 500;  !* Medium font-weight *!*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'YourFontName';*/
/*    src: url('fonts/bold.ttf') format('truetype');*/
/*    font-weight: bold;*/
/*    font-style: normal;*/
/*}*/

:root {
    --black: #000;
    --white: #fff;
    --gray: #B3B3B3;
    --dark-gray: #1a1a1a;
    --transition: 300ms;
    --border-radius: 10px;
    --font-regular: 'GothamRounded', sans-serif;
    --font-bold: 'GothamRoundedBold', sans-serif;
    --number-font: 'JosefinSans', sans-serif;
    --secondary-font-bold: 'ButlerBold', sans-serif;
}

/* --- MAIN COMPONENTS --- */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: var(--font-regular);
    font-size: .95rem;
    font-weight: 500;
    height: -webkit-fill-available;
    color: #fff;
    background-color: #fafafa;
    min-height: calc(100vh - 89px);
    line-height: 1.4;
}

a, button {
    cursor: pointer;
    text-decoration: none;
    color: #000;
    transition: var(--transition);
}

a:hover {
    text-decoration: underline;
    color: var(--white);
}

img, video, iframe {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

img.cover-fit, video.cover-fit, iframe.cover-fit {
    object-fit: cover;
}

.btn:focus {
    box-shadow: unset;
}

::selection {
    background: var(--gray);
    color: var(--white);
}

.text-black {
    color: var(--black) !important;
}

section {
    position: relative;
    overflow: hidden;
}

.page-content {
    min-height: calc(100vh - 180px);
    margin-top: 80px;
    padding-top: calc(48.5px);
}

.pointer {
    cursor: pointer;
}

.main-btn {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 10px 45px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.main-btn:hover {
    text-decoration: unset;
    transform: scale(1.02);
    color: var(--white);
}

.main-btn.black-btn {
    border: 1px solid var(--black);
    color: var(--black);
}

.animation-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 55px;
    background-color: #fff;
    transform: translate(-110%, 0) skew(-30deg);
    transition: 0.5s;
    z-index: 1;
}

.animation-btn.black-btn::before {
    background-color: #000;
}

.animation-btn:hover {
    transform: unset;
}

.animation-btn > span{
    position: relative;
    z-index: 2;
    transition: 500ms;
}

.animation-btn:hover > span{
    color: #000;
    z-index: 2;
}

.animation-btn.black-btn:hover > span{
    color: #fff;
    z-index: 2;
}

.animation-btn:hover::before {
    transform: translate(-5%, 0) skew(-15deg);
}

.main-btn.black-btn:hover {
    color: var(--black);
}

.main-btn.black-fill-btn {
    border: 1px solid var(--black);
    color: var(--white);
    background: var(--black);
}

.main-btn.black-fill-btn:hover {
    color: var(--black);
    background: var(--white);
}

.parallax-image {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
}

/*--- Titles ---*/
h1 {
    font-size: 3.125rem;
    font-family: var(--secondary-font-bold);
}

h2 {
    font-size: 52px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.375rem;
    line-height: 1.4;
}

h6 {
    font-size: 1.25rem;
}

.sec-font {
    font-family: var(--secondary-font-bold) !important;
}
/*--- Margins ---*/
.mb-8 {
    margin-bottom: .5rem;
}

.mb-16 {
    margin-bottom: 1rem;
}

.mb-20 {
    margin-bottom: 1.25rem;
}

.mt-70 {
    margin-top: 4.375rem;
}

.bg, .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dark-overlay {
    background: #000000d9;
    z-index: 1;
}

.text-bold {

    font-family: var(--font-bold);
}

.text-light-gray {
    color: #8D8D8D !important;
}

*:has(> .line-highlight):first-of-type {
    position: relative;
    width: fit-content;
}

.line-highlight {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #8D8D8D;
    height: 1px;
}

.text-gray {
    color: #7C7C7C;
}
