html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-optical-sizing: auto;
    font-style: normal;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

a {
    text-decoration: none;
    color: inherit;
}

.container { width: 100%; margin-left: auto; margin-right: auto; box-sizing: border-box; }
@media screen and (min-width: 35.5em) { .container { width: 35em; } }
@media screen and (min-width: 48em) { .container { width: 48em; } }
@media screen and (min-width: 64em) { .container { width: 64em; } }
@media screen and (min-width: 80em) { .container { width: 80em; } }
@media screen and (min-width: 120em) { .container { width: 120em; } }
@media screen and (min-width: 160em) { .container { width: 160em; } }

/* Button Classes (non-rounded rectaguler solid and outline buttons with small, normal and big variations) */

.btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 1.75pt;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #0f0f0f;
    color: #f0f0f0;
    border: 2px solid transparent;
    padding: 0.5em 1em;
    font-size: 1em;
    line-height: 1.5;
    border-radius: 0em;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
    text-decoration: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.btn-outline {
    background-color: transparent;
    border-color: #0f0f0f;
    color: #0f0f0f;
}

.btn-dark {
    background-color: #F1201E;
    color: #f0f0f0;
}

.btn-dark.btn-outline {
    background-color: transparent;
    border-color: #F1201E;
    color: #F1201E;
}

.btn-small {
    padding: 0.25em 0.5em;
    font-size: 0.875em;
    line-height: 1.5;
}

.btn-big {
    padding: 0.75em 1.5em;
    font-size: 1.25em;
    line-height: 1.5;
}

.content-width {
    width: fit-content;
    max-width: 90vw;
    margin: auto;
}
.title {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 3pt;
}

input, select, textarea {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-optical-sizing: auto;
    font-style: normal;
    border: 2px solid #0f0f0f !important;
    border-radius: 0 !important;
    outline: none;
    box-shadow: none !important;
    color: #0f0f0f;
    padding: 0.5em 1em;
    background-color: transparent;
}

.dark-section input, .dark-section select, .dark-section textarea {
    border: 2px solid #f0f0f0 !important;
    color: #f0f0f0;
}


/* Utilities */
img.w-100 {
    width: 100%;
    height: auto;
}
img.poster {
    width: 100%;
    height: auto;
    aspect-ratio: 1620/2400;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-sizing: border-box;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.d-block {
    display: block;
}
.d-inline-block {
    display: inline-block;
}

/* Padding */
.p--0 {
    padding: 0;
}
.p--5 {
    padding: 5px;
}
.p--10 {
    padding: 10px;
}
.p--20 {
    padding: 20px;
}
.p--30 {
    padding: 30px;
}
.p--50 {
    padding: 50px;
}
.p--100 {
    padding: 100px;
}
.p--150 {
    padding: 150px;
}
.pt--0 {
    padding-top: 0;
}
.pt--5 {
    padding-top: 5px;
}
.pt--10 {
    padding-top: 10px;
}
.pt--20 {
    padding-top: 20px;
}
.pt--30 {
    padding-top: 30px;
}
.pt--50 {
    padding-top: 50px;
}
.pt--100 {
    padding-top: 100px;
}
.pt--150 {
    padding-top: 150px;
}
.pb--0 {
    padding-bottom: 0;
}
.pb--5 {
    padding-bottom: 5px;
}
.pb--10 {
    padding-bottom: 10px;
}
.pb--20 {
    padding-bottom: 20px;
}
.pb--30 {
    padding-bottom: 30px;
}
.pb--50 {
    padding-bottom: 50px;
}
.pb--100 {
    padding-bottom: 100px;
}
.pb--150 {
    padding-bottom: 150px;
}
.pl--0 {
    padding-left: 0;
}
.pl--5 {
    padding-left: 5px;
}
.pl--10 {
    padding-left: 10px;
}
.pl--20 {
    padding-left: 20px;
}
.pl--30 {
    padding-left: 30px;
}
.pl--50 {
    padding-left: 50px;
}
.pl--100 {
    padding-left: 100px;
}
.pl--150 {
    padding-left: 150px;
}
.pr--0 {
    padding-right: 0;
}
.pr--5 {
    padding-right: 5px;
}
.pr--10 {
    padding-right: 10px;
}
.pr--20 {
    padding-right: 20px;
}
.pr--30 {
    padding-right: 30px;
}
.pr--50 {
    padding-right: 50px;
}
.pr--100 {
    padding-right: 100px;
}
.pr--150 {
    padding-right: 150px;
}
.m--auto {
    margin: auto;
}
.mx--auto {
    margin-left: auto;
    margin-right: auto;
}
.m--0 {
    margin: 0;
}
.m--5 {
    margin: 5px;
}
.m--10 {
    margin: 10px;
}
.m--20 {
    margin: 20px;
}
.m--30 {
    margin: 30px;
}
.m--50 {
    margin: 50px;
}
.m--100 {
    margin: 100px;
}
.mt--0 {
    margin-top: 0;
}
.mt--5 {
    margin-top: 5px;
}
.mt--10 {
    margin-top: 10px;
}
.mt--20 {
    margin-top: 20px;
}
.mt--30 {
    margin-top: 30px;
}
.mt--50 {
    margin-top: 50px;
}
.mt--100 {
    margin-top: 100px;
}
.mb--0 {
    margin-bottom: 0;
}
.mb--5 {
    margin-bottom: 5px;
}
.mb--10 {
    margin-bottom: 10px;
}
.mb--20 {
    margin-bottom: 20px;
}
.mb--30 {
    margin-bottom: 30px;
}
.mb--50 {
    margin-bottom: 50px;
}
.mb--100 {
    margin-bottom: 100px;
}
.ml--0 {
    margin-left: 0;
}
.ml--5 {
    margin-left: 5px;
}
.ml--10 {
    margin-left: 10px;
}
.ml--20 {
    margin-left: 20px;
}
.ml--30 {
    margin-left: 30px;
}
.ml--50 {
    margin-left: 50px;
}
.ml--100 {
    margin-left: 100px;
}
.mr--0 {
    margin-right: 0;
}
.mr--5 {
    margin-right: 5px;
}
.mr--10 {
    margin-right: 10px;
}
.mr--20 {
    margin-right: 20px;
}
.mr--30 {
    margin-right: 30px;
}
.mr--50 {
    margin-right: 50px;
}
.mr--100 {
    margin-right: 100px;
}
.fw-100 {
    font-weight: 100;
}
.fw-200 {
    font-weight: 200;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.fs-half { font-size: 0.5; }
.fs--75 { font-size: 0.75em; }
.fs-1 { font-size: 1em; }
.fs-1-half { font-size: 1.5em; }
.fs-2 { font-size: 2em; }
.fs-2-half { font-size: 2.5em; }
.fs-3 { font-size: 3em; }
.fs-3-half { font-size: 3.5em; }
.fs-4 { font-size: 4em; }
.fs-4-half { font-size: 4.5em; }
.fs-5 { font-size: 5em; }
.fs-5-half { font-size: 5.5em; }
.fs-6 { font-size: 6em; }

.text-red {
    color: #F1201E;
}

header { box-sizing: border-box; max-width: 100vw; }
.pure-menu-horizontal {
    background-color: #0f0f0f;
    color: #f0f0f0;
    text-align: right;
}

.pure-menu-horizontal .logo {
    float: left;
}

.pure-menu-link {
    color: #efefef;
    font-weight: 300;
    font-size: 0.8em
}

.pure-menu-active>.pure-menu-link, .pure-menu-link:focus, .pure-menu-link:hover {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
}
.pure-menu-children {
    background-color: #0f0f0f;
    text-align: left;
}
.side-menu {
    width: 280px;
    background-color: #0f0f0f;
    position: fixed;
    top: 68px;
    right: 0;
    transform: translateX(280px);
    transition: transform 0.3s ease;
    height: calc(100vh - 68px);
    overflow-y: auto;
    z-index: 1000;
    padding: 0;
    margin: 0;
}

.side-menu.active {
    transform: translateX(0px);
}

.side-menu .pure-menu-link {
    font-size: 1em;
}

.sidemenutoggle { display: none; font-size: 1.2em !important; }
header .pure-menu-list { display: inline-block; }

@media (max-width: 768px) {
    .sidemenutoggle { display: inline-block; }
    header .pure-menu-list { display: none !important; }

    .fs-half { font-size: 0.25; }
    .fs--75 { font-size: 0.375em; }
    .fs-1 { font-size: 0.5em; }
    .fs-1-half { font-size: 0.75em; }
    .fs-2 { font-size: 1em; }
    .fs-2-half { font-size: 1.25em; }
    .fs-3 { font-size: 1.5em; }
    .fs-3-half { font-size: 1.75em; }
    .fs-4 { font-size: 2em; }
    .fs-4-half { font-size: 2.25em; }
    .fs-5 { font-size: 2.5em; }
    .fs-5-half { font-size: 2.75em; }
    .fs-6 { font-size: 3em; }

    .member-info .fs--75 { font-size: 0.5em; }
    .member-info .fs-1 { font-size: 0.75em; }

    .logo.fs-2 { font-size: 1.5em; }

    .hide-on-mobile { display: none; }
}

.dark-section {
    background-color: #0f0f0f;
    color: #f0f0f0;
}

.light-section {
    background-color: #f0f0f0;
    color: #0f0f0f;
}

.full-view {
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.client {
    display: block;
    box-sizing: border-box;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 20px;
    aspect-ratio: 4/3;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease-in-out, background-color 0.3s ease-in-out;
    background-color: transparent;
}
img.client:hover {
    filter: grayscale(0);
    background-color: #ffffff;
}

.team-container {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.team-container::after {
    content: '';
    display: block;
    clear: both;
}

.member {
    display: block;
    width: calc((100% - 60px) / 7);
    height: 400px;
    margin-right: 10px;
    float: left;
    position: relative;
    transition: width 0.3s ease;
}

.member:last-child {
    margin-right: 0;
}

.member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: width 0.3s ease, filter 0.3s ease;
}

.member .member-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    box-sizing: border-box;
    width: calc(100% - 20px);
    height: 60px;
    background-color: #0f0f0faa;
    color: #f0f0f0;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-container:has(.member:hover) .member {
    width: calc(((100% - 60px) / 7) / 2);
}

.team-container:has(.member:hover) .member:hover {
    width: calc(((100% - 60px) / 7) * 3);
}

.team-container:has(.member:hover) .member:hover img {
    filter: grayscale(0);
}

.team-container:has(.member:hover) .member:hover .member-info {
    opacity: 1;
}

@media (max-width: 768px) {
    .member { height: 300px; }
    .pt--100 { padding-top: 70px; }
    .pt--150 { padding-top: 90px; }
    .pb--100 { padding-bottom: 70px; }
    .pb--150 { padding-bottom: 90px; }
    .mt--100 { margin-top: 70px; }
    .mt--150 { margin-top: 90px; }
    .mb--100 { margin-bottom: 70px; }
    .mb--150 { margin-bottom: 90px; }
}