
/* .basic-header */

.basic-header { position: relative; height: 600px; border-bottom: 3px solid #efcd34; margin-top: 0;}
.basic-header:after { content: ""; position: absolute; bottom: 0; left: 0; z-index: 10; width: 100%; height: 5px; background: #fff;}

.basic-header .bg-content { position: absolute; top: 0; z-index: 1; width: 100%; height: 100%; opacity: .2;}
.basic-header .bg-content.image img { display: block; width: 100%; height: 100%; object-fit: cover;}

.basic-header .text-content { position: relative; z-index: 10; height: 100%;}
.basic-header .text-content .content.flex { display: flex; flex-direction: column; justify-content: center; align-items: center; max-width: 900px; height: 100%; text-align: center; padding: 2rem; }
.basic-header .text-content h1 { font-family: 'apercubold', sans-serif; margin-bottom: 0; text-shadow: 0 0 15px #fff;}
.basic-header .text-content h1 span { display: block; font-size: 2.6rem; line-height: 2.75rem;}
.basic-header .text-content p { font-size: 1.8rem; line-height: 2rem; margin: 2rem 0 0; text-shadow: 0 0 15px #fff;}
.basic-header .text-content button { margin: 3rem 0 0;}

.basic-header .btn { position: relative; width: auto; color: #fff; text-align: center; background: #efcd34; border: 2px solid #efcd34; padding: 1rem 1.5rem; transition: color .5s ease; margin: 0 auto;}
.basic-header .btn:before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: #fff; transition: width .5s ease;}
.basic-header .btn span { position: relative; z-index: 10; font-family: 'apercubold', sans-serif; text-transform: uppercase; letter-spacing: 1px;}

@media (hover:hover){
    .basic-header .btn:hover { color: #efcd34;}
    .basic-header .btn:hover:before { width: 100%;}
}

@media(max-width: 767px){
    .basic-header { height: inherit;}
    .basic-header .text-content .content.flex { max-width: 100%; align-items: flex-start; text-align: left; padding: 2rem 0;}
    .basic-header .bg-content { position: relative; top: 0; z-index: 1; width: 100%; height: 100%;}
    .basic-header .text-content p { font-size: 1.5rem; line-height: 1.8rem; margin-top: 1rem;}
    .basic-header .btn { padding: .5rem 1rem;}
}