* {
  outline: none !important;
}
* ::-webkit-scrollbar {
  width: 7px;
}
* ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
* ::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
  outline: #708090 solid 1px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

/*===============================
         Variables
================================*/
.cursor {
  cursor: pointer;
}

.btn-primary {
  background-color: #f1580a;
  border-color: #f1580a;
}
.btn-primary:hover {
  color: #000;
  background-color: #f1580a;
  border-color: #f1580a;
}

.btn-outline-primary {
  color: #f1580a;
  border-color: #f1580a;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #f1580a;
  border-color: #f1580a;
}

.text-primary {
  color: #f1580a !important;
}

#preloader {
  background: #eaeaea;
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
}
#preloader #loader {
  bottom: 0;
  height: 175px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 175px;
  z-index: 9999;
}
#preloader #loader .dot {
  bottom: 0;
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 87.5px;
}
#preloader #loader .dot::before {
  border-radius: 100%;
  content: "";
  height: 87.5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
  width: 87.5px;
}
#preloader #loader .dot:nth-child(7n+1) {
  transform: rotate(45deg);
}
#preloader #loader .dot:nth-child(7n+1)::before {
  -webkit-animation: 0.8s linear 0.1s normal none infinite running load;
          animation: 0.8s linear 0.1s normal none infinite running load;
  background: #00ff80 none repeat scroll 0 0;
}
#preloader #loader .dot:nth-child(7n+2) {
  transform: rotate(90deg);
}
#preloader #loader .dot:nth-child(7n+2)::before {
  -webkit-animation: 0.8s linear 0.2s normal none infinite running load;
          animation: 0.8s linear 0.2s normal none infinite running load;
  background: #00ffea none repeat scroll 0 0;
}
#preloader #loader .dot:nth-child(7n+3) {
  transform: rotate(135deg);
}
#preloader #loader .dot:nth-child(7n+3)::before {
  -webkit-animation: 0.8s linear 0.3s normal none infinite running load;
          animation: 0.8s linear 0.3s normal none infinite running load;
  background: #00aaff none repeat scroll 0 0;
}
#preloader #loader .dot:nth-child(7n+4) {
  transform: rotate(180deg);
}
#preloader #loader .dot:nth-child(7n+4)::before {
  -webkit-animation: 0.8s linear 0.4s normal none infinite running load;
          animation: 0.8s linear 0.4s normal none infinite running load;
  background: #0040ff none repeat scroll 0 0;
}
#preloader #loader .dot:nth-child(7n+5) {
  transform: rotate(225deg);
}
#preloader #loader .dot:nth-child(7n+5)::before {
  -webkit-animation: 0.8s linear 0.5s normal none infinite running load;
          animation: 0.8s linear 0.5s normal none infinite running load;
  background: #2a00ff none repeat scroll 0 0;
}
#preloader #loader .dot:nth-child(7n+6) {
  transform: rotate(270deg);
}
#preloader #loader .dot:nth-child(7n+6)::before {
  -webkit-animation: 0.8s linear 0.6s normal none infinite running load;
          animation: 0.8s linear 0.6s normal none infinite running load;
  background: #9500ff none repeat scroll 0 0;
}
#preloader #loader .dot:nth-child(7n+7) {
  transform: rotate(315deg);
}
#preloader #loader .dot:nth-child(7n+7)::before {
  -webkit-animation: 0.8s linear 0.7s normal none infinite running load;
          animation: 0.8s linear 0.7s normal none infinite running load;
  background: magenta none repeat scroll 0 0;
}
#preloader #loader .dot:nth-child(7n+8) {
  transform: rotate(360deg);
}
#preloader #loader .dot:nth-child(7n+8)::before {
  -webkit-animation: 0.8s linear 0.8s normal none infinite running load;
          animation: 0.8s linear 0.8s normal none infinite running load;
  background: #ff0095 none repeat scroll 0 0;
}
@-webkit-keyframes load {
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes load {
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.bg-theme {
  background-color: #f1580a;
}

.bg-theme-secondary {
  background-color: #16265e;
}

.img_shadow {
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0px 0px 75px rgba(0, 0, 0, 0.03);
}

.button--loading {
  position: relative;
  cursor: wait;
  pointer-events: none;
  outline: 0;
}
.button--loading :before {
  content: "";
  margin: -13px 0 0 -13px;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-border-radius: 24px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 24px;
  -moz-background-clip: padding;
  border-radius: 24px;
  background-clip: padding-box;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-top-color: #f1580a;
  -webkit-animation: animation-rotate 750ms linear infinite;
  animation: animation-rotate 750ms linear infinite;
}

.button--loading span,
.button--loading:active span,
.button--loading:hover span {
  color: transparent;
  text-shadow: none;
}

@-webkit-keyframes animation-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes animation-rotate {
  100% {
    transform: rotate(360deg);
  }
}
.header-top {
  background: #16265e;
  padding: 10px 0px;
}
.header-top p {
  color: #fff;
  margin-bottom: 0;
}

.searchbar input,
.searchbar .input-group-text {
  border-radius: 4px;
  border: none;
}
.searchbar input {
  font-size: 14px;
  max-width: 275px;
}

.socail-top {
  text-align: left;
  margin-bottom: 0;
  padding-left: 60px;
}
.socail-top li {
  display: inline-block;
  margin-left: 25px;
}
.socail-top li:first-child {
  margin-left: 0px;
}
.socail-top li a {
  font-size: 16px;
  color: #fff;
}
.socail-top li a:hover {
  color: #f1580a;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .socail-top {
    text-align: center;
    margin-bottom: 10px;
  }
  .socail-top li a {
    color: #222;
  }
}

.sticky-top {
  transition: 300ms linear;
}
@media (max-width: 767px) {
  .sticky-top {
    padding: 4px;
  }
}

.navbar-toggler {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translate(0, -50%);
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  #navbarNav {
    display: none;
    position: absolute;
    top: -8px;
    right: 0;
    width: 100%;
    height: calc(100vh + 0px);
    min-height: 400px;
    padding: 60px 30px 30px 20px;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0 0;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    overflow: auto;
  }
}
#navbarNav.show {
  transform: none;
}
#navbarNav .logo {
  text-align: center;
  padding-bottom: 30px;
}
#navbarNav .navbar-nav {
  opacity: 1;
}
#navbarNav .navbar-nav .nav-item {
  padding: 0 10px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #navbarNav .navbar-nav .nav-item {
    padding: 10px;
  }
}
#navbarNav .navbar-nav .nav-item a {
  color: #1a2a36;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 1419px) and (min-width: 1311px) {
  #navbarNav .navbar-nav .nav-item a {
    font-size: calc(1rem - 0.1vw);
  }
}
@media screen and (max-width: 1310px) and (min-width: 1248px) {
  #navbarNav .navbar-nav .nav-item a {
    font-size: calc(1rem - 0.2vw);
  }
}
@media screen and (max-width: 1247px) and (min-width: 1191px) {
  #navbarNav .navbar-nav .nav-item a {
    font-size: calc(1rem - 0.3vw);
  }
}
@media screen and (max-width: 1190px) and (min-width: 1138px) {
  #navbarNav .navbar-nav .nav-item a {
    font-size: calc(1rem - 0.4vw);
  }
}
@media screen and (max-width: 1137px) and (min-width: 992px) {
  #navbarNav .navbar-nav .nav-item a {
    font-size: calc(1rem - 0.5vw);
  }
}
@media (max-width: 991px) {
  #navbarNav .navbar-nav .nav-item a {
    border-left: 1px solid red;
    padding-left: 20px;
  }
}
#navbarNav .navbar-nav .nav-item a.btn {
  background: #f1580a;
  color: #fff !important;
}
@media (max-width: 991px) {
  #navbarNav .navbar-nav .nav-item a.btn {
    margin-top: 30px;
  }
}
#navbarNav .navbar-nav .nav-item a.animateBtn {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-name: pulse2;
          animation-name: pulse2;
}
@media (max-width: 991px) {
  #navbarNav .navbar-nav .nav-item a.animateBtn {
    -webkit-animation: none;
            animation: none;
  }
}
#navbarNav .navbar-nav .nav-item.active a {
  color: #f1580a;
  border-bottom: 1px solid #f1580a;
}
@media (max-width: 991px) {
  #navbarNav .navbar-nav .nav-item.active a {
    border-bottom: none;
  }
}
@-webkit-keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 #f1580a;
  }
  100% {
    box-shadow: 0 0 0 10px #fff;
  }
}
@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 #f1580a;
  }
  100% {
    box-shadow: 0 0 0 10px #fff;
  }
}

