/*********************
Consistent Font Sizes
*********************/
/*********************
Center Block
*********************/
/*********************
Clearfix
*********************/
/*********************
transition
*********************/
/*********************
Centering Items
*********************/
/*********************
BREAKPOINTS
*********************/
/*********************
Placeholders for input
*********************/
/*********************
Animations
*********************/
/*********************
Transition
*********************/
@import url("https://fonts.googleapis.com/css2?Mulish:wght@400;500;600;700;800&family=Noto+Sans:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=Parisienne&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&family=Satisfy&display=swap");
/* =====global css starts=====*/
html {
  scroll-behavior: smooth;
  counter-reset: section;
}

:root {
  --blue: #116fd3;
  --darkblue: #0b1a2f;
  --red: #e11518;
  --yellow: #f8e203;
  --font-primary: "Rubik", sans-serif;
  --font-default: "Inter", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-default);
}

/* =====typography=====*/
a, i, button {
  transition: all 0.3s ease-in-out;
}

a, a:hover {
  text-decoration: none;
}

/* =====layout=====*/
img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease-in-out;
  max-width: 100%;
  height: auto;
}

.sp-tb {
  padding: 5% 0;
}

.sp-t {
  padding-top: 5%;
}

.sp-b {
  padding-bottom: 5%;
}

.maincontainer {
  width: 86%;
  margin: 0 auto;
  max-width: 1440px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .maincontainer {
    width: 90%;
  }
}

#page {
  max-width: 1600px;
  margin: 0 auto;
}

/* =====components=====*/
.btn:focus, .btn-link, button:focus, .form-select:focus {
  box-shadow: none;
  outline: none;
  text-decoration: none;
}

button {
  background-color: unset;
  border: none;
}

.btn-link:hover {
  text-decoration: none;
}

.form-control:focus, button:focus, .slick-slide:focus, a:focus {
  box-shadow: none;
  outline: none;
}

.mt {
  margin-top: 24px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .mt {
    margin-top: 20px;
  }
}
.mt {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .mt {
    margin-top: 16px;
  }
}

.mb {
  margin-bottom: 24px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .mb {
    margin-bottom: 20px;
  }
}
.mb {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .mb {
    margin-bottom: 16px;
  }
}

.btn-one {
  display: inline-block;
  padding-left: 20px;
  background-color: var(--blue);
  color: #fff;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.btn-one i {
  height: 50px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  margin-left: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .btn-one i {
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
}
.btn-one:hover {
  background-color: var(--red);
  color: #fff;
}
.btn-one.active {
  background-color: var(--red);
  color: #fff;
}
.btn-one.active:hover {
  background-color: var(--blue);
  color: #fff;
}
.btn-one.sm i {
  height: 40px;
  line-height: 40px;
  width: 40px;
}

.entry-title {
  font-size: 30px;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 20px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .entry-title {
    font-size: 28px;
  }
}
.entry-title {
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .entry-title {
    font-size: 26px;
  }
}
.entry-title {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .entry-title {
    margin-bottom: 16px;
    font-size: 22px;
  }
}

.entry-content {
  padding: 4%;
  border: 1px solid #ddd;
  border-radius: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .entry-content {
    border: none;
    padding: 0;
  }
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  font-size: 22px;
  font-family: var(--font-primary);
  font-weight: 600;
}
.entry-content p {
  text-align: justify;
}
.entry-content figure img {
  border-radius: 10px;
}

.site-main p {
  text-align: justify;
}

.google-map {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 5%;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .google-map {
    height: 300px;
  }
}
.google-map iframe {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

form label {
  margin-bottom: 4px;
}
form label span {
  color: red;
}
form input, form select {
  height: 44px;
}
form input, form select, form textarea {
  margin-bottom: 10px;
}
form textarea {
  height: 100px;
}
form input[type=submit] {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--blue);
  color: #fff;
  height: -moz-max-content;
  height: max-content;
  border: none;
  transition: all 0.3s ease-in-out;
}
form input[type=submit]:hover {
  background-color: var(--red);
  color: #fff;
}

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

.heading i {
  color: var(--yellow);
  font-size: 20px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heading i {
    font-size: 18px;
  }
}
.heading span {
  color: var(--darkblue);
}
.heading h2 {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 700;
  margin: 6px 0 0;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .heading h2 {
    font-size: 36px;
  }
}
.heading h2 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .heading h2 {
    font-size: 32px;
  }
}
.heading h2 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heading h2 {
    font-size: 28px;
  }
}
.heading h2 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heading h2 {
    font-size: 22px;
    margin: 2px 0 0;
  }
}
.heading i, .heading span {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heading i, .heading span {
    font-size: 15px;
  }
}
.heading.light span {
  color: #ddd;
}
.heading.light h2 {
  color: #fff;
}

