/*!
Theme Name: aml
Theme URI: http://underscores.me/
Author: Alfred Maina
Author URI: https://alfie.me.ke/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aml
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

aml is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/**
  Author: Oxygene MCL
  Alfred Maina
**/
html,
body {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
  width: 0.6em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #005793;
}

body::-webkit-scrollbar-thumb {
  background-color: #005793;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

h1.title {
  font-size: 40px;
}

.sub-title {
  color: #000;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 0px;
}

h2 {
  position: relative;
}
h2.title {
  font-size: 35px;
  margin: 30px 0px;
}

.width-80 {
  width: 80%;
  margin: auto;
  max-width: 1300px;
}

.width-90 {
  width: 85%;
}

.page-width {
  width: 80%;
  margin: auto;
}

.close {
  cursor: pointer;
}

@keyframes slideleft {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes firstshow {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideleft {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideright {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideup {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slidedown {
  0% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(1px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(2px, 0, 0);
  }
}
@keyframes shakeit {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-5px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes cheersitop {
  10%, 90% {
    transform: translate3d(1px, 0, 0);
    transform: rotate(-6deg);
  }
  20%, 80% {
    transform: translate3d(-2px, 0, 0);
    transform: rotate(-20deg);
  }
  30%, 50%, 70% {
    transform: translate3d(5px, 0, 0);
    transform: rotate(-2deg);
  }
  40%, 60% {
    transform: translate3d(-5px, 0, 0);
    transform: rotate(0deg);
  }
}
@keyframes cheersit {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
    transform: rotate(4deg);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
    transform: rotate(60deg);
  }
  30%, 50%, 70% {
    transform: translate3d(-5px, 0, 0);
    transform: rotate(2deg);
  }
  40%, 60% {
    transform: translate3d(5px, 0, 0);
    transform: rotate(0deg);
  }
}
.fadein {
  animation: fadein 3s;
}

.slidein {
  animation: firstshow 2s;
}

.slideleft {
  animation: slideleft 1.2s;
}

.slideright {
  animation: slideright 1.2s;
}

.slideup {
  animation: slideup 2s;
}

.slidedown {
  animation: slidedown 2s;
}

.titleslide {
  animation: titleslide 2s;
}

.shakeit {
  animation: shakeit 8s linear infinite;
  perspective: 10px;
}

.cheersit {
  animation: cheersit 12s linear infinite;
  perspective: 10px;
}

.cheersitop {
  animation: cheersitop 12s linear infinite;
  perspective: 10px;
}

::-moz-selection {
  background: #B80B4D !important;
  color: white;
}

::selection {
  background: #B80B4D !important;
  color: white;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}
h2.title {
  font-size: 50px;
  margin-bottom: 30px;
  color: #005793;
  position: relative;
  font-weight: 800;
}
h2.title span {
  font-size: 40px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

.back-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 20;
  width: 50px;
  height: 50px;
  background: #B80B4D;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.5;
  transition-duration: 300ms;
  color: #fff !important;
  cursor: pointer;
}
.back-top:hover {
  opacity: 1;
  color: #005793;
}
.back-top.show {
  opacity: 1;
}

button {
  outline: hidden;
}
button:focus {
  outline: none;
}

.btn {
  background: #B80B4D;
  transition-duration: 300ms;
  color: #fff;
  border-radius: 10px;
  padding: 6px 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 5px 5px 17px 7px rgba(0, 0, 0, 0.2);
}
.btn i {
  padding-left: 15px;
  transition-duration: 300ms;
}
.btn:hover {
  background: #005793;
  color: #fff;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 400px;
  box-shadow: 5px 5px 17px 10px rgba(0, 0, 0, 0.3);
}
.btn:hover i {
  color: #fff;
  transform: translateX(8px);
}
.btn.small {
  border-radius: 7px;
  padding: 5px 20px;
  font-weight: 600;
  font-size: 14px;
}
.btn.small i {
  padding-left: 8px;
}
.btn.small:hover i {
  transform: translateX(4px);
}

.scroll-down {
  cursor: pointer;
}
.scroll-down span {
  position: absolute;
  bottom: 3%;
  left: 49.8%;
  width: 46px;
  height: 75px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
  z-index: 50;
}
.scroll-down span:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  content: "\f103";
  top: 3px;
  left: 16px;
  margin-left: -3px;
  border-radius: 100%;
  color: rgba(255, 255, 255, 0.8);
  animation: sdb10 1s infinite;
  box-sizing: border-box;
}
.scroll-down.colored span {
  background: #d4f9dd;
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.spin {
  animation: spin 30s linear infinite;
}

.bg-cover {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.main-menu {
  position: relative;
  top: 0;
  width: 100%;
  height: auto;
  left: 0;
  z-index: 999;
  box-shadow: 0px 0px 10px 10px rgba(0, 87, 147, 0.1);
  padding: 10px 0px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.main-menu .navbar .navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.main-menu .navbar .navbar-toggler .navbar-toggler-icon {
  display: block;
  width: 20px;
  height: 1px;
  background: #B80B4D;
  margin: 5px 0px;
}
.main-menu .navbar .navbar-brand {
  width: 220px;
  height: auto;
  position: relative;
  padding: 0px 20px;
}
.main-menu .navbar .navbar-brand img {
  width: 100%;
  height: auto;
}
.main-menu .navbar .navbar-nav .nav-item {
  padding: 10px 10px;
  position: relative;
  transition-duration: 300ms;
  display: flex;
  align-items: center;
}
.main-menu .navbar .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #005793;
}
.main-menu .navbar .navbar-nav .nav-item:after {
  width: 0%;
  transition-duration: 300ms;
}
.main-menu .navbar .navbar-nav .nav-item.active .nav-link {
  color: #B80B4D;
}
.main-menu .navbar .ctas {
  position: relative;
  right: 0;
}
.main-menu .navbar .ctas a .btn {
  margin: 5px;
}
.main-menu .navbar .ctas a:nth-child(2) .btn {
  background: #00458B;
}
.main-menu .navbar .ctas a:nth-child(2) .btn:hover {
  background: #262626;
}
.main-menu.fixed {
  position: fixed;
  animation: sticky 2s;
  padding: 0px;
}

.full-height {
  height: 100vh;
}

.landing {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.landing .slider-item {
  height: 100vh;
}
.landing .slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.landing .landing-banner-content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing .landing-banner-content .slider-card {
  width: 80%;
  max-width: 1100px;
  text-align: center;
  color: #fff;
  z-index: 50;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 50px;
  border-radius: 20px;
  transform: translateY(10%);
}
.landing .landing-banner-content .slider-card .details {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  padding: 7px 0px;
  font-weight: 600;
}
.landing .landing-banner-content .slider-card .details li {
  margin: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.landing .landing-banner-content .slider-card .details li:first-child {
  margin-left: 0px;
}
.landing .landing-banner-content .slider-card .details li i {
  padding-right: 12px;
  font-size: 22px;
}
.landing .landing-banner-content .slider-card p {
  font-size: 24px;
}
.landing .landing-banner-content h2 {
  animation: slideup 4s !important;
  font-size: 60px;
  padding-bottom: 0px;
  color: #fff;
  font-weight: 800;
  position: relative;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5), 1px -1px 0 rgba(0, 0, 0, 0.5), -1px 1px 0 rgba(0, 0, 0, 0.473), 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.landing .landing-banner-content .buttons {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 80%;
  margin: auto;
}
.landing .landing-banner-content .buttons .btn {
  color: #fff;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 10px;
  min-width: 250px;
  width: 30%;
}
.landing .landing-banner-content .buttons .btn:nth-child(2) {
  background: #005793;
}
.landing .landing-banner-content .buttons .btn:hover {
  background: transparent;
  border: 1px solid #000;
  color: #fff;
}
.landing .landing-banner-content:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(38, 38, 38, 0.2);
  z-index: 10;
}

.landing-page {
  position: relative;
  height: calc(100vh - 90px);
}
.landing-page .landing-banner-content {
  width: 95%;
  max-width: 1100px;
  text-align: center;
  transform: translateY(-12%);
}
.landing-page .landing-banner-content .landing-logo {
  max-width: 380px;
}
.landing-page .landing-banner-content .details {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  padding: 7px 0px;
  font-weight: 600;
  margin: 15px 0px 0px 0px;
  color: #fff;
}
.landing-page .landing-banner-content .details li {
  margin: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #7FBC03;
  padding: 7px 30px;
  border-radius: 5px;
}
.landing-page .landing-banner-content .details li:first-child {
  background: #B80B4D;
}
.landing-page .landing-banner-content .details li:last-child {
  background: #005793;
}
.landing-page .landing-banner-content .details li i {
  padding-right: 12px;
  font-size: 18px;
}
.landing-page .landing-banner-content p {
  font-size: 25px;
  width: 80%;
  font-weight: 500;
  margin: auto;
}
.landing-page .landing-banner-content p span {
  font-weight: 700;
}
.landing-page h2 {
  animation: slideup 2s !important;
  font-size: 55px;
  line-height: 1.2;
  padding-bottom: 0px;
  color: #005793;
  font-weight: 800;
  padding: 20px 0px;
  position: relative;
}
.landing-page .img-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.landing-page .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-page .img-wrapper .identity {
  position: absolute;
  z-index: 10;
  right: 0;
  left: 0px;
  top: 0;
  bottom: -20px;
  margin: auto;
  width: 100%;
  height: auto;
  opacity: 0.05;
}

.landing-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.landing-slider .slider-item {
  min-height: calc(85vh - 0px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.landing-slider img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  animation: scale 30s linear infinite;
}
.landing-slider .page-video {
  min-height: calc(85vh - 0px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.landing-slider .page-video:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 87, 147, 0.6);
  z-index: 1;
}
.landing-slider .landing-banner-content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}
.landing-slider .landing-banner-content .slider-card {
  width: 80%;
  max-width: 1100px;
  text-align: center;
  color: #fff;
  z-index: 50;
  padding: 50px;
  border-radius: 20px;
  transform: translateY(10%);
}
.landing-slider .landing-banner-content .slider-card .details {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  padding: 7px 0px;
  font-weight: 600;
}
.landing-slider .landing-banner-content .slider-card .details li {
  margin: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #7FBC03;
  padding: 7px 30px;
  border-radius: 5px;
}
.landing-slider .landing-banner-content .slider-card .details li:first-child {
  background: #B80B4D;
}
.landing-slider .landing-banner-content .slider-card .details li:last-child {
  background: #005793;
}
.landing-slider .landing-banner-content .slider-card .details li i {
  padding-right: 12px;
  font-size: 18px;
}
.landing-slider .landing-banner-content .slider-card p {
  font-size: 30px;
  width: 80%;
  font-weight: 500;
  margin: auto;
}
.landing-slider .landing-banner-content h2 {
  animation: slideup 4s !important;
  font-size: 60px;
  padding-bottom: 0px;
  color: #fff;
  font-weight: 800;
  padding: 30px 0px;
  position: relative;
}
.landing-slider .identity {
  position: absolute;
  z-index: 10;
  right: 0;
  left: -30px;
  top: 0;
  bottom: -20px;
  margin: auto;
  width: 90%;
  height: auto;
  opacity: 0.04;
}

.countdown-bottom {
  position: relative;
  background: #005793;
  background: linear-gradient(to right, #005793 0%, #B80B4D 90%);
  padding: 20px 0px;
  border-radius: 15px;
  transform: translateY(-80%);
  z-index: 20;
}
.countdown-bottom h2 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}
.countdown-bottom h3 {
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 0px;
  opacity: 0.5;
}

.countdown {
  position: relative;
  padding-top: 50px;
  max-width: 500px;
  margin: auto;
}
.countdown .card {
  color: #B80B4D;
  padding: 20px 10px;
  border-radius: 10px;
}
.countdown .card span {
  line-height: 1;
  font-size: 30px;
  font-weight: 600;
  display: block;
  padding-bottom: 10px;
}
.countdown .card span.count-tx {
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 0px;
  color: #005793;
}

.about {
  position: relative;
  padding: 0px 0px 80px 0px;
}
.about .faded-title {
  left: -10%;
  top: -10%;
}
.about h3 {
  color: #B80B4D;
  font-weight: 700;
  font-size: 25px;
}
.about .sub-title {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  opacity: 0.8;
  border-left: 7px solid #005793;
  padding: 10px 20px;
  margin: 10px 0px 20px 0px;
}
.about .img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.about .img-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.about .img-wrapper:after {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  background: #005793;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  transition-duration: 300ms;
}
.about .img-wrapper:hover:after {
  right: -30px;
  bottom: -30px;
  background: #B80B4D;
}
.about .more-content .modal-body {
  padding: 5%;
}

iframe {
  border-radius: 10px;
  box-shadow: 10px 10px 20px 10px rgba(0, 0, 0, 0.1);
}

.focus-areas {
  padding: 50px 0px 100px 0px;
  background: rgba(0, 255, 255, 0.2);
}
.focus-areas .title {
  text-align: center;
}
.focus-areas .col {
  padding: 10px;
  flex: 0 0 20%;
  max-width: 20%;
}
.focus-areas .col .card {
  width: 100%;
  height: 100%;
  text-align: center;
  border: none;
  padding: 40px 20px;
  cursor: pointer;
  box-shadow: 5px 5px 17px 7px rgba(0, 0, 0, 0.05);
  transition-duration: 300ms;
}
.focus-areas .col .card .img-wrapper {
  position: relative;
}
.focus-areas .col .card .img-wrapper img {
  max-width: 80px;
  transition-duration: 300ms;
}
.focus-areas .col .card h3 {
  color: #B80B4D;
  padding-top: 20px;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 700;
}
.focus-areas .col .card:hover {
  background: #00FFFF;
  transform: rotate(0deg) scale(1.1);
}
.focus-areas .col .card:hover img {
  transform: rotate(0deg) scale(1.1);
}

.flippe {
  padding: 5px 30px;
  background: #B80B4D;
  color: #fff;
  position: fixed;
  z-index: 100;
  border: none;
  font-size: 18px;
  font-weight: 600;
  transform-origin: top left;
  left: 0;
  top: 38%;
  transform: rotate(-90deg) translateX(-100%);
  color: white;
  text-shadow: 0 0 20px #48C8FF;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.flippe div {
  display: inline-block;
  min-width: 50px;
  text-align: center;
}
.flippe div span {
  color: #B1CDF1;
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.faded-bg {
  position: absolute;
  opacity: 0.5;
  z-index: 1;
}
.faded-bg.left-bg {
  left: 10%;
  top: 10%;
}
.faded-bg.right-bg {
  right: 10%;
  bottom: -20px;
}

.register {
  width: 100%;
  min-height: 60vh;
  padding: 60px 0px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 20;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register .intro {
  font-size: 18px;
  max-width: 990px;
  margin: 20px auto;
  padding: 10px 0px 30px 0px;
}
.register .title {
  color: #fff;
}
.register #timer2 {
  font-size: 3em;
  padding: 40px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.register #timer2 div {
  position: relative;
  display: block;
  min-width: 150px;
  padding: 15px;
  background: #B80B4D;
  margin: 15px;
  border-radius: 5px;
}
.register #timer2 div span {
  font-size: 16px;
  display: block;
  padding: 0px 0px 10px 0px;
}
.register #timer2 div:nth-child(2) {
  background: #7FBC03;
}
.register #timer2 div:nth-child(3) {
  background: #005793;
}
.register #timer2 div:nth-child(4) {
  background: #00FFFF;
}
.register #timer2 div:nth-child(5) {
  background: #262626;
}
.register .right-img {
  right: 0px;
  top: auto;
  z-index: 0;
}
.register:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.register .wrapper {
  position: relative;
  z-index: 20;
}
.register .identity {
  position: absolute;
  z-index: 10;
  right: 0;
  left: -30px;
  top: 0;
  bottom: -20px;
  margin: auto;
  width: auto;
  height: auto;
  opacity: 0.05;
}

.speakers {
  padding: 50px 0px 70px 0px;
  position: relative;
}
.speakers .card {
  position: relative;
  border: none;
  width: 100%;
  height: auto;
  margin: 12px 0px;
  border-radius: 0px;
  cursor: pointer;
}
.speakers .card .img-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.speakers .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.5s;
}
.speakers .card .card-body {
  position: relative;
  left: 10px;
  top: -20px;
  bottom: 0;
  z-index: 20;
  width: 100%;
  background: linear-gradient(to right, #005793 0%, #005793 90%);
  padding: 20px 20px 20px 20px;
  height: 100%;
}
.speakers .card .card-body .card-title p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 7px;
}
.speakers .card .card-body .card-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.speakers .card .card-body .card-text {
  color: #fff;
  opacity: 0;
  transform: translateY(15px);
  transition-duration: 400ms;
}
.speakers .card .card-body .card-text .btn {
  background: transparent;
  border: 0px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
  font-weight: 100;
  opacity: 0.8;
}
.speakers .card .card-body .card-text p {
  font-size: 14px;
}
.speakers .card .card-body .card-text p span {
  font-weight: 700;
}
.speakers .card .card-body:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  border-style: solid;
  border-width: 0px 0px 30px 30px;
  border-color: #fff #00458B;
  transition: all ease 0.5s;
}
.speakers .card:hover .img-wrapper img {
  transform: rotate(0deg) scale(1.08);
  filter: grayscale(50%);
}
.speakers .card:hover .card-body:before {
  border-width: 0px 0px 60px 60px;
}

.modal {
  background: rgba(0, 0, 0, 0.8);
}
.modal .modal-lg {
  max-width: 1000px;
}
.modal .modal-body {
  padding: 0px;
}
.modal .modal-body .img-wrapper {
  width: 100%;
  height: 100%;
}
.modal .modal-body .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal-body .card {
  border: none;
  padding: 10%;
  font-size: 12px;
  height: 550px;
  overflow: auto;
}
.modal .modal-body .card::-webkit-scrollbar {
  width: 0.6em;
}
.modal .modal-body .card::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #ced4da;
}
.modal .modal-body .card::-webkit-scrollbar-thumb {
  background-color: #00458B;
}
.modal .modal-body .card p {
  font-size: 16px;
}
.modal .modal-body .card .designation {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}
.modal .modal-body .card .designation:after {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  border-radius: 50%;
  left: 0px;
  background: rgba(38, 38, 38, 0.8);
  bottom: 0px;
}
.modal .close {
  position: absolute;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 22;
  right: -20px;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.05);
  transition-duration: 300ms;
}
.modal .close:hover {
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

.sponsors {
  padding: 80px 0px 100px 0px;
}
.sponsors .title {
  margin: 20px 0px;
}
.sponsors .faded-title {
  left: -10%;
  top: -15%;
}
.sponsors .sub-title {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  opacity: 0.8;
  border-left: 7px solid #00458B;
  padding: 10px 20px;
  margin: 10px 0px 20px 0px;
  color: #000;
}
.sponsors .card {
  width: 100%;
  height: 100%;
  text-align: center;
  border: none;
  padding: 30px 20px;
  cursor: pointer;
  transition-duration: 300ms;
  position: relative;
  z-index: 200;
}
.sponsors .card a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sponsors .card .img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.sponsors .card .img-wrapper img {
  transition-duration: 300ms;
}
.sponsors .card h3 {
  color: #B80B4D;
  padding-top: 20px;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 700;
}
.sponsors .card:hover {
  transform: rotate(0deg) scale(1.05);
}
.sponsors .card:hover img {
  transform: rotate(0deg) scale(1.01);
  filter: grayscale(100%);
}

.programme {
  padding: 60px 0px 60px 0px;
  background: rgba(220, 220, 227, 0.3);
  position: relative;
  overflow: hidden;
}
.programme .container {
  position: relative;
  z-index: 10;
}
.programme .container .title {
  color: #005793;
  font-weight: 600;
  margin-bottom: 20px;
}
.programme .nav {
  position: relative;
  margin-bottom: 25px;
  background: #fff;
}
.programme .nav .nav-link {
  padding: 20px 20px;
  position: relative;
  z-index: 20;
  background: transparent;
  font-size: 20px;
  color: #000;
  border-radius: 0px;
  font-weight: 700;
}
.programme .nav .nav-link span {
  position: relative;
  z-index: 20;
}
.programme .nav .nav-link:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  bottom: -15px;
  transform: rotate(45deg);
  background: #7FBC03;
  opacity: 0;
}
.programme .nav .nav-link:hover {
  border: none;
  opacity: 0.5;
}
.programme .nav .nav-link.active {
  background: #7FBC03;
  color: #fff;
}
.programme .nav .nav-link.active:after {
  opacity: 1;
}
.programme .card {
  background: transparent;
  padding: 20px 20px 20px 0px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.programme .card .card-header {
  border-bottom: 0px;
  padding: 0px;
  cursor: pointer;
  color: #B80B4D;
  background: transparent;
}
.programme .card .card-header p {
  color: #B80B4D;
  margin-bottom: 0px;
  font-weight: 800;
  padding-bottom: 10px;
}
.programme .card .card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #005793;
}
.programme .card .card-header span {
  width: 80px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  background: transparent;
  color: #B80B4D;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
}
.programme .card .card-header span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  font-size: 18px;
  transition-duration: 300ms;
}
.programme .card .card-header.collapsed {
  color: #000;
}
.programme .card .card-header.collapsed span {
  color: #005793;
}
.programme .card .card-header.collapsed span:before {
  transform: rotate(360deg);
  content: "\f078";
}
.programme .card .card-body {
  padding: 5px 50px 5px 0px;
  font-size: 20px;
  width: 95%;
}
.programme .cta {
  width: 100%;
  padding: 100px 0px 0px 0px;
  text-align: center;
}
.programme.faqs {
  padding: 60px 0px 100px 0px;
}
.programme.faqs .card .card-header h3 {
  font-size: 18px;
  margin: 0px;
}
.programme .width-80 {
  position: relative;
  z-index: 20;
}
.programme .identity {
  position: absolute;
  z-index: 10;
  right: 0;
  left: -30px;
  top: 0;
  bottom: -20px;
  margin: auto;
  width: auto;
  height: auto;
  opacity: 0.5;
}