.close {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  font-size: 48px;
  z-index: 9999;
  opacity: 0.6;
  outline: none;
  border: none;
  transition: 100ms linear;
}
@media (max-width: 991px) {
  .close {
    display: flex;
  }
}
.close:focus, .close:active {
  opacity: 0.3 !important;
}
.close:hover {
  opacity: 1 !important;
}
.close:before, .close:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 15px;
  height: 33px;
  width: 2px;
  background-color: #000;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
.close.text-white:before, .close.text-white:after {
  background-color: #fff;
}

#scroll {
  display: none;
  position: fixed;
  left: 10px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  background-color: #f1580a;
  border: 1px solid #f1580a;
  text-indent: -9999px;
  border-radius: 60px;
  z-index: 99999;
  cursor: pointer;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
#scroll:hover {
  background-color: #e74c3c;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #16265e;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 26px;
  }
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2 ::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #f1580a;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.header-carousel .owl-carousel-item {
  position: relative;
  min-height: 650px;
}
@media (max-width: 1600px) {
  .header-carousel .owl-carousel-item {
    min-height: 550px;
  }
}
@media (max-width: 767px) {
  .header-carousel .owl-carousel-item {
    min-height: 400px;
  }
}
.header-carousel .owl-carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-carousel .owl-carousel-item p {
  font-size: 1rem;
}
.header-carousel .owl-dots {
  text-align: center;
  margin-top: -45px;
}
.header-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.header-carousel .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  margin: 5px 7px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0.2;
  transition: 300ms linear;
}
.header-carousel .owl-dots .owl-dot.active span {
  opacity: 1 !important;
}
.header-carousel .owl-dots .owl-dot:hover span {
  opacity: 0.8 !important;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 30px 0 15px;
  text-align: center;
}