.header-top {
  background-color: var(--darkblue);
  padding: 8px 0;
}

.ht-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .ht-inner {
    width: 96%;
    justify-content: center;
  }
}

.logo img {
  width: 250px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .logo img {
    width: 200px;
  }
}
.logo img {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .logo img {
    width: 130px;
  }
}

.ht-contact li {
  position: relative;
  display: inline-block;
}
.ht-contact li:not(:last-child) {
  margin-right: 16px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .ht-contact li:not(:last-child) {
    margin-right: 0;
  }
}
.ht-contact li:last-child {
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .ht-contact li:last-child {
    display: none;
  }
}
.ht-contact li:first-child {
  margin-right: 5px;
}
.ht-contact li i {
  color: var(--red);
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .ht-contact li i {
    font-size: 13px;
  }
}
.ht-contact li span {
  color: #fff;
  display: inline-block;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .ht-contact li span {
    display: none;
  }
}
.ht-contact li a {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 500;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .ht-contact li a {
    font-size: 15px;
  }
}
.ht-contact li a {
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .ht-contact li a {
    font-size: 13px;
    font-weight: 500;
  }
}

.social-media {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .social-media {
    margin-top: 4px;
  }
}
.social-media li {
  display: inline-block;
}
.social-media li:not(:last-child) {
  margin-right: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .social-media li:not(:last-child) {
    margin-right: 4px;
  }
}
.social-media li i {
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: var(--blue);
  transition: all 0.3s ease-in-out;
}
.social-media li i:hover {
  background-color: var(--red);
  color: #fff;
}
.social-media li i {
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .social-media li i {
    height: 28px;
    width: 28px;
    line-height: 28px;
    font-size: 14px;
  }
}

.header-btm {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}
.header-btm.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 6px 0;
}
.header-btm.active .logo img {
  width: 140px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .header-btm.active .logo img {
    width: 120px;
  }
}

.hm-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-wrapper #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .menu-wrapper #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    padding: 0 8px;
    font-size: 15px;
  }
}
.menu-wrapper #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .menu-wrapper #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    padding: 0 20px;
    font-size: 18px;
  }
}
.menu-wrapper #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  line-height: normal;
  padding: 10px;
}
.menu-wrapper #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .menu-wrapper #mega-menu-wrap-menu-1 .mega-menu-toggle + #mega-menu-menu-1 {
    width: 70%;
  }
}
@media screen and (max-width: 575px) {
  .menu-wrapper #mega-menu-wrap-menu-1 .mega-menu-toggle + #mega-menu-menu-1 {
    width: 80%;
  }
}
.menu-wrapper #mega-menu-wrap-menu-1 .mega-menu-toggle.mega-menu-open + #mega-menu-menu-1 {
  left: 0;
  transition: all 0.3s ease-in-out;
  padding: 10px 0;
}
.menu-wrapper #mega-menu-wrap-menu-1 .mega-menu-toggle {
  background-color: transparent;
}

