@import url(./global.css);
@import url(./news-scroll.css);
@font-face {
    font-family: 'Lucida Calligraphy';
    src:url('../webfonts/Lucida Calligraphy Font.woff') format('woff'),
         url('../webfonts/Lucida Calligraphy Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    font-family: var(--main-font)
}
ul {
	padding:10px;
	margin:0;
}
.navbar-nav {
	padding:0px;
}
.SumoSelect span {
	text-wrap:warp;
}
body {
    background-color: #f9f9f8;
    /* background-image: url(../images/gray-abstract-wireframe-technology-background.jpg); */
    background-size: 100%;
}

footer {
    background-image: url(../images/water-ripple-texture-background-blue-wallpaper-design.jpg);
    background-size: 100%;
    /* height: 300px; */
    border-top: 3px solid var(--active-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.main-header-back {
    background-color: #dae8ed;

}

.main-header {
    display: flex;
    justify-content: space-between;

    padding: 3px 10px;
    /* box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px; */
}

.left-header {
    width: 20%;
}

.center-header {
    width: 60%;
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}
.center-header h1{
    font-size: 1.5rem;
    font-weight: bold;
    color:#f34900;
}
.center-header p {
    font-size: 1.4rem;
    line-height: 1.4rem;
    letter-spacing: 1px;
    margin: 0;
    font-weight: bold;
    font-family: 'Lucida Calligraphy', cursive;
    color: var(--main-color);
}

.center-header img {
    width: 100%;
}

.left-header img {
    width: 100%;
}

/* .right-headerimg {
    display: flex;
    width: 40%;
    justify-content: space-around;
}
.right-headerimg img{
    width: 30%;
} */
.right-header {
    display: flex;
    /* border: 1px solid red; */
    width: 30%;
    justify-content: space-evenly;
    align-items: center;
}

.icons-header {
    width: 20%;
    display: flex;
    border-right: 1px solid #cccccc;
    justify-content: center;
    align-items: center;
}

.icons-header i {
    color: var(--main-color);
    font-size: 3rem;
}

.text-headers {
    /* border: 1px solid darkred; */
    color: var(--main-color);
    padding: 0 5px;
}

.text-headers h3 {
    font-weight: bolder;
    color: var(--main-color);
    font-size: 1rem;
    margin: 0;
}

.text-headers p {
    font-size: 1rem;
    margin: 0px 0 5px 0;
    font-weight: bold;
    color: #f16a2b;
}

.main-card {
    background-color: var(--main-color);
    padding: 1.3rem 1rem;
    border-radius: 1.2rem;
    color: white;
    margin-top: 2rem;
    position: relative;
}

.main-card .counselling-over {
    background-image: url(../icons/svg-image-1.png);
    background-repeat: no-repeat;
    height: 50px;
    background-size: 80%;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 376px;
    margin: 0 auto;
    background-position: center;
    margin-top: -2.4rem;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}

.counselling-over .card-text {
    font-weight: 600;
    color: #000;
}

.main-cards-flex {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.main-card {
    background-color: var(--main-color);
    padding: 1.3rem 1rem;
    border-radius: 5px;
    color: white;
    margin-top: 2rem;
    position: relative;

    height: 310px;
}

input {
    overflow: visible;
    width: 100%;
    border: none;
    margin: 10px 5px;
    background: #1d8aaf;
    border-radius: 200px;
    color: white;
    position: relative;
    padding: 10px;
    border: 1px solid #ffffff;
}

.input-box {
    position: relative;
    margin: 20px 20px 5px 20px;
}

.input-box i {
    position: absolute;
    right: 4%;
    font-size: 1.5rem;
    top: 25%;
}

input::placeholder {
    color: white;
    font-weight: bolder;
    letter-spacing: 1px;

}

.containerss input {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.containerss {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    font-size: 20px;
    border: 2px solid #beddd0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 1.3em;
    background-color: #2dc38c;
    border-bottom: 1.5px solid #2dc38c;
    box-shadow: 0 0 1px #cef1e4, inset 0 -2.5px 3px #62eab8,
        inset 0 3px 3px rgba(0, 0, 0, 0.34);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}


.containerss input:checked~.checkmark {
    transform: translateY(40px);
    animation: wipeDown 0.6s ease-in-out forwards;
    /* Apply wipe animation */
}


.containerss input:not(:checked)~.checkmark {
    transform: translateY(-40px);
    animation: wipeUp 0.6s ease-in-out forwards;
    /* Apply wipe animation */
}

@keyframes wipeDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
    }
}

@keyframes wipeUp {
    0% {
        transform: translateY(40);
    }

    100% {
        transform: translateY(0px);
    }
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.containerss input:checked~.checkmark:after {
    display: block;
}

.containerss .checkmark:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.34);
    /* Icon drop shadow */
}

.checks {
    gap: 5px;
    display: flex;
    align-items: center;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 20px 11px 0 20px;
    margin: 20px auto;
}

.remember-forgot a {
    text-decoration: none;
    color: var(--active-color);
}

.remember-forgot a:hover {
    color: white;
}

.btn {
    width: 200px;
    margin-left: calc(50% - 100px);
    background-color: white;
    border-radius: 200px !important;
}

.create {
    width: 100%;
    margin: 10px auto;
    text-align: center;
    font-size: .95rem;
    color: white;
}

.create a {
    color: var(--active-color);
    font-weight: bold;
}

ul.timeline {
    list-style-type: none;
    position: relative;
    margin-bottom: 0px;
}

ul.timeline>li {
    display: flex;
    padding: .4rem .7rem;
    border-bottom: 1px dotted #a0a0a0;
    transition: .3s;
}

.timeline-date {
    width: 90px;
    display: grid;
    background: #005f71;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    margin-right: 10px;
    align-self: end;
    box-shadow: 0px -2px 0px 0px #cacee6;
    font-size: 16px;
    min-width: 63px;
}

.timeline li span {
    color: var(--main-color);
    background: var(--active-color);
    letter-spacing: 0.5px;
    font-weight: 700;
    text-align: center;
    padding: 2px 8px;
    font-size: .7rem;
    font-weight: bold;
}



.timeline li a {
    color: var(--main-color);
    align-self: flex-start;
    height: 3rem;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: .9rem;
    font-weight: bold;
}

.new {
    margin-left: 5px;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 50%;
    background: var(--active-color);
    padding: 3px 7px;
    animation: blink .6s infinite;
}

.main-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 5px;
}

.main-link-box {
    margin: 15px auto 0;
    width: 240px;
    padding: 0.5rem;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    transition: .5s ease-in;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) -5px 3px 2.6px;
    border: 1px solid #e1e1e1;
    transition: .3s ease;
    background: linear-gradient(35deg, rgb(2 76 96) 50%, rgb(17 95 114) 64%);
}

