.header-background {
    background: url(../images/msg-background.png);

    height: 250px;
    background-size: cover;

    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
}

.bg-section {
    background: linear-gradient(130deg, #ff7e00, #ffffff, #46c000);
    background-size: 200% 200%;

    -webkit-animation: Animation 5s ease infinite;
    -moz-animation: Animation 5s ease infinite;
    animation: Animation 5s ease infinite;
}

@-webkit-keyframes Animation {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 91% 100%
    }

    100% {
        background-position: 40% 0%
    }
}

@-moz-keyframes Animation {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 91% 100%
    }

    100% {
        background-position: 40% 0%
    }
}

@keyframes Animation {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 91% 100%
    }

    100% {
        background-position: 40% 0%
    }
}

.inner-icons {
    margin-top: 50px;

}

.icon-1 {
    width: 200px;
    height: 100px;

    margin: 15px;

}

.icon-2 {
    width: 200px;
    height: 100px;
    margin: 15px;

}

@media(max-width:820px) {
    .icon-1 {
        width: 170px;
        height: 100px;

        margin: 10px;

    }

    .icon-2 {
        width: 200px;
        height: 100px;
        margin: 10px;

    }

}

@media(max-width:430px) {
    .header-background {
        height: 220px;
    }

    .inner-icons {
        margin-top: 60px;

    }

    .icon-1 {
        width: 150px;
        height: 90px;

        margin: 10px;

    }

    .icon-2 {
        width: 200px;
        height: 90px;
        margin: 10px;

    }

}

@media(max-width:410px) {
    .inner-icons {
        margin-top: 70px;

    }

    .icon-1 {
        width: 110px;
        height: 75px;



    }

    .icon-2 {
        width: 130px;
        height: 75px;


    }

}

.heading-form {
    color: rgb(224, 0, 0);
    margin-top: 40px;

}

.form-align {
    margin-top: 50px;
}

.card-design {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 30px -3px rgb(128, 128, 128);

}

.contact-label {
    color: rgb(145, 145, 145);
    font-weight: 600;
}

.check-contain {


    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
}

/* Hide the browser's default checkbox */
.check-contain input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 2px solid #25c94e;
}

/* On mouse-over, add a grey background color */
.check-contain:hover input~.checkmark1 {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-contain input:checked~.checkmark1 {
    background-color: #25c94e;
    border-radius: 4px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark1:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-contain input:checked~.checkmark1:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-contain .checkmark1:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}




















.radio-contain {

    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 10px;
}

@media(max-width:423px) {
    .radio-contain {
        font-size: 16px;
    }
}

@media(max-width:395px) {
    .radio-contain {
        font-size: 14px;
    }
}

@media(max-width:369px) {
    .radio-contain {
        font-size: 12px;
    }
}

@media(max-width:342px) {
    .radio-contain {
        font-size: 10px;
    }
}

/* Hide the browser's default radio button */
.radio-contain input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
    border: 2px solid #25c94e;
}

/* On mouse-over, add a grey background color */
.radio-contain:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-contain input:checked~.checkmark {
    background-color: #25c94e;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-contain input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

















.reg-btn {
    background-color: rgb(13, 155, 13);
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 100px;
    letter-spacing: 2px;
}

.reg-btn:hover {
    background-color: #25c94e;
    color: white;
    font-weight: 600;
    border: none;

}

.reg-btn:active {
    background-color: #25c94e;
    color: white;
    font-weight: 600;
    border: none;

}

.reg-btn:focus {
    background-color: #25c94e;
    color: white;
    font-weight: 600;
    border: none;

}

@media(max-width:341px) {
    .reset-btn {
        margin-right: 16px;
        margin-top: 10px;



    }
}

@media(max-width:445px) {
    .align-radiobtn {
        display: inline-block !important;

    }

    .radio-btn {
        margin-left: -10px !important;
        margin-top: 20px !important;
    }

    .bottom-img-banner {
        height: 30px;
    }
 
}
.contact-label-1
{
    font-size: 12px;
}




/****** CODE ******/

.file-upload {
    display: block;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.file-upload .file-select {
    display: block;
    border: 1px solid #dce4ec;
    color: #34495e;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.file-upload .file-select .file-select-button {
    background: transparent;
    padding: 0 10px;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    border-right: 1px solid #dce4ec ;
}

.file-upload .file-select .file-select-name {
    line-height: 50px;
    display: inline-block;
    padding: 0 10px;
}

.file-upload .file-select:hover {
    border-color: #34495e;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload .file-select:hover .file-select-button {
    background: #34495e;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select {
    border-color: #25c94e;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select .file-select-button {
    background: #25c94e;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.file-upload .file-select.file-select-disabled {
    opacity: 0.65;
}

.file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #dce4ec;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #dce4ec;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}

@media(max-width:1090px) and (min-width:992px)
{
    .file-upload
    {
        margin-top: 18px;
    }
}