.heroslider .swiper-slide {
  position: relative;
}
.heroslider .swiper-slide img {
  height: 600px;
  width: 100%;
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .heroslider .swiper-slide img {
    height: 550px;
  }
}
.heroslider .swiper-slide img {
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heroslider .swiper-slide img {
    height: 500px;
  }
}
.heroslider .swiper-slide img {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heroslider .swiper-slide img {
    height: 400px;
  }
}
.heroslider .swiper-slide img {
  /* Large Devices, Wide Screens */
}
@media (max-width: 479px) {
  .heroslider .swiper-slide img {
    height: 360px;
  }
}
.heroslider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to right, var(--darkblue) 0, rgba(255, 255, 255, 0) 100%);
}
.heroslider .swiper-slide .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding-left: 5%;
  width: 50%;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1199px) {
  .heroslider .swiper-slide .text {
    width: 60%;
  }
}
.heroslider .swiper-slide .text {
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .heroslider .swiper-slide .text {
    width: 70%;
  }
}
.heroslider .swiper-slide .text {
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heroslider .swiper-slide .text {
    width: 80%;
  }
}
.heroslider .swiper-slide .text {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heroslider .swiper-slide .text {
    width: 100%;
    padding: 0 5%;
    top: unset;
    transform: translateY(0);
    bottom: 1rem;
  }
}
.heroslider .swiper-slide .text h2 {
  font-size: 24px;
  color: var(--yellow);
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heroslider .swiper-slide .text h2 {
    font-size: 22px;
  }
}
.heroslider .swiper-slide .text h2 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heroslider .swiper-slide .text h2 {
    font-size: 18px;
  }
}
.heroslider .swiper-slide .text h3 {
  font-family: var(--font-primary);
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  margin: 16px 0 20px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .heroslider .swiper-slide .text h3 {
    font-size: 44px;
  }
}
.heroslider .swiper-slide .text h3 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .heroslider .swiper-slide .text h3 {
    font-size: 40px;
  }
}
.heroslider .swiper-slide .text h3 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heroslider .swiper-slide .text h3 {
    font-size: 30px;
  }
}
.heroslider .swiper-slide .text h3 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heroslider .swiper-slide .text h3 {
    font-size: 24px;
    margin: 8px 0 16px;
  }
}
.heroslider .swiper-slide .text p {
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .heroslider .swiper-slide .text p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.heroslider .swiper-nav {
  position: absolute;
  right: 1rem;
  bottom: 16%;
  display: flex;
  gap: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heroslider .swiper-nav {
    bottom: 16px;
    right: 10px;
  }
}
.heroslider .swiper-button-next, .heroslider .swiper-button-prev {
  color: #fff;
  height: 50px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin: unset;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heroslider .swiper-button-next, .heroslider .swiper-button-prev {
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
}
.heroslider .swiper-button-next::after, .heroslider .swiper-button-prev::after {
  font-size: 20px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .heroslider .swiper-button-next::after, .heroslider .swiper-button-prev::after {
    font-size: 16px;
  }
}

.welcome-img {
  position: relative;
  height: 100%;
  padding-right: 30px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .welcome-img {
    margin-bottom: 1rem;
    height: auto;
  }
}
.welcome-img img {
  height: 100%;
  width: 100%;
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .welcome-img img {
    height: auto;
  }
}
.welcome-img .experience {
  position: absolute;
  right: 0;
  bottom: 30px;
  padding: 10px 20px;
  text-align: center;
  background-color: var(--blue);
  color: #fff;
  border: 6px solid;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .welcome-img .experience {
    padding: 10px;
    bottom: 10px;
  }
}
.welcome-img .experience i {
  font-size: 40px;
  color: var(--yellow);
  margin-right: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .welcome-img .experience i {
    font-size: 20px;
    margin-right: 2px;
  }
}
.welcome-img .experience h2 {
  display: inline-block;
  margin: 0;
  line-height: 1;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 50px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .welcome-img .experience h2 {
    font-size: 26px;
  }
}
.welcome-img .experience span {
  display: block;
  font-weight: 300;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .welcome-img .experience span {
    font-size: 14px;
  }
}

.welcome-inner {
  padding-left: 40px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .welcome-inner {
    padding-left: 0;
  }
}

.welcome-content p {
  text-align: justify;
  color: #333;
  margin-bottom: 20px;
}
.welcome-content ul {
  margin-bottom: 1rem;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .welcome-content ul {
    margin-bottom: 10px;
  }
}
.welcome-content ul li {
  font-weight: 600;
  font-family: var(--font-primary);
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 18px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .welcome-content ul li {
    font-size: 16px;
  }
}
.welcome-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  line-height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--red);
  color: #fff;
  font-size: 14px;
  text-align: center;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .welcome-content ul li::before {
    height: 18px;
    line-height: 18px;
    width: 18px;
    font-size: 12px;
  }
}

