@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Light.woff2") format("woff2"),
    url("../fonts/NeueMontreal-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Regular.woff2") format("woff2"),
    url("../fonts/NeueMontreal-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Medium.woff2") format("woff2"),
    url("../fonts/NeueMontreal-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Bold.woff2") format("woff2"),
    url("../fonts/NeueMontreal-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Uxum";
  src: url("../fonts/Uxum-Light.woff2") format("woff2"),
    url("../fonts/Uxum-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Uxum";
  src: url("../fonts/Uxum-Regular.woff2") format("woff2"),
    url("../fonts/Uxum-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Uxum";
  src: url("../fonts/Uxum-Bold.woff2") format("woff2"),
    url("../fonts/Uxum-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #007048;
  --yellow: #f3cb2b;
  --blue: #c2f0f8;
  --pink: #ffb2c2;
  --orange: #f7931d;
  --bg-color: #fdfbe9;
  --bg-1-color: #ebdcc3;
  --light: #fff;
  --dark: #000;
  --text: #2c4542;
  --text-1: #0b2a2b;
  --primary-font: "NeueMontreal", sans-serif;
  --secondary-font: "Uxum", 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: 400;
  color: var(--text);
}

strong {
  font-weight: 500 !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: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-1);
  opacity: 80%;
}
p:empty {
  display: none;
}

.flex {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wrapper,
.wrapper-default,
.wrapper-2 {
  max-width: 1600px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.wrapper-default {
  max-width: 865px;
}
.wrapper-2 {
  max-width: 1200px;
}
.subtitle {
  position: relative;
  width: fit-content;
}
.subtitle p {
  position: relative;
  background-color: var(--light);
  width: fit-content;
  text-align: center;
  padding: 4px 16px;
  border-radius: 25px;
  z-index: 1;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--text);
  margin: 0;
  opacity: unset;
}
.subtitle::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--green);
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 25px;
}
.section-title h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 0;
  line-height: 1.2;
}
.subtitle p span {
  opacity: 50%;
}
.entry-title {
  margin: 0;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
  color: var(--text);
  text-transform: uppercase;
}
.entry-title a {
  color: var(--text);
}
.entry-title a:hover {
  color: var(--green);
}
.btn,
.btn-1 {
  padding: 12px 28px;
  background-color: transparent;
  border: 1px solid #000000a1;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--text-1);
  border-radius: 50px;
  transition: var(--transition);
  display: block;
  width: fit-content;
  font-family: var(--primary-font);
  text-transform: capitalize;
  opacity: 85%;
}
.btn-1 {
  padding: 6px 26px;
}
.btn i,
.btn-1 i {
  padding-left: 10px;
  font-size: 18px;
}
.btn:hover,
.btn-1:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--light);
}
a.category {
  color: var(--bg-color);
  font-size: 16px;
  padding: 5px 18px;
  background-color: var(--green);
  border-radius: 50px;
  border: 1px solid var(--green);
}
a.category:hover {
  color: var(--green);
  background-color: var(--light);
}
.section-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.section-wrapper .section-title h2 {
  margin: 0 0 4px;
  text-align: center;
}
.section-wrapper p {
  margin: 0;
  text-align: center;
}

/* Header section css  */
.site-header {
  justify-content: space-between;
  padding: 40px 0 0;
  position: relative;
  width: 100%;
  z-index: 99;
  background-color: var(--bg-1-color);
}
.sticky-header {
  background-color: var(--green);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px 0 !important;
}
.site-header-container {
  background-color: var(--green);
  border-radius: 100px;
  padding: 6px 8px 6px 6px;
}
.site-header-wrapper {
  gap: 40px;
  justify-content: space-between;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 25px;
  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: -3%;
  color: var(--light);
  font-family: var(--primary-font);
  position: relative;
}
.main-navigation ul .current_page_item a,
.header-button a {
  background-color: #ffffff3d;
  border: 1px solid #ffffffc5;
  padding: 10px 22px;
  border-radius: 50px;
}
.main-navigation ul .current_page_item a {
  background-color: var(--yellow);
  color: var(--dark);
}
.site-branding img {
  object-fit: cover;
  width: 83px;
  height: 55px;
}
.header-button a {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  text-transform: capitalize;
  color: var(--light) !important;
  font-family: var(--primary-font);
  padding: 11px 28px;
}

