#section1{
    background-image: url(../../img/header-bg.jpg);
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #cfcfcf;
    position: relative;
    height:642px;
    padding:70px;
    text-align: center;
    /* overflow: hidden; */
}
#section1>h1{
    font-size: 60px;
    text-transform: uppercase;
    color: #636b72;
    font-weight: 700;
    line-height: 66px;
    animation-name: Hname;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both; 
    -webkit-animation-name: Hname;
    -webkit-animation-duration: 1s;
    visibility: visible;
    margin-top: 200px;
}
@keyframes Hname{
    from{
        opacity: 0;
        transform: scale(0.5);
    }
    to{
        opacity: 1;
    }
}
.color{
    color: rgb(25, 181, 254);
}
#section1>p{
    animation-name: fadeIn;
    animation-delay: 0.6s;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-delay: 0.6s;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    font-size: 18px;
    letter-spacing: 2px;
    height: 25px;
    line-height: 25px;
    color: #636b72;
    margin-bottom: 60px;
}
/* @-webkit-keyframes{
    from{
        transform: trans
        opacity: 0;
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
} */
#section1>a{
    padding-top: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 172px;
    height: 41px;
    white-space: nowrap;
    touch-action: manipulation;
    /* vertical-align: middle; */
    line-height: 21px;
    height: 41px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border:0;
    background-color: #19B5FE;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeIn;
}
@keyframes fadeIn{
    from{
        transform: translateY(-20px);
        opacity: 0;
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
#section1>a:hover{
    transition-duration: 1s;
    background-color: rgb(20, 117, 161);
}


