/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.m-top {
    padding-top: 40px
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 25px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-toggler{
    background-color: white;
    border-radius: 5px;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar table td {
    word-wrap:break-word;
}

.navbar h5 {
    color: var(--light);
}

/*** Header carousel ***/
.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}


.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.newbtn {
    width: auto;
}

/*Others*/

.title-small {
    font-size: 30px;
}

#mu-login {
  margin: 30px 0px 10px;
}

#mu-login .box{
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  border: 2px solid #C0C0C0;
  background-color: #87CEFA;
  margin: 20px auto 20px auto;
  padding: 30px 20px 20px 20px;
  box-shadow: 10px 10px black;
}

#mu-login .btn {
  width: 100%;
}

#mu-login .hellotitle {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

#mu-body-content {
  background-color: #f8f8f8;
  display: inline;
  float: left;
  padding: 30px 0;
  width: 100%;
}
#mu-body-content .mu-body-content-area {
  width: 100%;
  padding: 0 30px;
}

.myimg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #000000;
  cursor: pointer;
  margin-left: 20px;
}

.mybox, .mybox2 {
  padding: 20px;
}

.form5 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid red;
  color: green
}

input[type=date], input[type=datetime-local], input[type=password], input[type=text], input[type=email] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid blue;
    transition: 0.9s;
    border-bottom: 2px solid black;
}

input[type=date]:focus, input[type=password]:focus, input[type=text]:focus, input[type=email]:focus, textarea:focus, select:focus {
    border-color: blue;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}

input[type=submit], input[type=reset], button {
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    border: 0;
    min-height: 50px;
    height: auto;
    font-size: 16px;
    text-align:center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word;
    transition: 0.9s;
}

input[type=file] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: white;
    height: 50px;
    height: auto;
    font-size: 16px;
    font-weight:bold;
    text-align:center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word;
    border-bottom: 4px solid black;
    background-color: #98FB98;
    transition: 0.9s;
}

textarea[name=message], select {
    padding: 12px;
    margin: 2px 0px 10px 0px;
    font-family: "Consolas";
    background: white;
    font-size: 14px;
    border-radius: 5px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid black;
}

ul {
    text-align: left;
}

select {
  width: 100%;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  border: thin solid blue;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  transition: 0.9s;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, blue 50%),
    linear-gradient(135deg, blue 50%, transparent 50%),
    linear-gradient(to right, skyblue, skyblue);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    6px 7px,
    6px 7px,
    2.5em 3.5em;
  background-repeat: no-repeat;
}

select:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, #FF69B4, #FF69B4);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    6px 7px,
    6px 7px,
    2.5em 3.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

select option:hover {
  cursor: pointer;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

label {
  width: 100%;
  text-align: left;
  color: #000000;
  margin: 20px 0 10px 0;
  color: #ffffff;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Modal css
--------------------------------------------------------------*/
.mymodal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
    border-radius: 0;
}

.mymodalmsg {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    border-radius: 0;
}


.modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #000;
    width: 100%;
    max-width: 500px;
    animation: mymoveleft 2s;
    max-height: calc(100% - 1rem);   
}

.left {
    animation: mymoveleft 2s;
}

.right {
    animation: mymoveright 2s;
}

.top {
    animation: mymovetop 2s;
}

.bottom {
    animation: mymovebottom 2s;
}

@keyframes mymoveleft {
  from {
    transform: translatex(130%);
  }
  to {
    transform: translatex(0);
  }
}

@keyframes mymoveright {
  from {
    transform: translatex(-130%);
  }
  to {
    transform: translatex(0);
  }
}

@keyframes mymovetop {
  from {
    transform: translatey(130%);
  }
  to {
    transform: translatey(0);
  }
}

@keyframes mymovebottom {
  from {
    transform: translatey(-130%);
  }
  to {
    transform: translatey(0);
  }
}

[type="date"] {
    background:#fff url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png)  97% 50% no-repeat ;
}

[type="date"]::-webkit-inner-spin-button {
    display: none;
}