.card1 {
  background-color: #f4f6f9;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.card1 .image {
  position: relative;
  overflow: hidden;
}
.card1 .image img {
  width: 100%;
  height: 260px;
}
.card1 .card-det {
  padding: 1rem;
}
.card1 .card-det h3 {
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  color: #222;
  line-height: normal;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.card1 .card-det h3:hover {
  color: var(--red);
}
.card1 .card-det h3 i {
  color: var(--red);
  margin-right: 6px;
}
.card1 .card-det h3 i {
  font-size: 20px;
}
.card1 .card-det p {
  color: #555;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.card1:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.card1:hover .image img {
  transform: scale(1.1);
}

.academicSlider .swiper-button-next, .academicSlider .swiper-button-prev {
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  color: var(--darkblue);
}
.academicSlider .swiper-button-next::after, .academicSlider .swiper-button-prev::after {
  font-size: 18px;
}

.gallerySlider .swiper-slide img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .gallerySlider .swiper-slide img {
    height: 280px;
  }
}

.mySwiper .swiper-button-next, .mySwiper .swiper-button-prev {
  height: 50px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .mySwiper .swiper-button-next, .mySwiper .swiper-button-prev {
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
}
.mySwiper .swiper-button-next::after, .mySwiper .swiper-button-prev::after {
  font-size: 18px;
}

.card2 {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .card2 {
    padding: 20px;
  }
}
.card2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--blue);
  z-index: -1;
  transform: scale(0) rotate(45deg);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.card2 .image {
  display: inline-block;
  background-color: #f4f5f9;
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .card2 .image {
    margin-bottom: 10px;
  }
}
.card2 .image img {
  width: 60px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .card2 .image img {
    width: 50px;
  }
}
.card2 h3, .card2 p, .card2 span {
  transition: all 0.3s ease-in-out;
}
.card2 h3 {
  color: #222;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 22px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .card2 h3 {
    font-size: 18px;
  }
}
.card2 p {
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  margin-bottom: 0;
}
.card2 span {
  color: var(--blue);
  font-weight: 500;
}
.card2:hover .image {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.card2:hover::before {
  transform: scale(1) rotate(0deg);
  border-radius: 0;
}
.card2:hover h3, .card2:hover span {
  color: #fff;
}
.card2:hover p {
  color: #ddd;
}

.message {
  background-image: linear-gradient(0deg, #091e2f, #0d2a6c);
}
.message .msg-intro h2 {
  color: #fff;
  font-size: 40px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .message .msg-intro h2 {
    font-size: 30px;
  }
}
.message .msg-intro h2 {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .message .msg-intro h2 {
    font-size: 20px;
  }
}
.message .msg-intro h3 {
  color: var(--yellow);
  margin-bottom: 20px;
  font-size: 26px;
  font-family: var(--font-primary);
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .message .msg-intro h3 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}
.message .msg-intro img {
  border: 10px solid rgba(0, 0, 0, 0.2);
}
.message .description {
  padding-left: 5%;
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .message .description {
    padding: 0;
    margin-top: 1rem;
  }
}
.message .description p {
  color: #fff;
  text-align: justify;
}

.news-events {
  background-color: #f5f5f5;
}

.event {
  background-color: #f5f5f5;
}

.card3 {
  padding: 1rem;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .card3 {
    padding: 8px;
  }
}
.card3 img {
  width: 100%;
  height: 260px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .card3 img {
    height: 240px;
  }
}
.card3 img {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .card3 img {
    height: 220px;
  }
}
.card3 .card-inner {
  margin-top: 1rem;
}
.card3 span, .card3 h3, .card3 h5 {
  transition: all 0.3s ease-in-out;
}
.card3 .date {
  border-right: 1px solid var(--red);
  padding-right: 10px;
  margin-right: 10px;
  color: #222;
}
.card3 .date h3 {
  font-weight: 900;
  font-family: var(--font-primary);
  margin: 0;
}
.card3 .date span {
  font-weight: 300;
  display: inline-block;
}
.card3 .event-det h5 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  font-family: var(--font-primary);
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .card3 .event-det h5 {
    font-size: 18px;
  }
}
.card3 .event-det div {
  margin-top: 8px;
  position: relative;
  padding-left: 20px;
}
.card3 .event-det i {
  color: var(--red);
  margin-right: 6px;
  position: absolute;
  top: 4px;
  left: 0;
}
.card3 .event-det span {
  color: #444;
  font-size: 14px;
}
.card3:hover {
  background-color: var(--blue);
}
.card3:hover .date {
  border-right-color: var(--yellow);
}
.card3:hover .date h3 {
  color: var(--yellow);
}
.card3:hover .date span {
  color: #fff;
}
.card3:hover .event-det h5 {
  color: #fff;
}
.card3:hover .event-det span {
  color: #ddd;
}
.card3:hover .event-det i {
  color: var(--yellow);
}

.eventslider .swiper-slide {
  height: auto;
}
.eventslider .swiper-button-next,
.eventslider .swiper-button-prev {
  height: 44px;
  line-height: 44px;
  width: 44px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.2);
  color: var(--blue);
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .eventslider .swiper-button-next,
  .eventslider .swiper-button-prev {
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
}
.eventslider .swiper-button-next::after,
.eventslider .swiper-button-prev::after {
  font-size: 16px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .eventslider .swiper-button-next::after,
  .eventslider .swiper-button-prev::after {
    font-size: 15px;
  }
}

.event-detail h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}
.event-detail ul {
  padding: 0;
}
.event-detail ul li {
  list-style-type: none;
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.event-detail ul li i {
  position: absolute;
  top: 4px;
  left: 0;
  color: var(--red);
}
.event-detail ul li span {
  font-weight: 500;
  font-family: var(--font-primary);
}
.event-detail p {
  text-align: justify;
}

.site-footer {
  background-color: var(--darkblue);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}
.site-footer .ft-title {
  color: #fff;
  font-family: var(--font-primary);
  margin-bottom: 20px;
  font-size: 20px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .site-footer .ft-title {
    margin-bottom: 16px;
  }
}
.site-footer .ft-title {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .site-footer .ft-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.site-footer .ft-inner.abt p {
  color: #fff;
  margin: 0;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
}
.site-footer .ft-inner.abt a {
  color: #0095da;
}
.site-footer.sp-b {
  padding-bottom: calc(5% - 24px);
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .site-footer.sp-b {
    padding-bottom: calc(5% - 20px);
  }
}
.site-footer.sp-b {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .site-footer.sp-b {
    padding-bottom: calc(5% - 16px);
  }
}

.soc-media {
  margin-top: 1rem;
}
.soc-media h6 {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 20px;
}
.soc-media.dark h6 {
  color: #222;
  font-weight: 600;
}
.soc-media li {
  display: inline-block;
}
.soc-media li:not(:last-child) {
  margin-right: 5px;
}
.soc-media li i {
  height: 38px;
  line-height: 38px;
  width: 38px;
  text-align: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
}
.soc-media li i:hover {
  background-color: var(--blue);
  color: #fff;
}

.contact-det li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 16px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .contact-det li {
    padding-left: 46px;
    margin-bottom: 10px;
  }
}
.contact-det li i {
  position: absolute;
  top: 4px;
  left: 0;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--blue);
  color: #fff;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .contact-det li i {
    height: 36px;
    line-height: 36px;
    width: 36px;
    font-size: 15px;
  }
}
.contact-det li span {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.contact-det li a {
  color: #fff;
  display: block;
}
.contact-det li a:hover {
  color: var(--blue);
}
.contact-det.dark li a, .contact-det.dark li span {
  color: #222;
}

.links li {
  padding-left: 24px;
  position: relative;
}
.links li:not(:last-child) {
  margin-bottom: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .links li:not(:last-child) {
    margin-bottom: 6px;
  }
}
.links li::before {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
}
.links li a {
  color: #fff;
  font-weight: 300;
}
.links li a:hover {
  color: var(--blue);
}

.facebook {
  position: relative;
  height: 200px;
}
.facebook iframe {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.copyright {
  background-color: var(--blue);
  text-align: center;
  padding: 2rem 1rem;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .copyright {
    padding: 1rem;
  }
}
.copyright p {
  color: #fff;
  margin-bottom: 0;
}
.copyright p a {
  color: #fff;
  font-weight: 500;
}

#scroll-top {
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 2;
}
#scroll-top i {
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  background-color: var(--red);
  color: #fff;
}