.clients img {
  max-width: 85%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0px 0px 75px rgba(0, 0, 0, 0.03);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 90%;
  }
}
.footer {
  padding-top: 80px;
  color: #ffffff;
  background-color: #16265e;
}

.footer-menu h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.footer-menu p,
.footer span {
  font-size: 14px;
}

.footer-support {
  font-weight: 600;
}

.footer_mdi {
  font-size: 16px;
  height: 36px;
  width: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  margin: 20px 2px;
}

.footer_bottom {
  background-color: #16265e;
  border-top: 1px solid #102056;
  padding: 10px 40px;
}

.facebook {
  background-color: #4e71a8;
  color: #ffffff;
}

.twitter {
  background-color: #55acee;
  color: #ffffff;
}

.instagram {
  background-color: #e120cd;
  color: #ffffff;
}

.linkedin {
  background-color: #0A66C2;
  color: #fff;
}

.youtube {
  background-color: #ff0000;
  color: #fff;
}

.footer-menu li a {
  font-size: 14px;
  display: inline-block;
  transition: all 0.5s;
  line-height: 32px;
  color: #ffffff;
  transition: 250ms linear;
}
.footer-menu li a:hover {
  opacity: 0.7;
}

/************************
    TESTIMONIALS
**************************/
#testimonials {
  padding: 60px 0;
}
#testimonials .testi-user {
  max-width: 84px;
}
#testimonials .user-review {
  color: #667482;
  font-style: italic;
  font-size: 16px;
}
#testimonials .testi-client-name {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
#testimonials .testi-patients {
  font-size: 14px;
  color: #000;
}
#testimonials #owl-demo .owl-dot span {
  display: block;
  width: 10px;
  height: 5px;
  margin: 5px 7px;
  border: 1px solid #f1580a;
  background-color: #f1580a;
  opacity: 0.2;
}
#testimonials #owl-demo .owl-dot.active span {
  opacity: 1 !important;
}

