/********** Template CSS **********/
body{
    overflow-x: hidden;
}
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}



.dropdown {
  display: inline-block;
  position: relative;
}

.dd-button {
  display: inline-block;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 10px 30px 10px 20px;
  background-color: #2e65b2;
  cursor: pointer;
  white-space: nowrap;
  height: 38px;
}

.dd-button:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.dd-button:hover {
  background-color: #df8a8e;
}


.dd-input {
  display: none;
}

.dd-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
  margin: 2px 0 0 0;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
  background-color: #ffffff;
  list-style-type: none;
}

.dd-input + .dd-menu {
  display: none;
} 

.dd-input:checked + .dd-menu {
  display: block;
} 

.dd-menu li {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.dd-menu li:hover {
  background-color: #f6f6f6;
}

.dd-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}

.dd-menu li.divider{
  padding: 0;
  border-bottom: 1px solid #cccccc;
}


.marquee {
  height: 25px;
  overflow: hidden;
  position: relative;
  background-color:rgb(45 98 173);
}

.marquee div {
  display: block;
  width: 200%;
  height: 30px;

  position: absolute;
  overflow: hidden;

  animation: marquee 12s linear infinite;
}

.marquee span {
  float: left;
  width:20%;
 
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}







.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    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;
}

.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: 10px 0;
    color: #FFFFFF;
    font-size: 13px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@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-brand,*/
/*.navbar-light  {*/
/*    height: 75px;*/
/*}*/
.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
   .des-hide{
       display:none;
   }
}
.navbar-light .navbar-nav .nav-link.show {
    position: relative;
}
    .navbar-light .navbar-nav .nav-link.show:before {
        position: absolute;
        left: 6px;
        content: ' ';
        bottom: -8px;
        width: 0;
        height: 0;
        content: '';
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-bottom: 14px solid #fff;
    }
/*** Header carousel ***/
@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: 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)), url(../img/carousel-1.jpg);
    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;
}
 /* .preheader {
    position: relative;
    display: none;
    padding: 10px 0;
    color: #fff;
    background: #00365b;
    z-index: 30;
    min-height: 40px;
} */
/*
.layout--maxwidth {
    width: 100%;
    padding: 0 5%;
    position: relative;
} */
.bluecolorheader {
    position: relative;
    display: none;
    padding: 10px 0;
    color: #fff;
    background: #00365b;
    z-index: 30;
    min-height: 40px;
}
/* .header--logos {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    background-color: #005793;
    z-index: initial;
} */
/* .profils--btn {
    position: absolute;
    right: 0;
    top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 18px 70px 18px 30px;
    color: #fff;
} */
.profils--list {
    top: 83px;
    bottom: inherit;
    padding: 30px 30px 10px;
}
.profils--btn-icon {
    position: absolute;
    display: block;
    width: 31px;
    height: 31px;
    margin: 2px;
    right: 10px;
    top: 35px;
    margin-top: -17px;
    -webkit-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}