.impact {
  position: relative;
  margin: 100px 0px;
}
.impact:after {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  background: #7FBC03;
  top: 0%;
  right: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: -1;
  transform: skewY(5deg);
}

.footer {
  background: #262626;
  padding: 80px 0px 20px 0px;
  position: relative;
  z-index: 20;
  overflow: hidden;
}
.footer .width-80 {
  width: 80%;
  margin: auto;
}
.footer img {
  width: 40%;
  height: auto;
}
.footer p {
  color: #fff;
  font-size: 18px;
  width: 70%;
  opacity: 0.9;
  padding: 30px 0px 20px 0px;
}
.footer .title {
  color: #fff;
  font-size: 25px;
}
.footer .icons-ft a {
  color: #fff;
  font-size: 30px;
}
.footer .subscribe-bx form {
  max-width: 500px;
  position: relative;
}
.footer .subscribe-bx form .form-control {
  border-radius: 16px;
  padding: 25px 20px;
}
.footer .subscribe-bx form .btn {
  position: absolute;
  background: #B80B4D;
  color: #fff;
  right: 0;
  top: 0;
  padding: 15px 40px;
  border-radius: 0px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.who-we-are {
  position: relative;
  background: #0A4489;
  padding: 0px 0px 0px 0px;
  color: #fff;
  overflow: hidden;
}
.who-we-are .title {
  color: #fff;
}
.who-we-are .card-text {
  padding: 20px 0px;
}
.who-we-are .content {
  position: relative;
  z-index: 25;
  padding: 100px 0px;
}
.who-we-are .content .card-text a {
  color: #00FFFF;
  font-weight: 600;
}
.who-we-are .width-90 {
  margin-left: auto;
}
.who-we-are .banner-wrapper {
  width: 100%;
  position: relative;
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 60vh;
}
.who-we-are .banner-wrapper img {
  width: 100%;
  transition-duration: 300ms;
  border-radius: 20px;
  z-index: 3;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.who-we-are .banner-wrapper:before {
  position: absolute;
  opacity: 0;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 25%;
  right: 0px;
  background: rgba(184, 11, 77, 0.5);
}
.who-we-are .banner-wrapper:after {
  position: absolute;
  opacity: 0;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 25%;
  right: 0px;
  background: #005793;
  animation: zoomOut 3s linear infinite 0s;
}
.who-we-are .identity {
  position: absolute;
  z-index: 20;
  right: 0;
  left: 0px;
  top: 0;
  bottom: -20px;
  margin: auto;
  width: 100%;
  height: auto;
  opacity: 0.02;
}

.news {
  padding: 100px 0px 80px 0px;
}
.news .card {
  border: none;
  background: transparent;
}
.news .card .img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.news .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: 300ms;
}
.news .card .card-body {
  padding: 20px 0px;
}
.news .card .card-body .cat {
  font-size: 10px;
  margin-bottom: 10px;
}
.news .card .card-body .card-title {
  font-size: 16px;
  color: #fff;
}
.news .card .card-body .card-text {
  padding: 0px 0px 20px 0px;
  font-size: 12px;
}
.news .card:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}
.news .news-slider .owl-dots {
  display: none;
}
.news .owl-carousel .owl-nav button.owl-prev,
.news .owl-carousel .owl-nav button.owl-next {
  z-index: 1;
  background-color: rgba(38, 38, 38, 0.3);
  color: #fff;
  border-radius: 0%;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  padding: 30px 25px !important;
  transition-duration: 300ms;
  border-radius: 5px;
  font-size: 12px;
}
.news .owl-carousel .owl-nav button.owl-prev:hover,
.news .owl-carousel .owl-nav button.owl-next:hover {
  background: #262626;
}
.news .owl-carousel .owl-nav button.owl-prev {
  left: -300px;
}
.news .owl-carousel .owl-nav button.owl-prev:hover {
  left: -295px;
}
.news .owl-carousel .owl-nav button.owl-next {
  right: -300px;
}
.news .owl-carousel .owl-nav button.owl-next:hover {
  right: -295px;
}