#services {
  padding: 60px 0;
}
#services .services-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: #ffffff;
  height: 100%;
  box-shadow: 1px 2px 23px -15px rgba(0, 0, 0, 0.7);
}
#services .services-blog div.picture {
  width: 75px;
  padding-bottom: 20px;
}
#services .services-blog h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
#services .services-blog .service-head {
  overflow: hidden;
  flex: 1;
}

#about {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}
.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
}
.team .member:hover {
  transform: translateY(-10px);
}
.team .member .member-info {
  padding-left: 30px;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #16265e;
}
.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}
.team .member .social a i {
  color: #16265e;
  font-size: 16px;
  margin: 0 2px;
}
.team .member .social a:hover {
  background: #47b2e4;
}
.team .member .social a:hover i {
  color: #fff;
}
.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}
.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}
.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}
.contact .info p {
  color: rgb(108, 117, 125);
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(241, 88, 10, 0.15);
}
.contact .info-item i {
  font-size: 24px;
  color: #f1580a;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgb(108, 117, 125);
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgb(108, 117, 125);
}
.contact .php-email-form {
  width: 100%;
  background: #f6f9ff;
  padding: 30px;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #f1580a;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #f1580a;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: rgba(108, 117, 125, 0.5);
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #f1580a;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input[type=text],
.contact .php-email-form select {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  height: 48px;
  padding: 10px 15px;
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form select:focus {
  border-color: rgba(108, 117, 125, 0.5);
}
.contact .php-email-form input[type=email] {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  height: 48px;
  padding: 10px 15px;
}
.contact .php-email-form input[type=email]:focus {
  border-color: rgba(108, 117, 125, 0.5);
}
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 12px;
  height: 275px;
}
.contact .php-email-form textarea:focus {
  border-color: rgba(108, 117, 125, 0.5);
}
.contact .php-email-form button[type=submit] {
  background: #f1580a;
  border: 0;
  padding: 13px 50px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0;
}
.contact .php-email-form button[type=submit]:hover {
  background: rgba(22, 38, 94, 0.85);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Membership
--------------------------------------------------------------*/
#membership {
  padding: 60px 0;
}
#membership h5 {
  margin-top: 30px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# journals
--------------------------------------------------------------*/
#journals {
  padding: 60px 0;
}
#journals .headstrip {
  font-size: 1.2rem;
  height: 40px;
  display: grid;
  align-items: center;
  padding: 3px 16px;
  text-decoration: none;
  border-bottom: 1px dotted #f1580a;
  color: #fff;
  position: relative;
  background: #f1580a;
  width: 100%;
  max-width: 300px;
}
#journals .headstrip:after {
  content: "";
  position: absolute;
  border-left: 25px solid #f1580a;
  border-right: 22px solid transparent;
  border-top: 25px solid transparent;
  clear: both;
  border-bottom: 20px solid transparent;
  right: -46px;
  top: -2px;
}
#journals .cuheading-journals {
  background: #eee;
  border-left: 3px solid #f1580a;
  color: #404040;
  font-size: 24px;
  line-height: 33px;
  padding: 8px 0 8px 15px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 20px;
}
#journals #alphabets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30px, -webkit-max-content));
  grid-template-columns: repeat(auto-fill, minmax(30px, max-content));
  grid-gap: 10px;
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 0;
  list-style: none;
  justify-content: center;
}
#journals #alphabets li {
  border: 1px solid #16265e;
  width: 35px;
  height: 35px;
  display: grid;
  place-content: center;
  color: #16265e;
  cursor: pointer;
}
#journals #alphabets li.active {
  background-color: #f1580a;
  border-color: #f1580a;
  color: #fff;
}
#journals #subjects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, -webkit-max-content));
  grid-template-columns: repeat(auto-fill, minmax(175px, max-content));
  grid-gap: 10px;
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 0;
  list-style: none;
  justify-content: center;
}
#journals #subjects li {
  border: 1px solid #16265e;
  width: 175px;
  height: 50px;
  display: grid;
  place-content: center;
  color: #16265e;
  padding: 0 10px;
  cursor: pointer;
}
#journals #subjects li h6 {
  font-size: 0.9rem;
}
#journals #subjects li.active {
  background-color: #f1580a;
  border-color: #f1580a;
  color: #fff;
}
#journals .my_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  #journals .my_grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  #journals .my_grid {
    grid-template-columns: 1fr;
  }
}
#journals .my_grid li {
  list-style: none;
  transition: 250ms linear;
}
#journals .my_grid li .template-card {
  height: 100%;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  border: 1px solid #eee;
}
#journals .my_grid li .template-card .details {
  padding: 15px 30px;
  border-left: 1px solid #eee;
}
#journals .my_grid li .template-card .details h4 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #f1580a;
}
#journals .my_grid li .template-card .details h6 {
  font-size: 0.75rem;
}
#journals .my_grid li .template-card picture {
  width: 175px;
}
#journals .my_grid li .template-card picture img {
  height: 100%;
}
@media (max-width: 1199px) {
  #journals .my_grid li .template-card picture img {
    width: 100%;
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 4px;
  }
}
#journals .my_grid li:hover {
  -ms-transform: scale(0.9); /* IE 9 */
  -webkit-transform: scale(0.9); /* Safari 3-8 */
  transform: scale(0.9); 
  filter: grayscale(0.15);
  z-index: 1111;
}