.profils--img {
    width: 88px;
    height: 88px;
    border-radius: 88px;
}
.profils--btn {
    /* position: absolute; */
    right: 0;
    top: 91px;
    /* margin-left: -83px; */
    /* padding-left: -36px; */
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 38px 11px 25px;
    color: #fff;
}
.footer .single-footer {
    margin-top: 40px;
}
.footer .single-footer.f-link ul li {
    display: block;
    margin-bottom: 12px;
    position: relative;
  }
  
  .footer .single-footer.f-link ul li:last-child {
    margin-bottom: 0;
  }
  
  .footer .single-footer.f-link ul li a {
    color: #d6d6d6;
    font-size: 14px;
    font-weight: 500;
    position: relative;
  }
  
  .footer .single-footer.f-link ul li a:hover {
    padding-left: 5px;
    color: #0167F3;
  }
  .footer .single-footer h3 {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
  }
  
  .footer .single-footer h3::before {
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #0167F3;
    content: '';
  }
    .footer .single-footer h3::before {
        left: 50%;
        margin-left: -114px;
    }
    .list--result-title {
        color: #005793;
        margin: 0 0 10px;
        padding: 0;
        line-height: 1.3;
        font-weight: normal;
        text-transform: none;
        font-family: "opensans", sans-serif;
        font-size: 18px;
        font-size: 1.125rem;
    }    
    .grid-item .list--result-description, .col--right .list--result-description, .home .list--result-description {
        font-weight: normal;
        font-size: 13px;
        font-size: 0.8125rem;
        text-align: left;
    }
    .list--result-img {
        position: relative;
        width: 100%;
        min-height: 200px;
        overflow: hidden;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-color: #fff;
    }
    .grid-item .list--result-img {
        width: 100%;
        height: auto;
        min-height: 50px;
    }
    .plus-hover {
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: 10px;
        left: 10px;
        border: 1px solid #fff;
        border-radius: 30px;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all ease 0.35s;
        transition: all ease 0.35s;
    }
    .list--result-text {
        position: relative;
        padding: 50px 20px 20px;
        font-weight: normal;
        color: #333;
    }
    .main-container .layout--maxwidth {
        padding: 50px 0;
    }
    .col--main {
        width: 70%;
    }
    .list--result {
        margin: 50px 0;
        padding: 0;
        list-style: none;
    }
    .two--col .grid-item, .two--col .grid-sizer {
        width: 32%;
    }
    .gutter-sizer {
        width: 2%;
    }
    .col--main .grid-item {
        float: left;
    }
    .list--result-item {
        position: relative;
        background-color: #f1f1f1;
    }
    .list--result-item .list--result-content {
        width: 100%;
    }
    .nav--accordion-title {
        text-align: center;
        padding: 10px 20px;
        margin: 0;
        color: #fff;
        background-color: #005793;
        font-size: 20px;
        font-size: 1.25rem;
    }
    .col--right {
        width: 26%;
    }
    .nav--accordion {
        width: 100%;
        margin: 0 0 40px;
        border-bottom: 4px solid #005793;
    }
    .nav--accordion ul {
        padding: 0;
        list-style: none;
        margin: 0;
    }
    .nav--accordion li:first-child {
        border-top: 1px solid #ccc;
    }
    .nav--accordion li {
        position: relative;
        margin: 0;
        padding: 10px 20px;
        border-bottom: 1px solid #ccc;
        font-weight: 600;
        background: #f1f1f1;
        font-size: 14px;
        font-size: 0.875rem;
    }
    .switch, .switch2, .switch3, .switch4, .switch5 {
        position: absolute;
        top: 10px;
        right: 14px;
        border: none;
        display: block;
        width: 30px;
        height: 24px;
        cursor: pointer;
        background-color: #fff;
        -webkit-transition: all ease-out 0.2s;
        transition: all ease-out 0.2s;
        border-radius: 24px;
    }
    button, html input[type="button"], input[type="reset"], input[type="submit"] {
        -webkit-appearance: button;
        cursor: pointer;
    }
    .list--result-doctype {
        position: absolute;
        right: 20px;
        top: 20px;
        display: inline-block;
        color: #fff;
        padding: 4px 10px;
        margin: 0;
        font-weight: bold;
        font-family: "Exo 2", sans-serif;
        background-color: #005793;
        z-index: 2;
        border-radius: 5px;
        font-size: 12px;
        font-size: 0.75rem;
    }
    .list--description-hover {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        padding: 40px 30px 10px;
        color: #fff;
        opacity: 0;
        background: rgba(0, 0, 0, 0.85);
        -webkit-transition: all ease 0.35s;
        transition: all ease 0.35s;
    }
    .grid-item .list--result-img, .col--right .list--result-img, .list--result-noimg .list--result-img, .home .list--result-img, .grid-item .list--result-img .list--result-text, .col--right .list--result-img .list--result-text, .list--result-noimg .list--result-img .list--result-text, .home .list--result-img .list--result-text {
        display: block;
    }
    .list--result-item a {
        display: block;
        text-decoration: none;
        -webkit-transition: box-shadow ease 0.35s;
        -webkit-transition: -webkit-box-shadow ease 0.35s;
        transition: -webkit-box-shadow ease 0.35s;
        transition: box-shadow ease 0.35s;
        transition: box-shadow ease 0.35s, -webkit-box-shadow ease 0.35s;
    }
    .list--result-content {
        border: 1px solid #ccc;
    }
    .list--result {
        margin: 50px 0;
        padding: 0;
        list-style: none;
    }
    .nav--accordion {
        width: 100%;
        margin: 0 0 40px;
        border-bottom: 4px solid #005793;
    }
    .col--main, .col--right {
        vertical-align: top;
        display: inline-block;
    }
    .col--main, .col--right {
        text-align: left;
    }
    body {
        color: #333;
        line-height: 1.5;
        font-size: 16px;
        font-size: 1rem;
    }
    .ce-textpic, .ce-nowrap .ce-bodytext, .ce-gallery, .ce-row, .ce-uploads li, .ce-uploads div {
        overflow: hidden;
    }
    .ul--rte, .ol--rte {
        padding: 0 0 0 30px;
    }
    .ul--rte, .ol--rte {
        clear: none;
        list-style: none;
        padding: 0 0 0 10px;
        margin: 0 0 30px;
    }
    .ul--rte li:before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        position: absolute;
        left: -9px;
        top: 6px;
        background: #005793;
        border-radius: 8px;
    }
    /* h2:after {
        content: "";
        display: block;
        width: 40px;
        height: 5px;
        margin: 10px 0 0;
        background: #e06f24;
        border-radius: 10px;
    } */
    .anchor h2 {
        content: "";
        display: block;
        width: 40px;
        height: 5px;
        margin: 10px 0 0;
        background: #e06f24;
        border-radius: 10px;
    }
    .lineremove h2{
        background: #005793 !important; 
        height: 0px !important;
    }
    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .col--main.full--width {
        width: 100%;
        margin: 0;
    }
    .col--main, .col--right {
        vertical-align: top;
        display: inline-block;
    }
    .summary--item-link {
        display: block;
    }
    .summary--list a {
        text-decoration: none;
    }
    .summary--list .summary--item-title {
        position: absolute;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .summary--list .summary--item-title {
        position: relative;
        margin: 0;
        padding: 0 20px;
        text-shadow: 2px 2px 5px rgb(0 0 0 / 90%);
    }
    a {
        color: #005793;
        font-weight: bold;
        -webkit-transition: color 0.35s ease;
        transition: color 0.35s ease;
    }
    .btn--plus {
        width: 50px;
        height: 50px;
        border-radius: 50px;
    }
    /* .btn--plus {
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: 20px;
        right: 20px;
        border: 2px solid #005793;
        border-radius: 30px;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all ease 0.35s;
        transition: all ease 0.35s;
    } */
    .summary--list .summary--item {
        height: 230px;
    }
    .summary--list .summary--item {
        width: 100%;
        padding: 0;
        background-color: #f1f1f1;
    }
    .js .summary--item {
        float: none;
        margin-right: 0;
    }
    .full--width .summary--item {
        /* width: 31.66667%; */
    }
    .summary--item {
        margin-bottom: 30px;
        width: 48.75%;
    }
    .summary--item {
        float: left;
        margin: 0 2% 10px 0;
        padding: 20px;
        background: #f1f1f1;
    }
    .clearfix:before, .clearfix:after {
        content: " ";
        display: table;
    }
    .summary--title-container {
        padding: 40px;
    }
    .summary--title-container {
        width: 33.33333%;
    }
    .summary--title-container {
        color: #fff;
        position: relative;
        padding: 20px;
        background-color: #005793;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .summary--title-container, .summary--description-container {
        float: left;
        height: 230px;
    }
    .summary--title-container:before {
        content: "";
        opacity: 0.3;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #005793;
        -webkit-transition: opacity ease 0.35s;
        transition: opacity ease 0.35s;
    }
    .bulletremove {
        list-style-type: none;
      }
      .full--width .summary--description-container {
        width: 75%;
    }  
    .summary--list .summary--item-description {
        /* position: relative; */
        padding-right: 20%;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .summary--item-description {
        color: #333;
        font-weight: normal;
    }
    .btn--plus:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .btn--plus:before, .btn--plus:after {
        width: 24px;
        height: 2px;
        top: 21px;
        left: 11px;
    }
    .btn--plus:before, .btn--plus:after {
        content: "";
        display: block;
        width: 18px;
        height: 4px;
        position: absolute;
        top: 17px;
        left: 11px;
        background-color: #005793;
    }
    /* .btn--plus {
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: 20px;
        right: 20px;
        border: 2px solid #005793;
        border-radius: 30px;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all ease 0.35s;
        transition: all ease 0.35s; 
    } */
    .btn--plus {
        width: 45px;
        height: 43px;
        display: block;
        position: absolute;
        /* position: fixed; */
        position: relative;
        /* bottom: 126px; */
        right: -999px;
        border: 2px solid #005793;
        border-radius: 30px;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all ease 0.35s;
        transition: all ease 0.35s;
    }
    .summary--title-container, .summary--description-container {
        position: relative;
    }
  /* nikita */
  /* create nikita padalkar*/

.circle {
    width: 186px;
    height: 168px;
    line-height: 500px;
    border-radius: 50%;
    font-size: 15px;
    color: #d32020;
    text-align: center;
     background: #005793;
   margin-left: 60px;
   border-color: #fff;
  }
  
  .grid-item .list--result-date, .col--right .list--result-date, .home .list--result-date {
      position: absolute;
      top: -34px;
      right: 10px;
      background: none;
  }
  
  /*.list--result-date {
      position: relative;
      color: #fff;
      display: inline-block;
      font-weight: bold;
      text-transform: uppercase;
      padding: 2px 10px;
      margin: 0 0 30px;
      font-family: "Exo 2", sans-serif;
      background-color: #e06f24;
      border-radius: 5px;
  }*/
  
  .list--result-text {
      position: relative;
      padding: 50px 20px 20px;
      font-weight: normal;
      color: #333;
  }
  
  .home .grid-item .item--news .list--result-date .date {
      border-color: #fff;
  }
  
  /*.grid-item .item--news .list--result-date .date, .col--right .item--news .list--result-date .date, .home .item--news .list--result-date .date {
      width: 85px;
      height: 85px;
      top: -20px;
      padding: 6px 0 0;
      border: 6px solid #f1f1f1;
      border-radius: 85px;
      background-color: #e06f24;
  }*/
  .grid-item .list--result-date .date:last-child, .col--right .list--result-date .date:last-child, .home .list--result-date .date:last-child {
      padding-right: 10px;
      margin-left: -3px;
  }
  .grid-item .list--result-date .date, .col--right .list--result-date .date, .home .list--result-date .date {
      width: 68px;
      height: 68px;
      text-align: center;
      line-height: 1;
      padding: 13px 15px 0 0;
      position: relative;
      background-color: #fff;
      border-radius: 68px;
  }
  .list--result-date .date, .list--result-date .icon {
      display: inline-block;
      vertical-align: middle;
  }
  
  .list--result-date .small {
      font-weight: 600;
      font-size: 9px;
      font-size: 0.5625rem;
  }
  
  .grid-item .list--result-date .day, .col--right .list--result-date .day, .home .list--result-date .day {
      display: block;
      line-height: 0.9;
      font-size: 26px;
      font-size: 1.625rem;
  }
  /*news button*/
  .list--result-doctype {
      position: absolute;
      right: 13px;
      top: 11px;
      display: inline-block;
      color: #fff;
      padding: 4px 10px;
      margin: 0;
      font-weight: bold;
      font-family: "Exo 2", sans-serif;
      background-color: #005793;
      z-index: 2;
      border-radius: 5px;
      font-size: 12px;
      font-size: 0.75rem;
  }
  
  .rounded{
      width: 85px;
      height: 85px;
      top: -20px;
      padding: 6px 0 0;
      border: 6px solid #f1f1f1;
      border-radius: 85px;
      background-color: #e06f24;
  }
  
  /*circle with text*/
  .allnews--item .btn--allnews {
      width: 150px;
      height: 150px;
      margin-top: 50%;
  }
  
  .allnews--item .btn--allnews {
      position: absolute;
      top: 0;
      left: 0;
      width: 180px;
      height: 180px;
      margin-top: 30%;
      margin-left: 20%;
      border-radius: 100px;
      -webkit-transition: all ease 0.35s;
      transition: all ease 0.35s;
  }
  
  .allnews--item .btn--allnews {
      background: #005793;
  }
  
  .agenda--search-container .search--date-container .input--date-container {
      padding-right: 20px;
  }
  
  .agenda--search-container .search--date-container input[type="text"]:first-child {
      margin-bottom: 20px;
  }
  
  .agenda--search-container .search--date-container input[type="text"] {
      width: 80%;
      float: left;
      background: #5c5c5c;
      color: #fff;
      text-transform: capitalize;
  }
  
  .search--date-container input[type="text"] {
      border: none;
  }
  
  input, label, select {
      font-family: "opensans", sans-serif;
      font-size: 16px;
      font-size: 1rem;
  }
  
  input {
      line-height: normal;
  }
  
  button, input, optgroup, select, textarea {
      color: inherit;
      font: inherit;
      margin: 0;
  }
  
  .home .list--result-date .date {
      width: 67px;
      height: 68px;
      text-align: center;
      line-height: 1;
      padding: 13px 15px 0 0;
      position: relative;
      background-color: #fff;
      border-radius: 68px;
  }
  
  .agenda--search-container {
      margin-bottom: 0;
  }
  
  .events--list-container:last-child .list--result-item, .events--list-container:last-child .agenda--search-container {
      width: 100%;
  }
  .events--list-container:last-child .agenda--search-container {
      float: right;
  }
  .agenda--search-container .agenda--search-title {
      color: #fff;
      text-transform: uppercase;
      font-family: "oswald", sans-serif;
      font-size: 16px;
      font-size: 1rem;
      margin: 0;
  }
  .agenda--search-container .search--date-container {
      position: relative;
      margin: 30px 0;
  }
  .clearfix:before, .clearfix:after {
      content: " ";
      display: table;
  }
  .home .list--result-img {
      width: 100%;
      height: 200px;
      min-height: 50px;
  }
  .brownbox{
    border: 2px solid #c97406 !important;
    border-radius: 10px !important;
    height: 60px !important;
 }
 .profile-pic img {
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px #c1c1c1;
    cursor: pointer;
    width: 120px;
    height: 120px;
}
.profile_image {
    display: none !important;
  }
  .toppadding {
    padding-top: 30px;
}  
.paddingleftright{
    padding-right: 0px !important; padding-left: 0px !important;
}

.sb-sidenav .sb-sidenav-header {
  padding: 0.75rem !important;
  flex-shrink: 0 !important;
}

input {
  outline: none;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  font-size: 14px;
  font-family: inherit;
}
.input-group {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 2px solid #ccc;
}

.input-icon {
  position: absolute;
  font-size: 18px;
  color: #ccc;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.input--style-1 {
  padding: 9px 0;
  color: #666;
}

.input--style-1::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #555;
}

.input--style-1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
  opacity: 1;
}

