@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

@font-face {
  font-family: "Pangea Afrikan Trial";
  src: url("../fonts/PangeaAfrikanTrial-Regular.woff2") format("woff2"),
    url("../fonts/PangeaAfrikanTrial-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pangea Afrikan Trial";
  src: url("../fonts/PangeaAfrikanTrial-Medium.woff2") format("woff2"),
    url("../fonts/PangeaAfrikanTrial-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #f6a841;
  --secondary: #f57774;
  --btn-gradient: linear-gradient(90deg, #e03e35 0%, #e5602a 50%, #ea811f 100%);
  --text-gradient: linear-gradient(
    90deg,
    #e03d35 2.01%,
    #efa612 17.73%,
    #ee983d 33.45%
  );
  --bg-color: #fffcf6;
  --light: #fff;
  --text: #1f1f1f;
  --primary-font: "Figtree", sans-serif;
  --secondary-font: "Pangea Afrikan Trial", sans-serif;
  --transition: all 0.5s linear;
  --transition-2: all 0.4s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--primary-font) !important;
  font-size: 100%;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  overflow-x: clip;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font) !important;
  font-weight: 500;
  color: var(--text);
}
strong {
  font-weight: 600 !important;
}
a,
a:active,
a:hover {
  text-decoration: none !important;
  outline: 0;
  transition: var(--transition-2);
}
a:hover {
  opacity: 80%;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}
p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  opacity: 70%;
}
p:empty {
  display: none;
}
.flex {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wrapper,
.wrapper-2,
.wrapper-3 {
  max-width: 1600px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper-2 {
  max-width: 1400px;
}
.wrapper-3 {
  max-width: 1200px;
}
.section-wrapper .section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.05;
  text-align: center;
}
.entry-title {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.entry-title a {
  color: var(--text);
}
.entry-title a:hover {
  color: var(--primary);
}
.btn,
.btn-1 {
  padding: 13px 22px;
  background: var(--btn-gradient);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  color: var(--light);
  border-radius: 10px;
  transition: var(--transition);
  display: block;
  width: fit-content;
  font-family: var(--primary-font);
  text-transform: capitalize;
  line-height: 1;
}
.btn:hover {
  background: linear-gradient(120deg, #ea811f 25%, #e5602a 50%, #e03e35 100%);
  color: var(--light);
}
.btn-1 {
  background: unset;
  background-color: #ffffff70;
  border: 1px solid #1f1f1f3a;
  color: var(--text);
  padding: 12px 22px;
}
.btn-1:hover {
  background-color: #e5602a;
  border-color: #e5602a;
  color: var(--light);
}
.section-wrapper {
  max-width: 850px;
  margin: 0 auto;
}
.section-wrapper p {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  opacity: unset;
  line-height: 1.4;
  opacity: 70%;
}
.section-subtitle {
  display: block;
  color: #f57774;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5%;
  margin: 0 auto 10px;
  text-align: center;
  font-family: var(--secondary-font);
  padding: 5px 12px;
  border-radius: 10px;
  background-color: var(--light);
  border: 1px solid #f577744d;
  width: fit-content;
}
.padding {
  padding: 80px 0;
}
.padding-2 {
  padding: 60px 0;
}
.section-top {
  padding-top: 40px;
}

/* Header section css  */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #0000001c;
}
.site-header::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid var(--light);
  position: absolute;
  bottom: 0;
  left: 0;
}
.social-media {
  gap: 10px;
}
.social-media a {
  font-size: clamp(19px, 2vw, 21px);
  color: var(--text);
}
.header-right {
  gap: 20px;
}
.sticky .site-header {
  /* background: radial-gradient(
    circle,
    rgb(218, 253, 197) 0%,
    rgb(255, 226, 226) 50%,
    rgb(255, 238, 184) 67%,
    rgb(255, 238, 218) 100%
  ); */
  background-color: var(--bg-color);
  position: fixed;
}
.custom-logo-link img {
  max-width: 200px;
}
.site-header-container {
  background-color: var(--primary);
  border-radius: 100px;
  padding: 6px 8px 6px 6px;
}
.site-header-wrapper {
  gap: 40px;
  justify-content: space-between;
  padding: 20px 0;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-navigation ul li a {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 2%;
  color: var(--text);
  font-family: var(--primary-font);
}
.hamburger-toggle {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  display: none;
}
.hamburger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 32px;
  height: 22px;
}
.line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 500px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.line--middle {
  width: 60%;
}
.line--bottom {
  width: 100%;
}
.hamburger-menu:hover .line {
  width: 100%;
}
.main-navigation,
.main-navigation .menu-menu-1-container,
.main-navigation #primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-navigation > div > ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.main-navigation > div > ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-navigation > div > ul > li:last-child {
  padding-right: 0;
}
.main-navigation > div > ul > li i {
  color: #fff;
  font-size: 13px;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}