[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

[type="datetime-local"] {
    background:#fff url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png)  97% 50% no-repeat ;
}

[type="datetime-local"]::-webkit-inner-spin-button {
    display: none;
}

[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}


.modal-body {
    overflow: auto;
}

.btn-close {
    color: #aaaaaa;
    float: right;
    font-weight: bold;
}

.btn-close:hover, .btn-close:focus {
    background-color: red;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    margin: 0;
} 

.modal-content {
    background-color: #40E0D0;
    color: blue;
}

.modal-title ul {
  list-style: none;
  padding: 0;
}

.modal-title ul li {
  margin-left: 20px;
}

.modal-title ul i {
  padding-right: 4px;
  color: red;
}


.newmodal {
  display: block;
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}


.autoclosemodal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    border-radius: 0;
}

.modal-contentauto {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #000;
    width: 100%;
    max-width: 500px;
    max-height: calc(100% - 1rem);   
}

.error .modal-header{
    background-color: #F08080;
    color: white;
}

.error .modal-body{
    background-color: #FF0000;
    color: white;
}

.success .modal-header{
    background-color: #3CB371;
    color: white;
}

.success .modal-body{
    background-color: #228B22;
    color: white;
}



.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.popup .popuptext {
    visibility: hidden;
    color: #FFFFFF;
    width: 160px;
    background-color: #555;
    text-align: left;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 100;
    top: 100%;
    border: 1px solid white;
    padding:5px;
    right:0;
}

.pop {
    padding: 3px;
    text-align: center;
}

.pop button {
    width: 100%;
    padding: 3px;
    margin: 2px;
}

.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

@media (max-width: 576px) {
    .popup .popuptext {
        right: calc(50% - 80px);
    }
}


.numberid {
  color: #556B2F;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

.stnumber {
  color: #483D8B;
  font-weight: bold;
  font-size: 60px;
  text-align: center;
}

.fa-male, .fa-female {
  color: blue;
}

.menu {
  width: 100%;
  background-color: grey;
  padding: 10px;
  text-align: left;
}

.style18 {
  font-size: 18px; 
  font-weight:bold; 
  color:red;
  text-align: center;
}

.style14 { 
  font-weight: bold; 
  font-size: 18px; 
  color: #FF9933;
  text-align: center;
  color: green;
}


.forallbox {
    width: 100%;
    max-width: 600px;
    background-color: #FFFFE0;
    border-radius: 5px;
    border: 2px solid white;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: left;
    box-shadow: 2px 2px 4px #000000;
}

.TFtable{
    border-collapse: collapse;
    width: auto;
    min-width: 100%;
    table-layout: fixed;
}

.TFtable tr{
    background: #b8d1f3;
}

.TFtable th{
    background: grey;
    color: #FFFFFF;
    padding: 3px 5px;
    word-wrap:break-word;
    font-size: 14px;
}

.TFtable td{
    padding: 3px 5px;
    word-wrap:break-word;
}

.TFtable tr:nth-child(odd){
    background: #b8d1f3;
}

.TFtable tr:nth-child(even){
    background: #dae5f4;
}

.TFtable tr:hover{
    background: #66CDAA;
}

#mywidth{
    width: 100%;
    height: auto;
    max-height: 400px;
    overflow: auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    padding: 10px;
    background-color: cyan;
    border-radius: 5px;
}

.download {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 90000;
}

.down {
   display: none;
}

.btnd {
    background-color:grey;
    border: 1px solid green;
    color: white;
    padding:10px;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;
    border-radius: 5px;
}

.photo1 {
    border-radius: 50px;
    border-width: 1px;
    border-style: solid;
    width: 70px;
    height: 70px;
}

.photo1 img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

#myInput, #myInputone, #myInputtwo {
    background-image: url(../assets/img/seachicon.png);
    background-position: 10px 10px;
    background-repeat: no-repeat;
    width: 300px;
    font-size: 16px;
    padding: 12px 20px 12px 50px;
    border: 1px solid black;
    margin-bottom: 12px;
    border-radius: 5px;
    margin-top: 10px;
    background-color:white;
}

.full1 {
  height: 100%;
  width: auto;
  border-radius: 50%;
  border: 4px solid blue;
  z-index: 900;
  position: fixed;
  left: 0;
  top: 0;
}

.full2 {
  height: auto;
  width: 100%;
  border-radius: 50%;
  border: 4px solid blue;
  z-index: 900;
  position: fixed;
  left: 0;
  top: 0;
}

.background {
  width: 100%;
  height: 100%;
  z-index: 900;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #000000;
}

