/* font.css */
@font-face {font-family: Adobe-Caslon-Pro-Regular; font-style: normal;font-display: swap;src: url(/fonts/Adobe-Caslon-Pro-Regular.ttf) format("woff"), url(/fonts/Adobe-Caslon-Pro-Regular.ttf) format("woff2");}
@font-face {font-family: Adobe-Caslon-Pro-Italic; font-style: normal;font-display: swap;src: url(/fonts/Adobe-Caslon-Pro-Italic.ttf) format("woff"), url(/fonts/Adobe-Caslon-Pro-Italic.ttf) format("woff2");}

@font-face {font-family: Arimo-Bold; font-style: normal;font-display: swap;src: url(/fonts/Arimo-Bold.ttf) format("woff"), url(/fonts/Arimo-Bold.ttf) format("woff2");}
@font-face {font-family: Arimo-BoldItalic; font-style: normal;font-display: swap;src: url(/fonts/Arimo-BoldItalic.ttf) format("woff"), url(/fonts/Arimo-BoldItalic.ttf) format("woff2");}
@font-face {font-family: Arimo-Italic; font-style: normal;font-display: swap;src: url(/fonts/Arimo-Italic.ttf) format("woff"), url(/fonts/Arimo-Italic.ttf) format("woff2");}
@font-face {font-family: Arimo-Medium; font-style: normal;font-display: swap;src: url(/fonts/Arimo-Medium.ttf) format("woff"), url(/fonts/Arimo-Medium.ttf) format("woff2");}
@font-face {font-family: Arimo-MediumItalic; font-style: normal;font-display: swap;src: url(/fonts/Arimo-MediumItalic.ttf) format("woff"), url(/fonts/Arimo-MediumItalic.ttf) format("woff2");}
@font-face {font-family: Arimo-Regular; font-style: normal;font-display: swap;src: url(/fonts/Arimo-Regular.ttf) format("woff"), url(/fonts/Arimo-Regular.ttf) format("woff2");}
@font-face {font-family: Arimo-SemiBold; font-style: normal;font-display: swap;src: url(/fonts/Arimo-SemiBold.ttf) format("woff"), url(/fonts/Arimo-SemiBold.ttf) format("woff2");}
@font-face {font-family: Arimo-SemiBoldItalic; font-style: normal;font-display: swap;src: url(/fonts/Arimo-SemiBoldItalic.ttf) format("woff"), url(/fonts/Arimo-SemiBoldItalic.ttf) format("woff2");}

h1,h2,h3,h4,h5,h6 {font-family: Adobe-Caslon-Pro-Regular;}

html {scroll-behavior: smooth;}

a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
h6,
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none;
    appearance: none;
    background: none;
    -webkit-font-smoothing: antialiased;
}

a:-webkit-any-link {
    color: #ffffff;
}

a u {
    text-decoration: underline;
}

menu, ol, ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
body {
    background: #222222;
    color: #ffffff;
    font-family: Arimo-Regular;
    font-weight: 500;
}
.container {
    padding: 0px 24px 0px 24px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-width: 1368px;
    position: relative;
}

.section {
    display: flex;
    position: relative;
}

.section-padding-top {
    padding-top: 96px;
}

.color-light {
    color: rgba(255, 255, 255, 0.70);
}

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

.w-100 {
    width: 100%;
}

.button-hover {transition: all 0.3s cubic-bezier(0.86, 0.43, 0.05, 0.62);}
a.button-hover:hover,
button.button-hover:hover {color: white !important;}
a.button-hover:after,
button.button-hover:after {content: "";position: absolute; top: 0; left: 50%; width: 0%; height: 100%; background: #de9540; transition: all 0.3s cubic-bezier(0.86, 0.43, 0.05, 0.62); z-index: 0; opacity: 0;}
a.button-hover:hover:after,
button.button-hover:hover:after {left: 0%; width: 100%; opacity: 1;}
.button-hover span {z-index: 9;}

/* MOBILE CSS */
@media screen and (max-width: 991px) {
    .section-padding-top {
        padding-top: 48px;
    }
}