.main-navigation > div > ul > li:hover i {
  color: var(--primary);
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.main-navigation > div > ul > li > a {
  position: relative;
  z-index: 1000;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  padding: 4px 15px;
}
.main-navigation > div > ul > li > a:hover,
.main-navigation > div > ul > li.current_page_item > a {
  background-color: #fdcccb;
}
.site-header.fixed .main-navigation > div > ul > li:hover > a,
.header-default .main-navigation > div > ul > li:hover > a {
  color: #fff;
}
.site-header.fixed .main-navigation > div > ul > li > a::after,
.header-default .main-navigation > div > ul > li > a::after {
  background: #fff;
}
.site-header.fixed .header__grid > div:nth-child(2),
.header-default .header__grid > div:nth-child(2) {
  height: 100%;
}

/*  */
/*  */
.main-navigation > div > ul > li.menu-item-has-children > a {
  padding-right: 27px;
}
.main-navigation > div > ul > li.menu-item-has-children > a::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  color: var(--text);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.site-header.fixed
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a:hover::before,
.site-header.fixed
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children:hover
  > a::before {
  color: var(--light);
}
.site-header.fixed #primary-menu li.menu-item-has-children > ul {
  margin-top: -5px;
}

.main-navigation > div > ul > li.menu-item-has-children > a::after {
  content: "";
  width: 20px;
  height: 15px;
  background: #fff;
  left: calc(50% - 20px);
  position: absolute;
  display: none;
  top: 46px;
  z-index: -1;
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
}

.main-navigation > div > ul > li.menu-item-has-children:hover > a::after {
  display: block;
  -webkit-animation: fadeupArrow 0.4s ease-in-out forwards;
  animation: fadeupArrow 0.4s ease-in-out forwards;
}
.site-header.fixed
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a::after,
.header-default
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a::after {
  -webkit-animation: fadeupFixedArrow 0.4s ease-in-out forwards;
  animation: fadeupFixedArrow 0.4s ease-in-out forwards;
}

.main-navigation > div > ul > li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: 300px;
  max-width: 700px;
  z-index: 9999;
  transform: translateY(-16px);
}
.main-navigation > div > ul > li.menu-item-has-children .sub-menu::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: calc(100% + 20px);
  left: 40%;
  top: -28px;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main-navigation > div > ul > li.menu-item-has-children .sub-menu {
  background-color: var(--light);
  -webkit-box-shadow: 0 12px 40px 0 rgba(99, 153, 122, 0.2),
    0 70px 100px -60px rgba(99, 153, 122, 0.4);
  box-shadow: 0 12px 40px 0 rgba(99, 153, 122, 0.2),
    0 70px 100px -60px rgba(99, 153, 122, 0.4);
  pointer-events: initial;
  margin: 0 auto;
  padding: 10px;
}
.sub-menu {
  padding: 10px;
  margin: 0;
  list-style-type: none;
  border-radius: 10px;
}
.sub-menu > li > a {
  font-size: 15px;
  color: #666;
  font-weight: 600;
  display: inline-block;
  line-height: 22px;
  position: relative;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  display: block;
  padding: 10px 40px 10px 25px;
  border-radius: 12px;
}

.sub-menu > li > a::before,
.sub-menu > li > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 12px;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sub-menu > li > a::after {
  opacity: 0;
  visibility: hidden;
}

.sub-menu > li > a:hover::after {
  right: 10px;
  opacity: 1;
  visibility: visible;
}

.sub-menu > li > a:hover {
  background: #63997a2b;
  color: var(--primary);
}

@-webkit-keyframes fadeupArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: -30px;
  }
}
@keyframes fadeupArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: -30px;
  }
}

@-webkit-keyframes fadeup {
  from {
    opacity: 0;
    top: 140px;
  }
  to {
    opacity: 1;
    top: 72px;
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    top: 140px;
  }
  to {
    opacity: 1;
    top: 72px;
  }
}

