@import url("https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&family=Mukta:wght@200;300;400;500;600;700;800&display=swap");

:root {
  --primary: #0499c6;
  --text-1: #051b28;
  --text-2: #2a3d48;
  --light: #ffffff;
  --dark: #000000;
  --transition: all 0.3s ease-in-out;
  --primary-font: "Mukta", sans-serif;
  --secondary-font: "Khand", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--primary-font);
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  background-color: #fffef7;
  color: var(--text-1);
  overflow-x: clip;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  color: var(--text-1);
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: unset !important;
  box-shadow: unset !important;
}

a {
  color: var(--text-1);
}

a:hover {
  color: var(--primary);
}

p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 10px;
  line-height: 1.6;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

em {
  color: var(--text-1);
}
.wrapper {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.margin-t {
  margin-top: clamp(50px, 5vw, 75px);
}
.padding-tb {
  padding: clamp(50px, 5vw, 75px) 0;
}
.btn,
.secondary-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--light) !important;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  padding: 8px 14px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: #154865;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
  height: 38px;
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn > * {
  position: relative;
  z-index: 1;
}
.secondary-btn {
  background: #ffffff30;
  border: 1px solid #ffffff1a;
  backdrop-filter: blur(11.399999618530273px);
}
.secondary-btn::before {
  background: #ffffff46;
}

/* Common section start */
h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
}
h2 {
  font-size: clamp(24px, 3vw, 32px);
}
h3 {
  font-size: 18px;
}
.section-wrap {
  margin-bottom: clamp(25px, 4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-title {
  font-family: var(--secondary-font);
  color: #154865;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-wrap p {
  font-size: clamp(14px, 2vw, 18px);
}
.section-wrap .line {
  position: relative;
  width: 100%;
  height: 1px;
  border: 1.5px dashed #1e323833;
  flex: 1;
}
.section-wrap.white-text .section-title {
  color: var(--light);
}
.section-wrap.white-text .line {
  border: 1.5px dashed #ffffff33;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-media a {
  color: #44545e;
}
span.date {
  color: #5c6b70;
  display: block;
}
.card-one a {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.card-one a::before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 8.88%,
    rgba(0, 0, 0, 0.95) 100%
  );
  position: absolute;
  inset: 0;
}
.card-one img {
  width: 100%;
  height: 488px;
  object-fit: cover;
  transition: var(--transition);
}
.card-one .entry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: clamp(20px, 4vw, 30px);
}
.card-one h3 {
  color: var(--light);
  font-size: clamp(18px, 3vw, 22px);
}
.card-one span.date {
  color: #b5b3b5;
  font-size: 16px;
  margin-top: 4px;
}
.row-card:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.row-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 3vw, 20px);
}
.row-card .featured-image {
  width: 101px;
  min-width: 101px;
  height: 95px;
  overflow: hidden;
}
.row-card .featured-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.row-card span.date {
  margin-top: 4px;
}
.card-two a {
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.card-two img {
  width: 100%;
  height: 208px;
  object-fit: cover;
}
.card-two .entry-content {
  padding: 20px 15px;
  box-shadow: inset 0 0 0 1px #0000001a;
  border-radius: 0 0 5px 5px;
  height: 100%;
}
.card-two h3 {
  margin-bottom: 10px;
}
.card-two p {
  margin-bottom: 14px;
}
.card-three img {
  width: 100%;
  height: 151px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 14px;
}
.card-three span.date {
  margin-top: 5px;
}
.card-three h3 {
  margin-bottom: 2px;
}
.card-three p {
  margin: clamp(4px, 2vw, 8px) 0 clamp(8px, 2vw, 14px);
}
.card-four a {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--light);
}
.card-four a > div {
  width: 50%;
}
.card-four img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-four .entry-container {
  padding: 40px;
  border-radius: 0 5px 5px 0;
  box-shadow: inset 0 0 0 1px #0000001a;
  display: flex;
  align-items: center;
}
.card-four h3 {
  font-size: clamp(18px, 3vw, 22px);
  margin: 0 0 10px;
}
.card-four p {
  font-size: 16px;
}
.card-four span.date {
  margin-top: 15px;
}
.card-four .btn {
  margin-top: clamp(25px, 3vw, 35px);
}
.error-404-wrapper {
  text-align: center;
}
.error-404-wrapper h1 {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  margin: 0 0 10px;
}
.error-404-wrapper p {
  margin: 0;
  font-size: 16px;
}
.error-404-wrapper .btn {
  margin: 20px auto 0;
  width: fit-content;
}
/* Common section end */

