:root {
    --width-button: 0px
}

header, footer{
    background-color: black;
    padding: 10px;
    text-align: center;
}

header *, footer * {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
}

* {
    font-family: 'Raleway', sans-serif;
}

.b {
    font-weight: 700;
}

.bg-yellow {
    background-color: #F8CC01;
}

header p, footer p {
    font-size: 2.5rem;
    color: #F8CC01;
    font-style: normal;
}

.text-yellow {
    color: #F8CC01;
}

.btn-1 {
    border: 4px solid white;
    background-color: black;
    color: white;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 100px;
    font-size: 20px;
    transition: border 0.3s ease ;
}

.btn-1:hover {
    border: 4px solid black;
}

.btn-2 {
    border: 4px solid #F8CC01;
    background-color: #F8CC01;
    color: black;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 100px;
    font-size: 20px;
    transition: color 0.3s ease ;
}

.btn-2:hover {
    color: white;
}

.px-40{
    font-size: 40px;
}

.px-19{
    font-size: 19px;
}

.px-30{
    font-size: 30px;
}

#section_1 {
    background-image: url(/images/landing_page_1/11062b_5aeaa70001984106ac1360146c79f27f_mv2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 40px;
}
#section_2 {
    background-image: url(/images/landing_page_1/11062b_c85a5972ef7d461ba97e2d5c292ba0ad_mv2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 40px;
}
#section_3 {
    line-height: 40px;
}
#section_4, #section_7, #section_9 {
    background-image: url(/images/landing_page_1/11062b_15b9f4e62cf1445f83d49558173ceed6_mv2_d_6270_2788_s_4_2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 40px;
}
#section_5 {
    line-height: 30px;
}
#section_6 {
    line-height: 30px;
}
#section_8 {
    background-image: url(/images/landing_page_1/0bf4d0e8d9e443eab96ad61b992dce4a.webp);
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 30px;
}
.dark-2 {
    background-color: rgba(0,0,0,0.7);
}
.dark-3 {
    background-color: rgba(0,0,0,0.85);
}

.dark {
    display: none;
}

footer {
    margin-top: 350px;
}

footer a {
    text-decoration: underline;
}

footer a:hover {
    color: #F8CC01;
}

#faq .card-header a{
    color: black;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
}

#faq * {
    border-width: 0px !important;
}

#faq .card-header{
    background-color: white;
}

#faq .card {
    border-bottom: 1px solid black !important;
}

@keyframes shake {

    0%{
        transform: scale(0.95);
    }50%{
        transform: scale(1.05);
    }100%{
        transform: scale(0.95);
    }

}

.shake {
    animation-name: shake;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    outline: none !important;
}

.modal-dark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    display: none;
}

.modal-dark .ball-modal {

    position: absolute;
    background-color: rgba(0,0,0,0.7);
    transition: width 1s, height 1s ease;
    border-radius: 100%;
    left: -50%;
    top: -50%;
    width: 0px;
    height: 0px;
}


.modal-dark .box{
    position: absolute;
    background-color: white;
    left: 50%;
    top: 50%;
    transition: transform 0.45s ease;
    border-radius: 5px;
    transform: translate(-50%, -50%) scale(0);
}

.input-1 {
    height: 60px;
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none !important;
    border: 2px solid rgb(190, 190, 190);
    box-shadow: 0px 0px 15px 5px rgba(126, 126, 126, 0.171);
    transition: border 0.3s, box-shadow 0.3s, color 0.3s ease;
}

.input-1:focus {
    box-shadow: 0px 0px 15px 5px rgba(0, 153, 255, 0.171);
    border: 2px solid rgb(5, 139, 228);
}

.button-1 {
    box-shadow: 0px 0px 15px 5px rgba(0, 153, 255, 0.171);
    background-color: rgba(54, 166, 241, 0);
    border: 2px solid rgb(5, 139, 228);
    color: rgb(27, 27, 27);
    position: relative;
}

.button-1::after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: var(--width-button);
    height: 100%;
    transition: width 0.4s ease;
    background-color:  rgb(5, 139, 228);
    z-index: -1;
}