.name {
    color: #ffffff;
    font-weight: bold;
}

.name2 {
    color: #000000;
    font-weight: bold;
}

.question1 {
    font-weight: bold;
    text-align: center;
    font-size: 60px;
    color: #FF0000;
}


.question2 {
    font-weight: bold;
    text-align: left;
    font-size: 20px;
    color: #ffffff;
}

.confirm-area {
    background-color: #F08080;
    font-weight: bold;
    text-align: center;
}

.buttoncomfirm {
    width: 100%;
    text-align: center;
}

.buttoncomfirm .cancel {
    width: 100%;
    max-width: 120px;
    background-color: #483D8B;
}

.buttoncomfirm .cancel:hover {
    background-color: #4B0082;
}

.buttoncomfirm .ok {
    width: 100%;
    max-width: 120px;
    background-color: #B22222;
}

.buttoncomfirm .ok:hover {
    background-color: #DC143C;
}

.buttoncomfirm .okk {
    width: 100%;
    max-width: 120px;
    background-color: #483D8B;
}

.buttoncomfirm .okk:hover {
   background-color: #4B0082;
}

.mytitle {
  color: white;
  font-weight: bold;
  text-align: center;
  margin: 10px 0px 10px 0px;
  background-color: grey;
  border-radius: 5px;
  padding: 10px;
  text-shadow: 2px 2px 4px #000000;
  font-size: 20px;
}

.aboutbox {
  padding: 15px;
  border-radius: 5px;
  background-color: #F0FFFF;
}

.all-box {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  background-color: #F0FFFF;
  height: auto;
}

.all-box-size {
  max-height: 300px;
  overflow: auto;
}

.about-title {
  font-size: 20px;
  border-bottom: 2px solid green;
  padding-bottom: 12px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #483D8B
}

textarea {
    padding: 12px;
    font-family: "Consolas";
    background: white;
    font-size: 14px;
    border-radius: 5px;
    border-bottom: 2px solid black;
    width:100%;
}

.tablefile {
  background-color: #F3F3F3;
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
  height: auto;
  max-height: 300px;
}

.tablefile th {
  background-color: #FE4902;
  color: #FFF;
  cursor: pointer;
  padding: 5px 10px;
}

.tablefile th small {
  font-size: 9px;
}

.tablefile th {
  text-align: left;
}

.tablefile td {
  padding: 5px;
}

.tablefile td a {
  text-decoration: none;
  color: green;
}

.tablefile td a {
  color: #663300;
  display: block;
  padding: 5px 10px;
}

.tablefile th a {
  padding-left: 0
}

.tablefile th:first-of-type {
  padding-left: 35px;
}

.tablefile tr:nth-of-type(odd) {
  background-color: #E6E6E6;
}

.tablefile tr:hover td {
  background-color:#CACACA;
}

.tablefile td a:hover {
  text-decoration: underline;
  color: red;
}

#searchbox1, #searchbox2, #searchbox3 {
  background-color: #FFEFD5;
  width: 100%;
  height: auto;
  border: 1px solid black;
  padding: 3px 5px 3px 5px;
  border-radius: 0;
}

.log-in {
    background-color: blue;
    padding: 0px 50px;
}

.u-list ul {
  list-style: none;
  padding: 0;
}
.u-list ul li {
  padding-bottom: 0px;
  margin-left: 20px;
}
.u-list ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}



.video-box {
  position: relative;
}
.video-box img {
  padding-top: 15px;
  padding-bottom: 15px;
  object-fit: cover;
  border-radius: 5px;
}

.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#B22222 50%, rgba(104, 164, 196, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(104, 164, 196, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.play-btn:hover::after {
  border-left: 15px solid #68A4C4;
  transform: scale(20);
}
.play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

