

.hero_section:after{
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url("../images/bg6.jpg") no-repeat;
    background-size: cover;
    opacity: 0.9;
    z-index: -999;

}
.hero_section{
    background: -webkit-linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    position: relative;
    margin: 0;
    padding: 30px;
    min-height: 90vh;

}

.hero_section {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.hero_section div{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;

    margin-bottom: 30px;
}

.hero_section img{
  margin-top: 60px;
  height: 45vh;

}

.hero_section picture{
    --sal-duration: 0.5s;
    --sal-delay: 0.2s;
}
.hero_section h1{
    color: #002038;
    --sal-duration: 1s;
    --sal-delay: 1s;
    font-weight: 300;
	font-size: 1.7em;
}

.hero_section h1 b{
    color: #0095ff;
    background: rgb(0,149,255);
    background: linear-gradient(45deg, rgb(191, 118, 80) 40%, rgb(219, 184, 130) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_section h1 p{
    font-weight: 600;
    display: inline;
    background: rgb(0,149,255);
    background: linear-gradient(45deg, rgb(191, 118, 80) 40%, rgb(219, 184, 130) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_section button{
    --sal-delay: 1.5s;
    --sal-duration: 2s;
    cursor: pointer;
    width: 400px;
    padding: 15px 20px;
    background: rgb(0,149,255);
    background: linear-gradient(45deg, rgb(191, 118, 80) 40%, rgb(219, 184, 130) 100%);
    margin-top: 20px;
    border: none;
    border-radius: 20px;
    font-size: 0.8em;
    color: white;
    font-weight: 600;
    letter-spacing: 4px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.hero_section button:focus{
    outline: none;
}

.hero_section button:hover{
    transform: scale(1.1);
}


@media screen and (max-width: 480px){

    .hero_section button{
        width: 300px;
    }


}