.single-banner {
  height: 135px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.single-banner .banner-content {
  position: absolute;
  z-index: 20;
}
.single-banner .banner-content .banner-card {
  position: relative;
  line-height: 1;
  padding: 0px;
  transform: translateY(-50px);
}
.single-banner .banner-content .banner-card h2.page-title {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}
.single-banner:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.single-content .meta-data ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0px 15px 0px;
  margin-left: 0px;
  margin-bottom: 0px;
}
.single-content .meta-data ul li {
  position: relative;
  padding: 0px 30px;
  font-size: 14px;
  font-weight: 600;
  color: #005793;
}
.single-content .meta-data ul li:first-child {
  padding-left: 0px;
  font-size: 15px;
}
.single-content .meta-data ul li:last-child {
  padding-right: 0px;
}
.single-content .meta-data ul li:last-child:after {
  display: none;
}
.single-content .meta-data ul li .small {
  font-size: 12px;
  font-weight: 400;
}
.single-content .meta-data ul li:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B80B4D;
  bottom: 20%;
  right: 0%;
  transform: translate(20%, -50%);
}
.single-content .excerpt {
  margin: 20px 10px 20px 10px;
  padding: 20px 20px 20px 30px;
  border-left: #B80B4D solid 10px;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  overflow: hidden;
}
.single-content .content {
  padding: 40px 0px 40px 0px;
}
.single-content .side-bar {
  padding: 50px 20px;
}
.single-content .side-bar .title {
  font-size: 22px;
  color: #005793;
  padding-bottom: 20px;
  position: relative;
}
.single-content .side-bar .title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: rgba(0, 87, 147, 0.4);
  bottom: 10px;
  left: 0px;
}
.single-content .side-bar h4.title {
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.single-content .side-bar h4.title:after {
  width: 100px;
  background: rgba(255, 255, 255, 0.7);
}
.single-content .side-bar .tags ul {
  list-style: none;
  padding: 0px 0px 20px 0px;
  margin-left: 0px;
}
.single-content .side-bar .tags ul li {
  padding: 10px;
}
.single-content .side-bar .tags ul .btn {
  padding: 7px 15px;
  margin: 5px 7px 7px 0px;
  font-size: 12px;
}
.single-content .side-bar .rpwe-title a {
  color: #005793;
}
.single-content .side-bar .subscribe {
  padding: 30px 20px;
  box-shadow: 5px 5px 17px 7px rgba(0, 0, 0, 0.2);
  margin: 40px 0px;
  background: #005793;
}
.single-content .side-bar .subscribe h4.title {
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.single-content .side-bar .subscribe h4.title:after {
  width: 100px;
  background: rgba(255, 255, 255, 0.7);
}
.single-content .side-bar .subscribe input {
  margin-bottom: 10px;
  font-size: 12px;
}
.single-content .side-bar .subscribe .btn {
  width: 100%;
}
.single-content .side-bar .subscribe .btn:hover {
  background: #000;
}

h4.sub-title {
  color: #005793;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
h4.faded-title {
  font-size: 12em;
  position: absolute;
  opacity: 0.05;
  top: 0%;
  left: 10%;
  z-index: 20;
}

.home-news {
  position: relative;
  padding: 80px 0px;
  background: rgba(220, 220, 227, 0.3);
}
.home-news .card {
  height: 100%;
  border: none;
}
.home-news .card .img-wrapper {
  height: 300px;
}
.home-news .card .img-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: 300ms;
}
.home-news .card .card-body .card-title {
  font-size: 20px;
  color: #262626;
}
.home-news .card .card-body .date {
  font-weight: 600;
  color: #005793;
  padding-bottom: 10px;
}
.home-news .owl-dots {
  position: absolute;
  bottom: -5%;
  right: 50%;
  transform: translate(50%, -50%);
}
.home-news .owl-dots .owl-dot span {
  width: 15px;
  background: #fff;
  height: 10px;
  width: 40px;
  border: 1px solid #262626;
}
.home-news .owl-dots .owl-dot.active span {
  background: #B80B4D;
  border: 1px solid #B80B4D;
  width: 60px;
}

.vid-sec {
  position: relative;
  background: rgba(220, 220, 227, 0.5);
  padding: 100px 0px 100px 0px;
}

.videos {
  position: relative;
  min-height: 70vh;
  background: #dcdce3;
  padding: 60px 0px 100px 0px;
}
.videos .card {
  background: transparent;
  border: none;
  height: auto;
}
.videos .card .img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.videos .card .img-wrapper i {
  font-size: 50px;
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #B80B4D;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.videos .card .card-body {
  padding-left: 0px;
}
.videos .card.big-card {
  height: 100%;
}
.videos .card.big-card .img-wrapper {
  height: 100%;
}
.videos .card.big-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videos .card.big-card:before {
  content: "";
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.01));
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.videos .card.big-card .card-body {
  padding: 20px 20px 20px 0px;
  color: #fff;
  position: absolute;
  z-index: 20;
  width: 90%;
  left: 5%;
  bottom: 3%;
}
.videos .card.big-card .card-body .card-title {
  color: #fff;
  font-size: 30px;
}
.videos .card.big-card .img-wrapper {
  height: 100%;
}
.videos .card.big-card .img-wrapper i {
  font-size: 80px;
}
.videos .col-md-7 {
  background: #005793;
  padding: 50px 0px 50px 30px;
}
.videos .item .card {
  height: 100%;
}
.videos .item .card .card-body {
  color: #fff;
}
.videos .item .card .card-body a {
  color: #fff;
}
.videos .item .card .card-body .card-title {
  color: #fff;
  font-size: 20px;
}
.videos .owl-dots {
  position: absolute;
  bottom: -10%;
  right: 50%;
  transform: translate(50%, -50%);
}
.videos .owl-dots .owl-dot span {
  width: 15px;
  background: #fff;
  height: 7px;
  width: 40px;
  border: 1px solid #262626;
}
.videos .owl-dots .owl-dot.active span {
  background: #B80B4D;
  border: 1px solid #B80B4D;
  width: 60px;
}

.video {
  width: 100%;
}
.video .col-md-6:nth-child(3n+1) .card::after {
  background: rgba(0, 0, 0, 0.7);
}
.video .card {
  width: 100%;
  position: relative;
  height: 100%;
}
.video .card:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.video .card .img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video .card .card-body {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 70%;
}
.video .card .card-body i {
  padding-top: 30px;
  color: #B80B4D;
  font-size: 70px;
}

.past-events {
  padding: 0px 0px 0px 0px;
}
.past-events .event-wrapper {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}
.past-events .event-wrapper.with-bg {
  background: rgba(220, 220, 227, 0.5);
}
.past-events .event-wrapper.with-bg:after {
  background: linear-gradient(to left, #e7e5e2 50%, rgba(184, 11, 77, 0.2));
}
.past-events .event-wrapper.with-bg .the-bg {
  left: 0px;
}
.past-events .event-wrapper .year {
  color: #B80B4D;
  font-size: 18px;
  font-style: italic;
}
.past-events .event-wrapper .img-wrap {
  position: relative;
}
.past-events .event-wrapper .img-wrap:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -10%;
  bottom: -10%;
  background: #b80b4d;
  z-index: -1;
}
.past-events .event-wrapper .img-wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: -10%;
  top: -10%;
  background: #005793;
  z-index: -1;
}
.past-events .event-wrapper h3.title {
  color: #005793;
  font-size: 30px;
  padding: 0px 0px 0px 0px;
}
.past-events .event-wrapper .theme {
  font-size: 20px;
  padding-bottom: 0px;
  color: #262626;
  border-left: 5px solid #00458B;
  padding-left: 20px;
  border-radius: 5px;
}
.past-events .event-wrapper .btn {
  padding: 7px 30px;
}
.past-events .event-wrapper .meta {
  list-style: none;
  display: flex;
  padding: 5px 0px 0px 0px;
}
.past-events .event-wrapper .meta li {
  padding-right: 20px;
}
.past-events .event-wrapper .meta li i {
  padding-right: 5px;
  color: #B80B4D;
}
.past-events .event-wrapper .content {
  padding-bottom: 20px;
  font-size: 16px;
}
.past-events .event-wrapper .the-bg {
  position: absolute;
  opacity: 0.5;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  right: 0px;
  z-index: 1;
}
.past-events .event-wrapper .width-80 {
  position: relative;
  z-index: 20;
}
.past-events .event-wrapper:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 10;
  background: linear-gradient(to right, #e7e5e2 50%, rgba(184, 11, 77, 0.5));
}
.past-events .event-wrapper .summit-videos {
  padding: 70px 0px 0px 20px;
}