h4 {
    background: -webkit-linear-gradient(#33c, #fff000, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.navbar h6 {
    background: -webkit-linear-gradient(#33c,  #00ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

#croppie-demo {
    zoom: 55%;
}

@media (max-width: 768px) {
    #croppie-demo {
        zoom: 40%;
    }
}

/*Online assessment*/


.onlinebox {
  width: 100%;
  background-color: #E9967A;
  border-radius: 5px;
  border: 4px solid white;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-align: left;
}

.onlinetextarea {
  width: 100%;
  height:50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  font-family: "Arial";
}

.onlinebox2 {
  background-color: #DA70D6;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.onlinebox3 {
  background-color: grey;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}


.onlinesmalltitle {
  color: black;
  font-weight: bold;
  font-size: 20px;
  padding-left: 10px;
  margin-left: auto;
  margin-right: auto;
}

.onlinenumber {
  color: white;
  font-weight: bold;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: grey;
  text-align: center;
  border: 1px solid white;
  text-shadow: 2px 2px 4px #000000;
}

.onlinetext {
  color: white;
  font-size: 18px;
  padding-left: 10px;
}

#onlinebody {
  text-align: left;
  margin-bottom: 10px;
  overflow: auto;
  padding: 0px 10px 0px 10px;
}

.onlineanswer {
  padding-left: 40px;
}

.onlinepreview {
  border-radius: 5px;
  background-color: #00CED1;
  border: 4px solid white;
  padding: 10px;
}

.onlineinformation {
  background-color: #7B68EE;
  color: white;
  border-radius: 5px;
  border: 2px solid grey;
  padding: 10px;
  margin: 10px 0px 10px 0px;
}

#onlinemyTable2 {
  border-collapse: collapse;
  width:auto;
  font-size: 18px;
  table-layout:fixed;
}

#onlinemyTable2 th {
  text-align: center;
  padding: 12px;
  background-color: grey;
  color: white;
}

#onlinemyTable2 tr {
  border-bottom: 2px solid grey;
  background-color: #FFFFFF;
}

#onlinemyTable2 td {
  word-wrap:break-word;
  color: black;
  font-weight: bold;
}

.onlinesub {
  width: 100%;
  color: yellow;
  font-size:12px;
  text-align: left;
  border-bottom: 1px solid yellow;
}

#myTableonline {
  border-collapse: collapse;
  width:auto;
  min-width: 100%;
  font-size: 18px;
  table-layout:fixed;
  margin-left: auto;
  margin-right: auto;
}

#myTableonline th {
  text-align: center;
  padding: 12px;
  background-color: grey;
  color: white;
}

#myTableonline tr {
  border-bottom: 2px solid grey;
  background-color: #FFFFFF;
}


#myTableonline td {
  word-wrap:break-word;
  color: black;
  font-weight: bold;
  padding: 6px;
}

.boxonline {
  width: 100%;
  background-color: #E9967A;
  border-radius: 5px;
  border: 2px solid blue;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-align: left;
  max-height: 400px;
  overflow: auto;
}

.boxonline:hover {
  box-shadow: 10px 10px 10px #888888;
}

.boxonline2 {
  background-color: #DA70D6;
  padding: 20px;
  border-radius: 5px;
}

.boxonline3 {
  background-color: #9400D3;
  padding: 20px;
  border-radius: 5px;
}

.onlinebox {
  width: 100%;
  background-color: #E9967A;
  border-radius: 5px;
  border: 4px solid white;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-align: left;
}

.onlinetextarea {
  width: 100%;
  height:50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  font-family: "Arial";
}


.onlinebox2 {
  background-color: #DA70D6;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.onlinebox3 {
  background-color: grey;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.onlinesmalltitle {
  color: black;
  font-weight: bold;
  font-size: 20px;
  padding-left: 10px;
  margin-left: auto;
  margin-right: auto;
}

.onlinenumber {
  color: white;
  font-weight: bold;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: grey;
  text-align: center;
  border: 1px solid white;
  text-shadow: 2px 2px 4px #000000;
}

.onlinetext {
  color: white;
  font-size: 18px;
  padding-left: 10px;
}

#onlinebody {
  text-align: left;
  margin-bottom: 10px;
  overflow: auto;
  padding: 0px 10px 0px 10px;
}

.onlineanswer {
  padding-left: 40px;
}

.onlinepreview {
  border-radius: 5px;
  background-color: #00CED1;
  border: 4px solid white;
  padding: 10px;
}

.onlineinformation {
  background-color: #7B68EE;
  color: white;
  border-radius: 5px;
  border: 2px solid grey;
  padding: 10px;
  margin: 10px 0px 10px 0px;
}

#onlinemyTable2 {
  border-collapse: collapse;
  width:auto;
  font-size: 18px;
  table-layout:fixed;
}