.review_process h2 {
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}
.review_process p {
  font-size: 1rem;
}

#guidelines h4 {
  font-weight: bold;
  margin-top: 40px;
}
#guidelines p {
  font-size: 1rem;
}

#videoarticles {
  padding: 60px 0;
}
#videoarticles .videos_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  grid-gap: 30px;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  #videoarticles .videos_grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 10px;
  }
}
#videoarticles .videos_grid li {
  list-style: none;
}
#videoarticles .videos_grid li .card .card-body {
  padding: 1px;
}
#videoarticles .videos_grid li .card .card-body iframe {
  width: 100%;
  height: 100%;
}
#videoarticles .videos_grid li .card .card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
}
#videoarticles .videos_grid li .card .card-footer h6 {
  font-weight: bold;
}

#ppt .ppt_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  grid-gap: 30px;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  #ppt .ppt_grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 10px;
  }
}
#ppt .ppt_grid li {
  list-style: none;
}
#ppt .ppt_grid li .card .card-body {
  padding: 1px;
}
#ppt .ppt_grid li .card .card-body iframe {
  width: 100%;
  height: 100%;
}
#ppt .ppt_grid li .card .card-footer {
  display: flex;
  flex-direction: column;
  *align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
}
#ppt .ppt_grid li .card .card-footer h6 {
  font-weight: bold;
}

#journeldetails .card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.01);
}
#journeldetails .card .card-body .nav-tabs {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: self-start;
  border: 1px solid #ccc;
}
#journeldetails .card .card-body .nav-item {
  width: 100%;
  font-weight: bold;
}
#journeldetails .card .card-body .nav-item .nav-link {
  color: #404040;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
#journeldetails .card .card-body .nav-item .nav-link.active {
  background: rgba(22, 38, 94, 0.1);
}
#journeldetails .card .card-body .content {
  border: 1px solid #ccc;
  padding: 20px;
}
.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right
}

h1.title {
    color: white;
    font-size: 35px;
}

h4.desc {
    color: white;
    margin-bottom: 8px;
    padding-top: 1rem;
    font-size: 25px;
}