@font-face {
    font-family: "SM";
    src: url("../fonts/SM.woff2") format("woff2"), url("../fonts/SM.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SMI";
    src: url("../fonts/SMI.woff2") format("woff2"), url("../fonts/SMI.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "RM";
    src: url("../fonts/RM.woff2") format("woff2"), url("../fonts/RM.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "RMI";
    src: url("../fonts/RMI.woff2") format("woff2"), url("../fonts/RMI.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

.responsive {
    width: 100%;
}

img.lazy {
    opacity: 0;
}

img:not(.initial) {
    transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
    opacity: 1;
    transition: opacity 1s;
}

img:not([src]) {
    visibility: hidden;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #FF9400;
    color: #000000;
    font-family: "SM", Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    user-select: none;
    -webkit-user-select: none;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

body::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background: transparent;
}

body::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}

.scrollbar-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

a {
    color: #000000;
    text-decoration: none;
    transition: color 0.15s linear;
}

a:hover,
a.active-link {
    color: #000000;
    text-decoration: underline;
}

::-moz-selection {
    color: #f0f0f0;
    background: #000000;
}

::selection {
    color: #f0f0f0;
    background: #000000;
}

/* TYPOGRAPHY SETTINGS *******************************************************/

h1 {
    font-size: 7.8vw;
    line-height: 90%;
    margin: 0;
}

p {
    font-size: 0.72vw;
    line-height: 135%;
    margin: 0;
}

@media (max-width: 1919px) {
    h1 {
        font-size: 10.4vw;
    }

    p {
        font-size: 1vw;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 11vw;
    }

    p {
        font-size: 1.4vw;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 14vw;
    }

    p {
        font-size: 2.75vw;
    }
}

/* ANIMATIONS SETTINGS *******************************************************/

/* HOMEPAGE STYLE *******************************************************/
body {
    width: 100%;
    height: 100%;
    max-height: 100dvh;
}

header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header p {
    width: 33.3333333%;
    line-height: 125%;
}

header img {
    width: 16.6666667%;
}

main {
    width: 100%;
    text-align: center;
}

main h1 {
    width: 100%;
    font-family: "RM", 'Times New Roman', Times, serif;
    font-weight: 500;
    font-style: normal;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main h1 span {
    font-family: "RMI", 'Times New Roman', Times, serif;
    font-weight: 500;
    font-style: italic;
}

footer {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
}

.contacts-wrapper {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contacts-title {
    width: 100%;
    font-family: "RMI", 'Times New Roman', Times, serif;
    font-weight: 500;
    font-style: italic;
}

.contacts-wrapper a:nth-child(2) p::after {
    content: ",";
    padding-right: 3px;
}

.under-contruction-title {
    font-family: "RMI", 'Times New Roman', Times, serif;
    font-weight: 500;
    font-style: italic;
}

@media (max-width: 1024px) {
    header p {
        width: 50%;
    }

    header img {
        width: 25%;
    }
}

@media (max-width: 560px) {
    header {
        padding: 10px;
    }

    header p {
        width: 50%;
    }

    header img {
        width: 33.3333333%;
    }

    footer {
        padding: 10px;
    }
}