#onlinemyTable2 th {
  text-align: center;
  padding: 12px;
  background-color: grey;
  color: white;
}

#onlinemyTable2 tr {
  border-bottom: 2px solid grey;
  background-color: #FFFFFF;
}

#onlinemyTable2 td {
  word-wrap:break-word;
  color: black;
  font-weight: bold;
}

.onlinesub {
  width: 100%;
  color: yellow;
  font-size:12px;
  text-align: left;
  border-bottom: 1px solid yellow;
}

.number {
  color: white;
  font-weight: bold;
  font-size: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: grey;
  text-align: center;
  border: 1px solid white;
  text-shadow: 2px 2px 4px #000000;
}

.previewexercises {
  border-radius: 5px;
  background-color: #87CEFA;
  border: 1px solid white;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.h1exercises {
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin: 10px;
}

#myTabexercises {
  border-collapse: collapse;
  width:auto;
  font-size: 18px;
  table-layout:fixed;
  margin-left: auto;
  margin-right: auto;
  min-width: 300px;
  border-radius: 5px;
}

#myTabexercises th {
  text-align: center;
  padding: 12px;
  background-color: grey;
  color: white;
}

#myTabexercises tr {
  border-bottom: 2px solid grey;
  background-color: #FFFFFF;
}


#myTabexercises td {
  word-wrap:break-word;
  color: black;
  font-weight: bold;
}

.newdiv {
  width:100%;
  max-width: 900px;
  max-height: 400px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
}

#myTable2exercises {
  border-collapse: collapse;
  width:auto;
  font-size: 18px;
  table-layout:fixed;
}

#myTable2exercises th {
  text-align: center;
  padding: 12px;
  background-color: grey;
  color: white;
  font-size: 14px;
}

#myTable2exercises tr {
  border-bottom: 2px solid grey;
  background-color: #FFFFFF;
}


#myTable2exercises td {
  word-wrap:break-word;
  color: black;
  font-weight: bold;
  padding: 6px;
  font-size: 14px;
}

#mybodyexercises {
  padding: 10px;
  margin: 10px 0px 10px 0px;
  margin-right: auto;
  text-align: center;
  overflow: auto;
  background-color: #E9967A;
  border-radius: 5px;
}

.startexercises {
  background-color: transparent;
  border: 0;
  text-decoration: underline;
  color: green;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.startexercises:hover {
  background-color: transparent;
  text-decoration: none;
  color: blue;
}

.titleexercises {
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding-left: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
}

.smalltitle2exercises {
  color: black;
  font-weight: bold;
  font-size: 20px;
  padding-left: 10px;
}

.answerexercises {
  padding-left: 40px;
}

.numberexercises {
  color: white;
  font-weight: bold;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: grey;
  text-align: center;
  border: 1px solid white;
  text-shadow: 2px 2px 4px #000000;
}

.textexercises {
  color: white;
  font-size: 18px;
  padding-left: 10px;
}

.previewexercises {
  border-radius: 5px;
  background-color: #87CEFA;
  border: 1px solid white;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}


.marks1 { 
  height: 130px;
  width: 130px;
  position: relative;
  border: 2px solid white; 
  border-radius: 50%;
  background-color:green;
  margin: auto;
}

.marks-value1 {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 35px;
  color: white;
  width: 100%;
  text-align: center;
}

.marks-value1 table{
  width: 100%;
}

.marks-value1 td{
  padding: 0 30px;
}

.marks-value1 .lign{
  background-color: white;
  height: 4px;
}


.marks2 { 
  height: 130px;
  width: 130px;
  position: relative;
  border: 2px solid white; 
  border-radius: 50%;
  background-color: #FF6347;
  margin: auto;
}

.marks-value2 {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 35px;
  color: white;
  width: 100%;
  text-align: center;
}

.marks-value2 table{
  width: 100%;
}

.marks-value2 td{
  padding: 0 30px;
}

.marks-value2 .lign{
  background-color: white;
  height: 4px;
}


.resultboxexercises {
  width: 100%;
  background-color: #FFEFD5;
  border: 4px solid white;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  max-width: 600px;
  border-radius: 5px;
  text-align: center;

}

.style14exercises { font-weight:bold;font-size:18px;color:white; }
.style18exercises {font-size:18px;font-weight:bold;color:red}


.informationexercises {
  background-color: #7B68EE;
  color: white;
  border-radius: 5px;
  border: 2px solid grey;
  padding: 10px;
  margin: 10px 0px 10px 0px;
}

.hideexercises {
  display: none;
}

#buttonpreviousexercises {
  display: none;
}

