/*
COLORS:

Light green: #7ed56f
Medium green: #55c57a
Dark green: #28b485

*/

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

body {
    font-family: "Lato", sens-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #d3cfcf;
    padding: 30px;
}

.header {
    height: 95vh;
    background-image:url(../img/iot2.JPG); 
    background-color: #358d1f;
    background-size: cover;
    background-position: top;
    position: relative;

}

.logo-box {
    position: absolute;
    top: 40px;
    left: 40px;


}

.logo {
    height: 35px;

}

.heading-primary {
    color: rgb(22, 245, 52);
    text-transform: uppercase;

    animation: moveInLeft;
    animation-duration: 3s;

}

.heading-primary-main {
    display: block;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 35px;


}

.heading-primary-sub {
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 15px;
    text-align: center;

}

.text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

}


.btn:link,
.btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    color: red;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.btn:active {

    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

.btn-white {
    background-color: #fff;
    color: #777;
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;


}

.btn-white::after {
    background-color: #fff;
}

.btn:hover::after{
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}


.btn-animated{
    animation: movebuttom .5s ease-in-out .75s;
    animation-fill-mode: backwards;
}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);

    }

    80% {
        transform: translate(20px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }

}



@keyframes movebuttom {
    0% {
        opacity: 0;
        transform: translateY(30px);

    }

 
    100% {
        opacity: 1;
        transform: translate(0);
    }

}