:root {
  --theme-gutter-x: 24px;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
pre,
blockquote,
figure,
hr {
  margin: 0;
  padding: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
textarea,
select,
button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  background-clip: padding-box;
}

input[type="text"],
textarea {
  width: 100%;
}

input,
textarea,
button {
  border: 1px solid #e6e6e6;
}

button {
  padding: 0;
  border-radius: 0;
  line-height: 1;
  background-color: transparent;
}

button * {
  pointer-events: none;
}

img,
svg,
iframe,
video,
object,
embed {
  max-width: 100%;
  line-height: 0;
}

table {
  table-layout: fixed;
  width: 100%;
}

[hidden] {
  display: none !important;
}

noscript {
  display: block;
  margin-bottom: 15px;
  margin-top: 15px;
}
/*--cardo--*/
@font-face {
  font-family: Cardo-Regular;
  src: url(font/cardo/Cardo-Regular.ttf);
}
@font-face {
  font-family: Cardo-Bold;
  src: url(font/cardo/Cardo-Bold.ttf.ttf);
}
/*--lato--
@font-face {
  font-family: Lato-Thin;
  src: url(font/lato/Lato-Thin.ttf);
}
@font-face {
  font-family: Lato-Light;
  src: url(font/lato/Lato-Light.ttf);
}
@font-face {
  font-family: Lato-Regular;
  src: url(font/lato/Lato-Regular.ttf);
}
@font-face {
  font-family: Lato-Bold;
  src: url(font/lato/Lato-Bold.ttf);
}
@font-face {
  font-family: Lato-Black;
  src: url(font/lato/Lato-Black.ttf);
}*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Lato:wght@100;300;400;700;900&family=Poppins:wght@100;200;300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');
body {
  font-family: Lato, Arial, sans-serif !important;
  letter-spacing: 0.1px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  color: #224855;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #237d9e;
}
a img {
  border: 0px;
}
.img-line-height {
  line-height: 0;
}
.img-line-height img,
img {
  line-height: 0;
  max-width: 100%;
  height: auto;
}
.header-top img {
  line-height: 0;
  max-width: 100%;
  height: 70px;
}

marquee span {
    padding: 0 5px;
}

marquee span::after {
    content: "|";
    margin-left: 10px;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--theme-gutter-x, 16px);
  padding-left: var(--theme-gutter-x, 16px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1128px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--theme-gutter-x) / -2);
  margin-left: calc(var(--theme-gutter-x) / -2);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--theme-gutter-x) / 2);
  padding-left: calc(var(--theme-gutter-x) / 2);
}
.col {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-sm-flex {
    display: flex;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-md-flex {
    display: flex;
  }
  .align-items-md-center {
    align-items: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-center {
    justify-content: center;
  }
}


@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
.col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;

  }
  .upcoming_events_slider .col-lg-4 {
    flex: 0 0 auto;
   /* width: 33.3333333333%;*/
   width: 100%;
  }


  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-lg-flex {
    display: flex;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-xl-flex {
    display: flex;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
}
.text-center {
  text-align: center;
}
/* button */
.btn-defualt,
a[type="button"] {
  background: transparent;
  color: #224855;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-appearance: none;
  height: 42px;
  border: 1px solid #214854;
  padding: 0 28px;
  border-radius: 20px;
}
.btn-defualt:hover,
.btn-defualt-active,
a[type="button"].btn-defualt-active {
  background: transparent;
  color: #237d9e;
  border: 1px solid #237d9e;
}
.btn-primary,
a[type="button"].btn-primary {
  background: #237d9e;
  color: #ffffff;
  border: 1px solid #237d9e;
}
/* page wrapper */

.page-wrapper {
  width: 100%;
  max-width: 1280px;
  box-shadow: 0 0 36px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}
.uppercase {
  font-weight: bold;
  letter-spacing: 0.5px;
}
h1,
h2 {
  font-size: 24px;
  letter-spacing: 0.1px;
  line-height: 34px;
  font-weight: bold;
}
h1 span {
  font-weight: 400;
}
h2 {
  text-transform: capitalize;
}
h3 {
  color: #224855;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 20px;
  font-weight: bold;
}
p {
  font-size: 14px;
  letter-spacing: 0.1px;
  line-height: 24px;
  font-weight: 500;
}
.section-heading + p {
  margin-top: 16px;
}
.section-space {
  padding: 60px 0;
}
.section-heading-link {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  h1,
  h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .section-space {
    padding: 40px 0;
  }
  .section-heading-link a[type="button"] {
    height: 32px;
    padding: 0 20px;
    font-size: 10px;
  }

  .below-md-none {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .container.below-lg-gutter {
    max-width: 100%;
  }
  .below-lg-gutter {
    --theme-gutter-x: 0;
  }
}
@media (max-width: 767px) {
  .below-md-gutter {
    --theme-gutter-x: 0;
  }
}
/* header */
header {
  background: #f7f5f5;
}
.header-top {
  padding: 24px 0;
}
hr {
  margin: 0;
  border: none;
  border-top: 1px solid #d0d0d0;
}
@media (max-width: 767px) {
  .header-top {
    padding: 20px 0 0;
  }
  .header-top nav {
    border-top: 1px solid #d0d0d0;
    margin-top: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    max-height: 52px;
    overflow: hidden;
  }
  .header-top nav ul {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .header-top nav ul li:first-child {
    margin-left: 24px;
  }
  .header-top nav ul li:last-child {
    margin-right: 24px;
  }
}
/* hero */
.hero .row {
  --theme-gutter-x: 116px;
}
.hero-content h1 {
  color: #224855;
  margin-bottom: 16px;
}
.hero-content h1 span {
  font-weight: 400;
  display: block;
}
.hero-content p {
  color: #262626;
}
.hero-content .btn-group {
  margin-top: 32px;
  display: flex;
}
.hero-content .btn-group a + a {
  margin-left: 16px;
}
.hero-content .btn-group a[type="button"] {
  padding: 0 20px;
}
@media (max-width: 991px) {
  .hero .row {
    --theme-gutter-x: 24px;
  }
}
@media (max-width: 767px) {
  .sml-device-order-2 {
    order: 2;
    margin-top: 24px;
  }
  .hero-content .btn-group {
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 215px;
  }
  .hero-content .btn-group a + a {
    margin-left: 0;
    margin-top: 16px;
  }
}
/* nav */
nav ul li {
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: Lato !important;
  font-weight:500;
}
nav ul li a {
  color: #9a9a9a;
}
nav ul li.active a {
  color: #237d9e;
}
nav ul li:not(:last-child) {
  margin-right: 16px;
}
nav ul li:not(:last-child):after {
  content: "/";
  margin-left: 12px;
  color: #d0d0d0;
  font-style: italic;
}
/* slider nav*/
.slider-nav {
  margin-right: 16px;
}
.slider-nav a {
  width: 40px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slider-nav a span {
  width: 10px;
  height: 18px;
}
.slider-nav .arrow-left {
  background: url(../images/arrow-left-default.svg);
}
.slider-nav .arrow-right {
  background: url(../images/arrow-right-default.svg);
}
.slider-nav a:hover .arrow-left {
  background: url(../images/arrow-left-active.svg);
}
.slider-nav a:hover .arrow-right {
  background: url(../images/arrow-right-active.svg);
}
/* card */
.card-content h3 {
  margin-bottom: 8px;
}
.event-type {
  color: #9a9a9a;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: uppercase;
  font-family:Lato !important;
  font-weight:400 !important;
}
.dr-name {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 24px;
  text-transform: capitalize;
  font-family:Lato !important;
  font-weight:700 !important;
}
.event-schedule {
  color: #262626;
  font-size: 12px;
  line-height: 20px;
  font-family:Lato !important;
  font-weight:400 !important;
}
.event-schedule > * {
  padding: 12px 6px;
}
.event-schedule > *:not(:last-child) {
  border-right: 1px solid #afefef;
}
.event-card a[type="button"].btn-primary {
  border-radius: 0 0 10px 10px;
  display: flex;
}
.card-thumb {
  line-height: 0;
}
.ap-kndg-icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* upcoming */
.grid-event h2 {
  color: #224855;
}
.event-card {
  border: 1px solid #eaeaea;
  border-radius: 10px;
}
.card-thumb img {
  border-radius: 10px;
}
.grid-event .card-content {
  padding: 16px 24px;
  min-height: 100px;
}
.grid-event .event-card {
  position: relative;
}
.grid-event .card-thumb {
  position: relative;
  display: block;
}
.grid-event .card-thumb:after {
  content: "";
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  height: 80px;
  width: 100%;
  z-index: 1;
  left: 0;
  bottom: 0;
}
.grid-event .dr-name {
  position: absolute;
  bottom: 0;
  padding: 0px 24px 16px;
  color: #ffffff;
  z-index: 2;
}
.grid-event .share {
  position: absolute;
  top: 162px;
  right: 12px;
  z-index: 2;
}
.grid-event .event-schedule {
  border-top: 1px solid #afefef;
}
@media (max-width: 991px) {
  .grid-event .below-lg-gutter {
    max-height: 382px;
    overflow: hidden;
  }
  .grid-event .event-cards {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .grid-event .event-cards > * {
    display: inline-flex;
    max-width: 325px;
  }
  .grid-event .event-cards * {
    white-space: normal;
  }
  .grid-event .slider-nav {
    display: none;
  }
  .grid-event .below-lg-gutter .col-lg-4:not(:last-child) {
    margin-right: 20px;
  }
  .grid-event .below-lg-gutter .col-lg-4:first-child {
    margin-left: calc((100% - 670px) / 2);
  }
  .grid-event .below-lg-gutter .col-lg-4:last-child {
    margin-right: calc((100% - 670px) / 2);
  }
}
@media (max-width: 767px) {
  .card-thumb img {
    width: 100%;
  }
  .grid-event .below-lg-gutter .col-lg-4:first-child {
    margin-left: calc((100% - 490px) / 2);
  }
  .grid-event .below-lg-gutter .col-lg-4:last-child {
    margin-right: calc((100% - 490px) / 2);
  }
}
@media (max-width: 575px) {
  .grid-event .below-lg-gutter .col-lg-4:first-child {
    margin-left: 24px;
  }
  .grid-event .below-lg-gutter .col-lg-4:last-child {
    margin-right: 24px;
  }
}
/* List event */

/*.list-event .event-card {
  display: flex;
}*/
.event-card{
  margin: 10px;
}
.list-event .event-card .row {
  --theme-gutter-x: 40px;
}
.list-event .card-content {
  flex-direction: column;
  margin: 16px 0;
}
.list-event .dr-name {
  color: #237d9e;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 8px 0;
  margin: 16px 0;
}
.event-video {
  flex-direction: column;
  align-self: center;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}
.event-video:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 17px;
  top: 0;
  background: #afefef;
}
.event-video span {
  text-align: center;
  color: #237d9e;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: uppercase;
  font-family:Lato !important;
  font-weight:700 !important;
}
@media (max-width: 991px) {
  .container.event-cards {
    display: flex;
    flex-wrap: wrap;
  }
  .container.event-cards > * {
    width: 47%;
  }
  .container.event-cards > *:nth-child(even) {
    margin-left: 6%;
  }
  .container.event-cards > * {
    margin-top: 32px;
  }
  .container.event-cards > *:first-child,
  .container.event-cards > *:nth-child(2) {
    margin-top: 0;
  }
  .list-event h3,
  .list-event .event-type,
  .list-event .dr-name {
    padding-left: 16px;
  }
  .list-event .event-schedule > * {
    padding: 0 16px;
  }
  .event-video {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .event-card {
    margin: 0;
}
  .container.event-cards > * {
    width: 100%;
  }
  .container.event-cards > *:nth-child(even) {
    margin-left: 0%;
  }
  .container.event-cards > *:not(:first-child) {
    margin-top: 32px;
  }
  .list-event h3,
  .list-event .event-type,
  .list-event .dr-name {
    padding-left: 16px;
  }
  .list-event .event-schedule > * {
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .list-event .event-card:not(:first-child) {
    margin-top: 32px;
  }
  .list-event .event-schedule > * {
    padding: 0 24px;
  }
  .list-event .event-schedule .event-date {
    padding-left: 0;
  }
}

/* charman section */
.chairman-msg {
  background: #f7f5f5;
}
.chairman-img {
  position: relative;
}
.chairman-img .msg {
  position: absolute;
  width: 40%;
  height: 250px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  left: 10%;
  color: #ffffff;
}
.chairman-img p {
  font-size: 19px;
  line-height: 34px;
  font-weight: 500;
}
.chairman {
  font-size: 16px;
    position: absolute;
    line-height: 24px;
    right: 109px;
    color: #fff;
    bottom: 44px;
    font-weight: bold;
     
    padding: 12px;
    border-radius: 3px;
}
.chairman span {
  font-size: 12px;
  display: block;
}
@media (max-width: 991px) {
  .chairman-img p {
    font-size: 14px;
    line-height: 24px;
  }
  .chairman span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .chairman-img .msg {
    width: 52%;
    height: 230px;
    top: 15%;
  }
}
/* faqs */
.faqs {
  background: #f7f5f5;
}
.faqs .row {
  --theme-gutter-x: 70px;
}
.faqs h2 {
  color: #224855;
}
.faqs-acdn {
  margin: 24px 0 32px;
  border-top: 1px solid #eaeaea;
}
.faqs .acdn-lnk {
  color: #000000;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  padding: 16px 20px 4px 0;
  position: relative;
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}
.faqs .acdn-lnk:hover,
.faqs .acdn-lnk.active {
  color: #237d9e;
}
.faqs .acdn-lnk:after {
  content: "";
  background: url(../images/arrow-default.svg) no-repeat;
  position: absolute;
  width: 13px;
  height: 8px;
  right: 0;
  top: 26px;
}
.faqs .acdn-lnk:hover:after,
.faqs .acdn-lnk.active:after {
  background: url(../images/arrow-active.svg) no-repeat;
}
.faqs .acdn-list {
  border-bottom: 1px solid #eaeaea;
}
.faqs .acdn-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  -o-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  margin-bottom: 14px;
  padding-right: 24px;
  height: 0px;
  overflow: hidden;
}
.faqs .acdn-panel.acdn-open{
  height: auto;

}
.faqs .acdn-panel p {
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 991px) {
  .faq-img {
    display: none;
  }
}
/* pagination */
.pagination {
  padding-top: 60px;
}
.pagination a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f5f5;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}
.pagination a:not(:last-child) {
  margin-right: 8px;
}
.pagination a.page-prev,
.pagination a.page-next {
  background: transparent;
}
.pagination a.page-prev {
  margin-right: 16px;
}
.pagination a.page-next {
  margin-left: 8px;
}
.pagination span.current,
.pagination a:hover {
  background: #237d9e;
}
.pagination a.dsbl {
  background: transparent;
  cursor: default;
}
.pagination a {
  cursor: pointer;
  color: #224855;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.1px;
  line-height: 20px;
  font-weight: 500;
  transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.pagination li.current,
.pagination li:hover a {
  color: #fff;
  font-weight: bold;
}
.pagination span[class^="arrow"] {
  width: 12px;
  height: 12px;
      margin: 0 auto;
}
.arrow-left {
  background: url(../images/pagination-left-default.svg);
}
.arrow-next {
  background: url(../images/pagination-right-default.svg);
}
.pagination li[class^="page"]:not(.dsbl):hover .arrow-left {
  background: url(../images/pagination-left-hover.svg);
}
.pagination li[class^="page"]:not(.dsbl):hover .arrow-next {
  background: url(../images/pagination-right-hover.svg);
}
.downloadsec{
  text-align: center;
}
.downloadsec a{
display: inline-block;
    padding: 6px 20px;
    position: relative;
    font-size: 14px;
    border-radius: 4px;
    margin-top: 30px;
}
@media (max-width: 991px) {
  .pagination {
    padding-top: 40px;
  }
}
/* upcoming-hero */
.upcoming-hero {
  background: #224855;
  color: #ffffff;
}
.upcoming-hero .row {
  --theme-gutter-x: 40px;
}
.upcoming-hero .event-type {
  color: #ffffff;
  margin-top: 8px;
}
.upcoming-hero hr {
  border-top: 1px solid #3a5963;
  margin: 24px 0;
}
.about-speaker {
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family:Lato !important;
  font-weight:400 !important;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-speaker span {
  font-size: 18px;
  letter-spacing: 0.1px;
  line-height: 22px;
  font-family:Lato !important;
  font-weight:700 !important;
  text-transform: capitalize;
  display: block;
  font-style: italic;
  margin-top: 8px;
}
.event-detail {
  background: rgba(38, 38, 38, 0.2);
  padding: 40px 44px;
  font-size: 14px;
  letter-spacing: 0.1px;
  line-height: 22px;
  font-family:Lato !important;
  font-weight:700 !important;
}
.event-detail-top {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.event-detail hr {
  margin: 16px 0;
}
.event-detail li:not(:last-child) {
  margin-bottom: 8px;
}
.register hr {
  margin-bottom: 20px;
}
.register a {
  width: 100%;
}
.register p {
  margin-top: 16px;
}
.register p span {
  margin-top: 8px;
  display: block;
  font-family:Lato !important;
  font-weight:400 !important;
}
.event-detail-list .ap-kndg-icon {
  width: 14px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .speaker-text {
    order: 1;
    margin-top: 16px;
  }
  .speaker-img img {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .speaker-img {
    display: none;
  }
}
@media (min-width: 1200px) {
  .speaker-img {
    align-self: flex-end;
  }
}
/* past event */
.past-event-hero {
  color: #ffffff;
}
.past-event-hero h1 {
  text-transform: capitalize;
}
.past-header form {
  margin: 16px 0;
}
.past-header form input {
  background: #fff;
  border: none;
  border-radius: 20px;
  color: #000;
  font-family: Lato, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: uppercase;
  height: 42px;
  width: 100%;
  max-width: 425px;
  padding: 0 24px;
}
._keyfocus :focus,
input:not([disabled]):focus,
select:not([disabled]):focus,
textarea:not([disabled]):focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
.past-header ul a {
  color: #d0d0d0;
  text-transform: capitalize;
  text-decoration: underline;
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
}
.past-header ul li:not(:last-child) a {
  margin-right: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.past-header ul li:not(:last-child) a::after {
  content: "";
  background: #d0d0d0;
  width: 3px;
  height: 3px;
  position: absolute;
  right: -13px;
  border-radius: 100%;
}
@media (max-width: 991px) {
  .past-event-hero {
    background: #224855;
    min-height: 210px;
  }
  .past-header ul li:nth-child(4) + li {
    display: none;
  }
  .past-header ul li:nth-child(4) a {
    margin-right: 0;
  }
  .past-header ul li:nth-child(4) a::after {
    content: none;
  }
}
@media (min-width: 992px) {
  .past-event-hero {
    background: url(../images/event-page-bg.svg), #224855;
    background-position: left top, left top;
    background-repeat: no-repeat, repeat;
    min-height: 250px;
  }
}
/* footer */
footer {
  background: url(../images/footer-top.svg),
    linear-gradient(rgb(255, 255, 255) 16px, rgb(35, 125, 158) 0%);
  background-position: left top, left top;
  background-repeat: repeat-x, repeat;
  padding-top: 16px;
}
.copyright {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.1px;
  line-height: 20px;
  font-family:Lato !important;
  font-weight:700 !important;
  padding: 24px 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
    padding: 0px !important;
}


.arrow-left {
    background: url(../images/arrow-left-default.svg) center;
    width: 40px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    text-align: center;
}
.arrow-right {
    background: url(../images/arrow-right-default.svg) center;
    width: 40px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    text-align: center;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot{
  display: inline-block;
}
.owl-nav{
    position: absolute;
    top: -60px;
    right: 110px;
    float: right;
    width: auto;
}

.event-type{
    text-overflow: ellipsis;
        overflow: hidden;
    white-space: nowrap;
}

.card-thumb img,
.owl-carousel .owl-item img{
  display: none;
}

.pagination span {
    cursor: pointer;
    color: #ffffff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.1px;
    line-height: 20px;
    font-weight: 500;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
    margin-right: 10px;
    border-radius: 5px;
}
.pagination span.dots{
    background: #f7f5f5;
    color: #000;
}

.btn-read-more{
    /* background: #237d9e; */
    border: none;
    display: inline-block;
    /* padding: 10px; */
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
}
.ar{
  text-align: right;
}
.downloadsec.ar {
    display: block;
    padding: 6px 20px;
    position: relative;
    font-size: 14px;
    border-radius: 4px;
    margin-top: 0;
    margin-bottom: 20px;
    right: 10px;
}
.downloadsec.ar a{
  margin-top: 0px;
}
.entry-content ul{
  padding-left: 20px;
}
.entry-content ul li{
  list-style-type: disc;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--theme-gutter-x) / -2);
    margin-left: calc(var(--theme-gutter-x) / -2);
}
@media(max-width: 960px){
  .grid-event .event-card {
    position: relative;
    width: 100%;
}
}

/* filter option */
form#sort-event {
  background: #f7f5f5;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 32px;
}
.filter-left > :nth-child(2) > * {
  width: 33.3%;
  border-right: 1px solid #eaeaea;
}
.filter-left > :nth-child(2) > *:first-child {
  border-left: 1px solid #eaeaea;
}
.filtr-event select,
.filtr-event input {
  color: #224855;
  background: url(../images/slct-arrow.svg) no-repeat;
  background-size: 10px 4px;
  border: none;
  border-left: 1px solid #eaeaea;
  font-size: 12px;
  text-transform: uppercase;
  font-family: Lato, Arial, sans-serif;
  line-height: 20px;
  letter-spacing: 1px;
  padding: 8px 44px 8px 20px;
  appearance: none;
  cursor: pointer;
  height: 44px;
  background-position: right 20px center;
}
input[type="date"] {
  position: relative;
  border-right: 1px solid #eaeaea;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  -webkit-appearance: none;
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  left: 0%;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
.filter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}
select#event-sort {
  border: none;
  border-radius: 10px;
  padding: 5px 40px 4px 20px;
  height: 30px;
  background: url(../images/slct-arrow.svg), #ffffff;
  background-position: right 20px center, left top;
  background-repeat: no-repeat, repeat;
}
@media (max-width: 767px) {
  .filtr-event .container {
    --theme-gutter-x: 0;
  }
  .event-filter {
    overflow: hidden;
    position: relative;
    max-height: 44px;
    margin-bottom: 24px;
  }
  .event-filter:before {
    content: "";
    background: #f7f5f5;
    width: 58px;
    height: 44px;
    left: 24px;
    top: 0;
    position: absolute;
    z-index: 1;
    border-radius: 10px 0 0 10px;
  }
  .event-filter:after {
    content: "";
    background: url(../images/filter.svg) no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 46px;
    top: 14px;
    z-index: 2;
  }
  form#sort-event {
    white-space: nowrap;
    display: block;
    margin-left: 24px;
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  form#sort-event > * {
    display: inline-block;
  }
  select#event-sort {
    margin-left: 20px;
    margin-right: 48px;
  }
}
@media (min-width: 768px) {
  form#sort-event {
    position: relative;
  }
  select#event-sort {
    position: absolute;
    right: 8px;
  }
}

@media (min-width: 360px) and (max-width: 767.98px) {
  .filtr-event .container{ width: 90%; }
form#sort-event { white-space: unset;
    display: block;    margin: 0px; }
.event-filter {     overflow: hidden;
    position: inherit;
    max-height: none;
    margin-bottom: 24px; }
/*    .event-filter #event-speciality{     width: 62%; }*/
    .event-filter:before  { display: none; }
    .event-filter:after  { display: none; }
    .filter-icon { display: none !important; }
    select#event-sort {
    margin-left: 1px !important;
    margin-right: 4px !important;
}
form#sort-event {
    white-space: nowrap;
    display: block;
    margin-left: 24px;
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

form#sort-event {
    background: #f7f5f5;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 32px;
}
.filtr-event select, .filtr-event input {
    color: #224855;
    background: url(../images/slct-arrow.svg) no-repeat;
    background-size: 10px 4px;
    border: none;
    border-left: 1px solid #eaeaea;
    font-size: 12px;
    text-transform: uppercase;
    font-family: Lato, Aroal, sans-serif !important;
    line-height: 20px;
    letter-spacing: 1px;
    padding: 8px 44px 8px 20px;
    appearance: none;
    cursor: pointer;
    height: 44px;
    background-position: right 20px center;
    width: auto;
}
form#sort-event {
    white-space: unset;
    display: flex;
    margin: 0px;
}


 }
