html {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
}

iframe {
    max-width: 90%;
    display: block;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    max-height: 200px;
}

@media (min-width: 768px){
    iframe {
   
    
    max-width: 100%;
    max-height: 100%;
}
    
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1;
    padding: 0;
    margin: 0;
}

p {
    font-weight: 300;

}

@media (min-width: 768px) {
    p {
        font-weight: 300;
        line-height: 2;
    }
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 21px;
}

h5 {
    font-size: 19px;
}

p {
    font-size: 20px;
}

a {
    font-weight: 400;
    text-decoration: none;
}

#Layer_1 {
    max-width: 180px;
    margin: auto;
    display: block;
}

#ICON_1_ {
    -webkit-animation: Enter 1.3 ease-in;
    animation: Enter 1.3s ease-in 1;
   animation-delay: 1;
}

#BODY_ICON,
.st31 {
    -webkit-animation: fromRight 1.3 ease-in;

    animation: fromRight 1.3s ease-in 1;
   animation-delay: 1;




}



#main-header {
    background-color: black;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.main-subtitle {
    color: white;
    border: 5px;
    margin: 0.5rem 0 3rem 0;
    animation: fadeInLeft 1s 1;
   animation-delay: 1;

}

.hero {
    display: flex;
    min-height: 80vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0 3rem 0;
   
}

.hero-front{
 background: linear-gradient(to right, #8626597a, #c8932170, #1c6f939e), url('img/team-min.jpeg') no-repeat center center;
background-attachment: fixed;
 background-size: cover;
}

.hero-back{
background: linear-gradient(to right, #8626597a, #c8932170, #1c6f939e), url('img/team2-min.jpeg') no-repeat center center;
background-attachment: fixed;
 background-size: cover;
}


h2.main-title {
    margin: 0;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 24px;
    animation: fadeInRight 1s 1;
   animation-delay: 1;

}

@media (min-width: 768px) {
    h2.main-title {
        margin: 20px 0 0 0;

        font-size: 40px;
    }

}

.cta-btn {
    padding: 1rem 2rem;
    background-color: green;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin: 1rem auto;
    transition: all .3s ease;
}

.cta-btn:hover {
    background-color: rgb(11, 175, 11);
}

/*background: linear-gradient(to right, #d4408f, #f5b226, #2eade3);*/

/*FORM*/

.form-content{
    display:none;
    height:0;
    width:0;
    overflow: hidden;
}


.form-content.active {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    transform-origin: center center;
    background: white;
    color: black;
    border: 10px solid #4f1351;
    transition: all .2s ease;
}

@media (min-width: 768px){
    .form-content.active{
        width: 400px;
    min-height: 400px;
    max-height: 450px;
    height: 100%;
    position: absolute;
    top: 35%;
    left: 40%;
    animation: Enter 1s ease 1;

    }
    
}

.form-content h3 {

    padding: 0 26px;
    text-align: center;
    margin-bottom: 2rem;

}

.form-space {
    display: block;
    max-width: 400px;
    width: 100%;
}

.form-group,
#lead-form {
    display: block;
    width: 100%;
}

.form-group label,
.form-group input {
    width: 100%;
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

.form-group input {
    min-height: 2rem;
    margin-bottom: 1rem;
}

button#register {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

.btn {
    padding: 10px 30px;
    background: green;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color:white;
    text-transform: uppercase;


}

/*FOOTER*/
footer {
    color: white;
    background: black;
    text-align: center;
    padding: 1rem;
}

/*KEYFRAMES*/
@keyframes Enter {
    0% {
        transform: scale(-5);
        -moz-transform: scale(-5);
        -webkit-transform: scale(-5);
        -ms-transform: scale(-5);
        -o-transform: scale(-5);



    }

    100% {
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);



    }
}

@keyframes fromRight {
    0% {
        transform: scale(5);
        -moz-transform: scale(5);
        -webkit-transform: scale(5);
        -ms-transform: scale(5);
        -o-transform: scale(5);

    }

    100% {
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}



@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}