.gallery {
  z-index: 20;
  position: relative;
  background: #fff;
}
.gallery .img-thm {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery .img-thm img {
  transition-duration: 300ms;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .img-thm:hover img {
  transform: scale(1.1) rotate(0deg);
  opacity: 0.95;
}

.flipped {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  left: 0;
  color: white;
  text-shadow: 0 0 20px #48C8FF;
}
.flipped div {
  display: inline-block;
  min-width: 100px;
  text-align: center;
}
.flipped div span {
  color: #B1CDF1;
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.wprss_ajax {
  position: relative;
}
.wprss_ajax .wp_rss_retriever .wp_rss_retriever_list {
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}
.wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 0;
  flex: 0 0 33.3%;
  max-width: 33.3%;
  margin-bottom: 10px;
}
.wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 5px 5px 17px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper a.wp_rss_retriever_title {
  color: #00458B;
  font-weight: 600;
}
.wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper a.wp_rss_retriever_readmore {
  display: block;
  padding: 3px 30px;
  background: #B80B4D;
  color: #fff;
  width: 150px;
  margin: 10px 0px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 300ms;
  border-radius: 2px;
}
.wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper a.wp_rss_retriever_readmore:hover {
  background: #00458B;
}
.wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper .wp_rss_retriever_metadata {
  font-weight: 600;
  font-size: 12px;
}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.modal.book-flip .modal-dialog {
  opacity: 0;
  transition-delay: 1s;
}
.modal.book-flip.show {
  transform: scaleY(0.1) scaleX(1);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal.book-flip.show .modal-dialog {
  opacity: 1;
}
.modal.book-flip.show .modal-dialog .modal-content {
  animation: zoomIn 0.6s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.sponsor-us .modal-lg {
  width: 80%;
  max-width: 1300px;
}
.sponsor-us .modal-content {
  background: #fff;
}
.sponsor-us .modal-content .img-wrapper {
  width: 100%;
  height: 300px;
}
.sponsor-us .modal-content .content {
  padding: 5%;
  position: relative;
}
.sponsor-us .modal-content .content .faded-title {
  left: 0;
  top: 0px;
  font-size: 10em;
}
.sponsor-us .modal-content .modal-logo {
  position: relative;
  bottom: 20px;
  right: 0px;
  float: right;
  max-width: 180px;
}

#contactus .modal-logo {
  position: relative;
  bottom: 20px;
  right: 0px;
  float: right;
  max-width: 180px;
}

.banner {
  position: relative;
  height: 40vh;
}
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-content {
  position: absolute;
  z-index: 20;
  height: 100%;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(210, 217, 225, 0.1) 100%);
}
.banner .banner-content h1 {
  font-size: 35px;
  font-weight: 700;
  width: 100%;
  color: #fff;
  text-align: center;
  position: relative;
  bottom: 0px;
  transform: translateY(100%);
}

.registration {
  padding: 70px 0px;
}

.language {
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.language .flag {
  width: 25px;
  padding-right: 3px;
}
.language select {
  font-size: 13px;
}


.digizens .modal-lg {
  max-width: 1100px;
}
.digizens .agree .wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0em;
}
.digizens .modal-body .card {
  background: transparent;
}
.digizens .modal-body .img-wrapper {
  display: flex;
  align-items: center;
}
.digizens .modal-body .img-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.digizens .modal-logo {
  position: relative;
  bottom: 20px;
  right: 0px;
  float: right;
  max-width: 180px;
}

/******** *****   Responsiveness *****  ***********/
@media only screen and (max-width: 1399px) {
  .btn {
    border-radius: 7px;
    padding: 5px 40px;
    font-weight: 600;
    font-size: 12px;
  }
  p {
    font-size: 14px;
  }
  h4.faded-title {
    font-size: 8em;
    top: 2%;
    left: 5%;
  }
  h2.title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .width-80 {
    width: 85%;
  }
  .main-menu .navbar {
    width: 90%;
  }
  .main-menu .navbar .navbar-nav .nav-item {
    padding: 5px 10px;
  }
  .main-menu .navbar .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
  .main-menu .navbar .navbar-brand {
    width: 150px;
    padding: 0px 15px;
  }
  .landing-slider .page-video {
    min-height: calc(90vh - 0px);
  }
  .landing-slider .slider-item {
    min-height: calc(85vh - 0px);
  }
  .landing-slider .landing-banner-content .slider-card h2 {
    font-size: 40px;
    padding: 20px 0px;
  }
  .landing-slider .landing-banner-content .slider-card p {
    font-size: 25px;
    width: 70%;
  }
  .landing-slider .landing-banner-content .slider-card .details li {
    margin: 0px 10px;
    font-size: 12px;
  }
  .landing-slider .landing-banner-content .slider-card .details li i {
    padding-right: 8px;
    font-size: 14px;
  }
  .landing-page .landing-banner-content {
    transform: translateY(-8%);
  }
  .landing-page .landing-banner-content .landing-logo {
    max-width: 220px;
  }
  .landing-page .landing-banner-content .details li {
    margin: 0px 10px;
    font-size: 10px;
    padding: 5px 20px;
    border-radius: 5px;
  }
  .landing-page .landing-banner-content .details li i {
    padding-right: 10px;
    font-size: 14px;
  }
  .landing-page .landing-banner-content p {
    font-size: 20px;
  }
  .landing-page .landing-banner-content p span {
    font-weight: 700;
  }
  .landing-page h2 {
	  font-size: 40px;
	  line-height:1.2;
    padding: 10px 0px;
    position: relative;
  }
  .landing-page .img-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
  }
  .landing-page .img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .landing-page .img-wrapper .identity {
    position: absolute;
    z-index: 10;
    right: 0;
    left: -30px;
    top: 0;
    bottom: -20px;
    margin: auto;
    width: 80%;
    height: auto;
    opacity: 0.04;
  }
  .countdown-bottom {
    padding: 15px 0px;
    border-radius: 10px;
    width: 70%;
    transform: translateY(-55%);
  }
  .countdown-bottom h2 {
    font-size: 25px;
  }
  .countdown-bottom h3 {
    font-size: 18px;
  }
  .flipped {
    font-size: 30px;
  }
  .about .faded-title {
    left: -5%;
    top: -10%;
  }
  .about .sub-title {
    font-size: 16px;
    border-left: 5px solid #005793;
  }
  .about iframe {
    height: 400px;
  }
  .who-we-are {
    padding: 0px 0px 0px 0px;
  }
  .who-we-are .width-90 {
    width: 92%;
  }
  .who-we-are .card-text {
    padding: 0px 0px;
  }
  .who-we-are .title {
    margin-bottom: 10px;
  }
  .who-we-are p {
    font-size: 12px;
  }
  .who-we-are .content {
    padding: 50px 0px;
  }
  .who-we-are .banner-wrapper img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .news {
    padding: 50px 0px 50px 0px;
  }
  .news .owl-carousel .owl-nav button.owl-prev,
  .news .owl-carousel .owl-nav button.owl-next {
    padding: 20px 20px !important;
    border-radius: 3px;
  }
  .news .owl-carousel .owl-nav button.owl-prev:hover,
  .news .owl-carousel .owl-nav button.owl-next:hover {
    background: #262626;
  }
  .news .owl-carousel .owl-nav button.owl-prev {
    left: -100px;
  }
  .news .owl-carousel .owl-nav button.owl-prev:hover {
    left: -95px;
  }
  .news .owl-carousel .owl-nav button.owl-next {
    right: -100px;
  }
  .news .owl-carousel .owl-nav button.owl-next:hover {
    right: -95px;
  }
  .home-news .card .img-wrapper {
    height: 250px;
  }
  .home-news .card .card-body .card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .home-news .card .card-body .card-text {
    font-size: 14px;
  }
  .home-news .owl-dots .owl-dot span {
    height: 5px;
    width: 25px;
    margin: 3px 4px;
  }
  .home-news .owl-dots .owl-dot.active span {
    width: 40px;
  }
  .programme {
    padding: 40px 0px 60px 0px;
  }
  .programme .card .card-header h3 {
    font-size: 15px;
  }
  .programme .cta {
    padding: 60px 0px 0px 0px;
  }
  .register {
    min-height: 80vh;
    padding: 30px 0px;
  }
  .register .intro {
    font-size: 16px;
    max-width: 80%;
    margin: 20px auto;
    padding: 10px 0px 10px 0px;
  }
  .register #timer2 {
    font-size: 2em;
    padding: 20px 10px 10px 10px;
    display: flex;
    justify-content: center;
  }
  .register #timer2 div {
    position: relative;
    display: block;
    min-width: 100px;
    padding: 10px;
    background: #B80B4D;
    margin: 10px;
  }
  .register #timer2 div span {
    font-size: 12px;
    padding: 0px 0px 10px 0px;
  }
  .videos {
    padding: 10px 0px 40px 0px;
  }
  .videos .card.big-card .img-wrapper i {
    font-size: 50px;
  }
  .videos .card.big-card .card-body {
    bottom: 3%;
    padding: 10px 10px 10px 10px;
  }
  .videos .card.big-card .card-body .card-title {
    font-size: 18px;
  }
  .videos .item .card .img-wrapper {
    height: 240px;
  }
  .videos .item .card .img-wrapper i {
    font-size: 30px;
  }
  .videos .item .card .card-body .card-title {
    font-size: 15px;
  }
  .videos .owl-dots {
    bottom: -10%;
  }
  .videos .owl-dots .owl-dot span {
    height: 5px;
    width: 20px;
    border: 0px solid #262626;
  }
  .videos .owl-dots .owl-dot.active span {
    border: 0px solid #B80B4D;
    width: 30px;
  }
  .videos .col-md-7 {
    background: #005793;
    padding: 30px 0px 30px 20px;
  }
  .vid-sec iframe {
    height: 250px;
  }
  .vid-sec .col-md-12 iframe {
    height: 400px;
  }
  .gallery .img-thm img {
    height: 200px;
  }
  .footer .subscribe-bx form .form-control {
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 16px;
  }
  .footer .subscribe-bx form .btn {
    padding: 10px 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .footer p {
    font-size: 16px;
    width: 80%;
  }
  .footer .title {
    margin-bottom: 10px;
    margin-top: 10px !important;
    font-size: 18px;
  }
  .footer .icons-ft {
    padding-bottom: 20px;
  }
  .footer .icons-ft .pr-5 {
    padding-right: 1.5rem !important;
  }
}
@media only screen and (max-width: 767px) {
  .landing-page .landing-banner-content .details li {
    margin: 5px 10px;
  }
  .landing-page {
    height: auto;
  }
  .main-menu .navbar .navbar-nav .nav-item {
    justify-content: center;
    background: #B80B4D;
    border-bottom: 1px solid #fff;
  }
  .main-menu .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
  }
  .main-menu .navbar .navbar-nav .nav-item.active {
    background: #005793;
    color: #fff;
  }
  .back-top {
    font-size: 14px;
    width: 35px;
    height: 35px;
  }
  h2.title {
    font-size: 25px;
    margin: 10px 0px 20px 0px;
  }
  .main-menu {
    position: relative;
    padding: 0px;
  }
  .main-menu .navbar {
    width: 100%;
  }
  .main-menu .navbar .navbar-brand img {
    max-width: 80px;
    height: auto;
  }
  h4.faded-title {
    font-size: 5em;
    top: 5%;
    left: 5%;
  }
  p {
    font-size: 12px;
  }
  .landing-slider .page-video {
    min-height: calc(75vh - 0px);
  }
  .landing-slider .slider-item {
    min-height: calc(75vh - 0px);
  }
  .landing-slider .landing-banner-content .slider-card {
    width: 100%;
    padding: 10px;
    transform: translateY(0%);
  }
  .landing-slider .landing-banner-content .slider-card h2 {
    font-size: 25px;
    padding: 10px 0px;
  }
  .landing-slider .landing-banner-content .slider-card p {
    font-size: 14px;
    width: 90%;
  }
  .landing-slider .landing-banner-content .slider-card .details li {
    margin: 0px 2px;
    font-size: 10px;
    padding: 5px 10px;
  }
  .landing-slider .landing-banner-content .slider-card .details li i {
    padding-right: 5px;
    font-size: 12px;
  }
  .countdown-bottom {
    padding: 20px 0px;
    width: 90%;
    border-radius: 10px;
    transform: translateY(-50%);
  }
  .countdown-bottom .width-80 {
    width: 90%;
  }
  .countdown-bottom h2 {
    font-size: 14px;
  }
  .countdown-bottom h3 {
    font-size: 12px;
  }
  .flipped {
    font-size: 12px;
  }
  .flipped div {
    display: inline-block;
    min-width: 40px;
    text-align: center;
  }
  .flipped div span {
    color: #B1CDF1;
    display: block;
    font-size: 12px;
    font-weight: 700;
  }
  .about .title {
    margin-top: 0px;
  }
  .about .sub-title {
    font-size: 14px;
    border-left: 5px solid #005793;
    padding: 5px 10px;
    margin: 5px 0px 10px 0px;
  }
  .about iframe {
    height: 300px;
    margin-top: 30px;
  }
  .who-we-are {
    padding: 30px 0px 0px 0px;
  }
  .who-we-are h2.title {
    margin-bottom: 0px;
  }
  .who-we-are .col-md-5.offset-1 {
    padding-top: 50px;
    margin-left: 0%;
  }
  .who-we-are .banner-wrapper:before {
    width: 200px;
    height: 200px;
    right: -100px;
    top: auto;
    bottom: -15%;
  }
  .who-we-are .banner-wrapper:after {
    width: 200px;
    height: 200px;
    right: -100px;
    top: auto;
    bottom: -15%;
  }
  .home-news .owl-dots {
    position: absolute;
    bottom: -10%;
  }
  .home-news .owl-dots .owl-dot span {
    height: 4px;
    width: 15px;
    margin: 3px 3px;
  }
  .home-news .owl-dots .owl-dot.active span {
    width: 25px;
  }
  .news {
    padding: 30px 0px 40px 0px;
  }
  .news .owl-carousel .owl-nav button.owl-prev,
  .news .owl-carousel .owl-nav button.owl-next {
    padding: 20px 20px !important;
    border-radius: 3px;
  }
  .news .owl-carousel .owl-nav button.owl-prev:hover,
  .news .owl-carousel .owl-nav button.owl-next:hover {
    background: #262626;
  }
  .news .owl-carousel .owl-nav button.owl-prev {
    left: -100px;
  }
  .news .owl-carousel .owl-nav button.owl-prev:hover {
    left: -95px;
  }
  .news .owl-carousel .owl-nav button.owl-next {
    right: -100px;
  }
  .news .owl-carousel .owl-nav button.owl-next:hover {
    right: -95px;
  }
  .programme {
    padding: 30px 0px 40px 0px;
  }
  .programme h2.title {
    margin-bottom: 0px;
  }
  .programme .card .card-header h3 {
    font-size: 12px;
  }
  .programme .nav .nav-link {
    padding: 10px 10px;
    font-size: 17px;
  }
  .programme .cta {
    padding: 50px 0px 0px 0px;
  }
  .modal .modal-body .card {
    padding: 7%;
    font-size: 12px;
    height: auto;
  }
  .register {
    min-height: 60vh;
    padding: 30px 0px;
  }
  .register .title {
    margin-bottom: 0px;
  }
  .register .intro {
    font-size: 12px;
    max-width: 90%;
    margin: 10px auto;
    padding: 10px 0px 10px 0px;
  }
  .register #timer2 {
    font-size: 1em;
    padding: 30px 5px 5px 5px;
  }
  .register #timer2 div {
    min-width: 70px;
    padding: 10px;
    background: #B80B4D;
    margin: 5px;
  }
  .register #timer2 div span {
    font-size: 10px;
    padding: 0px 0px 0px 0px;
  }
  .videos {
    min-height: auto;
    padding: 20px 0px 40px 0px;
  }
  .videos .width-90 {
    width: 88%;
    margin: auto !important;
    padding-left: 0px !important;
  }
  .videos .card.big-card {
    margin-bottom: 20px;
  }
  .videos .card.big-card .img-wrapper i {
    font-size: 40px;
  }
  .videos .card.big-card .card-body {
    bottom: 1%;
    padding: 0px 10px 0px 10px;
  }
  .videos .card.big-card .card-body .card-title {
    font-size: 14px;
    text-align: center;
  }
  .videos .item .card .img-wrapper {
    height: auto;
  }
  .videos .col-md-7 {
    margin-top: 30px;
    padding: 10px 10px 30px 10px;
  }
  .videos .owl-dots {
    bottom: -10%;
  }
  .videos .owl-dots .owl-dot span {
    height: 5px;
    width: 15px;
    margin: 5px 5px;
  }
  .videos .owl-dots .owl-dot.active span {
    width: 25px;
  }
  .vid-sec {
    padding: 40px 0px;
  }
  .vid-sec iframe {
    height: 400px;
  }
  .vid-sec .col-md-12 iframe {
    height: 400px;
  }
  .past-events .event-wrapper h2.title {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .past-events .event-wrapper .offset-1 {
    margin-left: 0%;
  }
  .past-events .event-wrapper h3.title {
    font-size: 20px;
    font-weight: 700;
    padding: 50px 0px 5px 0px;
  }
  .past-events .event-wrapper .theme {
    font-size: 15px;
    padding-left: 15px;
  }
  .past-events .event-wrapper .content {
    padding-bottom: 10px;
    font-size: 14px;
  }
  .gallery .img-thm img {
    height: 120px;
  }
  .footer {
    padding: 40px 0px 20px 0px;
  }
  .footer .subscribe-bx {
    padding-right: 0rem !important;
    padding-bottom: 20px;
  }
  .footer .subscribe-bx form .form-control {
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 12px;
  }
  .footer .subscribe-bx form .btn {
    padding: 7px 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .footer p {
    font-size: 14px;
    width: 100%;
    padding: 10px 0px 10px 0px;
  }
  .footer .title {
    margin-bottom: 10px;
    margin-top: 10px !important;
    font-size: 18px;
  }
  .footer .icons-ft {
    padding-bottom: 20px;
  }
  .footer .icons-ft .pr-5 {
    padding-right: 1rem !important;
  }
  .home-news {
    padding: 40px 0px;
  }
  .about .faded-title {
    top: 0%;
  }
  .speakers .card {
    height: auto;
  }
  .speakers .card .img-wrapper {
    height: auto;
  }
  .wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper a.wp_rss_retriever_title {
    line-height: 1.4;
    font-size: 15px;
  }
  .wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper {
    font-size: 12px;
  }
  .wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper a.wp_rss_retriever_readmore {
    padding: 3px 20px;
    width: 120px;
    font-size: 12px;
  }
  .wprss_ajax .wp_rss_retriever .wp_rss_retriever_list .wp_rss_retriever_item .wp_rss_retriever_item_wrapper .wp_rss_retriever_metadata {
    font-size: 10px;
  }
  .past-events .event-wrapper .btn {
    margin-bottom: 10px;
  }
    .digizens .card-text {
        padding: 40px 20px 30px 20px !important;
    }
}
@media only screen and (max-width: 500px) {
  .landing-page .landing-banner-content {
    padding-top: 50px;
    transform: translateY(0);
  }
  .landing-page h2 {
    font-size: 30px;
  }
  .landing-page .landing-banner-content p {
    padding-bottom: 30px;
  }
  .faded-title {
    top: 0%;
  }
  .countdown-bottom {
    transform: translateY(0%);
  }
  .about {
    padding: 50px 0px 80px 0px;
  }
  .about .content {
    padding-bottom: 50px;
  }
  .main-menu .navbar .navbar-brand {
    display: block !important;
  }
  .width-80 {
    width: 88%;
  }
  h2.title {
    font-size: 25px;
    margin: 10px 0px 20px 0px;
  }
  .main-menu {
    position: relative;
    padding: 0px;
  }
  .main-menu .navbar {
    width: 100%;
  }
  .main-menu .navbar .navbar-brand img {
    max-width: 80px;
    height: auto;
  }
  h4.faded-title {
    font-size: 4em;
    top: 20px;
    left: 5%;
  }
  p {
    font-size: 12px;
  }
  .landing-slider .page-video {
    min-height: calc(65vh - 0px);
  }
  .landing-slider .slider-item {
    min-height: calc(65vh - 0px);
  }
  .landing-slider .landing-banner-content .slider-card {
    width: 100%;
    padding: 10px;
    transform: translateY(0%);
  }
  .landing-slider .landing-banner-content .slider-card h2 {
    font-size: 25px;
    padding: 10px 0px;
  }
  .landing-slider .landing-banner-content .slider-card p {
    font-size: 14px;
    width: 90%;
  }
  .landing-slider .landing-banner-content .slider-card .details li {
    margin: 0px 2px;
    font-size: 10px;
    padding: 5px 10px;
  }
  .landing-slider .landing-banner-content .slider-card .details li i {
    padding-right: 5px;
    font-size: 12px;
  }
  .countdown-bottom {
    padding: 20px 0px;
    width: 90%;
    border-radius: 10px;
    transform: translateY(0%);
    width: 100%;
  }
  .countdown-bottom .width-80 {
    width: 90%;
  }
  .countdown-bottom h2 {
    font-size: 14px;
  }
  .countdown-bottom h3 {
    font-size: 12px;
  }
  .flipped {
    font-size: 12px;
  }
  .flipped div {
    display: inline-block;
    min-width: 40px;
    text-align: center;
  }
  .flipped div span {
    color: #B1CDF1;
    display: block;
    font-size: 12px;
    font-weight: 700;
  }
  .about .title {
    margin-top: 0px;
  }
  .about .sub-title {
    font-size: 14px;
    border-left: 5px solid #005793;
    padding: 5px 10px;
    margin: 5px 0px 10px 0px;
  }
  .about iframe {
    height: 300px;
    margin-top: 30px;
  }
  .who-we-are {
    padding: 30px 0px 0px 0px;
  }
  .who-we-are h2.title {
    margin-bottom: 0px;
  }
  .who-we-are .width-90 {
    margin: auto;
  }
  .who-we-are .content {
    padding: 50px 0px 20px 0px;
  }
  .who-we-are .banner-wrapper {
    padding-top: 20px;
    min-height: auto;
    padding-bottom: 50px;
  }
  .who-we-are .banner-wrapper :before {
    width: 200px;
    height: 200px;
    right: -100px;
    top: auto;
    bottom: -15%;
  }
  .who-we-are .banner-wrapper .banner-wrapper:after {
    width: 200px;
    height: 200px;
    right: -100px;
    top: auto;
    bottom: -15%;
  }
  .who-we-are .home-news .owl-dots {
    position: absolute;
    bottom: -10%;
  }
  .who-we-are .home-news .owl-dots .owl-dot span {
    height: 4px;
    width: 15px;
    margin: 3px 3px;
  }
  .who-we-are .home-news .owl-dots .owl-dot.active span {
    width: 25px;
  }
  .who-we-are .news {
    padding: 30px 0px 40px 0px;
  }
  .who-we-are .news .owl-carousel .owl-nav button.owl-prev,
  .who-we-are .news .owl-carousel .owl-nav button.owl-next {
    padding: 20px 20px !important;
    border-radius: 3px;
  }
  .who-we-are .news .owl-carousel .owl-nav button.owl-prev:hover,
  .who-we-are .news .owl-carousel .owl-nav button.owl-next:hover {
    background: #262626;
  }
  .who-we-are .news .owl-carousel .owl-nav button.owl-prev {
    left: -100px;
  }
  .who-we-are .news .owl-carousel .owl-nav button.owl-prev:hover {
    left: -95px;
  }
  .who-we-are .news .owl-carousel .owl-nav button.owl-next {
    right: -100px;
  }
  .who-we-are .news .owl-carousel .owl-nav button.owl-next:hover {
    right: -95px;
  }
  .who-we-are .programme {
    padding: 30px 0px 40px 0px;
  }
  .who-we-are .programme h2.title {
    margin-bottom: 0px;
  }
  .who-we-are .programme .card .card-header h3 {
    font-size: 12px;
  }
  .who-we-are .programme .nav .nav-link {
    padding: 10px 10px;
    font-size: 17px;
  }
  .who-we-are .programme .cta {
    padding: 50px 0px 0px 0px;
  }
  .who-we-are .modal .modal-body .card {
    padding: 7%;
    font-size: 12px;
    height: auto;
  }
  .who-we-are .register {
    min-height: 60vh;
    padding: 30px 0px;
  }
  .who-we-are .register .title {
    margin-bottom: 0px;
  }
  .who-we-are .register .intro {
    font-size: 12px;
    max-width: 90%;
    margin: 10px auto;
    padding: 10px 0px 10px 0px;
  }
  .who-we-are .register #timer2 {
    font-size: 1em;
    padding: 30px 5px 5px 5px;
  }
  .who-we-are .register #timer2 div {
    min-width: 70px;
    padding: 10px;
    background: #B80B4D;
    margin: 5px;
  }
  .who-we-are .register #timer2 div span {
    font-size: 10px;
    padding: 0px 0px 0px 0px;
  }
  .who-we-are .videos {
    min-height: auto;
    padding: 20px 0px 40px 0px;
  }
  .who-we-are .videos .width-90 {
    width: 88%;
    margin: auto !important;
    padding-left: 0px !important;
  }
  .who-we-are .videos .card.big-card {
    margin-bottom: 20px;
  }
  .who-we-are .videos .card.big-card .img-wrapper i {
    font-size: 40px;
  }
  .who-we-are .videos .card.big-card .card-body {
    bottom: 1%;
    padding: 0px 10px 0px 10px;
  }
  .who-we-are .videos .card.big-card .card-body .card-title {
    font-size: 14px;
    text-align: center;
  }
  .who-we-are .videos .item .card .img-wrapper {
    height: auto;
  }
  .who-we-are .videos .col-md-7 {
    margin-top: 30px;
    padding: 10px 10px 30px 10px;
  }
  .who-we-are .videos .owl-dots {
    bottom: -10%;
  }
  .who-we-are .videos .owl-dots .owl-dot span {
    height: 5px;
    width: 15px;
    margin: 5px 5px;
  }
  .who-we-are .videos .owl-dots .owl-dot.active span {
    width: 25px;
  }
  .who-we-are .vid-sec iframe {
    height: 280px;
  }
  .who-we-are .vid-sec .col-md-12 iframe {
    height: 280px;
  }
  .who-we-are .past-events .event-wrapper {
    padding-top: 20px;
  }
  .who-we-are .past-events .event-wrapper h2.title {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .who-we-are .past-events .event-wrapper .offset-1 {
    margin-left: 0%;
  }
  .who-we-are .past-events .event-wrapper h3.title {
    font-size: 20px;
    font-weight: 700;
    padding: 20px 0px 5px 0px;
  }
  .who-we-are .past-events .event-wrapper .theme {
    font-size: 15px;
    padding-left: 15px;
  }
  .who-we-are .past-events .event-wrapper .content {
    padding-bottom: 10px;
    font-size: 14px;
  }
  .who-we-are .gallery .img-thm img {
    height: 120px;
  }
  .who-we-are .footer {
    padding: 40px 0px 20px 0px;
  }
  .who-we-are .footer .subscribe-bx {
    padding-right: 0rem !important;
    padding-bottom: 20px;
  }
  .who-we-are .footer .subscribe-bx form .form-control {
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 12px;
  }
  .who-we-are .footer .subscribe-bx form .btn {
    padding: 7px 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .who-we-are .footer p {
    font-size: 14px;
    width: 100%;
    padding: 10px 0px 10px 0px;
  }
  .who-we-are .footer .title {
    margin-bottom: 10px;
    margin-top: 10px !important;
    font-size: 18px;
  }
  .who-we-are .footer .icons-ft {
    padding-bottom: 20px;
  }
  .who-we-are .footer .icons-ft .pr-5 {
    padding-right: 1rem !important;
  }
}
@media only screen and (max-width: 400px) {
  .main-menu .navbar .navbar-brand {
    width: 150px;
    padding: 0px 15px;
  }
}/*# sourceMappingURL=style.css.map */