.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: 40px;
  height: 24px;
}
.line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--light);
  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;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.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;
}
.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(--primary);
  -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: -38px;
  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: 16px 10px;
}
.sub-menu {
  padding: 16px 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 */
.offcanvas {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999999;
  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(--green);
  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__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 {
  width: 120px;
  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;
}

.offcanvas__new__logo a img {
  width: 250px;
}
.offcanvas__close {
  position: absolute;
  top: 60px;
  background: #fff;
  width: 44px;
  height: 44px;
  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(--green);
}
.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: 0;
}
.offcanvas .offcanvas__grid .uk-grid > div {
  padding: 30px;
}
.offcanvas ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.offcanvas #primary-menu1 > li > a,
.offcanvas #primary-menu1 > li.menu-item-has-children ul li a {
  display: block;
  position: relative;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  text-transform: capitalize;
  color: var(--light);
  font-family: var(--primary-font);
}

#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: 10px;
  color: var(--bg-color);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.offcanvas #primary-menu1 > li > ul > li,
.offcanvas .sub-menu > li > a:hover,
.offcanvas
  #primary-menu
  li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul {
  background-color: unset !important;
  background-color: unset !important;
  width: 100%;
}
.offcanvas .social-media {
  justify-content: start;
}
#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(--text);
  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);
}
.offcanvas #primary-menu1 > li > ul > li.menu-item-has-children::before {
  color: var(--bg-color);
}
#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: 20px;
}
.offcanvas #primary-menu1 li {
  position: relative;
  cursor: pointer;
  width: calc(50% - 10px);
}
.offcanvas #primary-menu1 li.menu-item-has-children ul {
  border: unset;
  background-color: unset;
}
#primary-menu > li > ul > li:hover {
  background-color: var(--light-yellow);
}
#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%);
}
.offcanvas .social-media a {
  font-size: clamp(16px, 2vw, 18px);
}
#primary-menu li.menu-item-has-children > ul {
  margin-top: 5px;
  border-bottom: 1px solid var(--light);
  padding-bottom: 10px;
}
#primary-menu li.menu-item-has-children > ul > li.menu-item-has-children > ul {
  background: var(--light);
  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 a {
  color: var(--primary);
}

#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: 30px;
}
.offcanvas__content .social-icons a {
  display: flex;
}
.offcanvas__content .social-icons i {
  font-size: 24px;
  color: var(--primary);
}
.offcanvas__content > div:not(:last-child) {
  border-bottom: 1px dotted #b9b9b9;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.offcanvas-label {
  font-size: 20px;
  font-weight: 300;
  color: var(--light);
  opacity: 92%;
  margin-bottom: 25px;
  display: block;
}
.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__content .social-icons {
  gap: 15px;
}
.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: 30px;
  flex-wrap: wrap;
}
.offcanvas__contact .header__contact:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__contact .header__contact > div {
  justify-content: center;
  gap: 10px;
}
.offcanvas__contact .header__contact .icon i {
  color: var(--light);
}
.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-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--light);
}
.offcanvas__contact .header__contact img {
  width: 25px;
  margin-top: -6px;
}
.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;
  width: 120px;
  height: 100px;
  object-fit: cover;
}
.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 */

