/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #007bff;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

img{
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #007bff;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #0062cc;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 10px 10px 10px
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  /*font-weight: 500;*/
  /*font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #007bff;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #007bff;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #0062cc;
  font-weight: 600;
}

.get-started-btn:hover {
  background:#0062cc;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  /*color: #37517e;*/
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  border-bottom: solid 1px #e1e7eb;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #007bff;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: #37517e;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #007bff;
}

.btn-get-started:hover {
  background: #0069d9;
  border-color: #0062cc;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
  /*-----*/
  /*.container .logo {*/
    /*position: absolute;*/
    /*left:23%;*/
  /*}*/

}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*=============================
	Events CSS
===============================*/
.events .single-event {
  margin-top: 15px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 10px #0000001a;
  padding: 16px;
}
.events .single-event .date {
  text-align: center;
  margin-top: 15px;
  /*border-right: 1px solid #ddd;*/
}
.events .single-event .date p {
  color: #252525;
  font-size: 42px;
  font-weight: 200;
}
.events .single-event .date p span{
  display:block;
  font-size:14px;
  margin-top:8px;

}
.events .single-event .cat {
  margin-top: 15px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding-left: 15px;
  padding-right: 15px;

}
.events .single-event .cat{
  color: #252525;
}
.events .single-event .cat span{
  color:#2980b9;
  display:block;
  text-transform:capitalize;
}
.events .single-event .location{
  position:relative;
  margin-top:12px;
  border-bottom:1px solid #ddd;
}
.events .single-event .location i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 44px;
  color: #0062cc;
}
.events .single-event .location .content{
  padding-left:45px;
}
.events .single-event .location .content p{}
.events .single-event .location .content p span{
  display:block;
}
.events .single-event .image{}
.events .single-event .image img {
  height: 70px;
  width: 70px;
  border-radius: 100%;
  margin-left: 42px;
}
/* Events Archive */
.events.archives .single-event{
  margin-top:30px;
}
/* Pagination */
.events.archives .pagination-main {
  text-align: center;
}
.events.archives .pagination {
  display: block;
  padding-left: 0;
  margin: 50px 0 0;
  border-radius: 4px;
  text-align: center;
  display:inline-block;
}
.events.archives .pagination li {
  float: left;
  margin-right: 5px;
}
.events.archives .pagination li a {
  padding: 12px 25px;
  border: none;
  display: block;
  background: #f6f6f6;
  color: #fff;
  color: #252525;
}
.events.archives .pagination li:hover a,
.events.archives .pagination li.active a {
  color: #fff;
}
/* Event Single */
.events.single{
  padding:60px 0 90px;
}
.events.single .single-event{
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  margin-top:30px;
}
.events.single .event-content h2 {
  font-size: 30px;
  margin: 5px 0 20px;
}
.events.single .event-content h2 a{
  color:#252525;
}
.events.single .event-content p{
  margin-bottom:30px;
}
.events.single .event-content img{
  margin-bottom:30px;
}
/* Events Meta */
.events.single .book-now {
  overflow: hidden;
}
.events.single .book-now .button {
  float: left;
}
.events.single .book-now .button .btn{
  margin-top:0px;
}
.events.single .social{
  float:right;
}
.events.single .social li {
  display: inline-block;
  margin-right: 5px;
}
.events.single .social li:last-child{
  margin:0;
}
.events.single .social li a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: block;
  border: 1px solid #e6e6e6;
  text-align: center;
  color: #252525;
  border-radius: 100%;
}
.events.single .social li:hover a {
  color:#fff;
  border-color:transparent;
}
/* Slider Meta */
.events.single .owl-carousel .owl-nav div{
  background:#fff;
  color:#252525;
}
.events.single .owl-carousel .owl-nav div:hover{
  color:#fff;
}
.events.single .owl-carousel .owl-nav .owl-prev {
  left: 10px;
}
.events.single .owl-carousel .owl-nav .owl-next {
  right: 10px;
}
/*=============================
	End Events CSS
===============================*/
/*--------------------------------------------------------------
# wrapper Section
--------------------------------------------------------------*/
#wrapper {
  /*width: 100%;*/
  /*height: 180vh;*/
  /*background: #fff;*/
  overflow-x: hidden;
}
.margin-top {
  margin-top:90px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.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: #37517e;
}

.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: #007bff;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 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: #37517e;
}

.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: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #007bff;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #007bff;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0062cc;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #007bff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #007bff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0062cc;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}


.nav-menu .k-menu:not(.k-context-menu) {
   border-color: transparent;
   background-color: transparent;
}
.nav-menu .k-menu.k-menu-horizontal:not(.k-context-menu) {
   padding:0;
}

.nav-menu .k-menu .k-item>.k-link,
.nav-menu .k-menu-scroll-wrapper .k-item>.k-link,
.nav-menu .k-popups-wrapper .k-item>.k-link {
  display: block;
  line-height: 1.34em;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav-menu .k-menu .k-item,
.nav-menu .k-menu-scroll-wrapper .k-item,
.nav-menu .k-menu-scroll-wrapper.horizontal>.k-item,
.nav-menu .k-popups-wrapper .k-item,
.nav-menu .k-popups-wrapper.horizontal>.k-item,
.nav-menu .k-widget.k-menu-horizontal>.k-item {
  position: relative;
  /*float: left;*/
  border-style: none;
  border-width: 0;
  vertical-align: top;
  zoom: 1;
  box-sizing: content-box;
}

.nav-menu .k-menu .k-item>.k-link {
   color: #fff;
}
.nav-menu .k-menu .k-popup .k-item{
  /*padding: 0.2em 1.2em 0.1em;*/
}
.nav-menu .k-menu .k-popup .k-item>.k-link {
   color: #000;
}

.nav-menu .k-menu .k-item a:hover,
.nav-menu .k-menu .k-item .active > a,
.nav-menu .k-menu .k-item:hover > a {
  color: #007bff;
}

#sidebar-wrapper {
  min-height: 720px;
  margin-left: -15rem;
  transition: margin 0.25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  min-width: 100vw;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: -15rem;
  }
}

.k-panelbar>.k-item>.k-link, .k-panelbar>.k-panelbar-header>.k-link {
  padding: 0.6rem 1.5rem;
  color: rgba(40, 58, 90, 0.9);
  border-bottom: solid 1px #dee2e6;
  text-transform:none;
  font-weight:normal;
  cursor: pointer;
  /* background-color: #fff; */
}
.k-panelbar>.k-item>.k-link.k-state-hover,
.k-panelbar>.k-item>.k-link:hover,
.k-panelbar>.k-panelbar-header>.k-link.k-state-hover,
.k-panelbar>.k-panelbar-header>.k-link:hover {
  background-color:rgba(40, 58, 90, 0.9);
  color:#fff;
}
.k-panelbar-collapse.k-icon, .k-panelbar-expand.k-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
}
.list-group .k-panelbar>.k-item>.k-link.k-state-selected,
.list-group .k-panelbar>.k-panelbar-header>.k-link.k-state-selected {
  color: rgba(40, 58, 90, 0.9);
  background-color: #fff;
}
.k-panelbar>.k-item, .k-panelbar>.k-panelbar-header {
  border-width: 0;
  border-style: none;
  border-color: transparent;
  display: block;
}

.card-primary{
  border-color: #007bff!important;
  border-top-width: 2px;
}