.main-link-box img {
    width: 20%;
    /* border: 1px solid red; */
}

.main-link-box p {
    margin: 0;
    font-size: .9rem;
    font-weight: bold;
    padding: 0 5px;
    color: #ffffff;
}

/* .main-link-box:nth-child(1) {
    background: linear-gradient(35deg, rgb(255 210 200) 50%, rgb(255 210 200 / 10%) 64%);
}
.main-link-box:nth-child(2) {
    background: linear-gradient(35deg, rgb(207 255 232) 50%, rgb(207 255 232 / 10%) 64%);
}
.main-link-box:nth-child(3) {
    background: linear-gradient(35deg, rgb(226 226 255) 50%, rgb(226 226 255 / 10%) 64%);
}
.main-link-box:nth-child(4) {
    background: linear-gradient(35deg, rgb(237 255 223) 50%, rgb(237 255 223 / 10%) 64%);
}
.main-link-box:nth-child(5) {
    background: linear-gradient(35deg, rgb(255 232 204) 50%, rgb(255 232 204 / 10%) 64%);
} */
.main-link-box:hover {
    scale: 1.03;
    transition: .3s ease;
}

.tabbers .main-card {
    background-color: #e0f7fe;
    border: 1px solid #b5b5b5;
    height: fit-content;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.nav-tabs {
    border-bottom: none !important;
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin: 10px;
    margin-bottom: 0;
    list-style: none;
    justify-content: space-around;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
    width: 200px;
    font-weight: bold;
    /* color: #ffffff; */
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px !important;
    border-radius: 10px;
    background: #c1c1c0;
    border: 1px solid #797773;
}

.nav-tabs .nav-link {
    border: none !important;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: black;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: #024c60 !important;
    border: 1px solid red;
    /* border-color: #dee2e6 #dee2e6 #fff; */

}

.left-s {
    display: flex;
    /* background-color: rgb(255 255 255 / 20%); */
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.left-s img {
    padding: 5px;
    width: 50%;
}

.left-s h1 {
    padding: 0 0.3em;
    text-align: center;
    font-size: 1.4rem;
    color: var(--main-color);
    font-family: var(--main-font);
}

.left-s p {
    text-align: center;
    color: var(--main-color);
    padding: 0.5rem 2rem;
    font-size: .98rem;
}

.contacts-f {
    /* border-top: 1px solid #ffffffab; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.contacts-f p {
    margin: 0;
    padding: 5px 15px;
    cursor: pointer;
    font-size: .98rem;
    transition: .3s;
    border-radius: 500px;
    color: white;
    background: #024c60;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.contacts-f i {
    margin-right: .3rem;
}

.social-m {
    width: 100%;
    border-top: 1px solid #f1f1f1;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.social-m a {
    width: 3rem;
    height: 3rem;
    display: flex;
    text-decoration: none;
    align-items: center;
    background: white;
    border-radius: 50%;
    justify-content: center;
    color: var(--main-color);
    transition: .3s;
    border: 2px solid white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.main-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: var;
    color: var(--main-color);
    /* background: var(--active-color); */
    padding: 0.3rem 0;
    /* width: 17%; */
    border-radius: 0px;
    /* border: 1px solid #d1d1d1; */
    position: relative;
    width: fit-content;
}

.main-heading::after {
    content: " ";
    top: 90%;
    bottom: 0;
    left: 0;
    right: 70%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 5;
    background-color: var(--active-color);
    position: absolute;
}

.cstm-ul {
    list-style: none;
}

.cstm-ul li {
    margin: 0.5rem 0rem;
}

.cstm-ul a {
    color: var(--main-color);
    /* margin: 1rem; */
    transition: .3s ease;
}

.cstm-ul i {
    margin-right: 5px;
}

.create a:hover {
    color: white;
}

.navbars {
    background: var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

/*.navbar {*/
/*    padding: .4rem 1rem !important;*/
/*}*/
.navbars a {
    color: white;
    position: relative;
    text-decoration: none;
    /* margin-right: 4rem; */
}

.navbars a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    /* Position slightly below the text */
    width: 0;
    height: 4px;
    /* Thickness of the underline */
    background-color: var(--active-color);
    /* Active color for underline */
    transition: width 0.3s ease;
    /* Adjust animation speed here */
}

.navbars a:hover {
    color: var(--active-color);
    text-decoration: none;
}

.navbars a:hover::after {
    width: 100%;
    /* Full width on hover */
}

sup {
    top: -17px !important;
    right: -18px !important;
}

.btn:hover {
    background-color: var(--active-color) !important;
}


.custom-list {
    list-style-type: none;
    padding: 0;
}

.custom-list li {
    background: url(../icons/right-arrow.png) no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    color: black;
    text-align: justify;
    margin-top: 10px;
    margin-bottom: 15px;
}


.card-body ol {
    counter-reset: my-awesome-counter;
    list-style-type: none;
    padding-left: 5px;
}
.card-body ol li {
    line-height: 26px;
    list-style: none;
    counter-increment: my-awesome-counter;
    position: relative;
    margin: 15px 0;
    color: black;
    text-align: justify;
}
        .card-body ol li::before {
    content: counter(my-awesome-counter);
    background: #ffb35e;
    padding: 6px 11px;
    border-radius: 50%;
    font-weight: 700;
    color: #08488f;
    margin-right: 10px;
}
.card-body ol li span {
    font-weight: 700;
}
.card-body ol li ul li img {
    width: 150px;
    float: right;
}
.dropdown{
    display: flex;
}
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none ;
    position: absolute ;
    top: 27px !important;
    left: -100px !important;
    z-index: 1000;
    min-width: 200px !important;
    padding: 5px 0;
    background-color: #d9e8ed !important;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0px !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu li a {
    padding: 10px 3px;
    display: block;
    color: black;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #e1bc5e;
    color: black;
}
.dropdown-menu li a:hover::after{
    content: none;
}
.succ {
	border-top:2px solid #090;
	border-bottom:2px solid #090;
	color:#090;
	padding:5px 0;
	width:100%;
	display:inline-block;
	font-weight:bold;
	text-align:center;
	background:#E0F9DF;
	margin:5px 0;
	-webkit-animation: shake .5s ease-in-out;
	-moz-animation: shake .5s ease-in-out;
	-ms-animation: shake .5s ease-in-out;
	-o-animation: shake .5s ease-in-out;
	animation: shake .5s ease-in-out;
}
.err {
	border-top:2px solid #C30;
	border-bottom:2px solid #C30;
	color:#C30;
	padding:5px 0;
	width:100%;
	display:inline-block;
	font-weight:bold;
	text-align:center;
	background:#FDE9E8;
	margin:5px 0;
	-webkit-animation: shake .5s ease-in-out;
	-moz-animation: shake .5s ease-in-out;
	-ms-animation: shake .5s ease-in-out;
	-o-animation: shake .5s ease-in-out;
	animation: shake .5s ease-in-out;
}
#msg {
	display:none;
	z-index:200;
	border:2px solid #924949;
	position:absolute;
}
#msgcontent {
	display:block;
	background:#f3e6e6;
	padding:5px;
	min-width:150px;
	max-width:250px;
	font-size:12px;
	position:relative;
}
#msgimg {
	position:absolute;
	width: 37px;
	height: 7px;
	left:0;
	top:-7px;
	background:url(../images/msg_arrow_top.png) no-repeat;
}
.appform input[type=text], .appform input[type=date], .appform input[type=file] {
	background:#FFF;
	border:1px solid #333333;
	border-radius: 0;
	padding: 5px 10px;
	color:black;
}
.appform select {
	background:#FFF;
	border:1px solid #333333;
	border-radius: 0;
	padding: 5px 10px;
}
.tbl td {
	padding:2px;
	border:1px solid #999999;
}
.btn {
	background-color:#006633;
}
.real-footer {
    background: var(--main-color);
    display: flex;
    justify-content: space-around;
    /*font-weight: bold;*/
    font-size: .8rem;
    color: #ffffff;
}.real-footer a{
    color:var(--active-color);
}
.real-footer a:hover{
    color:white;
}
       .contact-border {
            margin: 45px auto 5px auto;
            width: 90%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .contact-border div {
            width: 25%;
            height: 200px;
            background-color: white;
            border-radius: 7px;
            padding: 10px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            display: flex;
            border: 1px solid #b5b5b5;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }
        .contact-border img {
            width: 25%;
        }
        .contact-heading-border {
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #3b3b3b;
        }

        .contact-heading-det {
            text-align: center;
            font-size: 1rem;
            color: black;
        }
        
        
        
        
.bluearrow {
    list-style-type: none;
    padding: 0;
    width: 96%;
    margin: 15px auto;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #000000;
}

.bluearrow li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.bluearrow li:before {
    content: '→';
    color: #3498db;
    position: absolute;
    left: 0;
    top: 0;
}

.style1 {
    font-weight: bold;
    font-size: 16px;
    color: #e74c3c;
}

.style4 {
    color: #3498db;
    font-weight: bold;
}.style5 {
    color: #2f9901;
    font-weight: bold;
}

.style1, .bluearrow li {
    line-height: 1.6;
}

.bluearrow li:last-child {
    margin-bottom: 0;
}
.popup_block .no{
    width:45%;
}
.popup_block .yes{
    width:45%;
}
#Educational_Information1 th {
	text-align:center;
	vertical-align: middle;
}
