@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: hidden;
}

@font-face {
  font-family: myFont;
  src: url(../Proxima-Nova-Font.otf);
}
body,
span {
  font-family: myFont !important;
}

.pre-loader {
  background: #fff;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100000;
}
.pre-loader .loading {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.pre-loader .loading .loader-icon {
  position: absolute;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  border: 7px solid #f3f3f3;
  border-radius: 50%;
  border-top: 7px solid #f59934;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}
.pre-loader .loading .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}
.pre-loader .loading .img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.pre-loader .loading span {
  transform: translateY(60px);
  display: block;
  font-size: 14px;
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

a {
  color: #000;
  font-family: myFont;
}
a:hover, a:focus {
  text-decoration: none;
  color: #000;
}

p {
  color: #3e3e51;
  font-family: myFont;
}

span,
h1,
h2,
h3,
h4,
h5 {
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.d-none {
  display: none;
}

.d-block {
  display: flex;
}

.non-active,
.v {
  background: transparent !important;
  border: 1px solid #f59934 !important;
  color: #f59934 !important;
}

.active {
  background: #f59934 !important;
  border: 1px solid transparent !important;
  color: #fff !important;
}

.active-nav {
  color: #f59934;
}

.photo-btn .uk-button,
.video-btn .uk-button {
  padding: 0 30px !important;
  color: #fff;
}

hr {
  border-top-color: #c5c1c1 !important;
}

.uk-button {
  text-transform: capitalize;
  background: #f59934;
  transition: all 0.3s ease-in-out;
  border-radius: 9px;
  padding: 0;
}
.uk-button a {
  color: #fff;
  display: block;
  padding: 0 30px;
}
.uk-button:hover {
  transform: translateY(-10px);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: transparent;
  border: 2px solid #f59934;
  transition: width 0.3s linear, height 0.3s linear;
}

.swiper-pagination-bullet-active {
  border: 5px solid #f59934;
  width: 20px;
  height: 20px;
}

header {
  position: relative;
}

.head {
  border-bottom: 1px solid #c5c1c1;
  margin-bottom: 10px;
}
.head .head-info {
  background: #f59934;
  -webkit-clip-path: polygon(0 0, 100% 0%, 90% 99%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 90% 99%, 0% 100%);
  padding-right: 6rem;
  padding-left: 40px;
}
.head .head-info p {
  margin: 0;
  color: #fff;
  padding: 0.5rem 1rem;
}
.head .uk-icon {
  color: #000;
}
.head .head-icon {
  background: #f59934;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
  padding-left: 6rem;
  padding-right: 40px;
}
.head .head-icon a {
  display: inline-block;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 0;
  color: #fff;
}
.head .head-icon a:hover {
  transform: translateY(-5px);
}

.site-nav {
  background: #fff;
}
.site-nav .logo {
  display: flex;
  align-items: center;
}
.site-nav .logo img {
  height: 60px;
}
.site-nav .logo .p1 {
  color: #f59934;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  line-height: 18px;
  margin-bottom: 5px;
}
.site-nav .navbar {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.site-nav .navbar li .active {
  color: #f59934;
}
.site-nav .navbar li .nav-item {
  font-size: 15px;
  text-transform: capitalize;
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  padding: 0.3rem 0.7rem;
  display: block;
}
.site-nav .navbar li .nav-item:hover {
  color: #f59934;
}
.site-nav .navbar li .nav-item:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  top: 100%;
  left: 0.05em;
  right: 0.05em;
  background: #f59934;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
}
.site-nav .navbar li .nav-item:hover:after {
  transform: scaleX(1);
  transition-duration: 0.9s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: 0 50%;
}
.site-nav .navbar li:nth-child(6):hover .nav-item:after {
  display: none;
}
.site-nav .navbar .uk-navbar-dropdown {
  display: block;
  position: absolute;
  z-index: 1024;
  box-sizing: border-box;
  width: 200px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  top: 150%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.site-nav .navbar .uk-navbar-dropdown .dropdown-list {
  color: #555;
  position: relative;
  display: inline-block;
  padding: 5px;
  transition: all 0.3s ease-in-out;
}
.site-nav .navbar .uk-navbar-dropdown .dropdown-list:hover {
  letter-spacing: 1px;
  color: #000;
}
.site-nav .navbar .dropdown:hover .uk-navbar-dropdown {
  top: 100% !important;
  opacity: 1;
  visibility: visible;
}
.site-nav .navbar .dropdown:hover .nav-item {
  color: #f59934;
}
.site-nav .navbar .uk-icon > svg {
  transition: all 0.3s ease-in-out;
  color: #000;
  margin-left: 0.3rem;
  width: 15px;
}
.site-nav .navbar .dropdown:hover .uk-icon > svg {
  transform: rotate(-180deg);
  color: #f59934;
}
.site-nav .hamburger-menu {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease-in-out;
}
.site-nav .hamburger-menu a {
  color: #555;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.site-nav .hamburger-menu a span {
  display: block;
  text-align: center;
  line-height: 45px;
}
.site-nav .hamburger-menu a:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
  border: none;
}
.site-nav .hamburger-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: #f59934;
  border-radius: 9px 0 0 9px;
  height: 0;
  width: 100%;
  border-radius: 0 0 50% 50%;
  transition: 0.5s;
  z-index: -1;
}
.site-nav .hamburger-menu a:hover::before {
  height: 180%;
}

.uk-active {
  box-shadow: 0 -2px 5px #555;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#offcanvas-slide .uk-offcanvas-bar {
  background: #f59934;
  cursor: default;
  width: 250px;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
#offcanvas-slide .uk-offcanvas-bar .uk-accordion-title::before {
  display: none;
}
#offcanvas-slide .uk-offcanvas-bar .uk-offcanvas-close {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
#offcanvas-slide .uk-offcanvas-bar .uk-offcanvas-close:hover {
  color: red;
}
#offcanvas-slide .uk-offcanvas-bar .logo img {
  width: 130px;
  margin: 0 auto;
  display: block;
}
#offcanvas-slide .uk-offcanvas-bar .navbar {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#offcanvas-slide .uk-offcanvas-bar .navbar li {
  border-bottom: 1px solid #c5c1c1;
}
#offcanvas-slide .uk-offcanvas-bar .navbar li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  justify-content: flex-start;
  display: block;
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}
#offcanvas-slide .uk-offcanvas-bar .navbar li a:hover {
  letter-spacing: 1px;
}
#offcanvas-slide .uk-offcanvas-bar .navbar .uk-accordion-content {
  background: rgb(255, 255, 255);
}
#offcanvas-slide .uk-offcanvas-bar .navbar .uk-accordion-content .uk-nav li {
  border-bottom: none;
}
#offcanvas-slide .uk-offcanvas-bar .navbar .uk-accordion-content .uk-nav li a {
  font-size: 14px;
  padding: 0.7rem 1rem;
}
#offcanvas-slide .uk-offcanvas-bar .navbar .uk-accordion-content .dropdown-list {
  color: #555;
}
#offcanvas-slide .uk-offcanvas-bar .navbar .uk-accordion-title > span {
  transition: transform 0.5s;
  margin-left: 0.3rem;
  width: 15px;
}
#offcanvas-slide .uk-offcanvas-bar .navbar .uk-open > .uk-accordion-title > span {
  transform: rotate(90deg);
}
#offcanvas-slide .uk-offcanvas-bar .navbar .uk-open > .uk-accordion-title {
  font-weight: bold;
  letter-spacing: 1px;
}
#offcanvas-slide .uk-offcanvas-bar::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
#offcanvas-slide .uk-button {
  background: transparent !important;
  border: 1px solid #fff;
  margin-top: 1rem;
  transition: all 0.3s ease-in-out;
}
#offcanvas-slide .uk-button a {
  transition: all 0.3s ease-in-out;
}
#offcanvas-slide .uk-button:hover {
  background: #fff !important;
}
#offcanvas-slide .uk-button:hover a {
  color: #f59934 !important;
}
#offcanvas-slide .overlay {
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.hero-banner {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 85%, 50% 100%, 0 85%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 85%, 50% 100%, 0 85%);
  position: relative;
  z-index: 100;
}
.hero-banner .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.hero-banner .swiper .swiper-wrapper .swiper-slide img {
  max-height: calc(100vh - 5rem);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-banner .swiper-button-next,
.hero-banner .swiper-button-prev {
  background: #f59934;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.hero-banner .swiper-button-next:hover,
.hero-banner .swiper-button-prev:hover {
  transform: translateY(-7px);
}
.hero-banner .swiper-button-next:after {
  margin-left: 2px;
}
.hero-banner .swiper-button-prev:after {
  margin-right: 2px;
}
.hero-banner .swiper-button-next:after,
.hero-banner .swiper-button-prev:after {
  font-size: 16px;
}
.hero-banner .swiper-button-next.swiper-button-disabled,
.hero-banner .swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}
.hero-banner:hover .swiper-button-next, .hero-banner:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}

