/* Fonts */
:root {
  --font-default: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Playfair Display", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #ffa800;
  --color-secondary: #070664;
  --white-color:#ffffff;
  
  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #070664;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 25px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 50px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(86, 184, 230, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #880a0a;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
  background: rgba(27, 47, 69, 0.9);
  padding: 12px 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
  margin: 0;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(27, 47, 69, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/bg/1.png") top center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.7);
  inset: 0;
  z-index: -1;
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgba(27, 47, 69, 0.7);
  }
}

.hero .container {
  z-index: 1;
  position: relative;
  align-items: center;
  text-align: center;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-primary);
}

.hero .d-flex {
  display: flex;
  align-items: center;
  justify-content: center; 
  margin-top: 20px; 
}

.hero .d-flex a {
  margin: 0 20px;
}

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  margin: 40px 0;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  min-width: 150px;
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.hero .btn-watch-video {
  font-size: 15px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;

}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 30px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #82cbed;
}

@media (max-width: 720px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
    min-width: auto;
  }
}

.input-box {
  width: 200px; /* Adjust width as needed */
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.admin-popup {
  display: none; 
  position:absolute; 
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1000; 
  overflow-y: auto; 
  padding: 10px; 
}

.admin-popup-content {
  position: relative;
  max-width: 90%;
  width: 70%;
  max-height: 50vh; 
  margin: auto; 
  padding: 20px;
  top:25%;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto; 
}

.admin-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/
.count-box-container {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
  padding: 10px;
}

.about .count-box i {
  display: block;
  font-size: 40px;
  color: var(--color-primary);
  float: left;
  line-height: 0;
}

.about .count-box span {
  font-size: 28px;
  font-family: Playfair Display;
  line-height: 10px;
  display: block;
  font-weight: 700;
  color: #000;
  margin-left: 60px;
}

.about .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Monsterrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.about .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #646c55;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  transition: ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Home Slider
--------------------------------------------------------------*/
.homeslide-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  flex: 1;
  margin-right: 20px;
  overflow: hidden;
  border: 2px solid #ccc; 
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slide{
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
}

.navigation-dots {
  text-align: center;
  padding: 10px;
}

.dot {
  height: 15px;
  width: 15px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #717171;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

.prev {
  left: 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.calendar {
  flex: 1;
  min-width: 300px; /* Adjust this value based on your design */
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
  .content-wrapper {
      flex-direction: column;
  }

  .homeslide-container,
  .calendar {
      flex: 1 1 100%;
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 20px; /* Adds spacing between slideshow and calendar */
  }
}

/* Calendar specific styles */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.month-year {
  font-size: 18px;
}

.calendar-body {
  display: flex;
  flex-direction: column;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day-name {
  text-align: center;
  font-weight: bold;
  padding: 5px;
}

.day {
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.day:hover {
  background-color: #f0f0f0;
}

.event {
  background-color: #ffecb3;
  border-radius: 4px;
  margin-top: 2px;
  padding: 2px;
  font-size: 12px;
}

/*--------------------------------------------------------------
# Who We Are Section
--------------------------------------------------------------*/
.who {
  padding: 0;
}

.who .img-bg {
  min-height: 500px;
  background-size: cover;
}

.who .slides {
  background-color: #f7f9fc;
}

.who h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

.who h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.who .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.who .swiper-button-prev:after,
.who .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.who .swiper-button-prev {
  left: 80px;
}

.who .swiper-button-next {
  right: 80px;
}

.who .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.who .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}

.who .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 1200px) {
  .who.swiper {
    margin: 60px 60px 40px 60px;
  }

  .who .swiper-button-prev,
  .who .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .who .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .who {
  padding: 0 0 80px 0;
}


/*--------------------------------------------------------------
# How To Section
--------------------------------------------------------------*/
.howto{
  padding-top: 35px;
}
.howto .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.howto .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.howto .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.howto .card-title a {
  color: #3c4133;
}

.howto .card-text {
  color: #5e5e5e;
}

.howto .read-more a {
  color: #c41e1e;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.howto .read-more a:hover {
  text-decoration: underline;
}

.howto .card:hover .card-body {
  background-color: var(--color-primary);
}

.howto .card:hover .read-more a,
.howto .card:hover .card-title,
.howto .card:hover .card-title a,
.howto .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Guidelines Section
--------------------------------------------------------------*/
.guidelines .faq-list {
  padding: 0 100px;
}

.guidelines .faq-list ul {
  padding: 0;
  list-style: none;
}

.guidelines .faq-list li+li {
  margin-top: 15px;
}

.guidelines .faq-list li {
  padding: 20px;
  background-color: #eceef2;
  border-radius: 4px;
  position: relative;
}

.guidelines .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.guidelines .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #8b92e1;
}

.guidelines .faq-list .icon-show,
.guidelines .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.guidelines .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.guidelines .faq-list .icon-show {
  display: none;
}

.guidelines .faq-list a.collapsed {
  color: #343a40;
}

.guidelines .faq-list a.collapsed:hover {
  color:var(--color-secondary);
}

.guidelines .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.guidelines .faq-list a.collapsed .icon-close {
  display: none;
}

.guidelines .header-links a{
  color:var(--color-secondary);
}

.guidelines .header-links a:hover{
  color: var(--color-primary);
}

@media (max-width: 1279px) {
  .guidelines .faq-list {
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Awards Section
--------------------------------------------------------------*/
.awards .faq-list {
  padding: 0 100px;
}

.awards .faq-list ul {
  padding: 0;
  list-style: none;
}

.awards .faq-list li+li {
  margin-top: 15px;
}

.awards .faq-list li {
  padding: 20px;
  background-color: #eceef2;
  border-radius: 4px;
  position: relative;
}

.awards .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.awards .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #8b92e1;
}

.awards .faq-list .icon-show,
.awards .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.awards .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.awards .faq-list .icon-show {
  display: none;
}

.awards .faq-list a.collapsed {
  color: #343a40;
}

.awards .faq-list a.collapsed:hover {
  color:var(--color-secondary);
}

.awards .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.awards .faq-list a.collapsed .icon-close {
  display: none;
}

.awards .header-links a{
  color:var(--color-secondary);
}

.awards .header-links a:hover{
  color: var(--color-primary);
}

@media (max-width: 1279px) {
  .awards .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Verify Section
--------------------------------------------------------------*/
.verify-section {
  text-align: center;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.verify-section .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 25px;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.verify-section .popup button {
  background-color:var(--color-secondary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
}

.verify-section .popup button:hover {
  background-color: var(--color-primary);
}

.verify-section .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.verify-input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 350px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.verify-button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: var(--color-secondary);
  color: #fff;
  cursor: pointer;
}

.verify-button:hover {
  background-color: var(--color-primary);
}


/*--------------------------------------------------------------
# Circulars List Section
--------------------------------------------------------------*/
.circulars {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}

.circulars .rounded-box {
  width: 100%;
  border-radius: 10px;
  background-color: #eceef2;
  padding: 15px;
  margin-bottom: 15px;
  text-align: left;
}

.circulars .rounded-box p {
    margin-bottom: 5px;
    font-weight:500;
    font-family: var(--font-secondary);
}

/* Style for the button */
.circulars .my-button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  background-color: #070664;
  color: white;
  font-weight:500;
  border-radius: 20px;
  cursor: pointer;
}

.circulars .my-button:hover {
  background-color: var(--color-primary);
}

.box-link {
  text-decoration: none;
  color: inherit; 
}

/* Style for the header with the date */
.circulars .date {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-primary);
  margin-top: 2px;
  margin-bottom: 2px;
}

/* Remove bullet points from the list */
.circulars ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.circulars .header-links a{
  color:var(--color-secondary);
}

.circulars .header-links a:hover{
  color: var(--color-primary);
}

@media (max-width: 1279px) {
  .circulars .rounded-box {
    width: 100%;
    padding: 10px;
  }
}
/*--------------------------------------------------------------
# Recordings List Section
--------------------------------------------------------------*/
.recs {
  padding-top: 25px;
}

.recs .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
}

.recs .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.recs .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.recs .icon-box h3 a {
  color: #493c3e;
  transition: ease-in-out 0.3s;
}

.recs .icon-box:hover a {
  color: #e43c5c;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/wave-camp.png") center center;
  background-size: cover;
  padding: 50px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  max-width: fit-content;
  color: #fff;
  background: #2aa5df;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.features .icon-list span {
  font-size: 18px;
  color: #29486a;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: #f7f9fc;
}

.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.features .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-posts .post-box .post-title {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(27, 47, 69, 0.7);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* Center member info */
.team .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  overflow-x: auto;
  width: 100%;
  }

  .team-member table {
    width: auto;
    max-width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
  }
  
  .team-member table td {
    border: none;
    padding: 10px;
    position: relative;
    text-align: center;
    vertical-align: middle;
  }

  .team-member table td.member-img img {
    max-width: 190px;
    height: auto;
    object-fit: cover;
  }


.team-member .member-info {
  padding: 10px 10px 0 10px !important;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
  color: var(--color-secondary);
}

.center-table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* New CSS for mobile view */
@media (max-width: 768px) {
  .team-member table,
  .team-member table tbody,
  .team-member table tr,
  .team-member table td {
    width: 100%;
  }

  .team-member table td {
    text-align: center;
    padding: 20px 0;
  }

  .team-member .member-info {
    padding: 10px 0 0 0 !important;
  }
}
/* Custom CSS for card dimensions and positioning */
.history {
  padding-top: 10px;
}
.testimonial-card .card-up {
  height: 75px;
  overflow: hidden;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.testimonial-card .avatar {
  width: 150px; 
  height: 150px; 
  margin-top: -40px; 
  margin-left: auto; 
  margin-right: auto;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
}

.history .swiper-slide {
  width: 20px; 
  float: left; 
  box-sizing: border-box; 
  padding: 0 15px; 
}

.history .swiper-pagination {
  z-index: 2000; 
  position: relative; 
  margin-top: 30px;
}

/* Media query for smaller screens */
@media (max-width: 767px) {
  .history .swiper-slide {
    width: 50%; 
  }
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .history .swiper-container {
    max-width: 30%; /* Make Swiper container take up full width */
    margin-left: auto; /* Center the Swiper container horizontally */
    margin-right: auto;
  }
}


/*--------------------------------------------------------------
# DLFORMS Section
--------------------------------------------------------------*/
.services-pagination {
  margin-top: 20px;
  text-align: center;
}

.services-pagination button {
  background-color: var(--color-primary);
  color: white; 
  padding: 10px 20px; 
  text-align: center;
  font-size: 14px;
  margin: 4px 2px; 
  cursor: pointer; 
  border: none;
  border-radius: 100px; 
}

.services-pagination button:hover {
  background-color:var(--color-secondary);
}

.services-pagination button.active {
  background-color: #007bff; 
  color: white;
}

.services-list .service-item {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adjust the values as needed */
  overflow: hidden;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
  padding-bottom: 0;
}
.partners .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.partners .testimonial-item .stars {
  margin-bottom: 15px;
}

.partners .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.partners .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.partners .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.partners .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.partners .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.partners .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.partners .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e8eff6;
  opacity: 1;
}

.partners .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.partners.swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .partners .swiper-slide-active {
    opacity: 1;
  }

  .partners .swiper-pagination {
    margin-top: 0;
  }

  .partners .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .partners .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio{
  padding: 0;
}
.portfolio .portfolio-flters {
  margin-bottom: 50px;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 5px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

/* Default styles for all screen sizes */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Four columns on larger screens */
.portfolio .col-sm-4 {
  flex: 0 0 25%;
  max-width: 25%;
}


@media (max-width: 1279px) {
  .portfolio .col-sm-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Full width on small screens (phones) */
@media (max-width: 1279px) {
  .portfolio .portfolio-item .col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6e2ef;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item i:hover{
  background-color: #1c88ba;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1c88ba;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary);
}

.contact .info-item p:hover {
  color: var(--color-primary);
}

.contact .mapouter {
  position: relative;
  text-align: center;
  height: auto;
  max-width: 770px;
  margin: 0 auto; /* Center horizontally */
  padding: 0 20px; /* Add padding to the left and right */
}

.contact .gmap_canvas {
  overflow: hidden;
  background: none!important;
  height: 100%;
  width: 100%;
}

@media (max-width: 1279px) {
  .contact .mapouter {
    max-width: 100%; /* Adjust the maximum width for smaller screens */
  }
}

/*--------------------------------------------------------------
# Directory Section
--------------------------------------------------------------*/
.directory {
  display: flex;
  align-items: center;
  height: auto;
  margin: 0;
}

.directory .table-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}


.directory table {
  border-collapse: collapse;
  width: 100%;
}

.directory th, td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.directory th {
  background-color: #f2f2f2;
}

.directory .even-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.directory .even-list li {
  margin-bottom: 5px; 
  overflow: hidden; /* Hide overflowing content */
  text-overflow: ellipsis; /* Display an ellipsis (...) to indicate that text has been cut off */
}

.directory .even-list li strong {
  font-weight: 600;
}

/* Responsive styles for smaller screens */
@media (max-width: 1279px) {
  .directory .table-container {
    width: auto;
  }

  .directory th,
  .directory td {
    width: 90%;
    display: block;
  }

  .directory th {
    display: none; /* Hide headers in stacked mode to avoid overlapping */
  }

  .directory tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .directory tr {
    margin-bottom: 10px; /* Add some space between rows in stacked mode */
  }
  .directory .even-list li {
    width: 80%;
    max-height: 60px; /* Adjust the max-height as needed */
    overflow: hidden; /* Hide overflowing content */
    text-overflow: ellipsis;
  }
}

/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: 30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin-top: 40px;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  background: var(--color-primary);
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer .footer-img {
  width: 245px;
}

.footer .footer-content {
  background-color: #f7f9fc;
  background-size: contain;
  padding: 30px 0 10px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-top: 3px;
}

.footer .footer-content .footer-info p {
  font-size: 15px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-secondary);
}

.footer .footer-content .social-links a {
  font-size: 14px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: rgba(27, 47, 69, 0.5);
  margin-right: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
  background-color: #38618e;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: bold;
  color: #29486a;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: #31547c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-content .footer-contact p {
  line-height: 26px;
  color: var(--color-secondary);
}

.footer .footer-legal {
  background: #fff;
  padding: 30px 0;
}

.footer .footer-legal .copyright {
  text-align: center;
  color: var(--color-secondary);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--color-secondary);
}