.input--style-1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
  opacity: 1;
}

.input--style-1:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #555;
}

.input--style-1:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #555;
}
.page-wrapper {
  min-height: 100vh;
}
.wrapper {
  margin: 0 auto;
}

.wrapper--w680 {
  max-width: 680px;
}


/* ==========================================================================
   #SELECT2
   ========================================================================== */
.select--no-search .select2-search {
  display: none !important;
}

.rs-select2 .select2-container {
  width: 100% !important;
  outline: none;
}

.rs-select2 .select2-container .select2-selection--single {
  outline: none;
  border: none !important;
  height: 34px;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
  padding-left: 0;
  color: #555;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow {
  height: 32px;
  right: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow:after {
  font-family: "Material-Design-Iconic-Font";
  content: '\f2f9';
  font-size: 18px;
  color: #ccc;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.rs-select2 .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select2-container--open .select2-dropdown--below {
  border: none !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  margin-top: 5px;
  overflow: hidden;
}
.widthselect{
  width: 100% !important;
}
.widthselect option{
   width: 500px !important;
}
.widthselectBig{
  width: 100% !important;
}
#layoutAuthentication {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#layoutAuthentication #layoutAuthentication_content {
  min-width: 0;
  flex-grow: 1;
}
#layoutAuthentication #layoutAuthentication_footer {
  min-width: 0;
}

