/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");

.alexandria {
    font-family: "Alexandria", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*,
*::before,
*::after {
    box-sizing: inherit;
}
body {
    margin: 0;
    font-size: 23px;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html,
body {
    height: 100%;
}
body {
    color: #ffffff;
    position: relative;
}
blockquote,
q {
    quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
    content: "";
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
    padding: 0;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
a {
    background-color: transparent;
    text-decoration: none;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
    max-width: 100%;
    height: auto;
    display: block;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
template {
    display: none;
}
.hidden,
[hidden] {
    display: none;
}

/* Colors*/
.bg-yellow {
    background-color: #fff200;
}
.bg-grey {
    background-color: #000000;
}

/* Layout */
.flex {
    display: flex;
}
section.flex {
    align-items: center;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.h-dvh {
    height: 100dvh;
}
.min-h-dvh {
    min-height: 100dvh;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.box-outer {
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 65px 0 0 0;
}
.box-inner {
    border: 10px solid #fff200;
    padding: 27px 86px 9px;
    width: 100%;
}

/* Splash Screen */
.splash {
    justify-content: center;
    align-items: center;
}

/* Header */
header {
    border-top: 1px solid #000000;
    min-height: 169px;
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff200;
}
header > div {
    width: 100%;
}
#global-nav {
    align-items: center;
    height: 119px;
    display: flex;
    flex-wrap: wrap;
}
#global-nav .sep {
    display: block;
    color: #ffffff;
    font-weight: 900;
    font-size: 31px;
    padding: 0 9px;
}
#global-nav a {
    display: block;
    color: #ffffff;
    font-weight: 900;
    font-size: 33px;
    letter-spacing: 1px;
    position: relative;
}
#global-nav a:hover {
    color: #fff200;
}
#global-nav a:hover::after {
    border-color: #fff200;
    backface-visibility: hidden;
    transform: scaleX(1);
}
#global-nav a:after {
    transition: transform 0.3s ease-out, border-color 0.3s ease-out;
    position: absolute;
    display: block;
    bottom: -4px;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    border-top: 5px solid #fff200;
    content: "";
    padding-bottom: inherit;
}
.logo {
    padding: 0 68px 0 0;
}
.logo a {
    display: block;
}
.logo a svg {
    animation: logo-bg 0.65s linear infinite;
}
@keyframes logo-bg {
    0% {
        fill: #000;
    }
    12% {
        fill: #000;
    }
    12.5% {
        fill: #ffeb00;
    }
    24.5% {
        fill: #ffeb00;
    }
    25% {
        fill: #fc2222;
    }
    37% {
        fill: #fc2222;
    }
    37.5% {
        fill: #ededed;
    }
    49.5% {
        fill: #ededed;
    }
    50% {
        fill: #969696;
    }
    62% {
        fill: #969696;
    }
    62.5% {
        fill: #26bc59;
    }
    74.5% {
        fill: #26bc59;
    }
    75% {
        fill: #d371ff;
    }
    87% {
        fill: #d371ff;
    }
    87.5% {
        fill: #ededed;
    }
    100% {
        fill: #ededed;
    }
}

/* Footer */
footer {
    padding: 50px 0 40px 0;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff200;
}
footer p {
    color: #000000;
}
.f-container {
    max-width: 1440px;
    padding: 0 30px;
    justify-content: space-between;
    align-items: center;
}
.social {
    flex-wrap: wrap;
}
.social a {
    display: block;
    margin-right: 20px;
}
/* Home */
.feature-list {
    padding: 16px 0 0 0;
    flex-wrap: wrap;
}
.feature-list span {
    font-weight: 900;
    color: #fff200;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.5;
}
.feature-list span.sep2 {
    padding: 0 7px;
}
.icon-list {
    padding: 10px 0 0 0;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.icon-list span {
    display: block;
    padding: 0 10px 0 10px;
}

/* About */

.box-inner h2 {
    font-weight: 900;
    font-size: 140px;
    line-height: 1;
    padding: 0 0 10px 0;
}
.box-inner p {
    padding-bottom: 27px;
}

/* Services */
.c-wrapper {
    padding: 60px 0 0 0;
}
.c-wrap {
    flex-direction: row-reverse;
    justify-content: space-between;
}
.box-inner h3 {
    color: #fff200;
    padding: 0 0 10px 0;
}
.box-inner ol {
    padding: 0 0 44px 22px;
    font-size: 20px;
}
/* Works */

/* Contact */
.box-inner address {
    padding-left: 30px;
    display: block;
}
#contact .flex {
    flex-wrap: wrap;
}

.menu-icon {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: none;
}

.menu-icon span {
    position: absolute;
    height: 6px;
    width: 100%;
    background: #fff200;
    border-radius: 2px;
    left: 0;
    transition: 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 10px;
}

.menu-icon span:nth-child(3) {
    top: 20px;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

@media screen and (max-width: 1380px) {
    .box-inner h2 {
        font-size: 120px;
    }
}
@media screen and (max-width: 1280px) {
    .box-inner h2 {
        font-size: 80px;
    }
}
@media screen and (max-width: 1100px) {
    #global-nav a {
        font-size: 28px;
    }
    .f-container {
        flex-direction: column;
    }
    footer p {
        padding: 20px 0 0 0;
        text-align: center;
    }
}
@media screen and (max-width: 1023px) {
    #container {
        padding: 0 20px 0 20px;
    }
    .box-inner {
        padding: 27px 20px 9px;
    }
    .box-inner h2 {
        font-size: 60px;
    }
    header > div {
        justify-content: space-between;
        position: relative;
    }
    .menu-icon {
        display: block;
    }
    #global-nav {
        display: none;
    }
    #global-nav .sep {
        display: none;
    }
    #global-nav.open {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        height: auto;
        position: absolute;
        width: 100%;
        border: 10px solid #fff200;
        background-color: #000000;
        padding: 10px 0;
        top: 122px;
    }
    #global-nav.open a {
        padding: 10px 0;
        border-bottom: 5px solid #fff200;
        display: block;
        width: 100%;
        text-align: center;
    }
    #global-nav.open a:last-child {
        border: none;
    }
    .social {
        justify-content: center;
    }
    .social a {
        margin-bottom: 20px;
    }
    #contact .flex {
        justify-content: center;
    }
    .box-inner address {
        padding-left: 20px;
        padding-right: 20px;
    }
    .c-wrap {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width: 587px) {
    body {
        font-size: 18px;
    }
    .box-inner ol {
        font-size: 17px;
    }
    .box-inner h2 {
        font-size: 40px;
    }
}
