/*
 * colors
 * --------------------------------------------------
 */
@font-face {
  font-family: Gordita-Thin;
  src: url(../fonts/Gordita-Thin.ttf);
}
@font-face {
  font-family: Gordita-Light;
  src: url(../fonts/Gordita-Light.ttf);
}
@font-face {
  font-family: Gordita-Regular;
  src: url(../fonts/Gordita-Regular.ttf);
}
@font-face {
  font-family: Gordita-Medium;
  src: url(../fonts/Gordita-Medium.ttf);
}
@font-face {
  font-family: Gordita-Black;
  src: url(../fonts/Gordita-Black.ttf);
}
@font-face {
  font-family: Gordita-Bold;
  src: url(../fonts/Gordita-Bold.ttf);
}
@font-face {
  font-family: Gordita-Ultra;
  src: url(../fonts/Gordita-ExtraBold.ttf);
}
/*-------------------------------*/
/*     Common Styles    		 */
/*-------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gordita-Regular", sans-serif;
  color: #696969;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

::-moz-selection {
  background: #252525;
}

::selection {
  background: #252525;
}

::-webkit-scrollbar {
  width: 3px;
}

::-moz-scrollbar {
  width: 3px;
}

::-ms-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: #64616E;
}

::-moz-scrollbar-thumb {
  background: #64616E;
}

::-ms-scrollbar-thumb {
  background: #64616E;
}

.container {
  max-width: 1440px;
}
@media (max-width: 1199px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

p {
  line-height: 25px;
  font-size: 14px;
}

a {
  transition: 0.5s;
}

mark {
  position: relative;
  z-index: 0;
  padding: 0 0 10px;
  background: none;
}
mark:after {
  content: "";
  position: absolute;
  width: 91px;
  height: 12px;
  bottom: 0;
  left: 50%;
  transform: translate(-45px);
  background-image: url(../images/curve-underline.svg);
}

.animated-button {
  display: inline-block;
  letter-spacing: 0px;
  font-family: "Gordita-Medium", sans-serif;
  color: #ffffff;
  padding: 15px 42px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background-color: #8bc34a;
  border: 0 !important;
  transition: 0.4s;
  outline: 0 !important;
}
.animated-button span {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.animated-button:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0;
  width: 100%;
  background: #ff9140;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.animated-button:hover:before {
  top: 0;
  left: 0;
  height: 100%;
}
@media (max-width: 767px) {
  .animated-button {
    padding: 12px 35px;
    font-size: 14px;
  }
}

.custom-label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}
.custom-label .custom-input {
  display: none;
}
.custom-label .custom-input-element {
  width: 18px;
  height: 18px;
  border: 1px solid #e9e9ea;
  border-radius: 50%;
  transition: 0.3s;
  position: relative;
}
.custom-label .custom-input-element:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #8bc34a;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s;
}
.custom-label .custom-input-text {
  padding-left: 8px;
}
.custom-label .custom-input:checked + .custom-input-element {
  border: 1px solid #8bc34a;
}
.custom-label .custom-input:checked + .custom-input-element:after {
  transform: translate(-50%, -50%) scale(1);
}
.custom-label.custom-checkbox .custom-input-element {
  border-radius: 0;
}
.custom-label.custom-checkbox .custom-input-element:after {
  border-radius: 0;
}

.select-container {
  border: 1px solid #e9e9ea;
  border-radius: 0.25rem;
  position: relative;
}
.select-container:after {
  position: absolute;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 50%;
  right: 10px;
  z-index: 1;
  transform: translateY(-50%);
}
.select-container:focus-within {
  border: 1px solid #8bc34a;
}
.select-container > select {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
}

.input-search-group {
  position: relative;
  min-width: 230px;
  margin-bottom: 1rem;
}
.input-search-group > .form-control {
  padding-right: 43px;
}
.input-search-group .btn-animated-search {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  background: #8bc34a;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #ffffff;
  transition: 0.3s;
}
.input-search-group .btn-animated-search:hover {
  background: #ff9140;
}
.input-search-group .btn-animated-search > span {
  transform: scaleX(-1);
  display: block;
}

.medium-font-text {
  font-family: "Gordita-Medium", sans-serif;
}

.loadmore-container {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}

/*-------------------------------*/
/*****      bg-parallax   	 *****/
/*-------------------------------*/
.bg-parallax {
  position: relative;
  overflow: hidden;
}
.bg-parallax .container {
  position: relative;
  z-index: 1;
}
.bg-parallax .parallax-layer {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.bg-parallax .parallax-layer .layer {
  display: block;
  position: absolute;
}
.bg-parallax .parallax-layer .layer.one {
  left: 45%;
  top: 25%;
}
.bg-parallax .parallax-layer .layer.one img {
  width: 400px;
}
.bg-parallax .parallax-layer .layer.two {
  right: 10%;
  bottom: 15%;
}
@media (max-width: 767px) {
  .bg-parallax .parallax-layer .layer.two {
    display: none;
  }
}
.bg-parallax .parallax-layer .layer.three {
  right: 6%;
  bottom: -25%;
  width: 275px;
  height: 275px;
  border-radius: 50%;
  border: 1px solid #cbe2b0;
}
@media (max-width: 767px) {
  .bg-parallax .parallax-layer .layer.three {
    display: none;
  }
}
.bg-parallax .parallax-layer .layer.four {
  right: 3%;
  bottom: -45%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid #cbe2b0;
}
@media (max-width: 767px) {
  .bg-parallax .parallax-layer .layer.four {
    display: none;
  }
}

.bg-parallax1 {
  position: relative;
  overflow: hidden;
}
.bg-parallax1 .container {
  position: relative;
  z-index: 1;
}
.bg-parallax1 .parallax-layer1 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.bg-parallax1 .parallax-layer1 .layer1 {
  display: block;
  position: absolute;
}
.bg-parallax1 .parallax-layer1 .layer1.one {
  left: 45%;
  top: 25%;
}
.bg-parallax1 .parallax-layer1 .layer1.one img {
  width: 400px;
}
.bg-parallax1 .parallax-layer1 .layer1.two {
  right: 10%;
  bottom: 15%;
}
.bg-parallax1 .parallax-layer1 .layer1.three {
  left: 6%;
  bottom: -50%;
  width: 275px;
  height: 275px;
  border-radius: 50%;
  border: 1px solid #cbe2b0;
}
.bg-parallax1 .parallax-layer1 .layer1.four {
  right: -10%;
  bottom: 45%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid #cbe2b0;
}
@media (max-width: 767px) {
  .bg-parallax1 .parallax-layer1 .layer1.four {
    display: none;
  }
}

.bg-parallax2 {
  position: relative;
  overflow: hidden;
}
.bg-parallax2 .container {
  position: relative;
  z-index: 1;
}
.bg-parallax2 .parallax-layer2 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.bg-parallax2 .parallax-layer2 .layer2 {
  display: block;
  position: absolute;
}
.bg-parallax2 .parallax-layer2 .layer2.three {
  right: 3%;
  top: -8%;
  width: 275px;
  height: 275px;
  border-radius: 50%;
  border: 1px solid #cbe2b0;
}
@media (max-width: 767px) {
  .bg-parallax2 .parallax-layer2 .layer2.three {
    display: none;
  }
}
.bg-parallax2 .parallax-layer2 .layer2.four {
  right: 0%;
  top: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid #cbe2b0;
}
@media (max-width: 767px) {
  .bg-parallax2 .parallax-layer2 .layer2.four {
    display: none;
  }
}

/*-------------------------------*/
/*      Custom Select box 		 */
/*-------------------------------*/
.custom-select-holder {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.custom-select-holder .custom-select {
  position: relative;
  padding: 0;
  max-width: 175px;
  margin-bottom: 30px;
  z-index: 1;
  border: 0;
  font-size: initial;
}
@media (max-width: 991px) {
  .custom-select-holder .custom-select {
    margin-bottom: 10px;
  }
}
.custom-select-holder .custom-select select {
  display: none;
}

.select-selected {
  background-color: #8bc34a;
  color: #ffffff;
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
}
.select-selected:after {
  position: absolute;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 9px;
  right: 10px;
}

.select-selected.select-arrow-active:after {
  content: "\f106";
}

.select-items {
  position: absolute;
  background-color: #8bc34a;
  top: 100%;
  left: 0px;
  width: 100%;
  z-index: 99;
}
.select-items div {
  color: #ffffff;
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
}
.select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.select-hide {
  display: none;
}

.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/*-------------------------------*/
/*      Welcome Message    		 */
/*-------------------------------*/
.welcome-goethe {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 1;
  transition: 0.75s;
}
.welcome-goethe.deactivate {
  height: 0;
  opacity: 0;
}
.welcome-goethe.deactivate.remove {
  display: none;
}
.welcome-goethe .wave-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: rotate(-180deg);
  opacity: 0.1;
}
.welcome-goethe .welcome-holder {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .welcome-goethe .welcome-holder {
    padding: 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .welcome-goethe .welcome-holder {
    padding: 30px;
  }
}
.welcome-goethe .welcome-holder .welcome-text {
  font-family: "Gordita-Light", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: none;
}
@media (max-width: 991px) {
  .welcome-goethe .welcome-holder .welcome-text {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .welcome-goethe .welcome-holder .welcome-text {
    font-size: 25px;
    line-height: 35px;
  }
}
.welcome-goethe .welcome-holder .welcome-text .letter {
  display: inline-block;
}
.welcome-goethe .welcome-holder .welcome-text.active {
  display: block;
}
.welcome-goethe .welcome-holder .goethe-logo {
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .welcome-goethe .welcome-holder .goethe-logo {
    width: 180px;
  }
}
.welcome-goethe .welcome-holder .goethe-logo img {
  width: 100%;
  transition: 0.5s;
  opacity: 0;
  position: relative;
  bottom: -150px;
  transition: 1s;
}
.welcome-goethe .welcome-holder .goethe-logo.active img {
  bottom: 0px;
  opacity: 1;
}

/*-------------------------------*/
/*      Landing Page    		 */
/*-------------------------------*/
.landing-page {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}
.landing-page .place-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  position: relative;
  height: 50%;
}
@media (max-width: 767px) {
  .landing-page .place-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .landing-page .place-col:nth-child(1) {
    order: 2;
  }
}
@media (max-width: 767px) {
  .landing-page .place-col:nth-child(2) {
    order: 1;
  }
}
@media (max-width: 767px) {
  .landing-page .place-col:nth-child(3) {
    order: 3;
  }
}
@media (max-width: 767px) {
  .landing-page .place-col:nth-child(4) {
    order: 4;
  }
}
@media (max-width: 767px) {
  .landing-page .place-col:nth-child(5) {
    order: 5;
  }
}
@media (max-width: 767px) {
  .landing-page .place-col:nth-child(6) {
    order: 6;
  }
}
.landing-page .place-col .col-holder {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.landing-page .place-col .col-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.3);
  transition: 1s;
}
.landing-page .place-col .col-holder img.active {
  transform: scale(1);
}
.landing-page .place-col .col-holder .logo-box {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.landing-page .place-col .col-holder .logo-box .logo {
  width: 275px;
}
@media (max-width: 991px) {
  .landing-page .place-col .col-holder .logo-box .logo {
    width: 200px;
  }
}
.landing-page .place-col .col-holder .logo-box .logo a {
  display: block;
}
.landing-page .place-col .col-holder .logo-box .logo a img {
  width: 100%;
  transform: scale(0);
  opacity: 0;
  transition: 1s;
}
.landing-page .place-col .col-holder .logo-box.active .logo a img {
  transform: scale(1);
  opacity: 1;
}
.landing-page .place-col .col-holder {
  position: relative;
  overflow: hidden;
}
.landing-page .place-col .col-holder .overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0);
  transition: 1s;
}
.landing-page .place-col .col-holder .overlay-info:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  transition: 1s;
}
.landing-page .place-col .col-holder .overlay-info.remove-overlay:before {
  height: 0;
}
.landing-page .place-col .col-holder .overlay-info:hover {
  background: rgba(0, 0, 0, 0.4);
}
.landing-page .place-col .col-holder .overlay-info:hover .info-holder .location span {
  top: 0;
}
.landing-page .place-col .col-holder .overlay-info:hover .info-holder .location .icon-holder img {
  opacity: 1;
  bottom: 0;
}
.landing-page .place-col .col-holder .overlay-info .info-holder .location {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  align-items: center;
}
.landing-page .place-col .col-holder .overlay-info .info-holder .location span {
  display: block;
  font-family: "Gordita-Medium", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 45px;
  text-align: center;
  position: relative;
  top: -50px;
  transition: 0.5s;
  text-shadow: 0px 0px 3px #000000;
}
@media (max-width: 1199px) {
  .landing-page .place-col .col-holder .overlay-info .info-holder .location span {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .landing-page .place-col .col-holder .overlay-info .info-holder .location span {
    font-size: 25px;
  }
}
.landing-page .place-col .col-holder .overlay-info .info-holder .location .icon-holder {
  width: 100px;
  position: relative;
  overflow: hidden;
}
.landing-page .place-col .col-holder .overlay-info .info-holder .location .icon-holder img {
  width: 100%;
  opacity: 0;
  bottom: -150px;
  transition: 0.5s;
  position: relative;
  transform: scale(1);
}

/*-------------------------------*/
/*****        Header    	 *****/
/*-------------------------------*/
@media (min-width: 992px) {
  .dropdown-toggle::after {
    display: none;
  }

  /* rotate caret on hover */
  .navbar-nav li:hover > ul.dropdown-menu {
    display: block;
  }

  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
  }

  .dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
  }
  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
  .dropdown-menu .dropdown-toggle:after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
  }
  .dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
  }
  .dropdown-menu li {
    position: relative;
  }

  .nav-item .submenu {
    transition: 0.5s;
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
}
header {
  background-color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}
header .header {
  transition: 0.5s;
  display: flex;
}
header .header:hover {
  background: rgba(255, 255, 255, 0.9);
}
header .header:hover .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #252525;
}
header .header.fixed-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
}
header .header.fixed-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #252525;
}
header .header .navbar {
  align-items: center;
  padding: 0;
  flex-grow: 1;
}
@media (max-width: 991px) {
  header .header .navbar {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  header .header .navbar .navbar-brand {
    margin-right: auto;
  }
}
@media (max-width: 1199px) {
  header .header .navbar .navbar-brand img {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  header .header .navbar .navbar-brand img {
    max-width: 130px;
  }
}
header .header .navbar .navbar-toggler {
  position: relative;
  width: 30px;
  padding: 0;
  height: 26px;
  outline: none;
}
@media (max-width: 991px) {
  header .header .navbar .navbar-toggler {
    order: 4;
  }
}
header .header .navbar .navbar-toggler .navbar-toggler-icon {
  width: 20px;
  background: #8bc34a;
  height: 2px;
  display: block;
  position: absolute;
}
header .header .navbar .navbar-toggler .navbar-toggler-icon:after, header .header .navbar .navbar-toggler .navbar-toggler-icon:before {
  content: "";
  position: absolute;
  width: 29px;
  height: 2px;
  display: block;
  left: 0;
  background: #8bc34a;
  transition: 0.3s;
}
header .header .navbar .navbar-toggler .navbar-toggler-icon:after {
  top: -8px;
}
header .header .navbar .navbar-toggler .navbar-toggler-icon:before {
  top: 8px;
}
header .header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background: transparent;
}
header .header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
  transform: rotate(-45deg);
  transform-origin: 4px;
}
header .header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
  transform: rotate(45deg);
  transform-origin: 2px;
}
@media (max-width: 991px) {
  header .header .navbar #main_nav {
    position: absolute;
    background: #fff;
    top: 110px;
    width: 100vw;
    z-index: 9;
    left: -30px;
  }
}
@media (max-width: 767px) {
  header .header .navbar #main_nav {
    top: 70px;
    left: -25px;
  }
}
@media (max-width: 991px) {
  header .header .navbar #main_nav .navbar-nav .nav-item .nav-link {
    padding: 18px 30px;
  }
}
@media (max-width: 767px) {
  header .header .navbar #main_nav .navbar-nav .nav-item .nav-link {
    padding: 15px 30px;
    font-size: 13px;
  }
}
header .header .navbar.login-nav {
  flex-grow: 0;
}
header .header .navbar.login-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  background: transparent;
  color: #252525;
}
header .header .navbar.login-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: #8bc34a;
}
header .header .navbar.login-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
header .header .navbar.login-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
}
header .header .navbar.login-nav .nav-item .nav-link .user-photo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #8bc34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  transition: 0.5s;
}
header .header .navbar.login-nav .nav-item .nav-link .user-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
header .header .navbar.login-nav .nav-item .nav-link .user-photo i {
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 991px) {
  header .header .navbar.login-nav .nav-item .nav-link .login-label-sm {
    display: none;
  }
}
header .header .navbar.login-nav .nav-item .nav-link:hover .user-photo {
  background-color: #ff9140;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item {
  position: relative;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #252525;
  padding: 40px 20px;
  font-family: "Gordita-Medium", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 40px 10px;
  }
}
@media (max-width: 767px) {
  header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 20px 15px;
  }
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .menu-item-wrap {
  position: relative;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .menu-item-wrap:before {
  content: " ";
  left: auto;
  right: 0;
  bottom: -7px;
  width: 0px;
  height: 2px;
  background-color: #8bc34a;
  position: absolute;
  transition: 0.5s;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link .menu-item-wrap:before {
  left: 0;
  right: auto;
  width: 100%;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  margin-top: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  color: #252525;
  transition: 0.5s;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 7px 15px;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #0071dc;
  background-color: rgba(255, 255, 255, 0.5);
}

/*-------------------------------*/
/*****      Home page    	 *****/
/*-------------------------------*/
.home-banner {
  background: #EEF0F4;
}
.home-banner .banner-content {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .home-banner .banner-content {
    padding: 100px 0px;
  }
}
.home-banner .banner-content h4 {
  font-size: 18px;
  font-family: "Gordita-Medium", sans-serif;
  color: #8bc34a;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .home-banner .banner-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.home-banner .banner-content h2 {
  font-size: 48px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  line-height: 1.34em;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .home-banner .banner-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content h2 {
    font-size: 30px;
  }
}
.home-banner .banner-content p {
  font-size: 18px;
  color: #696969;
  line-height: 1.67em;
  max-width: 570px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .home-banner .banner-content p {
    font-size: 16px;
  }
}
.home-banner .banner-image {
  max-width: 345px;
  margin: auto;
}
.home-banner .banner-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .home-banner .banner-image {
    display: none;
  }
}
.home-banner .announcement-container {
  position: absolute;
  bottom: 60px;
  right: 15px;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 991px) {
  .home-banner .announcement-container {
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .home-banner .announcement-container {
    display: none;
  }
}
.home-banner .announcement-container .announcement-icon {
  width: 55px;
  height: 55px;
  background: #ff9140;
  font-size: 27px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9;
}
.home-banner .announcement-container .announcement-inner {
  /*background: rgba(255, 255, 255, .94);
  padding: 20px 30px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, .1);
  border-radius: 5px;*/
}
.home-banner .announcement-container .announcement-icon-container {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.home-banner .announcement-container .announcement-item {
  color: #252525;
  font-size: 13px;
  line-height: 18px;
  max-height: 220px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.94);
  padding: 20px 30px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .home-banner .announcement-container .announcement-item {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .home-banner .announcement-container .announcement-item {
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #EEF0F4;
    font-size: 13px;
    color: #696969;
  }
}
@media (max-width: 767px) {
  .home-banner .announcement-container .announcement-item:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .home-banner .announcement-container .announcement-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 30px 25px;
    overflow-y: auto;
    z-index: 999;
    display: none;
  }
}
.home-banner .announcement-container-mobile {
  display: none;
  position: absolute;
  bottom: 30px;
  right: 25px;
}
@media (max-width: 767px) {
  .home-banner .announcement-container-mobile {
    display: block;
  }
}
.home-banner .announcement-container-mobile > a {
  width: 55px;
  height: 55px;
  background: #ff9140;
  font-size: 25px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9;
  animation: changeColor 2s infinite;
}

.focus-items {
  background-color: #8bc34a;
  padding: 25px 0px;
}
.focus-items .icon-info-holder {
  display: flex;
  align-items: center;
  max-width: 220px;
}
@media (max-width: 767px) {
  .focus-items .icon-info-holder {
    max-width: 100%;
  }
}
.focus-items .icon-info-holder .icon {
  color: #ffffff;
  font-size: 50px;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .focus-items .icon-info-holder .icon {
    font-size: 40px;
    margin-right: 10px;
  }
}
.focus-items .icon-info-holder .info {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.65em;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 991px) {
  .focus-items .icon-info-holder .info {
    font-size: 13px;
  }
}

.our-courses {
  padding: 100px 0px;
}
@media (max-width: 1199px) {
  .our-courses {
    padding: 60px 0px;
  }
}
.our-courses h2 {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
}
@media (max-width: 991px) {
  .our-courses h2 {
    font-size: 27px;
  }
}
.our-courses .description {
  text-align: center;
}
.our-courses .course-card {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  margin-top: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .our-courses .course-card {
    padding: 25px 20px;
  }
}
.our-courses .course-card .course-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8px;
}
.our-courses .course-card h6 {
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
}
@media (max-width: 767px) {
  .our-courses .course-card h6 {
    font-size: 15px;
  }
}
.our-courses .course-card .course-info-row {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px;
}
.our-courses .course-card .course-info-row .course-info-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0px 5px;
  padding-bottom: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .our-courses .course-card .course-info-row .course-info-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 320px) {
  .our-courses .course-card .course-info-row .course-info-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.our-courses .course-card .course-info-row .course-info-col label {
  font-size: 12px;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 0;
}
.our-courses .course-card .course-info-row .course-info-col p {
  font-size: 12px;
  font-family: "Gordita-Regular", sans-serif;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .our-courses .course-card .course-info-row .course-info-col p {
    font-size: 11px;
  }
}
.our-courses .course-card .course-info-row .course-info-col p .la-chair {
  font-size: 15px;
}
.our-courses .course-card .course-info-row .course-info-col p.green .la-chair {
  color: #8bc34a;
}
.our-courses .course-card .course-info-row .course-info-col p.orange .la-chair {
  color: #ff9140;
}
.our-courses .course-card .course-info-row .course-info-col p.tooltip-container {
  font-size: 11px;
  cursor: pointer;
}
.our-courses .course-card .course-info-row .course-info-col p.tooltip-container > .la-clock {
  font-size: 14px;
}
.our-courses .course-card .course-info-row .course-info-col .seats {
  font-size: 12px;
  border: 1px solid #eef0f4;
  padding: 0px;
  display: inline-flex;
  align-items: center;
  width: calc(100% - 2px);
  border-radius: 0.25rem;
  position: relative;
  background-color: #f8f8f8;
}
.our-courses .course-card .course-info-row .course-info-col .seats:after {
  position: absolute;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 6px;
  right: 10px;
  z-index: 1;
}
.our-courses .course-card .course-info-row .course-info-col select {
  padding: 4px 30px 4px 10px;
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #252525;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  max-width: 270px;
  min-width: 159px;
}
.our-courses .course-card .course-info-row .course-info-col .tooltip-cstm-container {
  position: absolute;
  background: #fff;
  z-index: 9;
  box-shadow: 2px 2px 15px #00000029;
  padding: 12px 15px;
  left: 0;
  bottom: 10px;
  transform: translate(0%, 100%);
  display: none;
}
.our-courses .course-card .course-info-row .course-info-col .tooltip-cstm-container:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: -5px;
  left: 20px;
  transform: rotate(45deg);
}
.our-courses .course-card .course-info-row .course-info-col .tooltip-cstm-container .tooltip-cstm-inner li {
  font-size: 11px;
}
.our-courses .course-card .course-info-row .course-info-col .tooltip-cstm-container .tooltip-cstm-inner li:not(:last-child) {
  padding-bottom: 3px;
}
.our-courses .course-card .course-info-row .course-info-col .tooltip-container:hover + .tooltip-cstm-container {
  display: block;
}
.our-courses .course-card .register-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0px -5px;
}
.our-courses .course-card .register-row.reg-btn-only {
  justify-content: flex-end;
}
.our-courses .course-card .register-row .register-col {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0px 5px;
}
@media (max-width: 767px) {
  .our-courses .course-card .register-row .register-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.our-courses .course-card .register-row .register-col .seats {
  font-size: 12px;
  font-family: "Gordita-Medium", sans-serif;
  border: 1px solid #eef0f4;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  border-radius: 0.25rem;
}
.our-courses .course-card .register-row .register-col .seats.green i {
  color: #8bc34a;
}
.our-courses .course-card .register-row .register-col .seats span {
  display: inline-block;
  margin-right: 3px;
}
.our-courses .course-card .register-row .register-col .seats i {
  color: #ff9140;
  font-size: 20px;
}
.our-courses .course-card .register-row .register-col .seats.select-holder {
  padding: 0;
  position: relative;
}
.our-courses .course-card .register-row .register-col .seats.select-holder select {
  padding: 7px 22px 7px 10px;
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #696969;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.our-courses .course-card .register-row .register-col .seats.select-holder select::-ms-expand {
  display: none;
}
.our-courses .course-card .register-row .register-col .seats.select-holder:after {
  position: absolute;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 6px;
  right: 10px;
  z-index: -1;
}
.our-courses .course-card .register-row .register-col button {
  padding: 7px 10px;
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
  width: 100%;
}
@media (max-width: 767px) {
  .our-courses .course-card .register-row .register-col button {
    font-size: 13px;
  }
}
.our-courses .course-card .course-card-select {
  position: relative;
}
.our-courses .course-card .course-card-select .batch-label-header {
  position: absolute;
  top: -18px;
  font-size: 11px;
  left: 0;
  color: #252525;
}
.our-courses .help-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  background-color: #f8fff0;
  max-width: 630px;
  margin: 100px auto 0px;
  position: relative;
}
@media (max-width: 1199px) {
  .our-courses .help-block {
    margin: 70px auto 0px;
  }
}
@media (max-width: 767px) {
  .our-courses .help-block {
    padding: 30px 25px;
    margin: 60px auto 0px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .our-courses .help-block .help-block-left {
    padding-bottom: 8px;
  }
}
.our-courses .help-block .help-block-left h6 {
  color: #ff9140;
  font-family: "Gordita-Medium", sans-serif;
  font-size: 14px;
}
@media (max-width: 767px) {
  .our-courses .help-block .help-block-left h6 {
    font-size: 13px;
  }
}
.our-courses .help-block .help-block-left h5 {
  color: #252525;
  font-size: 18px;
}
@media (max-width: 767px) {
  .our-courses .help-block .help-block-left h5 {
    font-size: 16px;
  }
}
.our-courses .help-block .help-block-left h5 span {
  font-family: "Gordita-Medium", sans-serif;
}
.our-courses .help-block .help-block-left .focus-icon {
  position: absolute;
  top: -30px;
  left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8bc34a;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 767px) {
  .our-courses .help-block .help-block-left .focus-icon {
    width: 55px;
    height: 55px;
    top: -20px;
    left: auto;
    font-size: 30px;
    right: 0;
  }
}
.our-courses .help-block .help-block-right .animated-button {
  padding: 12px 40px;
  background-color: #ff9140;
  font-size: 15px;
}
.our-courses .help-block .help-block-right .animated-button:before {
  background-color: #8bc34a;
}
.our-courses.exams-section {
  border-top: 1px solid #EEF0F4;
  background-color: #f8f8f8;
}
.our-courses.exams-section .custom-select-holder {
  margin-top: 50px;
}
.our-courses.exams-section .register-col {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}
@media (max-width: 767px) {
  .our-courses.exams-section .register-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .our-courses.exams-section .register-col:last-child {
    margin-bottom: 0px;
  }
}
.our-courses .course-card .external-fee-card {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.99);
  padding: 15px 25px;
  overflow: auto;
  transform: scale(0);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card {
    padding: 20px 25px;
  }
}
.our-courses .course-card .external-fee-card.active {
  transform: scale(1);
}
.our-courses .course-card .external-fee-card .close-payment-card {
  position: fixed;
  top: 5px;
  right: 15px;
  color: #ff9140;
  transition: 0.5s;
  font-size: 18px;
  cursor: pointer;
}
.our-courses .course-card .external-fee-card .close-payment-card:hover {
  color: #8bc34a;
}
.our-courses .course-card .external-fee-card .fee-types {
  display: flex;
  border-bottom: 1px solid #EEF0F4;
  padding-bottom: 5px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card .fee-types {
    flex-wrap: wrap;
  }
}
.our-courses .course-card .external-fee-card .fee-types .custom-label {
  margin-right: 25px;
}
.our-courses .course-card .external-fee-card .fee-types .select-holder {
  padding: 0;
  position: relative;
  width: 200px;
  border: 1px solid #EEF0F4;
}
.our-courses .course-card .external-fee-card .fee-types .select-holder select {
  padding: 5px 25px 5px 10px;
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #696969;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.our-courses .course-card .external-fee-card .fee-types .select-holder select::-ms-expand {
  display: none;
}
.our-courses .course-card .external-fee-card .fee-types .select-holder:after {
  position: absolute;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 6px;
  right: 10px;
  z-index: -1;
}
.our-courses .course-card .external-fee-card .fee-types.batch-info-row .batch-info-left-fee h6 {
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
  margin-bottom: 0;
  font-size: 13px;
}
.our-courses .course-card .external-fee-card .fee-types.batch-info-row .batch-info-left-fee p {
  font-size: 12px;
  margin: 0;
  padding-top: 0;
}
.our-courses .course-card .external-fee-card .fee-types.batch-info-row .batch-info-right-fee {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card .fee-types.batch-info-row .batch-info-right-fee {
    justify-content: flex-start;
  }
}
.our-courses .course-card .external-fee-card .fee-types.batch-info-row .batch-info-right-fee .custom-label {
  margin-right: 10px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card .fee-types.batch-info-row .batch-info-right-fee .custom-label {
    margin-bottom: 4px;
  }
}
.our-courses .course-card .external-fee-card .fee-datas {
  display: flex;
  flex-wrap: wrap;
}
.our-courses .course-card .external-fee-card .fee-datas .left {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card .fee-datas .left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0px;
  }
}
.our-courses .course-card .external-fee-card .fee-datas .left > .input-group {
  max-width: 170px;
}
.our-courses .course-card .external-fee-card .fee-datas .left > .input-group .form-control {
  padding: 10px 15px;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card .fee-datas .left > .input-group .form-control {
    padding: 6px 15px;
  }
}
.our-courses .course-card .external-fee-card .fee-datas .left > .input-group.coupon-invalid .form-control {
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-right: 1px solid transparent;
  background: rgba(255, 0, 0, 0.05);
}
.our-courses .course-card .external-fee-card .fee-datas .left > .input-group.coupon-invalid + .invalid-coupen-message {
  display: block;
}
.our-courses .course-card .external-fee-card .fee-datas .left .invalid-coupen-message {
  font-size: 11px;
  padding-top: 2px;
  color: rgba(255, 0, 0, 0.9);
  display: none;
}
.our-courses .course-card .external-fee-card .fee-datas .right {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card .fee-datas .right {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 10px;
  }
}
.our-courses .course-card .external-fee-card h6 {
  font-size: 12px;
  font-family: "Gordita-Regular", sans-serif;
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card h6 {
    font-size: 11px;
  }
}
.our-courses .course-card .external-fee-card h6.total {
  border-top: 1px solid #EEF0F4;
  padding-top: 10px;
  margin-top: 10px;
  font-family: "Gordita-Medium", sans-serif;
}
.our-courses .course-card .external-fee-card .btn {
  padding: 7px 30px;
  font-size: 12px;
  font-family: "Gordita-Regular", sans-serif;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .our-courses .course-card .external-fee-card .btn {
    font-size: 12px;
    width: 100%;
    margin-top: 0px;
  }
}