@-webkit-keyframes fadeleft {
  from {
    opacity: 0;
    left: 500px;
  }
  to {
    opacity: 1;
    left: 290px;
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    left: 500px;
  }
  to {
    opacity: 1;
    left: 290px;
  }
}

@-webkit-keyframes fadeupFixedArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes fadeupFixedArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}
@-webkit-keyframes fadeupFixed {
  from {
    opacity: 0;
    top: 150%;
  }
  to {
    opacity: 1;
    top: 85px;
  }
}
@keyframes fadeupFixed {
  from {
    opacity: 0;
    top: 150%;
  }
  to {
    opacity: 1;
    top: 85px;
  }
}
.main-navigation > div ul > li.menu-item-has-children:hover > .sub-menu {
  display: block;
  -webkit-animation: fadeup 0.3s ease-in-out forwards;
  animation: fadeup 0.3s ease-in-out forwards;
}
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > .sub-menu
  > li.menu-item-has-children:hover
  > .sub-menu {
  display: block;
  left: 100%;
  top: 0;
  opacity: 1;
  visibility: visible;
  animation: fadeleft 0.3s ease-in-out forwards;
  -webkit-animation: fadeleft 0.3s ease-in-out forwards;
}

.site-header.fixed
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children:hover
  .sub-menu,
.header-default
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children:hover
  .sub-menu {
  -webkit-animation: fadeupFixed 0.3s ease-in-out forwards;
  animation: fadeupFixed 0.3s ease-in-out forwards;
}

.main-navigation > div > ul > li .sub-menu > li {
  position: relative;
}

.main-navigation > div > ul > li:hover ul {
  display: block;
}
.offcanvas {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
  left: -100%;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  display: block;
}
.offcanvas.show {
  left: 0;
}
.offcanvas .offcanvas__bar {
  width: 100%;
  position: relative;
  z-index: 10;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.admin-bar .offcanvas .offcanvas__bar {
  top: 32px;
}
.offcanvas .offcanvas__bar .offcanvas__sidebar {
  width: 100%;
  background: var(--bg-color);
  position: relative;
  z-index: 10;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.offcanvas .offcanvas__bar .offcanvas__sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/img/event-bg1.svg");
  background-attachment: fixed;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  opacity: 0.6;
}
.offcanvas .offcanvas__bar.showbar {
  left: 0;
}
.offcanvas .social-media a {
  opacity: 80%;
}
.offcanvas__logo {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}
.offcanvas__logo .custom-logo-link {
  padding: 10px 20px;
  display: block;
  text-align: center;
  background: var(--primary);
  border-bottom: 1px solid #ffffff45;
}
.offcanvas__logo a img,
.offcanvas__new__logo a img {
  margin: 0 auto;
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  max-width: 200px;
}
.offcanvas__close {
  position: absolute;
  top: 45px;
  background: var(--light);
  width: 40px;
  height: 40px;
  z-index: 100;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
}

.offcanvas__close .offcanvas__icon {
  text-align: center;
  line-height: 0;
}
.offcanvas__close .offcanvas__icon span {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 2px;
  vertical-align: top;
  background: var(--primary);
}
.offcanvas__close .offcanvas__icon span + span {
  margin-top: 5px;
}

.offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(1) {
  -webkit-animation: ease 0.7s 1s icon1 forwards;
  animation: ease 0.7s 1s icon1 forwards;
}

.offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(2) {
  -webkit-animation: ease 0.7s 1s icon2 forwards;
  animation: ease 0.7s 1s icon2 forwards;
}

.offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(3) {
  -webkit-animation: ease 0.7s 1s icon3 forwards;
  animation: ease 0.7s 1s icon3 forwards;
}
@-webkit-keyframes icon1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes icon1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes icon2 {
  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes icon2 {
  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes icon3 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    bottom: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    bottom: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@keyframes icon3 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    bottom: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    bottom: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}

.offcanvas .offcanvas__grid .uk-grid {
  margin-left: 0;
}
.offcanvas .offcanvas__grid .uk-grid > div {
  width: 100%;
  padding: 40px;
}
.offcanvas ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.offcanvas #primary-menu1 > li > a,
.offcanvas #primary-menu1 > li.menu-item-has-children ul li a {
  display: block;
  position: relative;
  width: fit-content;
}

#primary-menu > li > ul > li > a {
  position: relative;
}
.offcanvas #primary-menu1 > li.menu-item-has-children > a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -40px;
  color: var(--text);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.offcanvas #primary-menu1 > li > ul > li,