#layoutSidenav {
  display: flex;
}
#layoutSidenav #layoutSidenav_nav {
  flex-basis: 225px;
  flex-shrink: 0;
  transition: transform 0.15s ease-in-out;
  z-index: 1038;
  transform: translateX(-225px);
}
#layoutSidenav #layoutSidenav_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
  min-height: calc(100vh - 56px);
  margin-left: -225px;
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  transform: translateX(0);
}
.sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1037;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.sb-sidenav-menu a{
  /*color: #ffff !important;*/
color: rgba(255, 255, 255, 0.5);
}
.sb-sidenav-menu a.active{
  /*color: #ffff !important;*/
color: rgba(255, 255, 255);
}
.sb-sidenav-menu{
  background-color: rgb(4,8,73) !important;
   color: #ffff;

}
.bgdefault{
  background-color: #ffff !important;
}
.daterangepicker td {
  width: 40px;
  height: 30px;
}

.daterangepicker {
  border: none;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  display: none;
  border: 1px solid #e0e0e0;
  margin-top: 5px;
}

.daterangepicker::after, .daterangepicker::before {
  display: none;
}

.daterangepicker thead tr th {
  padding: 10px 0;
}

.daterangepicker .table-condensed th select {
  border: 1px solid #ccc !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  padding: 5px;
  outline: none;
}


    @media (min-width: 1400px) {
    .marginleftnava{
    margin-left:  90px !important;
    }
    .carddesign img{
       /*width: 304px;*/
       width:100%;
    }
    }
  /* nikita */
  .commontable tr{
        border-bottom:1px solid;
        padding:10px;
    }
    .commontable tr td{
        border-left:1px solid;
        padding:10px;
    }


