@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    --orange: #fe5000;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
}
body {
    color: #fff;
    background-color: #000;
}
h2 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
}
span {
    font-size: 2rem;
    line-break: 1;
}
main {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); 
    overflow: hidden;
    margin-left: 4rem;
    display: flex;
    flex-direction: column;
}
section {
    flex: 1;
}



/* start logo section */
.logo {
    width: 50vw;
    min-width: 250px;
    margin-top: 5rem;
    flex: 0;
}
@media (min-width: 992px) {
    .logo {
        width: 350px;
    }
}
/* end logo section */

/* start claim section */

.claim-mask-dd {
    width: 90vw;
    margin-top: 3rem;
}
.claim-mask-dd > div {
    padding-bottom: 50%;
    -webkit-mask-image: url(/assets/svg/claim_v1b.svg);
            mask-image: url(/assets/svg/claim_v1b.svg);
}
.claim-mask > div {
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 88%;
            mask-size: 88%;
}
.mask-video {
    position: relative;
}

.claim-mask-video {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
}
@media (min-width: 992px) {
    .claim-mask-dd {
        width: 900px;
        margin-top: 3rem;
    }
}
@media (max-height: 760px) {
    .claim-mask-dd {
        margin-top: -2rem;
    }
}

.subtitle {
    font-size: calc(100vw / 25);
    text-transform: uppercase;
    letter-spacing: .7rem;
    margin-top: 1rem;
}
@media (min-width: 992px) {
    .subtitle {
        font-size: 4rem;
    }
}
/* end claim section */



/* start services section */
.services ul {
    margin-top: 3rem;
    line-height: 2;
    list-style: none; 
}
.services ul li {
    margin-left: 1rem;
    position: relative;
}

.services ul li::before {
    content: '•';
    font-size: 1.4rem;
    color: var(--orange);
    position: absolute;
    left: -1rem;
    display: inline-block;
}
@media (min-width: 992px) {
    .services ul li {
        display: inline-block;
        margin-left: 2rem;
    }
    .services ul li:first-child {
        margin-left: 1rem;
    }
}
@media (max-height: 670px) {
    .services {
        display: none;
    }
}
/* end services section */




/* start footer section */
.footer {
    width: 100%;
    display: flex;
    flex-flow: column;
    }
    .soon {
        order: 1;
    }
    .social {
        order: 2;
        margin-left: -1rem;
        flex-grow: 1;
        display: flex;
        align-items: flex-end;
        margin-bottom: 3rem;
        }
        .social a {
            padding: 1rem;
        }
        .social svg {
            fill: #fff;
            transition: fill .5s;
        }
        .social a:hover svg {
            fill: var(--orange);
        }
@media (min-width: 992px) {
    .footer {
        flex-flow: row nowrap;
        align-items: flex-end;
    }
    .soon {
        order: 2;
        margin-bottom: 3rem;
        margin-right: 4rem;
    }
    .social {
        order: 1;
    }
}
/* end footer section */


/* start preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 9999999;
}
.loader {
    top: 40%;
    width: 200px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
}
.loader img{
    -webkit-animation: fa-spin 2s infinite linear;
            animation: fa-spin 2s infinite linear;
}
.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
            animation: fa-spin 2s infinite linear; 
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
            animation: fa-spin 1s infinite steps(8); 
}

@-webkit-keyframes fa-spin {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); 
    }
100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); 
    }
}

@keyframes fa-spin {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); 
    }
100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); 
    }
}
/* end preloader */