.achieve {
  padding: 100px 0px;
  background-color: #EEF0F4;
}
@media (max-width: 1199px) {
  .achieve {
    padding: 60px 0px 35px;
  }
}
.achieve h6 {
  font-family: "Gordita-Medium", sans-serif;
  color: #8bc34a;
  letter-spacing: 0.5px;
}
.achieve h2 {
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
  line-height: 1.5em;
  letter-spacing: 0.5px;
}
@media (max-width: 991px) {
  .achieve h2 {
    font-size: 27px;
  }
}
.achieve .counter-row {
  display: flex;
  flex-wrap: wrap;
}
.achieve .counter-row .counter-col {
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .achieve .counter-row .counter-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.achieve .counter-row .counter-col .counter-holder {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.achieve .counter-row .counter-col .counter-holder .icon {
  font-size: 50px;
  color: #8bc34a;
}
@media (max-width: 767px) {
  .achieve .counter-row .counter-col .counter-holder .icon {
    font-size: 40px;
  }
}
.achieve .counter-row .counter-col .counter-holder .counter-value {
  font-size: 20px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .achieve .counter-row .counter-col .counter-holder .counter-value {
    font-size: 18px;
    margin-bottom: 0px;
  }
}
.achieve .counter-row .counter-col .counter-holder .counter-value:after {
  content: "+";
  font-size: 14px;
}
.achieve .counter-row .counter-col .counter-holder .counter-info {
  font-family: "Gordita-Regular", sans-serif;
  font-size: 14px;
}
.achieve .counter-row .counter-col:first-child .counter-holder .counter-value:after {
  display: none;
}
.achieve .counter-row .counter-col:last-child .counter-holder .counter-value:after {
  content: "%";
}

.upcoming-events {
  padding: 100px 0px;
}
@media (max-width: 1199px) {
  .upcoming-events {
    padding: 60px 0px;
  }
}
.upcoming-events h6 {
  font-family: "Gordita-Medium", sans-serif;
  color: #8bc34a;
  letter-spacing: 0.5px;
}
.upcoming-events h2 {
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
  line-height: 1.5em;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .upcoming-events h2 {
    font-size: 27px;
  }
}
.upcoming-events .animated-button {
  padding: 12px 40px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .upcoming-events .animated-button {
    font-size: 14px;
  }
}
.upcoming-events p {
  margin-bottom: 30px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list {
  padding: 0px 10px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list {
  padding: 30px 0px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item {
  padding: 0px 15px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card {
  background-color: #f8f8f8;
  transition: 0.5s;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card .event-image img {
  width: 100%;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card .events-info {
  padding: 25px 25px 50px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card .events-info .event-date {
  margin: 0 0 6px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Gordita-Medium", sans-serif;
  color: #ababab;
  font-size: 12px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card .events-info .event-title {
  margin-bottom: 25px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card .events-info .event-title a {
  display: block;
  color: #252525;
  font-size: 15px;
  font-family: "Gordita-Medium", sans-serif;
  line-height: 1.7em;
  text-align: center;
  text-decoration: none;
  outline: none;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card .events-info .event-title a:hover {
  color: #8bc34a;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card .events-info .event-location {
  text-align: center;
  font-size: 13px;
  color: #696969;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-list .item .event-card:hover {
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.05);
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
  opacity: 1;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
}
@media (max-width: 991px) {
  .upcoming-events .upcoming-events-holder .upcoming-events-list .slick-arrow {
    opacity: 1;
  }
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-arrow.icon-arrow-left {
  left: 0px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-arrow.icon-arrow-right {
  right: 0px;
}
.upcoming-events .upcoming-events-holder .upcoming-events-list .slick-arrow:hover {
  background-color: #8bc34a;
  color: #ffffff;
}
.upcoming-events .upcoming-events-holder:hover .upcoming-events-list .slick-arrow {
  opacity: 1;
}
.testimonials {
  padding: 100px 0px 200px;
  background-color: #EEF0F4;
  text-align: center;
}
@media (max-width: 1199px) {
  .testimonials {
    padding: 60px 0px 160px;
  }
}
.testimonials h2 {
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
  line-height: 1.5em;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .testimonials h2 {
    font-size: 27px;
  }
}
.testimonials h6 {
  font-family: "Gordita-Medium", sans-serif;
  color: #8bc34a;
  letter-spacing: 0.5px;
}
.testimonials .testimonials-list .slick-arrow {
  position: absolute;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
  opacity: 1;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  z-index: 1;
  transition: 0.5s;
}
.testimonials .testimonials-list .slick-arrow.icon-arrow-left {
  top: auto;
  bottom: -80px;
  left: calc(50% - 60px);
}
.testimonials .testimonials-list .slick-arrow.icon-arrow-right {
  top: auto;
  bottom: -80px;
  right: calc(50% - 60px);
}
.testimonials .testimonials-list .slick-arrow:hover {
  background-color: #8bc34a;
  color: #ffffff;
}

.news-letter-section .news-letter-card {
  display: flex;
  max-width: 900px;
  margin: 0px auto 100px;
  padding: 30px 50px;
  background: #EEF0F4;
}
@media (max-width: 1199px) {
  .news-letter-section .news-letter-card {
    margin: 0px auto 60px;
  }
}
@media (max-width: 767px) {
  .news-letter-section .news-letter-card {
    flex-wrap: wrap;
    padding: 25px 25px;
  }
}
.news-letter-section .news-letter-card .news-letter-left {
  flex: 0 0 35%;
  max-width: 35%;
}
@media (max-width: 767px) {
  .news-letter-section .news-letter-card .news-letter-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 15px;
  }
}
.news-letter-section .news-letter-card .news-letter-left h3 {
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 767px) {
  .news-letter-section .news-letter-card .news-letter-left h3 {
    font-size: 24px;
  }
}
.news-letter-section .news-letter-card .news-letter-left h4 {
  color: #ff9140;
}
@media (max-width: 767px) {
  .news-letter-section .news-letter-card .news-letter-left h4 {
    font-size: 20px;
  }
}
.news-letter-section .news-letter-card .news-letter-right {
  flex: 0 0 65%;
  max-width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .news-letter-section .news-letter-card .news-letter-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.news-letter-section .news-letter-card .news-letter-right .form-group {
  position: relative;
  margin-bottom: 0;
}
.news-letter-section .news-letter-card .news-letter-right .form-group .form-control {
  height: 60px;
  border: 1px solid #ffffff;
  outline: 0;
  box-shadow: none;
  padding-right: 175px;
}
@media (max-width: 767px) {
  .news-letter-section .news-letter-card .news-letter-right .form-group .form-control {
    padding-right: 118px;
  }
}
.news-letter-section .news-letter-card .news-letter-right .form-group .btn {
  position: absolute;
  top: 7px;
  right: 7px;
  padding: 12px 40px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .news-letter-section .news-letter-card .news-letter-right .form-group .btn {
    top: 9px;
    right: 9px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

.footer {
  padding: 100px 0px 50px;
  background-color: #f8f8f8;
}
@media (max-width: 1199px) {
  .footer {
    padding: 60px 0px 20px;
  }
}
.footer .branch-details .footer-logo {
  max-width: 175px;
  margin-bottom: 30px;
}
.footer .branch-details .footer-logo img {
  width: 100%;
}
.footer .branch-details ul li {
  display: inline-flex;
  margin-right: 10px;
}
.footer .branch-details ul li a {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #8bc34a;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.5s;
}
.footer .branch-details ul li a:hover {
  background-color: #ff9140;
}
.footer .branch-details p {
  font-size: 14px;
  line-height: 1.7em;
  padding-right: 30px;
  text-align: justify;
}
.footer h5 {
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .footer h5 {
    margin-bottom: 15px;
    font-size: 17px;
  }
}
.footer .branch-details {
  max-width: 480px;
}
.footer ul li {
  margin: 3px 0px;
}
.footer ul li a {
  color: #696969;
  font-size: 14px;
}
.footer .address-block {
  display: flex;
  align-items: flex-start;
  margin: 15px 0px;
}
.footer .address-block .icon i {
  font-size: 20px;
  color: #8bc34a;
}
.footer .address-block .address {
  padding-left: 5px;
  font-size: 14px;
  line-height: 1.7em;
}
.footer .contact {
  display: flex;
  align-items: center;
  margin-top: 7px;
}
.footer .contact i {
  font-size: 20px;
  flex: 0 0 25px;
  max-width: 25px;
  color: #8bc34a;
}
.footer .contact span {
  font-size: 13px;
}
.footer .privacy-copyright {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e7e7e7;
}
@media (max-width: 1199px) {
  .footer .privacy-copyright {
    padding-top: 20px;
  }
}
.footer .privacy-copyright .policy {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .privacy-copyright .policy {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .footer .privacy-copyright .policy {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
  }
}
.footer .privacy-copyright .policy a {
  margin-right: 20px;
  color: #696969;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 991px) {
  .footer .privacy-copyright .policy a {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .footer .privacy-copyright .policy a:last-child {
    margin-right: 0px;
  }
}
.footer .privacy-copyright .copy-right {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: right;
}
@media (max-width: 991px) {
  .footer .privacy-copyright .copy-right {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .footer .privacy-copyright .copy-right {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .footer .footer-col {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .footer .footer-col:nth-child(3), .footer .footer-col:nth-child(4) {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .footer .footer-col {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .footer .footer-col:nth-child(3) {
    margin-bottom: 25px;
  }
}
.footer .footer-col ul .nav-item {
  margin-top: 0;
}
.footer .footer-col ul .nav-item .nav-link {
  padding: 0;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
}
.footer .footer-col ul .nav-item .nav-link.active {
  background: none;
  border-color: transparent;
  border-bottom: 1px solid #ff9140;
  font-family: "Gordita-Medium", sans-serif;
}
.footer .footer-col ul .nav-item .nav-link:hover {
  border-color: transparent;
  border-bottom: 1px solid #ff9140;
}

/*-------------------------------*/
/*         My Profile    		 */
/*-------------------------------*/
.my-profile {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .my-profile {
    padding: 60px 0px;
  }
}
.my-profile .profile-left-container, .my-profile .profile-right-container {
  padding: 0 15px;
}
.my-profile .profile-left-container {
  flex: 0 0 430px;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .my-profile .profile-left-container {
    flex: 0 0 330px;
  }
}
@media (max-width: 991px) {
  .my-profile .profile-left-container {
    flex: 0 0 430px;
    margin-bottom: 30px;
  }
}
.my-profile .profile-inner {
  border: 1px solid #EEF0F4;
  background-color: #ffffff;
  padding: 50px 30px 50px 30px;
  position: relative;
}
@media (max-width: 1199px) {
  .my-profile .profile-inner {
    padding: 50px 25px 30px 25px;
  }
}
.my-profile .profile-inner .edit-profile {
  position: absolute;
  padding: 5px 10px;
  top: 15px;
  right: 15px;
  font-size: 12px;
  font-family: "Gordita-Regular", sans-serif;
  border: 1px solid #eef0f4;
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  color: #696969;
  text-decoration: none;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .my-profile .profile-inner .edit-profile {
    padding: 5px 8px;
    top: 10px;
    right: 10px;
    font-size: 11px;
  }
}
.my-profile .profile-inner .edit-profile > i {
  font-size: 19px;
  margin-right: 5px;
}
.my-profile .profile-inner .edit-profile:hover {
  color: #ff9140;
  border: 1px solid #ff9140;
}
.my-profile .profile-inner .profile-dp {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1199px) {
  .my-profile .profile-inner .profile-dp {
    width: 130px;
    height: 130px;
  }
}
.my-profile .profile-inner .profile-dp > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-profile .profile-inner .profile-dp .change-dp-btn {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.my-profile .profile-inner .profile-dp .change-dp-btn .la-camera {
  font-size: 35px;
  opacity: 0;
  transition: 0.5s;
}
.my-profile .profile-inner .profile-dp:hover .change-dp-btn {
  background: rgba(0, 0, 0, 0.4);
}
.my-profile .profile-inner .profile-dp:hover .change-dp-btn .la-camera {
  opacity: 1;
}
.my-profile .profile-inner .profile-header {
  text-align: center;
}
.my-profile .profile-inner .profile-header .profile-name {
  padding-top: 20px;
  font-size: 22px;
  margin-bottom: 0px;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 1199px) {
  .my-profile .profile-inner .profile-header .profile-name {
    padding-top: 15px;
    font-size: 19px;
  }
}
.my-profile .profile-inner .profile-info {
  text-align: center;
  font-size: 13px;
  font-family: "Gordita-Regular", sans-serif;
  color: #696969;
}
.my-profile .profile-inner .profile-info > p {
  margin-bottom: 0;
  font-size: 13px;
  font-family: "Gordita-Regular", sans-serif;
  color: #696969;
}
.my-profile .profile-inner .profile-info a {
  color: #696969;
}
.my-profile .profile-inner .profile-info-row {
  margin-top: 25px;
}
@media (max-width: 1199px) {
  .my-profile .profile-inner .profile-info-row {
    margin-top: 20px;
  }
}
.my-profile .profile-inner .profile-info-row > p {
  font-size: 13px;
  font-family: "Gordita-Regular", sans-serif;
  line-height: 21px;
}
.my-profile .profile-inner .profile-info-row.profile-info {
  margin-top: 0;
}
.my-profile .profile-inner .profile-info-row h6 {
  font-size: 14px;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 1199px) {
  .my-profile .profile-inner .profile-info-row h6 {
    font-size: 13px;
  }
}
.my-profile .profile-inner .profile-info-row .newsletter-row {
  font-size: 13px;
  font-family: "Gordita-Regular", sans-serif;
}
.my-profile .profile-inner .profile-info-row .newsletter-row i {
  color: #8bc34a;
  font-size: 16px;
}
.my-profile .profile-right-inner {
  border: 1px solid #EEF0F4;
  background-color: #ffffff;
}
.my-profile .profile-right-container {
  flex-grow: 1;
  max-width: calc(100% - 430px);
}
@media (max-width: 1199px) {
  .my-profile .profile-right-container {
    max-width: calc(100% - 330px);
  }
}
@media (max-width: 991px) {
  .my-profile .profile-right-container {
    max-width: 100%;
  }
}
.my-profile .profile-right-container .nav-tabs {
  border-color: #e7e7e7;
}
@media (max-width: 767px) {
  .my-profile .profile-right-container .nav-tabs {
    border-bottom: 0;
  }
}
.my-profile .profile-right-container .nav-tabs .nav-item .nav-link {
  border: 0;
  border-right: 1px solid #EEF0F4;
  padding: 15px 20px;
  font-size: 14px;
  color: #252525;
  transition: 0s;
}
@media (max-width: 1199px) {
  .my-profile .profile-right-container .nav-tabs .nav-item .nav-link {
    padding: 15px 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .my-profile .profile-right-container .nav-tabs .nav-item .nav-link {
    border-bottom: 1px solid #EEF0F4;
    margin-bottom: 1px;
  }
}
.my-profile .profile-right-container .nav-tabs .nav-item .nav-link.active, .my-profile .profile-right-container .nav-tabs .nav-item .nav-link:hover {
  border-bottom: 1px solid #ff9140;
}
.my-profile .profile-right-container .nav-tabs .nav-item:last-child .nav-link {
  border-right: 0;
}
.my-profile .profile-right-container .nav-tabs .nav-item.feedback-item {
  flex-grow: 0;
}
.my-profile .profile-right-container .nav-tabs .nav-item.feedback-item .nav-link {
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
  border: 1px solid #eef0f4;
  display: flex;
  align-items: center;
  border-radius: 0;
  color: #252525;
  text-decoration: none;
  transition: 0.5s;
  padding: 8px 95px;
}
@media (max-width: 767px) {
  .my-profile .profile-right-container .nav-tabs .nav-item.feedback-item .nav-link {
    padding: 8px 50px;
  }
}
@media (max-width: 575px) {
  .my-profile .profile-right-container .nav-tabs .nav-item.feedback-item .nav-link {
    padding: 8px 30px;
  }
}
.my-profile .profile-right-container .nav-tabs .nav-item.feedback-item .nav-link:hover, .my-profile .profile-right-container .nav-tabs .nav-item.feedback-item .nav-link.active {
  border-bottom: 1px solid #ff9140;
}
.my-profile .profile-right-container .nav-tabs .nav-item.feedback-item:not(:last-child) .nav-link {
  border-right: 0;
}
.my-profile .profile-right-container .feedback-tab-header .nav-tabs {
  border: 0;
}
.my-profile .profile-tab-body {
  padding: 30px 30px 50px 30px;
}
@media (max-width: 1199px) {
  .my-profile .profile-tab-body {
    padding: 30px 25px 30px 25px;
  }
}
@media (max-width: 1199px) {
  .my-profile .profile-tab-body {
    padding: 30px 15px 30px 15px;
  }
}
.my-profile .profile-tab-body .table-responsive {
  padding-top: 20px;
}
.my-profile .profile-tab-heading {
  padding-bottom: 15px;
}
.my-profile .profile-tab-heading h6 {
  font-size: 14px;
  margin-bottom: 5px;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 1199px) {
  .my-profile .profile-tab-heading h6 {
    font-size: 13px;
  }
}
.my-profile .profile-radio-row {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 25px;
}
@media (max-width: 1199px) {
  .my-profile .profile-radio-row {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .my-profile .profile-radio-row {
    flex-wrap: wrap;
  }
}
.my-profile .profile-radio-row .profile-radio-item:not(:last-child) {
  padding-right: 20px;
}
.my-profile .profile-input-container label, .my-profile .profile-input-container .form-control {
  font-size: 13px;
}
.my-profile .profile-input-container .form-control {
  border-color: #e9e9ea;
  border-radius: 0.25rem;
  padding: 12px 15px;
  height: auto;
  line-height: 17px;
  font-family: "Gordita-Regular", sans-serif;
  box-shadow: none;
}
.my-profile .profile-input-container .form-control:focus, .my-profile .profile-input-container .form-control:active {
  box-shadow: none;
  border-color: #8bc34a;
}
.my-profile .profile-input-container .form-control.error {
  border-color: red;
}
.my-profile .profile-input-container .form-control[type=file] {
  padding: 9px 15px;
}
.my-profile .profile-input-container .profile-radio-row {
  padding-top: 0;
  padding-bottom: 15px;
}
.my-profile .nav-item {
  flex-grow: 1;
}
.my-profile .rating-dropdown {
  border-color: #EEF0F4;
  border-radius: 0.25rem;
  padding: 12px 15px;
  height: 45.23px;
  line-height: 17px;
  font-family: "Gordita-Regular", sans-serif;
  box-shadow: none;
  font-size: 13px;
  width: 100%;
  text-align: left;
}
.my-profile .rating-dropdown:focus, .my-profile .rating-dropdown:active {
  box-shadow: none;
  border-color: #8bc34a;
}
.my-profile .feedback-tab-header {
  margin-bottom: 25px;
}
.my-profile .dropdown-item {
  padding: 4px 15px;
}
.my-profile .dropdown-item:active, .my-profile .dropdown-item:focus {
  outline: none;
  background: #ffffff;
}
.my-profile .dropdown-menu {
  font-size: 13px;
  font-family: "Gordita-Regular", sans-serif;
  border-radius: 0;
  width: 100%;
}
.my-profile .dropdown-menu .la-star {
  color: #ff9140;
  font-size: 15px;
}
.my-profile .submit-rating-container {
  padding-top: 20px;
}

.img-container {
  padding-top: 15px;
}
.img-container > img[src=""] {
  display: none;
}

.crop-image-preview {
  display: none;
}

label, .form-control {
  font-size: 13px;
}

textarea.form-control {
  resize: none;
}

.form-control {
  border-color: #e9e9ea;
  border-radius: 0.25rem;
  padding: 12px 15px;
  height: auto;
  line-height: 17px;
  font-family: "Gordita-Regular", sans-serif;
  box-shadow: none;
}
.form-control:focus, .form-control:active {
  box-shadow: none;
  border-color: #8bc34a;
}

.link-default {
  color: #8bc34a;
  font-size: 13px;
  font-family: "Gordita-Regular", sans-serif;
  text-decoration: none;
  transition: 0.5s;
}
.link-default:hover {
  text-decoration: none;
  color: #ff9140;
}

.logout-profile {
  padding-top: 25px;
}
.logout-profile .logout-btn {
  font-size: 13px;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
  color: #dc3545;
}
.logout-profile .logout-btn > .las {
  font-size: 17px;
  padding-right: 5px;
}
.logout-profile .logout-btn:hover {
  color: #ab0112;
}

.custom-label {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .custom-label {
    font-size: 13px;
  }
}
.custom-label .custom-input {
  display: none;
}
.custom-label .custom-input-element {
  width: 18px;
  height: 18px;
  border: 1px solid #e9e9ea;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
  flex: 0 0 18px;
}
.custom-label .custom-input-element:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #8bc34a;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
}
.custom-label .custom-input-text {
  padding-left: 8px;
}
.custom-label .custom-input:checked + .custom-input-element {
  border: 1px solid #8bc34a;
}
.custom-label .custom-input:checked + .custom-input-element:after {
  transform: translate(-50%, -50%) scale(1);
}
.custom-label.custom-checkbox .custom-input-element {
  border-radius: 0;
}
.custom-label.custom-checkbox .custom-input-element:after {
  border-radius: 0;
}

/*.animated-button-default {
    padding: 12px 40px;
    background-color: $orange;
    font-size: $f-15;
    position: relative;
    border: 0;
    font-family: $font-medium;
    transition: 0.4s;
    outline: 0 !important;
    overflow: hidden;
    letter-spacing: 0px;
    span {
        position: relative;
        z-index: 1;
        color: $white;
    }
    &:before {
        content: '';
        position: absolute;
        left: 0px;
        bottom: 0px;
        height: 0;
        width: 100%;
        background: $green;
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    }
    &:hover:before {
        top: 0;
        left: 0;
        height: 100%;
    }
}*/
.modal-footer-container {
  display: flex;
  justify-content: center;
  padding-top: 15px;
  position: relative;
}
.modal-footer-container .btn {
  width: 100%;
  padding: 13px 30px;
  margin-top: 15px;
}

.date .input-group-text {
  background: #8bc34a;
  color: #ffffff;
  border-color: #8bc34a;
  transition: 0.5s;
  outline: none;
}
.date .input-group-text:hover {
  background: #ff9140;
  border-color: #ff9140;
}
.date .dropdown-menu {
  border-color: #EEF0F4;
}

/*-------------------------------*/
/*      Table and Datatable  	 */
/*-------------------------------*/
table.dataTable.no-footer.default-table {
  border-bottom: 0;
  border-collapse: collapse;
  width: 100% !important;
}
table.dataTable.no-footer.default-table thead th {
  border-bottom: 1px solid #EEF0F4;
  border: 1px solid #EEF0F4;
  font-weight: normal;
  font-family: "Gordita-Medium", sans-serif;
  padding: 7px;
  font-size: 12px;
}
table.dataTable.no-footer.default-table td {
  border: 1px solid #EEF0F4;
  font-family: "Gordita-Regular", sans-serif;
  padding: 7px;
  font-size: 11px;
}
table.dataTable.no-footer.default-table td .success {
  color: #8bc34a;
}
table.dataTable.no-footer.default-table td .failed {
  color: #dc3545;
}

.default-table th {
  padding: 7px;
  font-size: 12px;
  border: 1px solid #EEF0F4;
}
.default-table td {
  padding: 7px;
  font-size: 11px;
  border: 1px solid #EEF0F4;
}
.default-table thead td, .default-table thead th {
  border-bottom-width: 1px;
}
.default-table thead th {
  border-bottom: 1px solid #EEF0F4;
}

.td-action-row {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.td-action-row .td-action-btn {
  color: #ff9140;
  padding: 2px 5px;
  position: relative;
}
.td-action-row .td-action-btn:not(:last-child):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background: #EEF0F4;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dataTables_wrapper {
  font-size: 14px;
  color: #696969;
}
.dataTables_wrapper input, .dataTables_wrapper select {
  border-color: #EEF0F4 !important;
  outline: none;
  font-size: 13px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 3px 7px;
  font-size: 13px;
  line-height: 21px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 1px solid #EEF0F4;
  background: #EEF0F4;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 1px solid #8bc34a;
  background-color: #8bc34a;
  background: #8bc34a;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #696969 !important;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  box-shadow: none;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: #696969;
  font-size: 13px;
}
.dataTables_wrapper table.dataTable > tbody > tr.child ul.dtr-details > li {
  border-bottom: 0;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
  background-color: #8bc34a;
  line-height: 13px;
  box-shadow: 0 0 0.2em #b7b4b4;
}

.table {
  color: #696969;
}

/*-------------------------------*/
/*         questionnare 	     */
/*-------------------------------*/
.question-container {
  padding-top: 25px;
}
.question-container .question-heading h6 {
  font-family: "Gordita-Medium", sans-serif;
  font-size: 15px;
  color: #8bc34a;
}
.question-container .question-descriptions {
  padding-bottom: 15px;
}
.question-container .question-descriptions p {
  font-size: 13px;
  line-height: 20px;
}
.question-container .question-descriptions p .medium-font-text {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}
.question-container .question-items ol {
  padding-left: 20px;
}
.question-container .question-items ol li {
  list-style: decimal;
  font-size: 13px;
}
.question-container .question-items ol li:not(:last-child) {
  margin-bottom: 15px;
}
.question-container .question-items .question-row-item {
  padding-bottom: 15px;
  font-family: "Gordita-Medium", sans-serif;
}
.question-container .question-items .question-option-row .single-option {
  max-width: 330px;
}
.question-container .question-items .question-option-row .custom-label {
  font-size: 13px;
}
.question-container .question-items .question-radio-item:not(:last-child) {
  padding-bottom: 8px;
}
.question-container .question-items .sub-options-questions {
  padding-left: 27px;
}
.question-container .rate-teacher-aspects {
  padding-top: 15px;
}
.question-container .rate-teacher-aspects .default-table th, .question-container .rate-teacher-aspects .default-table td {
  padding: 7px 10px;
  font-size: 13px;
}
.question-container .rate-teacher-aspects .default-table td .custom-label, .question-container .rate-teacher-aspects .default-table th .custom-label {
  margin: 0;
}
.question-container .rate-teacher-aspects .default-table td .custom-label .custom-input-element, .question-container .rate-teacher-aspects .default-table th .custom-label .custom-input-element {
  margin: 0 auto;
}
.question-container .rate-teacher-aspects .default-table td:nth-child(2), .question-container .rate-teacher-aspects .default-table td:nth-child(3), .question-container .rate-teacher-aspects .default-table td:nth-child(4), .question-container .rate-teacher-aspects .default-table th:nth-child(2), .question-container .rate-teacher-aspects .default-table th:nth-child(3), .question-container .rate-teacher-aspects .default-table th:nth-child(4) {
  width: 100px;
  text-align: center;
}
.question-container .rate-teacher-aspects .default-table td:nth-child(5), .question-container .rate-teacher-aspects .default-table th:nth-child(5) {
  width: 200px;
  text-align: center;
}
.question-container .thankyou {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 20px;
}
.question-container .thankyou h4 {
  font-size: 13px;
  color: #8bc34a;
}

/*-------------------------------*/
/*       Inner page header  	 */
/*-------------------------------*/
.header-banner {
  position: relative;
  padding: 100px 30px;
}
@media (max-width: 1199px) {
  .header-banner {
    padding: 100px 30px;
  }
}
@media (max-width: 767px) {
  .header-banner {
    padding: 80px 15px;
  }
}
.header-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.header-banner .page-title .heading-line {
  margin: auto;
  background-color: #ffffff;
}
.header-banner .page-title .heading-line:before, .header-banner .page-title .heading-line:after {
  background-color: #8bc34a;
}
.header-banner .page-title .heading {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 5px;
  text-align: center;
}
@media (max-width: 1199px) {
  .header-banner .page-title .heading {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .header-banner .page-title .heading {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.header-banner .path-inner {
  position: relative;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
}
.header-banner .path-inner a {
  color: #8bc34a;
  text-decoration: none;
  font-family: "Gordita-Medium", sans-serif;
}
.header-banner .path-inner a.current {
  font-family: "Gordita-Light", sans-serif;
  color: #ffffff;
}

/*-------------------------------*/
/*    bootsrtap modal   		 */
/*-------------------------------*/
.modal .modal-content {
  border-radius: 5px;
}
.modal .modal-content-container {
  padding: 40px 50px;
}
@media (max-width: 767px) {
  .modal .modal-content-container {
    padding: 30px 30px;
  }
}
.modal .modal-header-container {
  padding-bottom: 20px;
}
.modal .modal-header-container h2 {
  font-family: "Gordita-Medium", sans-serif;
  text-align: center;
  color: #252525;
}
@media (max-width: 767px) {
  .modal .modal-header-container h2 {
    font-size: 27px;
  }
}
.modal .modal-header-container p {
  text-align: center;
}
.modal .modal-header-container p a {
  color: #8bc34a;
}
.modal .modal-header-container .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #ff9140;
  outline: none;
}
.modal .modal-body-container .link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #252525;
}
.modal .modal-body-container .form-control {
  background-color: #f8f8f8;
}
.modal .modal-body-container.modal-user-varification .custom-label {
  padding-bottom: 4px;
}
.modal .modal-body-container.modal-user-varification .user-varification-row {
  padding-bottom: 6px;
}
.modal .password-reset-info {
  font-size: 14px;
  padding-bottom: 15px;
}
.modal.useful-links-modal .modal-dialog {
  max-width: 720px;
}

/*-------------------------------*/
/*    bootsrtap calendar   		 */
/*-------------------------------*/
.bootstrap-datetimepicker-widget.dropdown-menu {
  color: #696969;
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
  padding: 15px;
  width: 240px;
  border: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days table thead tr:first-child th {
  border-radius: 0;
  background-color: #8bc34a;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days table thead tr:last-child th {
  padding: 30px 0px 20px 0px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Gordita-Bold", sans-serif;
  color: #252525;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days table tbody tr td.day {
  height: 30px;
  font-size: 12px;
  color: #252525;
  border-radius: 50%;
  width: 30px;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days table tbody tr td.day.old, .bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days table tbody tr td.day.new {
  color: #777;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days table tbody tr td.day.active {
  color: #ffffff;
}
.bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days table tbody tr td.day.disabled {
  color: #777;
}
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover, .bootstrap-datetimepicker-widget table td span.active {
  background: #8bc34a;
}
.bootstrap-datetimepicker-widget table td.today:before {
  border-bottom-color: #8bc34a;
}
.bootstrap-datetimepicker-widget table td span {
  font-size: 12px;
  border-radius: 50%;
}
.bootstrap-datetimepicker-widget table th {
  font-weight: normal;
  font-family: "Gordita-Medium", sans-serif;
}

/*-------------------------------*/
/*       Jquery Ui calender  	 */
/*-------------------------------*/
.ui-datepicker {
  color: #696969;
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
  padding: 15px;
  width: 240px;
  border: 0 !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.ui-datepicker .ui-widget-header {
  padding: 15px 7px;
  border-radius: 0;
  background-color: #8bc34a;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ui-datepicker .ui-widget-header .ui-icon {
  background-image: url(../images/ui-icons.png);
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  top: 15px;
}
.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
  background: none !important;
  border: 0 !important;
}
.ui-datepicker .ui-datepicker-title {
  font-family: "Gordita-Medium", sans-serif;
}
.ui-datepicker th {
  padding: 25px 0px 20px 0px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Gordita-Bold", sans-serif;
  color: #252525;
}
.ui-datepicker .ui-state-default, .ui-datepicker .ui-widget-content .ui-state-default {
  height: 25px;
  font-size: 12px;
  color: #252525;
  border-radius: 50%;
  width: 25px;
  text-align: center;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.ui-datepicker .ui-state-default:hover, .ui-datepicker .ui-widget-content .ui-state-default:hover {
  background: #eee;
}
.ui-datepicker .ui-state-default.ui-state-highlight, .ui-datepicker .ui-state-default.ui-state-active, .ui-datepicker .ui-widget-content .ui-state-default.ui-state-highlight, .ui-datepicker .ui-widget-content .ui-state-default.ui-state-active {
  background: #8bc34a;
  color: #ffffff;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  border-color: #e9e9ea;
  outline: none;
  color: #252525;
}
.ui-datepicker select.ui-datepicker-month:focus, .ui-datepicker select.ui-datepicker-year:focus {
  outline: none;
}

/*-------------------------------*/
/*       Slick slider effect  	 */
/*-------------------------------*/
.slider {
  -webkit-transition: opacity 250s ease-in-out;
  -moz-transition: opacity 250s ease-in-out;
  -ms-transition: opacity 250s ease-in-out;
  -o-transition: opacity 250s ease-in-out;
  opacity: 1;
}

/*-------------------------------*/
/*         Events       		 */
/*-------------------------------*/
.events-banner {
  background-image: url(../images/events/events-banner.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.events-container {
  padding: 100px 0 70px;
}
@media (max-width: 1199px) {
  .events-container {
    padding: 60px 0px 30px;
  }
}
.events-container .event-card {
  background-color: #f8f8f8;
  transition: 0.5s;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.events-container .event-card .event-image {
  position: relative;
}
.events-container .event-card .event-image .event-type-container {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 6px 6px 6px 15px;
  font-size: 10px;
  background: #8bc34a;
  color: #ffffff;
}
.events-container .event-card .event-image .event-type-container .event-type-inner:after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 27px solid #8bc34a;
  border-right: 17px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
}
.events-container .event-card .event-image img {
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center;
}
.events-container .event-card .events-info {
  padding: 25px 25px 50px;
}
@media (max-width: 767px) {
  .events-container .event-card .events-info {
    padding: 20px 20px 30px;
  }
}
.events-container .event-card .events-info .event-date {
  margin: 0 0 6px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Gordita-Medium", sans-serif;
  color: #ababab;
  font-size: 12px;
}
@media (max-width: 767px) {
  .events-container .event-card .events-info .event-date {
    font-size: 11px;
  }
}
.events-container .event-card .events-info .event-title {
  margin-bottom: 25px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .events-container .event-card .events-info .event-title {
    margin-bottom: 20px;
  }
}
.events-container .event-card .events-info .event-title a {
  display: block;
  color: #252525;
  font-size: 15px;
  font-family: "Gordita-Medium", sans-serif;
  line-height: 1.7em;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .events-container .event-card .events-info .event-title a {
    font-size: 14px;
  }
}
.events-container .event-card .events-info .event-title a:hover {
  color: #8bc34a;
}
.events-container .event-card .events-info .event-location {
  text-align: center;
  font-size: 13px;
  color: #696969;
}
.events-container .event-card:hover {
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.05);
}
.events-container .event-card .event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fff0;
}
.events-container .event-card .event-card-footer > .event-card-register {
  flex-grow: 1;
}
.events-container .event-card .event-card-footer > .event-card-register > .register-event-btn {
  padding: 10px 15px;
  display: block;
  color: #252525;
  font-size: 15px;
  font-family: "Gordita-Regular", sans-serif;
  text-decoration: none;
  transition: 0.5s;
  opacity: 0.85;
  pointer-events: none;
}
.events-container .event-card .event-card-footer > .event-card-register > .register-event-btn:hover {
  text-decoration: none;
  background: #e8f5da;
}
.events-container .event-card .event-card-footer > .event-card-register.active > .register-event-btn {
  opacity: 1;
  pointer-events: auto;
}
.events-container .event-card .event-card-footer .event-card-gallery .gallery-event-btn {
  padding: 10px 15px;
  background: #8bc34a;
  color: #ffffff;
  height: 44px;
  display: block;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0.85;
}
.events-container .event-card .event-card-footer .event-card-gallery .gallery-event-btn:hover {
  background: #ff9140;
}
.events-container .event-card .event-card-footer .event-card-gallery.active .gallery-event-btn {
  opacity: 1;
  pointer-events: auto;
}
.events-container .event-card .event-action {
  padding-top: 25px;
  justify-content: center;
  display: flex;
}
.events-container .event-card .event-action .animated-button {
  padding: 7px 10px;
  font-size: 14px;
  width: 100%;
}
.events-container .filter-row-container {
  display: flex;
  padding: 0 15px 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (max-width: 991px) {
  .events-container .filter-row-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .events-container .filter-row-container {
    padding-bottom: 5px;
  }
}
.events-container .filter-row-container.events-tab-header {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .events-container .filter-row-container.events-tab-header {
    padding-bottom: 30px;
  }
}
.events-container .filter-row-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .events-container .filter-row-left {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.events-container .filter-row-left > .filter-item {
  min-width: 150px;
}
@media (max-width: 767px) {
  .events-container .filter-row-left > .filter-item {
    min-width: auto;
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.events-container .filter-row-left > .filter-item:not(:last-child) {
  padding-right: 15px;
}
@media (max-width: 767px) {
  .events-container .filter-row-left > .filter-item:not(:last-child) {
    padding-right: 0px;
  }
}
.events-container .filter-row-left > .filter-item .clear-filter-btn {
  margin-bottom: 1rem;
  background: none;
  padding: 0;
  border: 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  outline: none;
  color: #696969;
  transition: 0.5s;
}
.events-container .filter-row-left > .filter-item .clear-filter-btn:focus {
  outline: none;
}
.events-container .filter-row-left > .filter-item .clear-filter-btn:hover .text-btn-container {
  text-decoration: underline;
}
.events-container .filter-row-left > .filter-item .clear-filter-btn > .icon-btn-container {
  display: flex;
  padding: 1px;
  width: 19px;
  height: 19px;
  background: #ff9140;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  margin-right: 6px;
}
.events-container .filter-row-left > .filter-item .clear-filter-btn > .icon-btn-container > i {
  margin-left: 1px;
}
@media (max-width: 767px) {
  .events-container .filter-row-left > .filter-item.contact-tab-header {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .events-container .filter-row-right {
    flex: 0 0 100%;
  }
}
.events-container .contact-tab-header .nav-tabs {
  border: 0;
}
.events-container .contact-tab-header .nav-tabs .nav-item .nav-link {
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
  border: 1px solid #EEF0F4;
  display: flex;
  align-items: center;
  border-radius: 0;
  color: #252525;
  text-decoration: none;
  transition: 0.5s;
  padding: 8px 95px;
}
@media (max-width: 767px) {
  .events-container .contact-tab-header .nav-tabs .nav-item .nav-link {
    padding: 8px 50px;
    margin-top: 1px;
  }
}
.events-container .contact-tab-header .nav-tabs .nav-item .nav-link:hover, .events-container .contact-tab-header .nav-tabs .nav-item .nav-link.active {
  border-bottom: 1px solid #ff9140;
}
.events-container .contact-tab-header .nav-tabs .nav-item:not(:last-child) .nav-link {
  border-right: 0;
}
@media (max-width: 767px) {
  .events-container .contact-tab-header .nav-tabs .nav-item:not(:last-child) .nav-link {
    border: 1px solid #EEF0F4;
  }
}
.events-container .downloadable-events-container {
  background: #f8f8f8;
  padding: 25px 30px;
  font-size: 14px;
  line-height: 19px;
}
.events-container .downloadable-events-container ul li {
  display: flex;
  align-items: flex-start;
}
.events-container .downloadable-events-container ul li:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e9e9ea;
}
.events-container .downloadable-events-container ul li .download-icon-container {
  background: #8bc34a;
  width: 35px;
  height: 35px;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}
.events-container .downloadable-events-container ul li .download-icon-container > i {
  font-size: 18px;
  line-height: 18px;
  position: relative;
  top: -1px;
  left: 1px;
}
.events-container .downloadable-events-container .events-download-key {
  text-transform: capitalize;
  font-family: "Gordita-Medium", sans-serif;
  padding-bottom: 5px;
}
.events-container .downloadable-events-container .events-download-info-row {
  font-family: "Gordita-Regular", sans-serif;
  font-size: 13px;
  color: #696969;
}
.events-container .downloadable-events-container .events-download-info-row > a {
  font-family: "Gordita-Regular", sans-serif;
  font-size: 13px;
  color: #8bc34a;
}
.events-container .downloadable-events-container .events-download-info-row:not(:last-child) {
  padding-bottom: 3px;
}

/*-------------------------------*/
/*       Events details   		 */
/*-------------------------------*/
.events-detail-banner {
  background-image: url(../images/events/events-banner.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.events-details-container {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .events-details-container {
    padding: 60px 0px;
  }
}
.events-details-container .event-detailes-left .event-detail-banner {
  /*background: #f8f8f8;*/
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.events-details-container .event-detailes-left .event-detail-banner img {
  width: 100%;
  /*max-height: 500px;
  object-fit: cover;*/
  position: relative;
  z-index: 2;
}
.events-details-container .event-detailes-left .event-detail-banner .background-image-div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
.events-details-container .event-detail-description {
  padding: 30px;
  background: #f8f8f8;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .events-details-container .event-detail-description {
    padding: 25px 20px;
  }
}
.events-details-container .event-detail-description p {
  font-size: 13px;
}
.events-details-container .event-detail-description img {
  max-width: 100%;
}
.events-details-container .event-right-container {
  padding: 30px 25px;
  background: #f8f8f8;
}
.events-details-container .event-right-container .event-right-header {
  font-size: 16px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 18px;
}
.events-details-container .event-right-container .event-right-row {
  font-size: 13px;
  color: #696969;
  padding-bottom: 20px;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 767px) {
  .events-details-container .event-right-container .event-right-row {
    padding-bottom: 15px;
  }
}
.events-details-container .event-right-container .event-right-row .event-info-body {
  font-size: 12px;
  color: #696969;
  font-family: "Gordita-Regular", sans-serif;
  padding-top: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.events-details-container .event-right-container .event-right-row .event-info-body > i {
  font-size: 16px;
  padding-right: 5px;
}
.events-details-container .event-right-container .event-right-row .event-info-body .animated-button {
  padding: 7px 10px;
  font-size: 14px;
  width: 100%;
}
@media (max-width: 767px) {
  .events-details-container .event-right-container .event-right-row:last-child {
    padding-bottom: 0px;
  }
}
.events-details-container .event-gallery-container {
  padding-top: 0px;
}
.events-details-container .event-gallery-container .event-gallery-heading {
  font-size: 16px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 18px;
}
.events-details-container .event-gallery-container .event-gallery-items {
  display: flex;
  flex-wrap: wrap;
}
.events-details-container .event-gallery-container .event-gallery-items .event-gallery-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 10px;
}
@media (max-width: 767px) {
  .events-details-container .event-gallery-container .event-gallery-items .event-gallery-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.events-details-container .event-gallery-container .event-gallery-items .event-gallery-item .event-gallery-item-a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.events-details-container .event-gallery-container .event-gallery-items .event-gallery-item .event-gallery-item-a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  max-height: 210px;
  object-fit: cover;
}
.events-details-container .event-gallery-container .event-gallery-items .event-gallery-item .event-gallery-item-a:after {
  content: "\f002";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
  font-family: "Line Awesome Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1);
  color: #ffffff;
  opacity: 0;
}
.events-details-container .event-gallery-container .event-gallery-items .event-gallery-item .event-gallery-item-a:hover > img {
  transform: scale(1.2);
}
.events-details-container .event-gallery-container .event-gallery-items .event-gallery-item .event-gallery-item-a:hover:after {
  opacity: 1;
}
@media (max-width: 767px) {
  .events-details-container .event-col-left {
    order: 2;
  }
}
@media (max-width: 767px) {
  .events-details-container .event-col-right {
    order: 1;
    margin-bottom: 25px;
  }
}
.events-details-container .event-info-right-wrapper .event-right-container {
  padding-bottom: 0;
}

/*-------------------------------*/
/*         Our Team       		 */
/*-------------------------------*/
.team-banner {
  background-image: url(../images/team/team-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.team-container {
  padding: 100px 0 70px;
}
.team-container .team-card {
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}
.team-container .team-card .team-image {
  overflow: hidden;
  position: relative;
  /*&:hover {
      > img {
          transform: scale(1.2);
      }
  }*/
}
.team-container .team-card .team-image > img {
  width: 100%;
  transition: 0.5s;
}
.team-container .team-card .team-image .team-description-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.93);
  padding: 10px;
  z-index: 3;
  transform: translateY(100%);
  transition: 0.4s;
  transition-delay: 0.1s;
}
@media (max-width: 1199px) {
  .team-container .team-card .team-image .team-description-container {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .team-container .team-card .team-image .team-description-container {
    padding: 10px 15px;
  }
}
.team-container .team-card .team-image .team-description-container .team-description-name {
  font-size: 16px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
}
@media (max-width: 1199px) {
  .team-container .team-card .team-image .team-description-container .team-description-name {
    font-size: 15px;
  }
}
.team-container .team-card .team-image .team-description-container .team-description-designation {
  font-size: 12px;
  padding-top: 2px;
}
@media (max-width: 1199px) {
  .team-container .team-card .team-image .team-description-container .team-description-designation {
    font-size: 11px;
    padding-top: 5px;
  }
}
.team-container .team-card .team-image .team-description-container .team-description-contact {
  padding-top: 1px;
  line-height: 15px;
}
@media (max-width: 1199px) {
  .team-container .team-card .team-image .team-description-container .team-description-contact {
    line-height: 15px;
  }
}
.team-container .team-card .team-image .team-description-container .team-description-contact > a {
  font-size: 12px;
  color: #8bc34a;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .team-container .team-card .team-image .team-description-container .team-description-contact > a {
    font-size: 11px;
  }
}
.team-container .team-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.09);
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: 0.5s;
}
.team-container .team-card:hover:after {
  opacity: 1;
}
.team-container .team-card:hover .team-image > img {
  transform: scale(1.2);
}
.team-container .team-card:hover .team-description-container {
  transform: translateY(0);
}
.team-container .filter-row-container {
  display: flex;
  padding: 0 15px 50px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.team-container .filter-row-container .filter-item .select-container > select {
  min-width: 150px;
}
.team-container .filter-row-container .filter-item > h3 {
  margin: 0;
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
}
.team-container .filter-row-container .filter-item .form-group {
  margin-bottom: 0;
}
.team-container .team-tab-header .nav-tabs {
  border: 0;
}
.team-container .team-tab-header .nav-tabs .nav-item {
  /*@include max(sm) {
      margin-bottom: 5px;
  }*/
}
.team-container .team-tab-header .nav-tabs .nav-item .nav-link {
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
  border: 1px solid #EEF0F4;
  display: flex;
  align-items: center;
  border-radius: 0;
  color: #252525;
  text-decoration: none;
  transition: 0.5s;
  padding: 8px 95px;
}
@media (max-width: 767px) {
  .team-container .team-tab-header .nav-tabs .nav-item .nav-link {
    padding: 8px 30px;
  }
}
.team-container .team-tab-header .nav-tabs .nav-item .nav-link:hover, .team-container .team-tab-header .nav-tabs .nav-item .nav-link.active {
  border-bottom: 1px solid #ff9140;
}
.team-container .team-tab-header .nav-tabs .nav-item:not(:last-child) .nav-link {
  border-right: 0;
}
@media (max-width: 767px) {
  .team-container .team-tab-header .nav-tabs .nav-item:not(:last-child) .nav-link {
    border: 1px solid #EEF0F4;
  }
}

/*-------------------------------*/
/*         Contact Us      		 */
/*-------------------------------*/
.contact-banner {
  background-image: url(../images/contact-us-banner.jpg);
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.contact-container {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .contact-container {
    padding: 60px 0px;
  }
}
.contact-container .contact-tab-header .nav-tabs {
  border: 0;
}
.contact-container .contact-tab-header .nav-tabs .nav-item .nav-link {
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
  border: 1px solid #EEF0F4;
  display: flex;
  align-items: center;
  border-radius: 0;
  color: #252525;
  text-decoration: none;
  transition: 0.5s;
  padding: 8px 95px;
}
@media (max-width: 767px) {
  .contact-container .contact-tab-header .nav-tabs .nav-item .nav-link {
    padding: 8px 50px;
    margin-top: 1px;
  }
}
.contact-container .contact-tab-header .nav-tabs .nav-item .nav-link:hover, .contact-container .contact-tab-header .nav-tabs .nav-item .nav-link.active {
  border-bottom: 1px solid #ff9140;
}
.contact-container .contact-tab-header .nav-tabs .nav-item:not(:last-child) .nav-link {
  border-right: 0;
}
@media (max-width: 767px) {
  .contact-container .contact-tab-header .nav-tabs .nav-item:not(:last-child) .nav-link {
    border: 1px solid #EEF0F4;
  }
}
@media (max-width: 767px) {
  .contact-container .contact-tab-header .nav-tabs .nav-item:not(:last-child) .nav-link.active {
    border-bottom: 1px solid #ff9140;
  }
}
.contact-container .filter-row-container {
  display: flex;
  padding: 0 15px 50px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.contact-container .contact-left-container {
  font-size: 14px;
}
@media (max-width: 991px) {
  .contact-container .contact-left-container {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.contact-container .contact-left-container .contact-left-address .address-item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-icon {
  flex: 0 0 25px;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-icon i {
  font-size: 18px;
  color: #8bc34a;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-content {
  flex-grow: 1;
  line-height: 1.7em;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-content > a {
  font-size: 14px;
  color: #696969;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-content .social-link {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #8bc34a;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.5s;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-content .social-link:hover {
  background-color: #ff9140;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-content.social-address-container {
  display: flex;
  align-items: center;
}
.contact-container .contact-left-container .contact-left-address .address-item .address-item-content.social-address-container > a:not(:last-child) {
  margin-right: 10px;
}
.contact-container .contact-left-container .contact-left-map {
  padding-top: 15px;
}
.contact-container .contact-right-container {
  padding: 50px;
  background: #EEF0F4;
}
@media (max-width: 991px) {
  .contact-container .contact-right-container {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .contact-container .contact-right-container {
    padding: 30px 25px;
  }
}
.contact-container .contact-right-container label, .contact-container .contact-right-container .form-control {
  font-size: 14px;
}
.contact-container .contact-right-container .animated-button {
  margin-top: 20px;
}
.contact-container .contact-right-container .form-heading-row {
  padding-bottom: 25px;
}
.contact-container .contact-right-container .form-heading-row h5 {
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
  font-size: 18px;
  margin: 0;
}

/*-------------------------------*/
/*     Useful links modal  		 */
/*-------------------------------*/
.links-container {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEF0F4;
  margin-bottom: 10px;
}
.links-container:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.links-container .links-left {
  padding-right: 5px;
}
.links-container .links-left i {
  font-size: 15px;
}
.links-container .links-right a {
  font-size: 13px;
  color: #696969;
  transition: 0.5s;
  text-decoration: none;
}
.links-container .links-right a:hover {
  text-decoration: none;
  color: #8bc34a;
}

/*-------------------------------*/
/*           Loader  	         */
/*-------------------------------*/
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}
.loader-container .loader-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
/*-------------------------------*/
/*     Blinking animation	     */
/*-------------------------------*/
@keyframes changeColor {
  from {
    background-color: #ff9140;
  }
  to {
    background-color: #e67d30;
  }
}
.lds-dual-ring {
  display: inline-block;
  width: 60px;
  height: 60px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 54px;
  height: 54px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #ababab;
  border-color: #ababab transparent #ababab transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-local-container {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  display: none;
}
.loader-local-container .loader-local-inner {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}

.age-criteria-wrapper {
  flex: 0 0 100%;
  font-size: 11px;
  border: 1px solid red;
  padding: 8px 15px;
  border-radius: 4px;
  color: red;
  text-align: center;
  font-family: "Gordita-Regular", sans-serif;
  letter-spacing: 0.4px;
  background: rgba(255, 0, 0, 0.1);
}

.confirm-eligibility-wrapper {
  flex: 0 0 100%;
  font-size: 11px;
  border: 1px solid red;
  padding: 8px 15px;
  border-radius: 4px;
  color: red;
  text-align: center;
  font-family: "Gordita-Regular", sans-serif;
  letter-spacing: 0.4px;
  background: rgba(255, 0, 0, 0.1);
}

.batch-info-message {
  flex: 0 0 100%;
  font-size: 11px;
  border: 1px solid red;
  padding: 8px 15px;
  border-radius: 4px;
  color: red;
  text-align: center;
  font-family: "Gordita-Regular", sans-serif;
  letter-spacing: 0.4px;
  background: rgba(255, 0, 0, 0.1);
}

.login-with-google {
  text-align: center;
  padding-top: 15px;
}
.login-with-google .btn-google {
  padding: 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-with-google .btn-google:focus {
  box-shadow: none;
}
.login-with-google .btn-google > i {
  font-size: 18px;
  margin-right: 3px;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8bc34a;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 23px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 38px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(15px, 0);
  }
}
.modal-footer-container {
  flex-wrap: wrap;
}
.modal-footer-container .login-loader {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0;
}
.modal-footer-container .login-loader .lds-ellipsis {
  height: 13px;
}
.modal-footer-container .login-loader .lds-ellipsis div {
  top: 0;
}

.login-validation-text {
  font-size: 12px;
  padding-top: 5px;
}

.custom-payment-verify .tbl-custom-payment-verify {
  width: 100%;
  font-size: 13px;
}
.custom-payment-verify .tbl-custom-payment-verify td {
  border-bottom: 1px solid #eef0f4;
  padding: 6px 0;
}

.proceed-btn-container {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
  font-family: "Gordita-Regular", sans-serif;
}
.proceed-btn-container button {
  padding: 7px 10px;
  font-size: 14px;
  font-family: "Gordita-Regular", sans-serif;
}

.frmproceedPayment-heading h6 {
  font-family: "Gordita-Medium", sans-serif;
  color: #252525;
  font-size: 1.35rem;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .frmproceedPayment-heading h6 {
    font-size: 15px;
  }
}

.green-text {
  color: #8bc34a;
}
.green-text:hover {
  color: #8bc34a;
}

.about-banner {
  background-image: url(../images/about-us.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-container {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .about-container {
    padding: 60px 0px;
  }
}

.facility-heading {
  font-size: 18px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 15px;
}

.facility-box-container {
  padding-top: 30px;
}
.facility-box-container ul {
  padding-left: 17px;
  margin-left: 20px;
}
.facility-box-container ul li {
  list-style-type: disc;
}
.facility-box-container p {
  margin-bottom: 5px;
}

.facilty-gallery {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
}
.facilty-gallery .facility-gallery-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 10px;
}
@media (max-width: 767px) {
  .facilty-gallery .facility-gallery-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.facilty-gallery .facility-gallery-item a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.facilty-gallery .facility-gallery-item a:after {
  content: "\f002";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
  font-family: "Line Awesome Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1);
  color: #ffffff;
  opacity: 0;
}
.facilty-gallery .facility-gallery-item a img {
  width: 100%;
  transition: 0.5s;
  max-height: 210px;
  object-fit: cover;
  height: 100%;
}
.facilty-gallery .facility-gallery-item a:hover:after {
  opacity: 1;
}
.facilty-gallery .facility-gallery-item a:hover img {
  transform: scale(1.2);
}

.item-dp {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 25px;
}
.item-dp > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  object-position: top;
}
.item-dp:hover > img {
  transform: scale(1.2);
}

.announcement-item-image {
  width: 100%;
  height: 155px;
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .announcement-item-image {
    height: 115px;
  }
}
.announcement-item-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.announcement-item-link {
  text-decoration: none;
}
.announcement-item-link:hover {
  text-decoration: none;
}

.announcement-item-image-sm {
  padding-top: 10px;
}

.terms-container {
  padding-top: 30px;
  display: none;
}
.terms-container .terms-container-body {
  padding-right: 8px;
  height: 500px;
  overflow: auto;
}
.terms-container .terms-container-body::-webkit-scrollbar-thumb {
  background: #8bc34a;
}
.terms-container .terms-container-body::-moz-scrollbar-thumb {
  background: #8bc34a;
}
.terms-container .terms-container-body::-ms-scrollbar-thumb {
  background: #8bc34a;
}
.terms-container .terms-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #e9e9ea;
  margin-bottom: 35px;
}
.terms-container .terms-item:nth-child(2) {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.terms-container .terms-item .terms-main-heading {
  font-size: 21px;
  font-family: "Gordita-Medium", sans-serif;
  margin: 0;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .terms-container .terms-item .terms-main-heading {
    font-size: 18px;
  }
}
.terms-container .terms-item h6 {
  font-family: "Gordita-Medium", sans-serif;
  margin: 0;
  padding-bottom: 5px;
}
.terms-container .terms-item .sub-title {
  padding-bottom: 10px;
}
.terms-container .terms-item p {
  font-size: 13px;
  margin: 0;
  padding-bottom: 25px;
}
.terms-container .terms-item p.bold {
  font-family: "Gordita-Bold", sans-serif;
}
.terms-container .terms-item a {
  color: #8bc34a;
  text-decoration: underline;
}
.terms-container .terms-container-footer {
  background: #fff;
  display: flex;
  justify-content: center;
  padding-top: 25px;
}

.profile-previe-row-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.profile-previe-row-container .profile-preview-row {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 12px;
  /*@include max(sm) {
      flex: 0 0 100%;
      max-width: 100%;
  }*/
}
@media (max-width: 991px) {
  .profile-previe-row-container .profile-preview-row {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.profile-previe-row-container .profile-preview-row.full-width-row {
  flex: 0 0 100%;
  max-width: 100%;
}
.profile-previe-row-container .profile-preview-row .profile-label {
  font-size: 11px;
}
.profile-previe-row-container .profile-preview-row .profile-value {
  font-size: 12px;
  font-family: "Gordita-Medium", sans-serif;
}
.profile-previe-row-container .profile-preview-row .profile-value.img-preview > img {
  width: 120px;
  height: 70px;
  object-fit: cover;
  padding: 2px;
  border: 1px solid #e9e9ea;
}

.modal-fooer-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modal-fooer-container .btn.btn-link {
  border: 0;
  background: none;
  color: #696969;
  text-decoration: underline;
  font-size: 14px;
}
.modal-fooer-container .animated-button {
  font-size: 14px;
}

@media (max-width: 767px) {
  .profile-label-sm {
    width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

.privacy-policy-section {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .privacy-policy-section {
    padding: 60px 0;
  }
}
.privacy-policy-section p > strong {
  padding-bottom: 10px;
  display: inline-block;
}

.privacy-policy-section .page-title {
  font-size: 18px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 15px;
}
.privacy-policy-section .sec-header {
  font-size: 18px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 15px;
}

.marquee-container {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 13px;
  background: rgba(139, 195, 74, 0.8);
  color: #fff;
}

.custom-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99;
  overflow-y: auto;
}
.custom-modal.show {
  display: block;
}
.custom-modal .custom-modal-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.custom-modal .custom-modal-dialog {
  width: 100%;
  max-width: 700px;
  background: #fff;
  padding: 40px 50px;
  border-radius: 5px;
  position: relative;
  margin: 1.75rem auto;
}
.custom-modal .custom-modal-header .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #ff9140;
  outline: none;
}
.custom-modal .modal-text-content {
  padding-bottom: 13px;
  font-size: 14px;
}
.custom-modal .modal-img-content img {
  width: 100%;
}

.footer .footer-col ul .nav-item.menu-useful-links {
  margin: 3px 0px;
}
.footer .footer-col ul .nav-item.menu-useful-links .nav-link {
  padding: 0;
}

.blog-list .post-thumbnail {
  margin: 0;
}
.blog-list .events-container .event-card .events-info .event-title {
  margin-bottom: 15px;
}
.blog-list .events-container .event-card .events-info .event-title a {
  text-align: left;
  font-size: 17px;
}
.blog-list .events-container .event-card .events-info .event-description {
  font-size: 14px;
  line-height: 1.6;
}
.blog-list .events-container .event-card .events-info .event-description .more-link {
  display: block;
  font-size: 13px;
  padding-top: 15px;
  padding-bottom: 5px;
  color: #8bc34a;
}
.blog-list .events-container .event-card .events-info .event-category {
  font-size: 0;
  display: flex;
  align-items: center;
  color: #8bc34a;
  padding-bottom: 10px;
}
.blog-list .events-container .event-card .events-info .event-category .posted-on {
  padding-right: 10px;
}
.blog-list .events-container .event-card .events-info .event-category .posted-on .entry-date {
  font-size: 13px;
}
.blog-list .events-container .event-card .events-info .event-category .cat-links a {
  font-size: 13px;
  color: #8bc34a;
}
.blog-list .events-container .event-card .events-info .event-action {
  display: none;
}

.blog-details-container .event-detail-banner .post-thumbnail {
  margin: 0;
}
.blog-details-container .event-right-header {
  display: none;
}
.blog-details-container .event-info-body i.la-bullhorn {
  display: none;
}
.blog-details-container .event-info-body .posted-by {
  padding-bottom: 5px;
}
.blog-details-container .event-info-body .posted-by .byline {
  padding-left: 4px;
}
.blog-details-container .event-info-body .posted-by .byline a {
  color: #8bc34a;
}
.blog-details-container .event-info-body .post-navigation .screen-reader-text {
  display: none;
}
.blog-details-container .event-info-body .post-navigation .nav-links .meta-nav {
  display: none;
}
.blog-details-container .event-info-body .post-navigation .nav-links .post-title {
  margin-bottom: 0px;
  font-size: 12px;
  color: #8bc34a;
}
.blog-details-container .event-info-body .post-navigation .nav-links .post-title:before {
  content: "\f060";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: #696969;
  padding-right: 6px;
}
.blog-details-container .event-info-body .post-navigation .nav-links a {
  text-decoration: none;
}
.blog-details-container .event-info-body .post-navigation .nav-links .nav-next .post-title:before {
  content: "\f061";
}
.blog-details-container .event-info-body .cat-links a {
  color: #8bc34a;
}
.blog-details-container .event-info-header {
  font-size: 16px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 12px;
}
.blog-details-container .blog-desc-title .entry-title {
  font-size: 17px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 12px;
}

.events-details-container .event-description-inner {
  padding: 30px 25px;
  background: #f8f8f8;
  height: 100%;
}
.events-details-container .event-detail-description .event-right-container {
  padding: 0;
}
.events-details-container .event-detail-description .event-right-inner {
  display: flex;
  flex-wrap: wrap;
}
.events-details-container .event-detail-description .event-right-inner .event-right-header {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .events-details-container .event-detail-description .event-right-inner .event-right-row {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.events-details-container .event-detail-description .event-right-inner .event-right-row:not(:last-child) {
  padding-right: 60px;
}
@media (max-width: 767px) {
  .events-details-container .event-detail-description .event-right-inner .event-right-row:not(:last-child) {
    padding-right: 10px;
  }
}

.contact a, .centre-email a {
  color: #696969;
}

.contact-footer-section .contact-footer-section-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .contact-footer-section .contact-footer-section-row {
    flex-wrap: wrap;
  }
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item {
  flex: 0 0 33.33%;
  max-width: 400px;
}
@media (max-width: 767px) {
  .contact-footer-section .contact-footer-section-row .contact-footer-section-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item:not(:first-child) {
  padding-left: 15px;
}
@media (max-width: 767px) {
  .contact-footer-section .contact-footer-section-row .contact-footer-section-item:not(:first-child) {
    padding-left: 0px;
    padding-top: 25px;
  }
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item:last-child {
  max-width: 33.33%;
}
@media (max-width: 767px) {
  .contact-footer-section .contact-footer-section-row .contact-footer-section-item:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item h4 {
  font-size: 18px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  margin-bottom: 20px;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item .communication-info-row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item .communication-info-row p {
  margin: 0;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item .communication-info-row .communication-info-icon {
  margin-right: 5px;
  color: #8bc34a;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item .communication-info-warning p {
  font-size: 12px;
  line-height: 17px;
  font-style: italic;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item p {
  margin-bottom: 10px;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item p a {
  color: #696969;
  margin-left: 5px;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item.email-info-row p {
  margin-bottom: 5px;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item .link-holiday-list {
  color: #8bc34a;
}
.contact-footer-section .contact-footer-section-row .contact-footer-section-item .info-corono-protocol {
  /*font-size: 12px;
  margin-bottom: 0;
  font-style: italic;*/
}

.banner-slider-row {
  height: calc(100vh - 235px);
}
@media (max-width: 991px) {
  .banner-slider-row {
    height: calc(100vh - 355px);
  }
}
@media (max-width: 767px) {
  .banner-slider-row {
    height: calc(100vh - 245px);
  }
}
.banner-slider-row .slick-list, .banner-slider-row .slick-track, .banner-slider-row .slick-slide, .banner-slider-row .slick-slide > div {
  height: 100%;
}
.banner-slider-row .banner-slider-item {
  width: 100%;
  height: 100%;
}
.banner-slider-row .banner-slider-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-slider-row .banner-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-slider-row .banner-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 720px;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 1199px) {
  .banner-slider-row .banner-caption {
    max-width: 690px;
  }
}
@media (max-width: 991px) {
  .banner-slider-row .banner-caption {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .banner-slider-row .banner-caption {
    max-width: calc(100vw - 50px);
  }
}
.banner-slider-row .banner-caption h4 {
  font-size: 18px;
  font-family: "Gordita-Medium", sans-serif;
  color: #8bc34a;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .banner-slider-row .banner-caption h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.banner-slider-row .banner-caption h2 {
  font-size: 48px;
  color: #252525;
  font-family: "Gordita-Medium", sans-serif;
  line-height: 1.34em;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .banner-slider-row .banner-caption h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .banner-slider-row .banner-caption h2 {
    font-size: 30px;
  }
}
.banner-slider-row .banner-caption p {
  font-size: 18px;
  color: #696969;
  line-height: 1.67em;
  max-width: 570px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .banner-slider-row .banner-caption p {
    font-size: 16px;
  }
}
.banner-slider-row .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.banner-slider-row .slick-dots li:not(:last-child) {
  margin-right: 8px;
}
.banner-slider-row .slick-dots li button {
  font-size: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #8bc34a;
  border-radius: 50%;
  background: none;
  outline: none;
  display: block;
}
.banner-slider-row .slick-dots li.slick-active button {
  background: #8bc34a;
}

.banner-slider .marquee-container {
  position: absolute;
  z-index: 99;
  width: 100%;
  background: #8bc34a;
}
.banner-slider .announcement-container {
  position: absolute;
  bottom: 150px;
  right: 175px;
  width: 100%;
  max-width: 400px;
  z-index: 99;
}
@media (max-width: 1199px) {
  .banner-slider .announcement-container {
    right: 35px;
  }
}
@media (max-width: 991px) {
  .banner-slider .announcement-container {
    bottom: 250px;
  }
}
@media (max-width: 767px) {
  .banner-slider .announcement-container {
    display: none;
  }
}
.banner-slider .announcement-container .announcement-icon {
  width: 55px;
  height: 55px;
  background: #ff9140;
  font-size: 27px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9;
}
.banner-slider .announcement-container .announcement-inner {
  /*background: rgba(255, 255, 255, .94);
  padding: 20px 30px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, .1);
  border-radius: 5px;*/
}
.banner-slider .announcement-container .announcement-icon-container {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.banner-slider .announcement-container .announcement-item {
  color: #252525;
  font-size: 13px;
  line-height: 18px;
  max-height: 220px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.94);
  padding: 20px 30px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .banner-slider .announcement-container .announcement-item {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .banner-slider .announcement-container .announcement-item {
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #EEF0F4;
    font-size: 13px;
    color: #696969;
  }
}
@media (max-width: 767px) {
  .banner-slider .announcement-container .announcement-item:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .banner-slider .announcement-container .announcement-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 30px 25px;
    overflow-y: auto;
    z-index: 999;
    display: none;
  }
}

.id-proof-image a {
  font-size: 12px;
  color: #8bc34a;
  padding-top: 8px;
  display: block;
}

.passport__validity {
  display: none;
}

@media (max-width: 767px) {
  .events-details-container.blog-details-container .event-detail-description .event-right-inner .event-right-row {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .events-details-container.blog-details-container .event-detail-description .event-right-inner .event-right-row:not(:last-child) {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .events-details-container.blog-details-container .event-detail-description .event-right-inner .event-right-row:not(:last-child) {
    padding-right: 0px;
  }
}

.contact-information-inner {
  background: rgba(139, 195, 74, 0.15);
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #8bc34a;
  border-radius: 5px;
}
.contact-information-inner p {
  margin: 0;
  font-size: 13px;
}

/*# sourceMappingURL=style.css.map */