.thisbuttonexercises {
  width: 100%; max-width: 150px;
}

@media (max-width: 768px) {
  .thisbuttonexercises{
    max-width: 100%;
  }
}


#clockdivexercises {
  font-family: sans-serif;
  color: #fff;
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
}

#clockdivexercises > div{
  padding: 10px;
  border-radius: 3px;
  background: #00BF96;
  display: inline-block;
}

#clockdivexercises div > span{
  padding: 15px;
  border-radius: 3px;
  background: #00816A;
  display: inline-block;
}


#logininfo {
  font-family: sans-serif;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}

#logininfo > div{
  padding: 5px;
  border-radius: 3px;
  background: #00BF96;
  display: inline-block;
}

#logininfo div > span{
  padding: 5px;
  border-radius: 5px;
  background: #00816A;
  display: inline-block;
}

.smalltextexercises {
  padding-top: 5px;
  font-size: 16px;
}


/*End online assessments*/

.u-list ul {
  list-style: none;
  padding: 0;
}
.u-list ul li {
  padding-bottom: 0px;
  margin-left: 20px;
}
.u-list ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}


#mu-slider {
  display: inline;
  float: left;
  width: 100%;
}
#mu-slider .mu-slider-single {
  display: inline;
  float: left;
  width: 100%;
  position: relative;
}
#mu-slider .mu-slider-single .mu-slider-img {
  display: inline;
  float: left;
  width: 100%;
  height: 500px;
}
#mu-slider .mu-slider-single .mu-slider-img:after {
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#mu-slider .mu-slider-single .mu-slider-img figure {
  height: 100%;
  width: 100%;
}
#mu-slider .mu-slider-single .mu-slider-img figure img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
#mu-slider .mu-slider-single .mu-slider-content {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 20%;
  padding: 0 15%;
  width: 100%;
  text-align: center;
  height: 100%;
}
#mu-slider .mu-slider-single .mu-slider-content h3 {
  letter-spacing: 1px;
  margin-bottom: 0;
  background: -webkit-linear-gradient(#33c,  #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#mu-slider .mu-slider-single .mu-slider-content span {
  display: inline-block;
  height: 1px;
  width: 100px;
}
#mu-slider .mu-slider-single .mu-slider-content h2 {
  font-size: 50px;
  line-height: 80px;
  margin-bottom: 10px;
  color: #fff;
}
#mu-slider .mu-slider-single .mu-slider-content p {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 28px;
}
#mu-slider .mu-slider-single .mu-slider-content a {
  margin-top: 25px;
}
#mu-slider .slick-prev,
#mu-slider .slick-next {
  height: 60px;
  width: 60px;
}

#mu-slider .slick-next {
  right: 10px;
}

#mu-slider .slick-prev {
  left: 10px;
}

#mu-slider .slick-prev:before,
#mu-slider .slick-next:before {
  color: #fff;
  font-size: 25px;
}


#mu-slider .mu-read-more-btn {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#mu-slider .mu-read-more-btn:hover, .mu-read-more-btn:focus {
  color: #fff;
  background-color: blue;
}


@media (max-width:768px) {
  #mu-slider .mu-slider-single .mu-slider-content h2 {
    font-size: 18px;
    line-height: 35px;
  }

  #mu-slider .mu-slider-single .mu-slider-img figure img {
    object-fit: cover;
  }

  #mu-slider .mu-slider-single .mu-slider-content h4 {
    font-size: 15px;
    line-height: 16px;
  }

  #mu-slider .mu-slider-single .mu-slider-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  #mu-slider .mu-slider-single .mu-slider-content {
    padding: 0 2%;
  }

  #mu-slider .mu-slider-single .mu-slider-content {
    top: 5%;
  }

  #mu-slider .slick-prev, #mu-slider .slick-next {
    height: 40px;
    width: 40px;
  }

  #mu-slider .mu-slider-single .mu-slider-img {
    height: 270px;
  }

}