.menu > li > a {
    text-transform: capitalize;
}
/*added by Tejal*/
@media (max-width: 768px){
    .logo1{
        height: auto !important;
        margin-left: 0px !important;
        width: 95px !important;
        margin-right: 0px !important;
        margin-top: -5px !important;
    }
    .logo2{
        width: 85%;
        height: auto !important;
        margin-top: 20px;
    }
}

.megamenu {
    position: static;
}

    .megamenu .dropdown-menu {
        background: none;
        border: none;
        width: 100%;
        
    }


.navbar .megamenu {
    padding: 1rem;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
        border-radius: 0px 0px 0.5rem 0.5rem;
    }
}
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px) {
    .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }
}
/* ============ mobile view .end// ============ */

@media (max-width: 768px) {
    .navbar-toggler {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95) !important;
    }
        .navbar-toggler i{
            margin-right:5px;
        }
        .navbar {
            box-shadow: none;
        }
    .navbar-light .navbar-nav .nav-link {
        position: relative;
        border-bottom: 1px solid rgba(26, 57, 101, 0.42);
    }
    .navbar .dropdown-toggle::after {
        content: "\f107";
        position: absolute;
        right: 10px;
    }
    .navbar-nav .dropdown-menu {
        position: static !important;
        /*max-height: 350px;
        overflow-y: auto;*/
        border-radius: 0px;
        margin-bottom: 10px;
    }
    .navbar-light .navbar-nav .nav-link.show:before{
        display:none;
    }
    .menu > li, .menu > li:hover > a {
        border: none !important;
        box-shadow: none !important;
    }
    .menu, .menu > li {
        width: 100% !important;
        height: auto !important;
    }
        .menu > li a{
            text-align:left !important;
        }
    .dropdown-menu.show .menu > li > .megadrop {
       /* display: none;*/
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        margin-top: 4px !important;
        width: 96%;
        padding: 3px;
        float: none !important;
        border-top: 1px solid #ccc;
        /*background: #f1f1f1;*/
        margin-top: 0px !important;
        border-radius:0px;
    }
    .megadrop ul{
        padding-left:15px;
    }
    .menu{
        background-color:transparent !important;
    }
        .menu > li > a {
            color: #00365b !important;
            /*padding: 6px 10px !important;*/
            padding: 12px 10px !important;
            font-weight: normal;
            border-bottom: 1px solid #ccc;
        }
        .menu:before {
            display: none !important;
        }
    .megadrop ul li a {
        font-size: 10.5px !important;
        font-weight: 500 !important;
        padding: 8px 15px !important;
    }
        .megadrop ul li a:before{
            display:none !important;
        }
        .menu > li > .megadrop > ul > li > a {
            word-break: break-word;
            white-space: break-spaces;
        }
    .menu li .submenu1{
        position:relative;
    }
        .menu li .submenu1:before, .menu li .submenu1.minus:before {
            position: absolute;
            right: 5px;
            content: "\f067";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            vertical-align: middle;
            margin-left: 8px;
        }
        .menu li .submenu1.minus:before {
            content: "\f068";
        } 
   
}
#myTab .nav-link {
    position: relative;

        /*background: #BDCD00;*/
        border: none!important;
       /* color: #fff!important;*/
       color: #000;
       font-size: 14.5px !important;
       font-weight:700
    }
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: #fff !important;
        background-color: #2E65B2 !important;
    }
 
  .tab-content span{
      color: #000 !important;
  }
  .cardbg1 {
    background-color: #2E65B2;
} 
.chapo1 {
    font-family: "Raleway", sans-serif;
    color: #3366AF;
    font-weight: 600;
    /* margin-top: 12px; */
    border-top: 5px solid #3366AF;
    font-size: 13px;
}
.cardbg3 {
    background-color: #f1f1f1;
}
.paraclr {
    color: white;
}
.cardbg4 {
    background-color: white;
}
 .cardbg4 p {
    font-size: 15px;
    font-style: normal;
    color: #333333;
    line-height: 1.42857;
} 

    #myTab .active:after {
        position: absolute;
        left: 45%;
        content: ' ';
        bottom: -14px;
        width: 0;
        height: 0;
        content: '';
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-top: 14px solid #2E65B2;
    }
    
    .card {
    border: 0;
    box-shadow: 0 2px 15px -3px rgb(0 0 0 / 34%), 0 10px 20px -2px rgb(0 0 0 / 11%) !important;
}



.btn-primary {
    background-color: #2E65B2 !important;
}