/* Footer section css  */
.site-footer {
  background-color: var(--text);
  position: relative;
  padding: 25px 0;
}
.social-media {
  gap: 45px;
  justify-content: center;
}
.social-media a {
  position: relative;
}
.footer-logo img {
  height: 80px;
}
.footer-widget p {
  font-weight: 500;
  color: var(--bg-color);
  margin: 10px 0 0;
}
.footer-gallery a {
  width: calc(33.33% - 7.5px);
}
.footer-gallery img {
  width: 100%;
  height: 194px;
  object-fit: cover;
  border-radius: 18px;
  transition: var(--transition-2);
  filter: grayscale(1);
}
.footer-gallery img:hover {
  filter: unset;
}
.social-media a::after {
  content: url(../img/arrow-right.png);
  position: absolute;
  right: -20px;
}
.social-media a i {
  padding-right: 4px;
}
.social-media a {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--bg-color);
  font-family: var(--secondary-font);
  text-transform: uppercase;
  opacity: 85%;
  letter-spacing: 6%;
}
.social-media a:hover {
  color: var(--light);
}
.site-footer-wrapper {
  justify-content: space-between;
  margin: 85px 0 75px;
  align-items: start;
}
.footer-widget-left {
  width: 50%;
  gap: 60px;
  align-items: start;
}
.footer-widget-right {
  width: 40%;
  justify-content: end;
  gap: 80px;
  align-items: start;
}
.footer-widget-left .footer-widget:nth-child(1) {
  width: 45%;
}
.footer-widget-left .footer-widget:nth-child(2) {
  width: 65%;
}
.footer-widget li a {
  font-size: 16px;
  color: var(--bg-color);
  font-weight: 500;
  opacity: 80%;
}
.footer-widget li:not(:last-child) {
  margin-bottom: 4px;
}
.site-info {
  justify-content: space-between;
  border-top: 1px solid #ffffff52;
  border-bottom: 1px solid #ffffff52;
  padding: 5px 0;
}
.site-info a,
.site-info p,
.footer-content p {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--bg-color);
  margin: 0;
}
.site-info a:hover {
  color: var(--light);
}
.site-info a i {
  padding-right: 4px;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--yellow);
}
.site-info-left {
  gap: 32px;
}
.site-info-right {
  gap: 100px;
}
.site-info-right img {
  height: 78px;
  width: 78px;
}
.site-info-right p {
  position: relative;
}
.site-info-right p::after {
  content: "";
  width: 1px;
  height: 55px;
  background-color: #ffffff52;
  position: absolute;
  right: -50px;
  top: -5px;
}
.footer-content p {
  font-size: 16px;
  opacity: 80%;
  text-align: right;
  margin-top: 18px;
}
.footer-logo {
  display: block;
}
.footer-widget > span {
  display: block;
}
.footer-widget > span:not(:last-child) {
  margin-bottom: 15px;
}
.widget-title {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
  color: var(--bg-color);
  margin-bottom: 15px;
  text-transform: capitalize;
}
.widget-title span {
  color: var(--green);
}
.footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Back to top  */
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 40px;
  z-index: 9;
  background-color: var(--light);
  border: 2px solid var(--green);
  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(--green);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--green);
}
.back-to-top:hover i {
  color: var(--light);
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--green);
  display: none;
  z-index: 9999;
}

@media (max-width: 1600px) {
}
@media (max-width: 1440px) {
  .footer-logo {
    margin-left: 0;
  }
  .site-header {
    padding: 30px 0 0;
  }
}
@media (max-width: 1024px) {
  .main-navigation,
  .site-header .header-button a {
    display: none;
  }
  .hamburger-toggle {
    display: block;
    margin: 0 20px;
  }
}
@media (max-width: 989px) {
  .site-header .header-mail,
  .site-header .header-number {
    display: none;
  }
  .sticky-footer {
    display: block;
  }
  .site-footer-wrapper {
    flex-direction: column;
    gap: 40px;
    margin: 65px 0 55px;
  }
  .footer-widget-left,
  .footer-widget-right {
    width: 100%;
    justify-content: start;
  }
  .social-media {
    margin-right: unset;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .site-info-left {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
  .back-to-top {
    bottom: 90px;
  }
}
@media (max-width: 767px) {
  .site-info-right {
    gap: 60px;
  }
  .site-info-right p::after {
    right: -32px;
  }
}
@media (max-width: 567px) {
  .site-footer-wrapper {
    margin: 40px 0;
  }
  .footer-widget-left,
  .footer-widget-right {
    flex-direction: column;
    gap: 40px;
  }
  .footer-widget {
    width: 100% !important;
  }
  .site-info {
    flex-direction: column;
    align-items: start;
    padding: 12px 0;
  }
  .footer-gallery img {
    height: 140px;
  }
}