.title h2,
.title h5 {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
.title h5 {
  color: #f59934;
}

.why-choose-us {
  background: linear-gradient(180deg, rgba(254, 249, 228, 0) 0%, #fef9e4 100%);
  padding-top: 9rem;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
  margin-top: -95px;
}
.why-choose-us .content {
  margin-top: 2rem;
}
.why-choose-us .content .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}
.why-choose-us .content .wrap i {
  color: #f59934;
  font-size: 30px;
}
.why-choose-us .content .wrap span {
  display: inline-block;
  background: #ffffff;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
  border-radius: 9px;
  padding: 0.5rem 1rem;
  font-weight: bold;
  margin-left: 1rem;
  font-size: 14px;
}
.why-choose-us .content .wrap:last-child {
  margin-bottom: 0;
}
.why-choose-us .content .bg {
  background: linear-gradient(107.82deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.12) 99.45%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 30px;
  padding: 3rem;
  margin: 3rem 0;
}
.why-choose-us .content .bg h5 {
  font-weight: bold;
}
.why-choose-us .content-bg {
  position: absolute;
  background-image: url(../img/cloud-bg1.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center;
}

.our-facility {
  padding-top: 3rem;
  position: relative;
  padding-bottom: 3rem;
}
.our-facility .content {
  margin-top: 2rem;
}
.our-facility .content .swiper-wrapper {
  padding-bottom: 4rem;
}
.our-facility .content .swiper-wrapper .wrapper {
  background: #ffffff;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}
.our-facility .content .swiper-wrapper .wrapper a {
  display: block;
}
.our-facility .content .swiper-wrapper .wrapper a:hover h5 {
  color: #f59934;
  font-weight: bold;
  transform: translateY(5px);
}
.our-facility .content .swiper-wrapper .wrapper a:hover img {
  transform: scale(1.1);
}
.our-facility .content .swiper-wrapper .wrapper a img {
  transition: all 0.3s ease-in-out;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-facility .content .swiper-wrapper .wrapper a h5 {
  text-align: center;
  font-weight: bold;
  margin: 1rem 1rem 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 20px;
  z-index: 1;
}
.our-facility .content .swiper-wrapper .wrapper .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, #000);
  top: 0;
  left: 0;
}
.our-facility .content-bg {
  position: absolute;
  background-image: url(../img/product_bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center;
}

.admission {
  background-image: url(../img/img3.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.admission .content {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.admission .content span {
  font-weight: bold;
  font-size: 20px;
}
.admission .content h1 {
  font-weight: bold;
  margin: 1rem 0;
}
.admission .content .uk-button {
  margin-top: 1rem;
}
.admission:hover .content {
  opacity: 1;
}
.admission .overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(254, 250, 231, 0.73);
}

.our-event {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow-x: hidden;
}
.our-event .content {
  margin-top: 2rem;
}
.our-event .content .swiper-wrapper {
  padding-top: 2rem;
  padding-left: 2rem;
  padding-bottom: 4rem;
}
.our-event .content .swiper-wrapper .wrapper .event-img {
  position: relative;
  padding-right: 3rem;
}
.our-event .content .swiper-wrapper .wrapper .event-img .event-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  width: calc(100% - 3rem);
  padding: 0.5rem 1rem;
}
.our-event .content .swiper-wrapper .wrapper .event-img .event-detail span {
  color: #fff;
  display: inline-block;
  margin-right: 3rem;
}
.our-event .content .swiper-wrapper .wrapper .event-img .event-date {
  position: absolute;
  background: #f59934;
  padding: 0.5rem 1rem;
  top: -20px;
  left: -20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.our-event .content .swiper-wrapper .wrapper .event-img .event-date span {
  color: #fff;
  display: inline-block;
}
.our-event .content .swiper-wrapper .wrapper .event-img .event-date .border {
  background-image: url(../img/border.png);
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left;
}
.our-event .content .swiper-wrapper .wrapper .event-content {
  background: linear-gradient(202.33deg, #fef9e4 14.57%, rgba(254, 249, 228, 0) 82.36%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  /* Note: backdrop-filter has minimal browser support */
  width: calc(100% - 3rem);
  border-radius: 30px;
  padding: 3rem;
}
.our-event .content .swiper-wrapper .wrapper .event-content h3 {
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.our-event .content-bg {
  position: absolute;
  background-image: url(../img/footer_bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center;
}

.our-gallery {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}
.our-gallery .content {
  margin-top: 2rem;
}
.our-gallery .content .swiper-wrapper {
  padding-bottom: 4rem;
}
.our-gallery .content .swiper-wrapper .gallery-img {
  overflow: hidden;
}
.our-gallery .content .swiper-wrapper .gallery-img img {
  transition: all 0.3s ease-in-out;
  border: 7px solid #f59934;
}
.our-gallery .content .swiper-wrapper .gallery-img img:hover {
  transform: scale(1.1);
  border: 7px solid transparent;
}
.our-gallery .content-bg {
  position: absolute;
  background-image: url(../img/img4.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center;
}
.our-gallery .content-bg .overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
}

#foot footer {
  padding-top: 6rem;
}

#resp_foot footer {
  padding-top: 0;
}

footer {
  padding-top: 3rem;
  position: relative;
  background: linear-gradient(180deg, rgba(254, 249, 228, 0) 0%, #fef9e4 100%);
  z-index: 1;
}
footer .footer-wrapper h4 {
  margin: 0;
  color: #f59934;
  font-weight: bold;
}
footer .footer-wrapper .footer-info img {
  height: 50px;
  margin-right: 1rem;
}
footer .footer-wrapper .uk-list li,
footer .footer-wrapper .social-media li {
  color: #3e3e51;
  transition: all 0.3s ease-in-out;
  display: table;
}
footer .footer-wrapper .uk-list li a,
footer .footer-wrapper .social-media li a {
  color: #3e3e51;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .uk-list li a:hover,
footer .footer-wrapper .social-media li a:hover {
  color: #f59934 !important;
}
footer .footer-wrapper .uk-list li:hover,
footer .footer-wrapper .social-media li:hover {
  color: #f59934 !important;
}
footer .footer-wrapper .uk-list a,
footer .footer-wrapper .social-media a {
  color: #3e3e51;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .uk-list a:hover,
footer .footer-wrapper .social-media a:hover {
  color: #f59934 !important;
}
footer .foot {
  margin-bottom: 20px !important;
}
footer .foot a {
  transition: all 0.3s ease-in-out;
}
footer .foot a:hover {
  color: #f59934;
}
footer .content-bg {
  position: absolute;
  background-image: url(../img/footer_bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: bottom;
}

.go-to-top {
  cursor: pointer;
  display: inline-block;
  right: 3%;
  top: 80%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1024;
  transition: all 1s linear;
}
.go-to-top i {
  color: #f59934;
  transition: all 0.3s ease-in-out;
}
.go-to-top:hover i {
  transform: translateY(-10px);
}

.breadcrumb {
  background: linear-gradient(180deg, rgba(254, 249, 228, 0) 0%, #fef9e4 100%);
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  z-index: 1;
}
.breadcrumb .txt {
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb .txt h2 {
  margin: 0;
  color: #f59934;
  font-weight: bold;
}
.breadcrumb .txt a {
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.breadcrumb .txt a:hover {
  transform: translateY(-5px);
  color: #f59934;
}
.breadcrumb .txt i {
  margin: 0 0.5rem;
  color: #f59934;
  font-size: 20px;
}
.breadcrumb .content-bg {
  position: absolute;
  background-image: url(../img/footer_bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.facility {
  position: relative;
  padding-top: 3rem;
}
.facility .facility-pages {
  margin-top: 3rem;
}
.facility .facility-pages .wrapper {
  margin-bottom: 3rem;
}
.facility .facility-pages .wrapper .content {
  background: #ffffff;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}
.facility .facility-pages .wrapper .content a {
  display: block;
}
.facility .facility-pages .wrapper .content a:hover h5 {
  color: #f59934;
  font-weight: bold;
  transform: translateY(5px);
}
.facility .facility-pages .wrapper .content a:hover img {
  transform: scale(1.1);
}
.facility .facility-pages .wrapper .content a img {
  transition: all 0.3s ease-in-out;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.facility .facility-pages .wrapper .content a h5 {
  text-align: center;
  font-weight: bold;
  margin: 1rem 1rem 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 20px;
  z-index: 1;
}
.facility .facility-pages .wrapper .content .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, #000);
  top: 0;
  left: 0;
}

.facility-main-content {
  background: linear-gradient(180deg, rgba(254, 249, 228, 0) 0%, #fef9e4 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.facility-main-content img {
  border: 10px solid #fff;
  margin-bottom: -100px !important;
}
.facility-main-content .bg {
  background: linear-gradient(107.82deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.12) 99.45%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 30px;
  padding: 2rem;
}
.facility-main-content .bg h3 {
  font-weight: bold;
  color: #f59934;
}

.gallery {
  padding-top: 3rem;
  position: relative;
}
.gallery .gallery-pages {
  margin-top: 3rem;
}
.gallery .gallery-pages .wrapper {
  margin-bottom: 3rem;
}
.gallery .gallery-pages .wrapper .content .gallery-img {
  overflow: hidden;
}
.gallery .gallery-pages .wrapper .content .gallery-img img {
  transition: all 0.3s ease-in-out;
  border: 7px solid #f59934;
  height: 210px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .gallery-pages .wrapper .content .gallery-img img:hover {
  transform: scale(1.1);
  border: 7px solid transparent;
}
.gallery .gallery-pages .wrapper .content .gallery-img iframe {
  border: 7px solid #f59934;
}

.event {
  margin-top: 3rem;
}
.event .event-pages {
  margin-top: 3rem;
}
.event .event-pages .wrapper {
  margin-bottom: 6rem;
}
.event .event-pages .wrapper:last-child {
  margin-bottom: 3rem;
}
.event .event-pages .event-img {
  position: relative;
  padding-right: 3rem;
}
.event .event-pages .event-img .event-detail {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  width: calc(100% - 3rem);
  padding: 0.5rem 1rem;
}
.event .event-pages .event-img .event-detail span {
  color: #fff;
  display: inline-block;
  margin-right: 3rem;
}
.event .event-pages .event-img .event-date {
  position: absolute;
  background: #f59934;
  padding: 0.5rem 1rem;
  top: -20px;
  left: -20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.event .event-pages .event-img .event-date span {
  color: #fff;
  display: inline-block;
}
.event .event-pages .event-img .event-date .border {
  background-image: url(../img/border.png);
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left;
}
.event .event-pages .event-content {
  background: linear-gradient(202.33deg, #fef9e4 14.57%, rgba(254, 249, 228, 0) 82.36%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  /* Note: backdrop-filter has minimal browser support */
  width: calc(100% - 3rem);
  border-radius: 30px;
  padding: 3rem;
}
.event .event-pages .event-content h3 {
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.event-main-content {
  margin-top: 3rem;
  padding-bottom: 2rem;
}
.event-main-content .date {
  background: #fefae7;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  display: inline-block;
  margin-bottom: 1rem;
}
.event-main-content .date span {
  color: #f59934;
  font-weight: bold;
  font-size: 14px;
}
.event-main-content .info i,
.event-main-content .info span {
  color: #737383;
  font-size: 14px;
}
.event-main-content .info div {
  margin-bottom: 1rem;
}
.event-main-content .content {
  background: linear-gradient(202.33deg, #fef9e4 14.57%, rgba(254, 249, 228, 0) 82.36%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  /* Note: backdrop-filter has minimal browser support */
  width: calc(100% - 3rem);
  border-radius: 30px;
  padding: 2rem 3rem;
  margin-top: 1rem;
}
.event-main-content .content h3 {
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.event-main-content .content span {
  color: #737383;
  font-size: 14px;
}

.about .section-1 {
  background: linear-gradient(180deg, rgba(254, 249, 228, 0) 0%, #fef9e4 100%);
  background-attachment: fixed;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.about .section-1 .image {
  position: relative;
  border-radius: 50%;
  display: inline-block;
}
.about .section-1 .image img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about .section-1 .image .img-bg {
  width: 300px;
  height: 300px;
  background: #f59934;
  position: absolute;
  border-radius: 50%;
  top: -15px;
  left: -15px;
  z-index: 1;
}
.about .section-1 .image .img-top-bg {
  width: 30px;
  height: 30px;
  background: #f59934;
  position: absolute;
  border-radius: 50%;
  top: -15px;
  left: -15px;
  z-index: 1;
  -webkit-animation: zoom-in 3s ease infinite;
          animation: zoom-in 3s ease infinite;
}
.about .section-1 .image .img-bottom-bg {
  width: 15px;
  height: 15px;
  background: #f59934;
  position: absolute;
  border-radius: 50%;
  bottom: 15px;
  right: 15px;
  z-index: 1;
  -webkit-animation: zoom-out 3s ease infinite;
          animation: zoom-out 3s ease infinite;
}
@-webkit-keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.3);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes zoom-out {
  0% {
    transform: scale(0.3);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.3);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(0.3);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.3);
  }
}
.about .section-1 .bg {
  background: linear-gradient(107.82deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.12) 99.45%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 30px;
  padding: 2rem;
}
.about .section-1 .bg h3 {
  font-weight: bold;
  color: #f59934;
}
.about .section-2 {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.about .section-2 .benefit-content {
  padding: 2rem;
  background: #fff;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}
.about .section-2 .benefit-content img {
  height: 50px;
  display: block;
  margin: 0 auto;
}
.about .section-2 .benefit-content h4,
.about .section-2 .benefit-content p {
  text-align: center;
  margin: 0;
}
.about .section-2 .benefit-content h4 {
  font-weight: bold;
  margin: 1rem 0;
}
.about .section-2 .active-content {
  background: #fefae7;
  transform: translateY(-50px);
}
.about .section-2 .active-content img {
  -webkit-animation: rotation 3s infinite linear;
          animation: rotation 3s infinite linear;
}
.about .section-2 .active-content h4 {
  color: #f59934;
}
@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.about .section-2 .content-bg {
  position: absolute;
  background-image: url(../img/img4.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center;
}
.about .section-2 .content-bg .overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
}
.about .section-3 {
  margin-top: 0 !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.about .section-3 .content .wrap span small {
  font-size: 14px;
  font-weight: normal;
  margin: 0 0.5rem;
}
.about .section-3 .content .wrap span strong {
  font-size: 20px;
  margin-left: 0.5rem;
  font-weight: normal;
}
.about .section-3 .img {
  overflow: hidden;
  cursor: pointer;
}
.about .section-3 .img img {
  transition: all 0.3s ease-in-out;
  border: 7px solid #f59934;
}
.about .section-3 .img img:hover {
  transform: scale(1.1);
  border: 7px solid transparent;
}
.about .section-4 {
  background: linear-gradient(180deg, rgba(254, 249, 228, 0) 0%, #fef9e4 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.about .section-4 img {
  border: 10px solid #fff;
  margin-bottom: -100px;
}
.about .section-4 .bg {
  background: linear-gradient(107.82deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.12) 99.45%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 30px;
  padding: 2rem;
}
.about .section-4 .bg h3 {
  font-weight: bold;
  color: #f59934;
}

.contact {
  margin-top: 3rem;
}
.contact .content {
  background: linear-gradient(107.82deg, rgba(254, 249, 228, 0.48) 0%, rgba(254, 249, 228, 0.12) 99.45%);
  -webkit-backdrop-filter: blur(75px);
          backdrop-filter: blur(75px);
  margin-top: 3rem;
  padding: 0;
}
.contact .content h5 {
  margin: 0;
  color: #f59934;
  font-weight: bold;
}
.contact .content form {
  margin-top: 2rem;
}
.contact .content form .form-field {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column-reverse;
}
.contact .content form .form-field label {
  color: #000;
}
.contact .content form .form-field input,
.contact .content form .form-field textarea {
  background: transparent;
  border-radius: 9px;
  border: 1px solid #c5c1c1;
}
.contact .content form .form-field .uk-input:focus,
.contact .content form .form-field .uk-select:focus,
.contact .content form .form-field .uk-textarea:focus {
  border-color: #f59934 !important;
}
.contact .content form .form-field .uk-input:focus + label,
.contact .content form .form-field .uk-select:focus + label,
.contact .content form .form-field .uk-textarea:focus + label {
  color: #f59934 !important;
}
.contact .content .contact-info {
  background: linear-gradient(180deg, #fef9e4 0%, rgba(254, 249, 228, 0) 100%);
  padding: 0;
}
.contact .content .contact-info .wrapper {
  margin: 3rem 0;
}
.contact .content .contact-info .wrapper i {
  color: #3e3e51;
  font-size: 50px;
  text-align: center;
  display: block;
}
.contact .content .contact-info .wrapper p {
  text-align: center;
  margin: 0.5rem;
}
.contact .map {
  margin-top: 2rem;
}

.admission-form .content {
  padding: 3rem;
}
.admission-form .uk-radio:checked {
  background-color: #f59934;
}

@media (max-width: 1199.9px) {
  .site-nav {
    padding-top: 0.5rem;
  }
  .breadcrumb {
    border-top: 1px solid #c5c1c1;
  }
  .event-main-content .wrapper img,
.event-main-content .wrapper .wrap {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
  .event-main-content .wrapper .date {
    margin-top: 1rem;
  }
}
@media (max-width: 959.9px) {
  .our-event .content .wrapper .event-img,
.our-event .content .wrapper .event-content,
.event .content .wrapper .event-img,
.event .content .wrapper .event-content {
    width: 75%;
    margin: 0 auto;
  }
  .our-event .content .wrapper .event-img .event-detail,
.event .content .wrapper .event-img .event-detail {
    width: 100% !important;
  }
  .our-event .content .wrapper .event-content,
.event .content .wrapper .event-content {
    margin-top: 3rem;
    margin-right: 3rem;
    padding: 2rem !important;
  }
  .our-event .content .wrapper .event-content p,
.event .content .wrapper .event-content p {
    padding-right: 0 !important;
  }
  .event .event-pages {
    width: 85%;
  }
  .event .content .wrapper .event-content {
    margin-right: 6rem;
  }
  .event .content .wrapper .event-img {
    padding-right: 0;
  }
  .event .content .wrapper .event-img .event-detail {
    width: 100%;
  }
  .event-main-content .wrapper .wrap {
    width: 75%;
  }
  .facility-main-content {
    padding-top: 0.5rem;
  }
  footer .footer-wrapper h4 {
    margin-top: 1rem;
  }
  .about .section-2 {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
  .about .section-2 .benefit-content {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
  .about .section-2 .active-content {
    transform: translateY(-20px);
  }
  .about .section-3 .content .wrap {
    justify-content: center;
  }
  .about .section-3 .content img {
    width: 50%;
    margin: 0 auto;
    margin-top: 2rem;
    display: block;
  }
  .about .section-4 .bg,
.about .section-4 img {
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .about .section-4 img {
    width: 50%;
  }
  .about .section-4 .bg {
    width: 75%;
  }
  .facility-main-content .bg,
.facility-main-content img {
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .facility-main-content img {
    width: 50%;
  }
  .facility-main-content .bg {
    width: 75%;
  }
}
@media (max-width: 767.9px) {
  .about .section-1 .uk-grid {
    flex-direction: column;
  }
  .about .section-1 .uk-grid .image img {
    width: 200px;
    height: 200px;
  }
  .about .section-1 .uk-grid .image .img-bg {
    width: 200px;
    height: 200px;
    top: -10px;
    left: -10px;
  }
  .about .section-1 .uk-grid .image .img-top-bg {
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
  }
  .about .section-1 .uk-grid .image .img-bottom-bg {
    width: 10px;
    height: 10px;
    bottom: 10px;
    right: 10px;
  }
  .about .section-1 .uk-grid .wrap {
    width: 100%;
  }
  .about .section-2 .benefit-content {
    width: 75%;
  }
  .about .section-3 .content img {
    width: 75%;
  }
  .event-main-content .wrapper img {
    width: 75%;
  }
  .event-main-content .wrapper .wrap .content {
    width: 100%;
    padding: 2rem;
  }
  .about .section-4 img {
    width: 75%;
  }
  .facility-main-content img {
    width: 75%;
  }
}
@media (max-width: 639.9px) {
  p {
    font-size: 14px;
  }
  h3 {
    font-size: 20px;
  }
  .title h2 {
    font-size: 22px;
  }
  .breadcrumb .txt h2 {
    font-size: 18px;
  }
  .breadcrumb .txt i,
.breadcrumb .txt a {
    font-size: 16px;
  }
  .our-event .content .wrapper .event-img,
.our-event .content .wrapper .event-content,
.event .content .wrapper .event-img,
.event .content .wrapper .event-content {
    width: 100%;
  }
  .event-main-content .wrapper img,
.event-main-content .wrapper .wrap {
    width: 100%;
  }
  .about .section-1 {
    padding-bottom: 3rem;
  }
  .about .section-2 .benefit-content {
    width: 100%;
  }
  .about .section-3 .content img {
    width: 100%;
  }
  .about .section-4 {
    padding-top: 0;
  }
  .about .section-4 .bg,
.about .section-4 img {
    width: 100%;
  }
  .facility-main-content .bg,
.facility-main-content img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .why-choose-us .content .wrap span {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */