*{
    box-sizing: border-box;
}
ul li {
    list-style: none;
}
a, a:hover {
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}
html{
    min-height: 100%;
    position: relative;
}
body {
    font-family: "Segoe UI regular";
}
@font-face {
    font-family: 'Segoe UI regular';
    src: url('../fonts/SegoeUI.eot');
    src: local('Segoe UI'), local('SegoeUI'),
        url('../fonts/SegoeUI.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI.woff2') format('woff2'),
        url('../fonts/SegoeUI.woff') format('woff'),
        url('../fonts/SegoeUI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI bold';
    src: url('../fonts/SegoeUI-SemiBold.eot');
    src: local('../fonts/Segoe UI Semibold'), local('SegoeUI-SemiBold'),
        url('../fonts/SegoeUI-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-SemiBold.woff2') format('woff2'),
        url('../fonts/SegoeUI-SemiBold.woff') format('woff'),
        url('../fonts/SegoeUI-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI light';
    src: url('../fonts/SegoeUI-Light.eot');
    src: local('../fonts/Segoe UI Light'), local('SegoeUI-Light'),
        url('../fonts/SegoeUI-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-Light.woff2') format('woff2'),
        url('../fonts/SegoeUI-Light.woff') format('woff'),
        url('../fonts/SegoeUI-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
::-webkit-scrollbar{
    background: transparent;
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background: #777;
}
::-webkit-scrollbar-thumb:hover{
    background: #2b0a3d;
}
.topbanner{
    position: relative;
}
.topbanner::before{
    background-image: url(../../images/custom_shape.png);
    width: 1230px;
    height: 770px;
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}
.navbar-brand {
    margin-right: 0.6rem;
    display: flex;
    align-items: center;
    color: #fff;
}
.navbar-brand img {
    padding-right: 5px;
}
.navbar-brand .logo_text{
    font-family:"Segoe UI bold";
    text-transform: uppercase;
}
.navbar-brand:hover .logo_text {
    color: #fff;
}
.nav_heading {
    font-size: 1rem;
    color: #fff;
    line-height: 16px;
}
.nav_links{
    background: #0694f1;
    border-radius: 5px;
    padding: 5px;
}
.nav_links .nav-item a {
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
    padding: 4px 0px;
    transition: all 0.3s ease;
}
.nav_links .nav-item a::before,.foot_links ul li a::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0,1,1);
    transform-origin: 50% 50%;
    background-color: #88d5ed;
}
.nav_links .nav-item a:hover::before,.foot_links ul li a:hover::before  {
    transform: scale3d(1,1,1);
}
.welcome_txt legend {
    font-size: 1.3rem;
    color: #fff;
}
.welcome_txt legend span {
    font-family:"Segoe UI bold";
    font-size: 1.7rem;   
}
.welcome_txt p {
    text-align: justify;
    color: #fff;
    font-size: 0.85rem;
}
/* Gallery Section */
.gallery {
    padding-top: 70px;
}
.gallery .slick-track li {
    border-radius: 5px;
    border: 3px solid #64cff2;

}
.gallery li img {
    max-width: 100%;
}
.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    bottom: -50px;
  }
  .slick-dots li {
    margin: 0 0.25rem;
  }
  .slick-dots li button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #2b0a3d;
    text-indent: -9999px;
  }
  .slick-dots li.slick-active button {
    background-color: #64cff2;
  }
  .courses_wrap h2,.login_dash h2{
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-family:"Segoe UI bold";
    font-size: 1.5rem;
  }
  .courses,.login_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
  }
  .courses li {
    flex: 0 1 calc(95% / 4);
    background-color: rgb(7 72 115);
    color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    min-height: 100px;
  }
  .login_item li {
    flex: 0 1 calc(85% / 4);
    position: relative;
  }
  .courses li a {
    display: block;
    height: 100%;
    padding: 15px;
  }
  .courses li a i {
    position: absolute;
    right: -35px;
    font-size: 5rem;
    opacity: 0.3;
    bottom: -15px;
    transition: all 0.3s ease;
    transform: rotate(340deg);
    color: #fff;
  }
  .courses li a legend {
    transition: all 0.3s ease;
    color: #fff;
  }
  .courses li a:hover i {
    transform: scale(1.5);
  }
  .courses li a:hover legend {
    letter-spacing: 1px;
  }
  .login_item li {
    margin-bottom: 75px;
  }
  .login_item li a {
    position: relative;
    display: block;
    background-color: #064873;
    padding: 3px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  .login_item li i {
    position: absolute;
    left: 0px;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: #2b0a3d;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0px 0px 15px -1px rgb(100 207 242);
    top: 20px;
    transform: translate(-30px, -40px);
    transition: all 0.3s ease;
  }
  .login_item li legend {
    font-size: 1.05rem;
    padding: 3px 3px 3px 55px;
    /* padding-left: 51px; */
    color: #fff;
    margin-bottom: 0;
    transition: all 0.3s ease;
  }
  .login_item li a:hover{

    background-color: #2b0a3d;
  }
  .login_item li a:hover i {
    background-color: #0694f1;
  }
  .login_item li a:hover legend{
    letter-spacing: 1px;
  }
  .login_wrap {
    background: rgba(255,255,255,0.9);
    border-radius: 5px;
    box-shadow: 0px 5px 15px -1px rgba(0,0,0,0.5);
    margin: 25px 0px;
    min-height: 500px;
  }
  .login_wrap > div {
    padding: 25px;
  }
  .login_wrap legend {
    background-color: #2b0a3d;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0;
  }
  .login_wrap .info {
    background-color: #0694f1;
    color: #fff;
    font-size: 0.8rem;
    padding: 3px 5px;
    text-align: center;
  }
  .login_wrap > div p {
    text-align: center;
  }
  .login_wrap > div .captcha{
    background-color: #fff;
    display: flex;
    border-radius: 5px;
    width: 100%;
    flex-wrap: wrap;
    box-shadow: 0px 11px 19px -2px rgba(0,0,0,0.5);
  }
  
.login_wrap  .effect:focus~label, .login_wrap  .has-val.effect~label, .login_wrap  .effect:valid~label {
  z-index: 1;
  color: #0694f1;
}
  .login_wrap > div .captcha > div:first-child.value {
    border-radius: 5px;
    width: 45%;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
  }
  .login_wrap > div .captcha {
    padding: 20px 0px 0 0;
  }
  .login_wrap > div .captcha .input-effect {
    width: calc(55% - 15px);
    margin-right: 15px;
  }
  .login_wrap > div .captcha .upload_btn {
    min-width: 150px;
    margin-left: auto;
  }
  .login_wrap > div .captcha p {
    margin-bottom: 0px;
    font-size: 0.75rem;
    background-color: #064873;
    color: #fff;
    width: 100%;
    padding: 3px 5px;
    text-align: center;
  }
  .btn_wrap {
    display: flex;
    justify-content: center;
    padding-top: 15px;
  }
  .btn_wrap .ripple{
    min-width: 200px;
  }
  .fg_pass{
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 600;
    color: #ff3600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  .fg_pass:hover{
    letter-spacing: 1.2px;
    color: #ff3600;
  }
  .footer {
    padding-top: 50px;
    color: #fff;
    position: relative;
  }

  .footer::before {
    width: 100%;
    height: 30px;
    bottom: 0;
    background-color:#364bf0;
    content: "";
    position: absolute;
  }
  .footer p {
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
    align-items: center;
    margin-bottom: 0;
    line-height: 30px;
  }
  .foot_links {
    background-color: #064873;
    margin: 0;
    padding: 15px;
    border-radius: 5px 5px 0 0; 
    display: flex;
    width: 100%;
  }
  .foot_links > div {
    width: 70%;
  }
  .foot_links .customAddress {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding-left: 10px;
  }
  .foot_links .customAddress h3 {
    padding-bottom: 10px;
  }
  .foot_links .customAddress iframe{
    border-radius: 5px;
  }
  .foot_links .customAddress p i {
    color: #0694f1;
    padding-right: 5px;
  }
  .foot_links ul {
    padding: 25px;
    border-radius: 5px;
    margin: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .foot_links ul li a {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding: 5px;
  }