/* Header css starts  */
.top-header {
  padding: 8px 0;
}
.top-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header {
  background: linear-gradient(90deg, #154764 0%, #0499c6 100%);
  position: sticky;
  top: 0;
  z-index: 999;
}
@media (min-width: 601px) {
  .admin-bar .site-header {
    top: 44px;
  }
}
@media (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 15px 20px;
}
.custom-logo-link img {
  max-width: 135px;
  height: auto;
}
.main-navigation #primary-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation #primary-menu a {
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
}
.main-navigation #primary-menu > li.current-menu-item > a {
  background: #f5efeb1a;
  border-radius: 41px;
  padding: 6px 15px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-right .uk-navbar-toggle {
  min-height: unset;
}
.header-right .uk-navbar-toggle svg {
  display: none;
}
.header-right .uk-navbar-toggle img {
  max-width: 22px;
  filter: brightness(0) invert(1);
}
.admin-bar #modal-full,
.admin-bar .uk-offcanvas {
  top: 32px;
}
.uk-offcanvas-bar {
  background-color: var(--light);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.uk-button-default {
  padding: 0;
  border: unset;
  background: unset;
}
.uk-offcanvas-overlay::before {
  background: rgba(0, 0, 0, 0.67);
}
.offcanvas-logo {
  padding: 20px;
  background-color: #fffef7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.offcanvas-logo img {
  max-width: 95px;
  height: auto;
}
.uk-offcanvas-close {
  top: 26px;
  right: 20px;
  background-color: var(--primary);
  color: var(--light);
}
.offcanvas-menu {
  padding: 20px 25px;
  max-height: 80vh;
  overflow-y: scroll;
}
.offcanvas-menu #primary-menu1 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offcanvas-menu #primary-menu1 a {
  color: var(--text-1);
  font-size: 16px;
  font-weight: 600;
}
.offcanvas-footer {
  padding: 20px;
  background-color: #fffef7;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* Header css end  */

/* Footer css start  */
.site-footer {
  background-color: #f0eadd;
}
.site-footer-wrapper {
  display: flex;
  align-items: start;
  gap: 60px;
  justify-content: space-between;
}
.footer-logo {
  max-width: 188px;
}
.footer-logo img {
  max-width: 143px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.footer-logo span {
  font-size: 16px;
  display: block;
  color: var(--text-2);
}
.widget:first-child {
  width: 100%;
  max-width: 385px;
}
.widget-title {
  color: var(--text-1);
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}
.widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.widget ul li,
.widget ul li a {
  color: #405055;
  font-size: 16px;
  font-weight: 600;
}
.widget ul li:not(:last-child) {
  margin-bottom: 12px;
}
.site-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  row-gap: 10px;
  padding: 10px 0 clamp(20px, 3vw, 30px);
}
.site-info p,
.site-info p a {
  margin: 0;
  color: #576467;
}
/* Footer css end  */

/* Responsive css start  */
@media (max-width: 1200px) {
  .main-navigation {
    display: none;
  }
  .widget:first-child {
    width: unset;
    max-width: unset;
  }
}
@media (max-width: 1024px) {
  .top-header {
    display: none;
  }
}
@media (max-width: 989px) {
  .site-footer-wrapper {
    flex-wrap: wrap;
    justify-content: start;
    gap: 45px;
  }
  .site-footer-wrapper > div {
    width: calc((100% - 90px) / 3) !important;
  }
}
@media (max-width: 767px) {
  .card-one img {
    height: 400px;
  }
  .card-four .entry-container {
    padding: 30px;
  }
  .site-footer-wrapper > div {
    width: calc((100% - 45px) / 2) !important;
  }
}
@media (max-width: 567px) {
  .section-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }
  .section-wrap .line {
    display: none;
  }
  .section-title svg {
    display: none;
  }
  .card-one img {
    height: 320px;
  }
  .card-four a,
  .site-info {
    flex-direction: column;
  }
  .card-four a > div {
    width: 100%;
  }
  .card-four .entry-container {
    padding: 20px;
    border-radius: 0 0 5px 5px;
  }
}
/* Responsive css end  */

.gallery {
  margin: 1.5em 0;
  display: grid;
  grid-gap: 1em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0;
}
.gallery-item img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  margin: 0 !important;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
  display: block;
}
@media (max-width: 1200px) {
  .gallery-columns-9,
  .gallery-columns-8,
  .gallery-columns-7,
  .gallery-columns-6 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 989px) {
  .gallery-columns-9,
  .gallery-columns-8,
  .gallery-columns-7,
  .gallery-columns-6,
  .gallery-columns-5,
  .gallery-columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery-item img {
    height: 190px;
  }
}
@media (max-width: 567px) {
  .gallery-columns-9,
  .gallery-columns-8,
  .gallery-columns-7,
  .gallery-columns-6,
  .gallery-columns-5,
  .gallery-columns-4,
  .gallery-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: 150px;
  }
}
