
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800&display=swap");
.banner {
    display: block;
    padding: 2rem 3rem;
    width: clamp(280px, 110%, 1900px);
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
    /*background: radial-gradient(circle at bottom, #23dfd7, #055d44);*/
    border-radius: 2rem;
    background-color: #e9f0f5;
    border: 2px solid #5353f3;
    color: white;
}

.banner form {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.banner form .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 70%;
}

.banner h3 {
    font-size: 2.2rem;
    margin-top: 0;
    font-weight: bold;
    color: #7b7b80;
    /*margin-left: -159px;*/
    text-align: left;
}

.banner h3 span {
    color: #040972;
    display: block;
    margin-bottom: 20px;
    font-size: 2.3rem;
    font-weight: bold;
    /*margin-left: 160px;*/
}

.banner .banner-options {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
}

.banner .banner-options .option {
    margin: 0.25rem 0;
}

.banner .banner-options input {
    display: none;
}

.banner .banner-options label {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.3rem;
    border: 1px solid #102f8b;
    border-radius: 2rem;
    cursor: pointer;
    transition: 0.5s all;
    background: transparent;
    font-size: 11px;
    color: #102f8b;
    height: 50px;
    width: 246px;
    position: revert;
}

.banner .banner-options label span {
    display: flex;
    align-items: center;
}

.banner .banner-options label span img {
    opacity: 0;
    margin-right: 0.5rem;
}

.banner .banner-options label img {
    /*height: 0.9rem;*/
    width: 1.5rem;
    object-fit: contain;
    margin-right: 0.5rem;
    /*filter: invert();*/
}

.banner .banner-options input:checked + label {
    background: #102f8b;
    border-color: transparent;
    color: white;
}

.banner .banner-options input:checked + label span img {
    filter: none;
    opacity: 1;
    width: 15px;

}

.banner .submit {
    font-family: "Raleway", sans-serif;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    background-color: orangered;
    border: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
    margin-inline: auto;
    height: 50px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.banner .banner-image {
    height: 205px;
    transform: translateY(4.2rem) scale(1.4);
    transform-origin: bottom;
    padding-top: 25px;
    padding-right: 25px;
}

.banner .banner-image1 {
    display: none;
}

@media screen and (max-width: 1024px) {
    .banner .banner-title {
        margin-inline: auto;
    }
    .banner .left {
        width: 60%;
    }
    .banner .banner-image1 {
        display: block;
        width: 40%;
        height: 300px;
        object-fit: contain;
        margin-bottom: 2rem;
    }
    .banner .banner-image {
        display: none;
    }

    .banner .banner-options {
        align-items: center;
        flex-direction: column;
    }
}

@media screen and (max-width: 769px) {
    .banner {
        max-width: 480px;
        padding: 2rem 1rem;
        width: clamp(280px, 100%, 1900px);
    }

    .banner form .left {
        width: 100%;
    }

    .banner .banner-image1 {
        width: 100%;
    }

    .banner form {
        flex-direction: column;
        align-items: center;
    }

    .banner h3 {
        text-align: center;
        font-size: 2rem;
    }

    .banner h3 span {
        text-align: center; /* Add this line to ensure left alignment */
    }

    .banner .submit {
        margin-top: 2rem;
        padding: 1rem 3rem;
        font-size: 2.1rem;
        width: 80%;
    }

    .banner .banner-options {
        margin-top: 1.5rem;
    }

    .banner .banner-options label {
        font-size: 1.4rem;
        padding: 1rem 1rem;
        width: 300px;
        /*text-align: center;*/
    }

    .banner .banner-image {
        display: none;
    }

    .banner .banner-image1 {
        margin-bottom: 1rem;
    }
}


/* Hide the unchecked image by default */
.option input[type="checkbox"]:not(:checked) + label span img {
    display: none;
}

/* Show the checked image when the checkbox is checked */
.option input[type="checkbox"]:checked + label span img {
    display: inline-block;
}

/* Hide the checked image when the checkbox is not checked */
.option input[type="checkbox"]:not(:checked) + label img + img {
    display: none;
}

/* Show the unchecked image when the checkbox is not checked */
.option input[type="checkbox"]:checked + label img + img {
    display: inline-block;
}

/*.icon {*/
/*  display: inline-block;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  background-image: url("/img/down.png");*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*}*/


/*change color blue to white in icon*/
.banner .banner-options input:checked + label .icon{
    filter: brightness(0) invert(1);
}

[type=checkbox]:not(:checked)+label:before {

    background: transparent;
}

[type=checkbox]:checked+label:after, [type=checkbox]:not(:checked)+label:after {
    background: transparent;
}

[type=checkbox]:checked+label:before, [type=checkbox]:not(:checked)+label:before {

     border: 0px solid transparent;

     background: transparent;
}