/***************************************************************
# Tags
***************************************************************/

:root {
    --black: #151515;
    --primary: #fc8206;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

pre {
    background: whitesmoke;
    padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 1rem 0;
}

h1,
h2,
h3,
h4,
h5.h6 {
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

a {
    color: royalblue;
}

/***************************************************************
# Input
***************************************************************/

input[type="text"],
input[type="email"] {
    display: block;
    width: 100%;
    padding: 1em 2em;
    margin: 1rem 0;
    background: whitesmoke;
    border: none;
    font-family: inherit;
}

/***************************************************************
# Common
***************************************************************/

.container {
    padding-left: 5%;
    padding-right: 5%;
    margin-left: auto;
    margin-right: auto;
    transition: padding .4s ease;
}


.container--xl {
    max-width: 100rem;
}

.container--lg {
    max-width: 80rem;
}

.container--md {
    max-width: 64rem;
}

.inner-margin {
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    transition: margin .4s ease;
}

.inner-padding {
    padding-top: 5%;
    padding-bottom: 5%;
}

@media(min-width: 64rem) {

    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .inner-padding {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

}


.button,
input[type="button"],
input[type="submit"] {
    display: block;
    background: var(--black);
    color: white;
    padding: 1em 2em;
    border: none;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-family: inherit;
}

@media(min-width: 32rem) {

    .button,
    input[type="button"],
    input[type="submit"] {
        display: inline-block;
        width: auto;
    }

}

/***************************************************************
# Header
***************************************************************/

.header {
    background: var(--black);
    padding: 1rem 0;
    color: white;
}

.header a {
    color: inherit;
    text-decoration: none;
}

.header svg {
    fill: white;
}

.header__logo {
    display: block;
}

.header__logo svg {
    width: 4rem;
}

.header__social a {
    display: inline-block;
    margin-left: .75rem;
}

.header__social svg {
    height: 1.125rem;
}

.header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/***************************************************************
# Stats
***************************************************************/

.stats {
    position: relative;
    overflow: hidden;
}

.stats__heading {
    text-transform: uppercase;
    margin-bottom: -.5em;
    font-weight: bold;
    text-align: center;
    font-size: 10vw;
}

.stats__heading em {
    color: var(--primary);
}

.stats__inner {
    background: whitesmoke;
    padding: 12% 10% 10%;
}

.stats__wrapper {
    margin: 2rem 0;
}

.stats__item {
    text-align: center;
    max-width: 16rem;
    margin: 0 auto;
}

.stats__circle {
    padding-top: 100%;
    background: var(--black);
    border-radius: 50%;
    position: relative;
}

.stats__circle-wrapper {
    margin: 0 1rem;
}

.stats__circle::after {
    content: "";
    display: block;
    border: .25rem solid white;
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.stats__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    width: 64%;
    line-height: 1.2;
    z-index: 3;
}

.stats__top-text {
    font-size: 14vw;
    line-height: 1.1;
}

.stats__top-text--smaller {
    font-size: 9vw;
}

.stats__bottom-text {
    font-size: 3.125vw;
    margin-top: .25rem;
}

.stats__label {
    margin-top: 2rem;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

@media(min-width: 24rem) {

    .stats__top-text {
        font-size: 3.5rem;
    }

    .stats__top-text--smaller {
        font-size: 2.5rem;
    }

    .stats__bottom-text {
        font-size: .875rem;
    }

}

@media(min-width: 48rem) {


    .stats__heading {
        font-size: clamp(2rem, 4.5vw, 4.9rem);
        margin-left: .75em;
        text-align: left;
    }

    .stats__container {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        margin: 0 -2rem;
    }

    .stats__wrapper {
        padding: 2rem;
        margin: 0;
    }

}

.hand {
    position: absolute;
}

.hand--01 {
    top: 70%;
    transform: translate(-50%, -50%) rotate(50deg);
    left: 7%;
    width: 15%;
}

.hand--02 {
    top: 70%;
    transform: translate(-50%, -50%) rotateZ(-50deg) rotateY(-190deg);
    right: -3%;
    width: 12%;
}

.hand--03 {
    top: 20%;
    transform: translate(-50%, -50%) rotateZ(-130deg) rotateY(-190deg);
    right: -4%;
    width: 12%;
}


/***************************************************************
# About
***************************************************************/

.about {
    overflow: hidden;
}

.about__container {
    border-left: 1rem solid var(--black);
    padding: 2rem 0;
    padding-left: 3rem;
    max-width: 47rem;
}

.about__paragraph {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}




/***************************************************************
# Contact
***************************************************************/

.contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact__form {
    border: .25rem solid black;
    padding: 5% 10%;
    background: white;
}

.contact__form p {
    font-size: 0.75rem;
}

.contact__background {
    position: absolute;
    top: 0%;
    left: -5%;
    width: 110%;
    height: 100%;
    z-index: -1;
    display: grid;
    grid-template-columns: repeat(4, 4fr);
    grid-template-rows: repeat(3, 3fr);
    grid-gap: 1rem;
}

.contact__background-item {
    background: gainsboro;
    position: relative;
}

.contact__background-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__background-item--desktop {
    display: none;
}

@media(min-width: 48rem) {

    .contact__background {
        grid-template-columns: repeat(9, 9fr);
        grid-template-rows: repeat(4, 4fr);
    }

    .contact__background-item--desktop {
        display: block;
    }

}


/*** END OF FILE ***/