.notice-wrapper {
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .notice-wrapper {
    margin-top: 5%;
  }
}

.notice-header {
  background-color: var(--darkblue);
  text-align: center;
  padding: 16px;
  color: #fff;
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .notice-header {
    font-size: 20px;
    padding: 10px;
  }
}

.notice {
  padding: 16px;
  border: 1px solid #ddd;
}

.notice-item {
  position: relative;
  padding-left: 50px;
}
.notice-item span {
  position: absolute;
  top: 2px;
  left: 0;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  background-color: var(--blue);
  color: #fff;
  border-radius: 2px;
}
.notice-item .notice-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
  transition: all 0.3s ease-in-out;
}
.notice-item .notice-title:hover {
  color: var(--blue);
}
.notice-item .date {
  color: #444;
}
.notice-item .date i {
  color: var(--red);
}

.notice-wrapper .notice .notice-item:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #aaa;
}

.notice-page .notice-item {
  padding: 16px 16px 16px 66px;
  background-color: #d4e9f2;
  width: 100%;
}
.notice-page .notice-item span {
  top: 16px;
  left: 16px;
}

.page-intro h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .page-intro h4 {
    font-size: 20px;
  }
}
.page-intro p {
  font-weight: 300;
}

.open-hour p {
  margin-bottom: 5px;
  color: #777;
}
.open-hour p span {
  font-weight: 600;
  color: #333;
}
.open-hour p:last-child {
  margin-bottom: 0;
}

