@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

@import url(../fonts/catapult/font.css);

*::after,
*::before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --black: #000;
    --eerie-black: #1C1C1C;
    --ebony: #222831;
    --white: #fff;
    --white-smoke: #F5F5F5;
    --dark-grey: #1D1D1B;
    --orange: #F7A600;
    --light-red: #FF2C32;
    /* --font-rajdhani: "Rajdhani", sans-serif; */
    --font-catapult: "Catapult";
    --font-maven: 'Maven Pro', sans-serif;
    --font-quick: 'Quicksand', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-quick);
    background-color: var(--white);
    font-size: unset;
}

a,
a:hover {
    text-decoration: none;
    z-index: 1;
    color: var(--white);
}

.wrapping {
    padding-right: 0;
}

section {
    position: relative;
    z-index: 1;
    background: #ffffff;
    max-width: 100vw;
    min-height: 100%;

}

section .title,
section .title-pages,
section .subtitle {
    font-family: var(--font-catapult);
    padding-bottom: 1.5rem;
}

section .title h2,
section .title-pages h2 {
    line-height: 1.2;
}

section .title h2 {
    font-size: 6rem;
}

section .title-pages h2 {
    font-size: 9rem;
}

section .subtitle {
    font-size: 35px;
    line-height: 1.2;
    color: var(--light-red);
    font-family: var(--font-quick);
    font-weight: 700;
}

section .wrap .subtitle {
    margin-left: 1.5rem;
    font-size: 28px;
    overflow: hidden;
    visibility: hidden;
}

.content .subtitle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-transform: capitalize;
    margin-bottom: 24px;
    font-size: 1.3rem;
    line-height: 1.1666666667;
    font-weight: 700;
    color: var(--black);
}

.content .subtitle span {
    width: 2px;
    height: 1rem;
    margin-right: 20px;
    margin-left: 20px;
    background-color: var(--black);
}

.content .divider {
    border-left: 8px solid var(--light-red);
}

.font-700 {
    font-weight: 700;
}

.font-600 {
    font-weight: 600;
}

.font-600 {
    font-weight: 400;
}

.pt-80 {
    padding-top: 80px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pl-9{
    padding-left: 9rem;
}

.pl-15{
    padding-left: 15rem;
}

.w-23 {
    width: 23vw;
}

.w-40 {
    width: 40vw;
}

.ml-6vw{
    margin-left: 6vw;
}

.bg-black {
    background-color: var(--black);
}

.bg-erie-black {
    background-color: var(--eerie-black);
}

.bg-white {
    background-color: var(--white);
}

.bg-white-smoke {
    background-color: var(--white-smoke)
}

.bg-dark-grey {
    background-color: var(--dark-grey);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-light-red {
    background-color: var(--light-red);
}

.color-black {
    color: var(--black) !important;
}

.color-erie-black {
    color: var(--eerie-black) !important;
}

.color-white {
    color: var(--white) !important;
}

.color-white-smoke {
    color: var(--white-smoke) !important;
}

.color-dark-grey {
    color: var(--dark-grey) !important;
}

.color-orange {
    color: var(--orange) !important;
}

.color-light-red {
    color: var(--light-red) !important;
}

.footer-wrap {
    height: 100vh;
    position: relative;
    width: 100%;
}

footer.contact {
    background-color: var(--dark-grey);
    height: 100vh;
    padding-top: 2rem;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: -2vw;
}

footer.contact .container {
    padding: 50px;
}

footer .wrap {
    margin-bottom: 1rem;
}

footer .title,
footer .subtitle {
    font-family: var(--font-catapult);
    color: var(--white);
}

footer .title {
    margin-top: 9vh;
    margin-left: -5vw;
    margin-right: -5vw;
}

footer .title h1 {
    font-size: 16rem;
    line-height: 0.8;
}

footer .title .text-stroke {
    background: transparent;
    color: transparent;
    -webkit-text-stroke: .15625vw var(--light-red);
}

footer .subtitle {
    margin-left: -5vw;
}

footer .subtitle h4 {
    font-size: 1.5rem;
    font-family: var(--font-quick);    
    background-color: var(--orange);
    color: var(--dark-grey);
    padding: 8px;
    max-width: fit-content;
    margin-bottom: 1.5rem;
}

footer .subtitle p {
    font-family: var(--font-maven);
    color: var(--orange);
    line-height: 0.8;
}

footer .subtitle a{
    color: var(--orange);
}

footer .subtitle a:hover{
    color: var(--white);
}

footer .copyright {
    width: 100%;
    border-top: 1px solid hsla(0, 0%, 100%, .05);
    padding: 0.5rem 0;
}

footer .copyright span {
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
    color: hsla(0, 0%, 100%, .6);
    font-size: 0.8rem;
}