.offcanvas .sub-menu > li > a:hover {
  background-color: unset !important;
  width: 100%;
}

#primary-menu > li > ul > li.menu-item-has-children::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  top: 10px;
  color: var(--light);
  right: 10px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
#primary-menu > li.menu-item-has-children a.show-active::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#primary-menu > li > ul > li.menu-item-has-children.active::before {
  transform: rotate(90deg);
}

.offcanvas #primary-menu1 > li > ul,
.offcanvas #primary-menu1 > li > ul > li > ul {
  display: none;
}
.offcanvas #primary-menu1 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.offcanvas #primary-menu1 li {
  position: relative;
  cursor: pointer;
  width: 45%;
}
.offcanvas #primary-menu1 li a {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 2%;
  color: var(--text);
  font-family: var(--primary-font);
}
.offcanvas #primary-menu1 li a:hover {
  color: var(--text);
}
.offcanvas #primary-menu1 > li > a:hover,
#primary-menu > li a.show-active,
#primary-menu > li.menu-item-has-children ul li a.show-active,
.offcanvas #primary-menu1 > li:hover > a {
  color: var(--text);
}
#primary-menu li.menu-item-has-children span {
  color: var(--primary);
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 20px;
  width: 38px;
  height: 38px;
  background-color: var(--light);
  right: 3px;
  border-radius: 12px;
}
#primary-menu li.menu-item-has-children span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#primary-menu li.menu-item-has-children > ul {
  margin-top: 5px;
  padding-bottom: 10px;
}