.contact-aside {
  padding: 30px;
  height: 100%;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  /* Large Devices, Wide Screens */
}
@media (max-width: 991px) {
  .contact-aside {
    margin-top: 5%;
    height: auto;
  }
}
.contact-aside {
  /* Large Devices, Wide Screens */
}
@media (max-width: 767px) {
  .contact-aside {
    padding: 20px;
  }
}
.contact-aside {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .contact-aside {
    padding: 16px;
  }
}
.contact-aside h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.gal-row {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .gal-row {
    margin: 0 -8px;
  }
}
.gal-row .gal-col {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .gal-row .gal-col {
    padding: 0 8px;
  }
}

.gal-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.gal-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4117647059);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.gal-image img {
  width: 100%;
  height: 260px;
  transition: all 0.5s ease-in-out;
  /* Large Devices, Wide Screens */
}
@media (max-width: 1300px) {
  .gal-image img {
    height: 200px;
  }
}
.gal-image img {
  /* Large Devices, Wide Screens */
}
@media (max-width: 575px) {
  .gal-image img {
    height: 130px;
  }
}
.gal-image i {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  background-color: var(--blue);
  color: #fff;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
}
.gal-image:hover::before {
  opacity: 1;
}
.gal-image:hover i {
  opacity: 1;
}
.gal-image:hover img {
  transform: scale(1.2);
}

.default-page .post-thumbnail {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}/*# sourceMappingURL=main.css.map */