@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


body {
    margin: 0;
    padding: 0;
    font-family: Roboto;
}

:focus:not([tabindex^='-']) {
    outline: none;
}

/*============================================================
    Reset css start
===============================================================*/
html,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    font-family: Roboto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

a,
a:hover {
    text-decoration: none;
    transition: all .2s ease-in-out;
}

img {
    /*max-height: 100%;*/
    max-width: 100%;
}

/*============================================================
    Reset css end
===============================================================*/


/*============================================================
    Header Css Section Start
===============================================================*/
header.headerSec {
    background-image: linear-gradient(to top, #002d72, #003585, #003e99, #0146ad, #044fc2);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabBTN_Box .customBTN {
    /* background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #002d72; */

    background-color: #ffc805;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.tabBTN_Box .customBTN:hover {
    background-color: #0654ca;
    color: #fff;
}

.searchBox input {
    padding: 8px 10px 8px 33px;
    font-size: 16px;
    font-weight: 400;
    color: #002d72;

}

.searchBox input:focus {
    box-shadow: unset;
    border-color: transparent;
}

.searchBox .searchICON {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    left: 10px;
    color: #002d72;;
}
/*============================================================
    Header Css Section End
===============================================================*/

/*============================================================
    Banner Css Section Start
===============================================================*/
.bannerSec {
    background-image: url(../images/homeSlider.webp);
    background-repeat: no-repeat;
    height: 700px;
    background-position: center;
    position: relative;
}

.bannerSec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
}

.bannerBTN_Box {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bannerBTN_Box .customBTN {
    display: block;
    width: 100%;
    padding: 15px 20px;
}
/*============================================================
    Banner Css Section End
===============================================================*/


/*============================================================
    Registration Form Css Section Start
===============================================================*/
.registrationForm_Box  {
    height: 100%;
}

.greyBOX {
    background: #eee;
    height: 100%;
}

.formHeading h1 {
    font-size: 20px;
    font-weight: 400;
    background-color: #003481;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
}

.formSec {
    padding: 0px 10px;
}

.customInput_Box label {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.customInput_Box input {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding: 8px 15px;
    border-radius: 0;
}

.customInput_Box input:focus {
    border-color: #002d72;
    box-shadow: unset;
    border-width: 1px 1px 1px 3px;
    color: #002d72;
}
/*============================================================
    Registration Form Css Section End
===============================================================*/

/*============================================================
    Footer Css Section End
===============================================================*/
#mainfooter{
    background:#002d72;
    padding: 3rem 0;

    bottom: 0;
    width: 100%;

}
.footerlogo{
    margin-bottom: 20px;
}
.footerlinks{
    list-style-type: none;
    margin: 0;
    padding: 20px 0 0;
}
.footerlinks li:not(:last-child){
    padding-bottom: calc(8px/2);
}
.footerlinks li{
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
.footerlinks li a{
    font-size: 0.9rem;
    font-weight: 600;
    color:#fff;
}
.footerlinks li .linkicon{
    margin-right:5px;
}
.footerlinks li .linkicon svg {
    width: 14px;
    height:14px;
    filter: grayscale(0) invert(1);
}
.footer-right-content h2{
    font-size: 1.3rem;
    font-weight: 600;
    color:#fff;
    text-transform: uppercase;
    text-align: right;
}
.footer-right-content hr{
    width: 150px;
    border-top: 5px solid #fff;
    margin:5px 0 10px auto;
    opacity: 1;
}
.footernavlink{
    list-style-type: none;
    margin: 0;
    padding: 0px 0 0;
    text-align: right;
}
.footernavlink li{
    display: inline-block;
    padding: 0px 15px;
}
.footernavlink li:last-child{
    padding-right:0px;
}
.footernavlink li a{
    font-size: 0.9rem;
    font-weight: 600;
    color:#fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding:10px 0;
}
.footernavlink li a:after{
    position: absolute;
    content:'';
    right:0;
    transition:all .3s ease;
    height: 0;
    background-color: #fff;
    left:0;
    bottom:0px;
}
.footernavlink li a:hover:after{
    height: 3px;
}
.socialmedia{
    list-style-type: none;
    margin: 0;
    padding: 20px 0 0;
    text-align: right;
}
.socialmedia li{
    display: inline-block;
    margin-bottom: 8px;
    word-break: break-word;
    padding: 0 1px;
}
.socialmedia li a{
    height: 33px;
    width: 33px;
    background-color:#fff;
    border-radius: 10%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #002d72;
}
.socialmedia li a:hover{
    color: #001c38;
}
.socialmedia li a svg{
    width: 1em;
    fill: currentColor;
    height: 1em;
    position: relative;
    display: block;
}
.bottom-footer{
    background-color: #000515;
    min-height: 50px;
    border-top: 1px solid rgba(255,255,255,0.19);
    display: flex;
    align-items: center;
    justify-content: center;

    bottom: 0;
    width: 100%;
    margin:auto;

}
.bottom-footer p{
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 300;

}
.bottom-footer p a{
    color:#fff;
    font-weight: 500;
}
/*============================================================
    Footer Css Section End
===============================================================*/

.sub{
background-color:#003481;
}

.tabBTN_Box {
display:flex;
align-items:center;
gap:10px;
}

.minHeight {
    min-height: calc(100vh - 44vh);
}


.pageloader {
            position: fixed;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background: url('/static/core/images/Loading-bar.gif') 50% 50% no-repeat rgb(249, 249, 249);
            opacity: .6;
}

#back-button{
    margin-left: 30px;
    margin-top: 30px;
   }


#show{
    margin:10px;
}


.ele {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 5px;
}

.ele input {
    grid-column: 1;
}

.ele select {
    grid-column: 1;
}

.ele textarea {
    grid-column: 1;
}

.ele .radio-group{
   grid-column: 1;
}

.ele .checkbox-group{
     grid-column: 1;

}
.ele i.del {
    grid-column: 2;
}
.btn-align{
margin-right:250px;
}



#sub{
background-color:#003481;
}

#uploadButton{
background-color:green;
}

#uploadButton1{
background-color:#003481;
}

#id_page_html{
width:100%;
height:350px;
}


.custmRadio .form-label{
font-weight:700;
}

.custmRadio #div_id_time_units div {
display:flex;
}
.custmRadio #div_id_time_units div .form-check {
margin-right: 30px;
}
.custmRadio .form-check .form-check-input {
margin-right: 10px;
}


