/* ======================================= */

/*
    CW4YOU
    Ralf | Design
    Version: 2.4
    2020
*/


/* ======================================= */



/* Basis */

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


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

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
.contai

body {
	line-height: 1;
}

html{
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

a {
    text-decoration: none;
}

.container {
    min-height: 100vh;
    width: 100%;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}
/* End Basis */

/* ======================================= */

/* Section Home */
#home {
    background-image: url(../img/home-background.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;

}
#home .home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: flex-start;
   
    -ms-padding: 0 50px;
}
#home::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .7;
    z-index: -1;
}
#home h1 {
    display: block;
    width: fit-content;
    font-size: 3rem;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1s;
    border-left: 1px solid white;
    padding-left: 35px; 
}
#home h1:nth-child(1) {
    animation-delay: 1s;
}
#home h1:nth-child(2) {
    animation-delay: 2s;
}
#home h1:nth-child(3) {
    animation: text_reveal_name .5s ease forwards;
    animation-delay: 3s;
}
#home h1 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color:orange;
    animation: text_reveal_box 1s ease;
    animation-delay: .5s;
}
#home h1:nth-child(1) span {
    animation-delay: .5s;
}
#home h1:nth-child(2) span {
    animation-delay: 1.5s;
}

#home h1:nth-child(3) span {
    
    animation-delay: 2.5s;
}

#home an {
    padding: 0 50px;
    -ms-padding: 0 50px;
}
@supports not (#home h1( padding 0 50px))
{
    #home h1: padding 0 50px
}

#home p {
    font-size: 16px;
    color: white;
    padding-top: 30px;
    animation: text_reveal .5s ease forwards;
}

#home .std {
    display: inline-block;
    padding: 10px 30px;
    color: orange;
    background-color: transparent;
    border: 1px solid orange;
    border-radius: 4px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .1rem;
    margin-top: 30px;
    transition: .3s ease;
    transition-property: background-color, color;
}
#home .std:hover {
    color: black;
    background-color: orange;
}



/* End Section Home */

/* ======================================= */

/* Section Service */

/* End Section Service */

/* ======================================= */

/* Keyframes */
@keyframes text_reveal_box {
    50% {
        width: 100%;
        left: 0;
        }
    100% {
        width: 0;
        left: 100%;
        }
}

@keyframes text_reveal {
    100% {
        color: white;
    }
}

@keyframes text_reveal_name {
    100% {
        color: orange;
        font-weight: 00;
    }
}

/* End Keyframes */

/* ======================================= */

@media only screen and (max-width:599px) {
	body {
        width: 100%; 
        font-size: 0.8em; 
    }
    #home h1 {
        font-size: 32px;
    }
}