#primary-menu li.menu-item-has-children > ul > li.menu-item-has-children > ul {
  margin: 0;
  margin-top: 5px;
  padding: 0;
  border-bottom: 1px solid transparent;
}
#primary-menu > li.menu-item-has-children > span {
  top: 21px;
}
#primary-menu > li.menu-item-has-children ul li {
  border-radius: 12px;
}
#primary-menu > li.menu-item-has-children ul li.menu-item-has-children ul li a {
  padding-left: 40px;
}
#primary-menu
  > li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li
  a {
  padding-left: 60px;
}
.offcanvas__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.offcanvas__nav > div {
  width: 100%;
}
.offcanvas__content {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  /* height: calc(100vh - 136px); */
  margin-top: 50px;
}
.offcanvas__content > div:not(:last-child) {
  border-bottom: 1px dotted #b9b9b9;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.offcanvas-label {
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 500;
  color: var(--text);
  opacity: 92%;
  margin-bottom: 25px;
  display: block;
  font-family: var(--secondary-font);
}
.offcanvas__content .uk-grid {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: start;
  flex-direction: column;
  height: 100%;
}
.offcanvas__content .uk-grid > div > div {
  padding: 0;
}
.offcanvas__contact {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.offcanvas__contact .header__contact {
  gap: 20px;
  flex-wrap: wrap;
}
.offcanvas__contact .header__contact p {
  margin: 0;
  font-size: clamp(18px, 2vw, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.offcanvas__contact .header__contact p i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 5px;
}
.offcanvas__contact .header__contact p i {
  color: var(--light);
  font-size: 18px;
}
.offcanvas__contact .header__contact strong img {
  width: 15px;
  margin-top: -1px;
}
.offcanvas__contact .header__contact strong i {
  color: var(--primary);
}
.offcanvas__contact .header__contact a {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text);
  opacity: 80%;
}
.offcanvas__contact .header__contact img {
  width: 25px;
  margin-top: -6px;
}
.offcanvas__contact .header__contact a:hover {
  color: var(--primary);
}
.offcanvas__content .social-icons li a {
  font-size: clamp(16px, 2vw, 18px);
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: var(--text);
  opacity: 80%;
}
.offcanvas.show .offcanvas__new__logo a img,
.offcanvas.show .offcanvas__contact,
.offcanvas.show .offcanvas__nav,
.offcanvas.show .offcanvas__text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.offcanvas.show .offcanvas__new__logo a img {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.offcanvas.show .offcanvas__nav {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.offcanvas.show .offcanvas__contact {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.sub-menu > li > a::before,
.sub-menu > li > a::after {
  display: none;
}
.offcanvas__grid {
  height: 100%;
  position: relative;
  z-index: 1;
}
.offcanvas__grid > div,
.offcanvas__grid > div > div,
.offcanvas__img {
  height: 100%;
}
.offcanvas__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
/* offcanvas */

/* 404 page start */
.error404 .site-header {
  position: relative;
}
.error-404.not-found {
  background-color: #fff8eb;
}
.error-404-wrapper {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
.error-404-wrapper h1 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  margin: 0 0 10px;
}
.error-404-wrapper p {
  margin: 0;
  font-size: 18px;
}
.error-404-wrapper .btn {
  margin: 20px auto 0;
}
/* 404 page end */

/* Default page start */
.npf-default-banner__section img {
  max-height: 60vh;
  object-fit: cover;
  width: 100%;
}
.default-template-wrapper {
  padding: 35px 0;
}
.default-template-wrapper p,
.default-template-wrapper blockquote {
  font-size: clamp(16px, 2vw, 18px);
  margin: 0 0 10px;
}
/* Default page end */

/* Footer section css  */
.site-footer {
  position: relative;
}
.site-footer::after {
  content: url("../img/footer-star.png");
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer-logo img {
  margin-bottom: 6px;
}
.footer-widget p {
  margin: 6px 0 0;
}
.footer-gallery img {
  max-width: 162px;
  width: 100%;
  height: 194px;
  object-fit: cover;
  border-radius: 18px;
}
.footer-widget li {
  position: relative;
}
.footer-widget li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #8f8b85;
  position: absolute;
  top: 6px;
  left: -15px;
  border-radius: 50%;
}
.footer-widget li a {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  font-weight: 500;
  opacity: 50%;
  line-height: 1;
  font-family: var(--primary);
}
.footer-widget li a:hover {
  color: var(--primary);
}
.footer-widget li:not(:last-child) {
  margin-bottom: 14px;
}
.site-info {
  padding: 25px 0;
  background-color: var(--primary);
  position: relative;
  z-index: 9;
}
.site-info a,
.site-info p,
.footer-content p {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--light);
  margin: 0;
  opacity: unset;
  font-family: var(--primary-font);
}
.site-info a:hover {
  color: var(--text);
}
.site-info-wrapper {
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-content p {
  font-size: 16px;
  opacity: 80%;
  text-align: right;
  margin-top: 18px;
}
.footer-logo {
  display: block;
}
.widget-title {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: capitalize;
  opacity: 90%;
  margin: 0 0 22px;
}
.widget-title span {
  color: var(--primary);
}
.footer-widget ul {
  margin: 0;
  padding: 0 0 0 15px;
  list-style: none;
}
.site-footer-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.site-footer-wrapper .social-media {
  margin-top: 16px;
}
.site-footer-wrapper > .footer-widget:nth-child(1) p {
  max-width: 245px;
}
.site-footer-wrapper > .footer-widget:not(:first-child) {
  width: 20%;
}
.site-footer-wrapper > .footer-widget:nth-child(1) {
  width: 40%;
}
.site-footer-wrapper > .footer-widget:nth-child(2) {
  width: 12%;
}
.site-footer-wrapper > .footer-widget span.icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #fab042;
}
.site-footer-wrapper > .footer-widget span.icon i {
  color: var(--light);
  font-size: 18px;
}
.site-footer-wrapper > .footer-widget:nth-child(4) ul {
  padding: 0;
}
.site-footer-wrapper > .footer-widget:nth-child(4) li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 20px);
  font-family: var(--primary-font);
}
.site-footer-wrapper > .footer-widget:nth-child(4) li::before {
  content: unset;
}
.site-footer-wrapper > .footer-widget:nth-child(4) p {
  opacity: 50%;
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 20px);
  font-family: var(--primary-font);
}
.site-footer-wrapper > .footer-widget:nth-child(4) p a {
  color: var(--text);
  font-size: clamp(18px, 2vw, 20px);
  font-family: var(--primary-font);
  opacity: unset;
}
.site-footer-wrapper > .footer-widget:nth-child(4) p span {
  display: block;
  font-family: var(--secondary-font);
  font-weight: 500;
  line-height: 1;
}
.site-footer-wrapper > .footer-widget:nth-child(4) li:not(:last-child) {
  margin-bottom: 18px;
}
.footer-subscription {
  max-width: 830px;
  margin: 15px 69px 60px auto;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 9;
}
.footer-subscription h3 {
  font-size: clamp(18px, 2vw, 20px);
  opacity: 90%;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.footer-subscription form {
  position: relative;
  max-width: 480px;
  box-shadow: 0px 11px 25px 0px #e5a74a1a, 0px 45px 45px 0px #e5a74a17,
    0px 101px 60px 0px #e5a74a0d, 0px 179px 72px 0px #e5a74a03,
    0px 280px 78px 0px #e5a74a00;
}
.footer-subscription form p {
  margin: 0;
}
.footer-subscription form input {
  position: relative;
  padding: 16px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #f6a841;
  outline: unset;
  background-color: var(--light);
  color: var(--text);
  font-family: var(--primary-font);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
}
.footer-subscription form input::placeholder {
  color: var(--text);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  opacity: 20%;
}
.footer-subscription form p:has(> input.wpcf7-submit) {
  opacity: 1;
  position: absolute;
  top: 0;
  right: -69px;
  margin: 0;
  width: 69px;
  height: 58px;
}
.footer-subscription form input.wpcf7-submit {
  background-color: unset;
  border: unset;
  background: var(--btn-gradient);
  color: var(--light);
  width: 69px;
  height: 56px;
  font-size: 0;
}
.footer-subscription form p:has(> input.wpcf7-submit)::before {
  content: url("../img/right-arrow.png");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

/* Back to top  */
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 40px;
  z-index: 9999;
  background-color: var(--light);
  border: 2px solid var(--primary);
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top i {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--primary);
}
.back-to-top:hover i {
  color: var(--light);
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #c3defa;
  display: none;
  z-index: 9999;
  padding: 20px;
}

@media (max-width: 1600px) {
  .site-footer-wrapper > .footer-widget:not(:first-child) {
    margin-left: 70px;
  }
}
@media (max-width: 1440px) {
  .footer-logo {
    margin-left: 0;
  }
  .site-footer-wrapper > .footer-widget:not(:first-child) {
    margin-left: 50px;
  }
  .site-footer-wrapper > .footer-widget:nth-child(1) {
    width: 29%;
  }
  .site-footer-wrapper > .footer-widget:nth-child(2),
  .site-footer-wrapper > .footer-widget:nth-child(3) {
    width: 18%;
  }
  .site-footer-wrapper > .footer-widget:nth-child(4) {
    width: 35%;
  }
}
@media (max-width: 1200px) {
  .main-navigation {
    display: none;
  }
  .hamburger-toggle {
    display: block;
    margin: 0 20px;
  }
  .site-footer-wrapper > .footer-widget:not(:first-child) {
    margin-left: 25px;
  }
}
@media (max-width: 1024px) {
  .site-footer-wrapper > .footer-widget:not(:first-child) {
    margin-left: 10px;
  }
}
@media (max-width: 989px) {
  .site-footer-wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }
  .site-footer-wrapper > .footer-widget:not(:first-child) {
    margin-left: unset;
  }
  .site-footer-wrapper > .footer-widget {
    width: calc(50% - 20px) !important;
  }
  .back-to-top {
    bottom: 90px;
  }
  .widget-title {
    margin: 0 0 12px;
  }
  .custom-logo-link img,
  .offcanvas__logo a img,
  .offcanvas__new__logo a img {
    max-width: 160px;
  }
  .footer-logo img {
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  .hamburger-menu {
    width: 32px;
    height: 22px;
  }
  .padding {
    padding: 60px 0;
  }
  .padding-2 {
    padding: 40px 0;
  }
  .section-top {
    padding-top: 20px;
  }
  .header-topbar,
  .site-header .header-button .btn-1 {
    display: none;
  }
  .sticky-footer {
    display: block;
  }
  .sticky-footer .header-button {
    justify-content: space-between;
  }
  .default-template-wrapper {
    padding: 25px 0;
  }
  .header-right .header-button,
  .header-right .social-media {
    display: none;
  }
  .custom-logo-link img,
  .offcanvas__logo a img,
  .offcanvas__new__logo a img {
    max-width: 140px;
  }
  .site-footer::after {
    content: unset;
  }
}
@media (max-width: 567px) {
  .site-footer-wrapper > .footer-widget {
    width: 100% !important;
  }
  .sticky-footer {
    padding: 14px 20px;
  }
  .offcanvas #primary-menu1 li {
    width: 90%;
  }
  .footer-subscription {
    flex-direction: column;
    gap: 15px;
  }
  .footer-subscription form input.wpcf7-submit {
    width: 60px;
  }
  .back-to-top {
    display: none;
  }
}
