/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.hidden {
    display: none !important;
}

.back_container h2 a{
    display: flex;
    align-items: center;
}

.back_container:hover h2 a{
    color: #E7D71E !important;
}

.back_container:hover svg path{
    stroke: #E7D71E !important;
    
}

 /* START SIGNUP  */
.builder_directory_signup_container {
    position: relative;
    height: 130px;
    width: 100%;
    border-radius: 8.4px;
    overflow: hidden;
}

.builder_directory_signup_container img {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 130px !important;
    width: 100%;
    object-fit: cover;
    background-color: #C7F1F3;
}

.builder_directory_signup_content {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 130px;
    width: 100%;
    color: #fff;

    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    flex-flow: wrap;
    gap: 10px;
    background-color: hsla(0, 0%, 0%, 0.486);
}

.builder_directory_signup_content h1 {
    font-size: 30px !important;
    text-align: center;
    padding-inline: 10px;
}

.builder_directory_signup_content button {
    color: #e7d71e;
    padding: 10px 15px;
    background: #000;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    width: 350px;
}

.builder_directory_signup_content button:hover,
.builder_directory_signup_content button:active,
.builder_directory_signup_content button:focus {
    color: #e7d71e;
    background: #000;
}


/* END SIGNUP */


/* START BUILDER DIRECTORY BANNER */

.bd_landing_page_banner {
    position: relative;
    height: 345px;

    display: flex;
    align-items: center;
    border-radius: 9px;
}

.bd_landing_page_banner .banner_img {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-color: #C7F1F3;
    border-radius: 9px;
}

.bd_landing_page_banner_content {
    position: relative;

    display: flex;
    justify-content: space-between;

    color: #fff;

    z-index: 999;
    width: 100%;
    padding: 40px;
}

.bd_landing_page_banner_content h3 {
    font-size: 48px;
}

.bd_landing_page_banner_content p {
    font-size: 36px;
}

.bd_landing_page_banner_content div {
    width: 50%;
}

.bd_landing_page_banner_content button {
    color: #e7d71e;
    padding: 10px 15px;
    background: #000;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    width: 350px;
    align-self: end;
}

.bd_landing_page_banner_content button:hover,
.bd_landing_page_banner_content button:active,
.bd_landing_page_banner_content button:focus {
    color: #e7d71e;
    background: #000;
}

/* END BUILDER DIRECTORY BANNER */

 /* START REGISTER NOW SECTION */
.register_now_container {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* .register_now_content_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 36.75px 32.55px;
    width: 100%;
    height: 416.85px;
    
    border-radius: 8.4px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} */

.register_now_content_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 36.75px 32.55px;
    width: 100%;
    height: 416.85px;
    
    border-radius: 8.4px;

    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

.register_now_content_container h3 {
    font-size: 32px;
    color: #fff;

    
    /* TO COMMENT */
    width: 50%;
    margin-right: auto;
    /* TO COMMENT END */
}

.register_now_content_container button {
    display: block;
    background-color: #000;
    color: #E7D71E;
    border: none;

    
    /* TO COMMENT */
    width: 50%;
    margin-right: auto;
    /* TO COMMENT END */
}

.register_now_content_container button:hover,
.register_now_content_container button:active,
.register_now_content_container button:focus {
    background-color: #000;
    color: #E7D71E;
    border: none;
}

@media (280px <= width <= 768px)  {

    .builder_directory_signup_content {
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 5px;
        color: #fff;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        flex-flow: wrap;
        gap: 10px;

        padding: 10px;
    }
    
    .builder_directory_signup_content h1 {
        font-size: 23px !important;
        text-align: center;
        padding-inline: 10px;
    }
    
    .builder_directory_signup_content button {
        color: #e7d71e;
        padding: 10px 15px;
        background: black;
        font-size: 12px;
        border-radius: 5px;
        text-decoration: none;    
    }

    .builder_directory_signup_container img,
    .builder_directory_signup_container {
        height: 150px !important;
    }

    .register_now_content_container {
        padding: 20px;
    }

    .register_now_content_container h3 {
        font-size: 25px;
        color: #fff;
    }
}

@media (280px <= width <= 649px)  {
    .register_now_container {
        flex-direction: column;
    }
}

@media (280px <= width <= 1100px)  {
    .bd_landing_page_banner {
        position: relative;
        height: 100%;
    }

    .bd_landing_page_banner_content {
        flex-direction: column;
        gap: 10px;

        padding: 20px;
    }

    .bd_landing_page_banner_content div {
        width: 100%;
    }

    .bd_landing_page_banner_content h3 {
        font-size: 30px;
    }

    .bd_landing_page_banner_content p {
        font-size: 25px;
    }

    .bd_landing_page_banner_content button {
        align-self: center;
        width: 100%;
    }


    /* TO COMMENT */
    .register_now_container .register_now_content_container {
        background-position: center;
        background-size: cover;
    }

    .register_now_container .register_now_content_container h3,
    .register_now_container .register_now_content_container button {
        width: 100%;
        margin-right: 0;
    }

    /* TO COMMENT END */
}
