@import url('https://fonts.googleapis.com/css2?family=Fredoka&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Denk+One&amp;display=swap');

:root {
  --anity-font: Quicksand;
/*  --anity-font-two: "Libre Baskerville", serif;*/
/*  --anity-font-three: 'fredoka_oneregular';*/
  --anity-gray: #727272;
  --anity-gray-rgb: 114, 114, 114;
  --anity-base: #850d0e;
  --anity-base-rgb: 255, 85, 40;
  --anity-black: #343434;
  --anity-black-rgb: 52, 52, 52;
  --anity-primary: #f3c405;
  --anity-primary-rgb: 255, 164, 21;
  --anity-extra: #030D28;
  --anity-extra-rgb: 38, 204, 140;
  --anity-extra-two: #F2F0EC;
  --anity-extra-two-rgb: 242, 240, 236;
  --anity-white: #ffffff;
  --anity-white-rgb: 255, 255, 255;
  --anity-bdr-color: #e3e3e3;
  --anity-bdr-radius: 20px;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
  background-color: var(--anity-base);
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 20px;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center; 
  text-align:center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 20px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -10px;
  width: 1px;
  background-color: rgba(var(--anity-white-rgb), .40);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 20px;
  color: var(--anity-white);
}

.main-menu__contact-list li .text {
  margin-left: 5px;
}

.main-menu__contact-list li .text p {
  font-size: 16px;
  color: var(--anity-white);
}

.main-menu__contact-list li .text p a {
  color: var(--anity-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--anity-black);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top:10px;
  padding-bottom:15px;
  background:#000;
  padding-left:5px; 
  padding-right:5px;
}

.main-menu__social-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__social-title {
  font-size: 20px;
  color: var(--anity-white);
  line-height: 36px;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 2px solid rgba(var(--anity-white-rgb), .10);
  border-radius: 50%;
  font-size: 16px;
  color: rgba(var(--anity-white-rgb), 1);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--anity-base);
  border: 1px solid transparent;
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--anity-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu__social a+a {
  margin-left: 10px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-menu__logo {
  display: block;
  padding: 10px 0;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__call-icon a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--anity-base);
  border-radius: 50%;
  color: var(--anity-white);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon a:hover {
  background-color: var(--anity-black);
  color: var(--anity-white);
}

.main-menu__call-content {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.main-menu__call-sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--anity-gray);
  line-height: 14px;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 6px;
}

.main-menu__call-number a {
  color: var(--anity-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--anity-base);
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--anity-base-rgb), .20);
  border-radius: 50%;
  font-size: 16px;
  color: var(--anity-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--anity-white);
  background-color: rgba(var(--anity-base-rgb), 1.0);
}


.stricky-header.main-menu {
  background-color: var(--anity-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 20px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--anity-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing:-1px
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--anity-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  opacity: 1;
  background-color: var(--anity-base);
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 56%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 16px;
  color: var(--anity-black);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--anity-base);
}



.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--anity-black);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--anity-white-rgb), 0.05);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--anity-white-rgb), 0.80);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding: 17px 0px 17px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: rgba(var(--anity-white-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li.dropdown>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.dropdown>a::before,
.stricky-header .main-menu__list>li>ul>li.dropdown>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.dropdown>a::before {
  position: absolute;
  top: 50%;
  right: 0px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f105";
  font-size: 16px;
  color: var(--anity-white);
  transform: translateY(-50%) scale(1.0) rotate(0deg);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li.dropdown:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.dropdown:hover>a::before,
.stricky-header .main-menu__list>li>ul>li.dropdown:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.dropdown:hover>a::before {
  color: var(--anity-base);
  transform: translateY(-50%) scale(1) rotate(90deg);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
  border-left: 40px solid transparent;
  background-color: transparent;
  width: 320px;
}

.main-menu .main-menu__list>li>ul>li>ul::before,
.stricky-header .main-menu__list>li>ul>li>ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  background-color: var(--anity-black);
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}





.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--anity-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--anity-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--anity-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--anity-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}




/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--anity-white);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--anity-black);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #000;
  font-size: 17px;
  font-family: var(--anity-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--anity-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--anity-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--anity-base);
  border: none;
  outline: none;
  color: #000;
  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;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--anity-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--anity-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
	background: var(--anity-base);
	padding: 10px;
	border-radius: 50%;
  color: var(--anity-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--anity-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--anity-text-dark);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #000;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--anity-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--anity-base);
  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;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}


/*Slider*/
.heroSlider{
    width:100%;
    height:auto;
}

.heroSlider .swiper-slide{
    position:relative;
}

.heroSlider .swiper-slide img{
    width:100%;
    height:auto;
/*    object-fit:cover;*/
    display:block;
}

.heroSlider .swiper-slide::before{
    content:"";
    position:absolute;
    inset:0;
/*    background:rgba(0,0,0,.45);*/
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
    max-width:600px;
}

.hero-content h1{
    font-size:56px;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-content .btn{
    display:inline-block;
    padding:14px 35px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.hero-content .btn:hover{
    background:#b88d10;
}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet{
    background:#fff;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#d4af37;
}

@media(max-width:768px){

.heroSlider,
.heroSlider .swiper-slide img{
    height:350px;
}

.hero-content{
    left:20px;
    right:20px;
}


.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}




.main-container {
    float: left;
    width: 100%;
}

.banner_container {
    float: left;
    width: 100%;
}

.banner_container img {
    float: left;
    width: 100%;
}

.banner3 {
    float: left;
    width: 100%;
}

.banner3 img {
    float: left;
    width: 100%;
}

.top-hd {
    float: left;
    width: 100%;
    padding: 10px 0px;
}

.top-hd img {
    float: left;
    width: 90%;
}

.top-hd-img22 img {
    display: table;
    margin: 0 auto;
    float: none;
    width: 70%;
    border-left: 2px dashed #670000;
    border-right: 2px dashed #670000;
}

.choose-sec {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../images/whybg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.choose-sec:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: 0 auto;
    background: #000000d2;
    z-index: -1;
}

.why-header {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: #fcc107;
    font-family: 'Denk One', sans-serif;
}

.why-sub {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
}

.choose-sec .counter-main {
    padding: 30px 15px;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.counter-box {
    padding: 0px 0px 10px;
    position: relative;
    z-index: 1;
}


.counter-box2 {
    text-align: center;
    border-radius: 10%;
    margin: 0 auto;
    background: #fcc107;
    padding: 10px 0px;
    position: relative;
    z-index: 1;
/*    border: 10px solid #670000;*/
	box-shadow: 2px 2px 7px 2px #ccc;
}

.counter-box2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: 0 auto;
    background: #ffffff;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: -1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-radius: 10%;
/*    border: 0px solid #670000;*/
}

.icon-box {
    display: block;
    font-size: 50px;
    color: #670000;
}

.choose-sec .counter-main .counter-box2 .count-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    font-family: 'Denk One', sans-serif;
}

.counter {
    font-size: 30px;
    font-weight: 700;
    color: #670000;
    font-family: 'Fredoka', sans-serif;

}

.counter-box:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50%;
    top: 43%;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: 0 auto;
    background: #fcc107;
    z-index: -1;
    -webkit-box-shadow: 0px 4px 10px #000000ba;
    box-shadow: 0px 4px 10px #000000ba;
    border-radius: 0px 0px 5px 5px;
}

.counter-box:hover .counter-box2:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.best-ser {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.best-header {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: #670000;
    font-family: 'Denk One', sans-serif;
    position: relative;
}

.best-header::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 14px;
    top: inherit;
    right: 0px;
    bottom: -12px;
    left: 0px;
    margin: 0 auto;
    z-index: 1;
    border-radius: 20px;
    background: #fcc107;
}

.best-header:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 14px;
    top: inherit;
    right: 0px;
    bottom: -12px;
    left: 0px;
    margin: 0 auto;
    z-index: 1;
    border-radius: 20px;
    background: #fcc107;
    width: 200px;
    background: #fcc107;
    z-index: -1;
    right: 0;
    left: 0;
    height: 4px;
    bottom: -7px;
    border: 0px;
}

.best-sub {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #000;
    font-family: 'Fredoka', sans-serif;
    margin-top: 20px;
}

.best-border {
    float: left;
    width: 100%;
    margin-top: 40px;
    padding: 10px;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px #00000040;
    box-shadow: 0px 0px 20px #00000040;
    background: #fff;
}

.best-mg {
    float: left;
    width: 100%;
}

.best-mg img {
    float: left;
    width: 100%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.best-border:hover .best-mg img {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.best-title {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 25px;
    padding-top: 15px;
    color: #670000;
    font-family: 'Denk One', sans-serif;
}

.best-title-sub {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #000;
    letter-spacing: 2px;
    font-family: 'Fredoka', sans-serif;
}

.best-desc {
    float: left;
    width: 100%;
    text-align: match-parent;
    font-size: 16px;
    color: #000;
    padding: 10px 10px;
    font-family: 'Fredoka', sans-serif;
}

.best-call {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: 'Fredoka', sans-serif;
}

.best-call a {
    background: #670000;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.just {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #fcc107;
    text-align: center;
}

.just img {
    display: table;
    margin: 0 auto;
    float: none;
    width: 20%;
}

.just1 {
/*    float: left;*/
/*    width: 100%;*/
    text-align: center;
    font-size: 45px;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    background: #670000;
    padding: 8px 15px;
    letter-spacing: 1px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.just2 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #000;
/*    font-family: 'Denk One', sans-serif;*/
    margin-top: 10px;
}


.just3 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: #670000;
    font-family: 'Fredoka', sans-serif;
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 15px;
}

ul.call-chat-services {
    padding: 0;
    margin: 0;
    font-family: 'Fredoka', sans-serif;
}

ul.call-chat-services li {
    line-height: normal;
    display: inline-block;
    padding: 15px 7px;
}

ul.call-chat-services li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    background: #670000;
    padding: 11px 15px;
    transition: 0.5s;
    box-shadow: 0px 6px 7px 0px #0000006b;
}

ul.call-chat-services li a i {
    font-size: 20px;
    color: #fcc107;
    position: relative;
    animation-duration: var(--fa-animation-duration, 3s);
    top: 3px;
}

ul.call-chat-services li.online-chat a {
    background: #012911;
}

.ser-list {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../images/bg2.png);
    background-size: cover;
    background-attachment: fixed;
}

.ser-header {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Fredoka', sans-serif;
}

.ser-sub {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: #670000;
    font-family: 'Denk One', sans-serif;
}

.solutions-list {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.solutions-list ul {
    padding: 0;
    margin: 0;
    text-align: left;
    font-family: 'Fredoka', sans-serif;
}

.solutions-list ul li{
	list-style: none;
    font-size: 18px;
    padding: 10px 15px;
    text-transform: capitalize;
    margin: 10px;
    background-color: #670000;
    border: 1px solid rgba(197, 0, 56, .2);
    border-radius: 200px;
    transition: 0.7s;
}
.solutions-list ul li a{
	color: #fff9de;
	text-decoration: none;
}

.solutions-list ul li i {
    color: #fff9de;
    padding-right: 10px;
}

.solutions-list ul li:hover {
    background-color: #fcc107;
}

.testi {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.test-sub {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-family: 'Fredoka', sans-serif;
}

.test-header {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: #670000;
    font-family: 'Denk One', sans-serif;
}

.tst-border {
    float: left;
    width: 100%;
    padding: 0;
    background-color: #670000;
    box-shadow: -1px 4px 13px 0px rgb(0 0 0 / 15%);
    padding: 50px 30px 40px;
    border-radius: 12px;
    transition: all 500ms ease;
    transform: translateY(0);
    margin-top: 40px;
}

.tst-border:hover {
    transform: translateY(-10px);
    transition: all 500ms ease;
}

.tst-border:hover i {
    background: #670000;
    color: #ffffff;
    transition: all 500ms ease;
}

.tst-border i {
    position: absolute;
    transition: all 500ms ease;
    background: #fcc107;
    color: #670000;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    top: -20px;
    left: 40px;
    text-align: center;
    font-size: 26px;
}

.test-desc {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 17px;
    color: #fff;
    padding-bottom: 20px;
    border-bottom: 1px solid #fcc107;
    font-family: 'Fredoka', sans-serif;
}

.test-img {
    float: left;
    width: 40%;
    padding-top: 15px;
    border-right: 2px solid #fff;
}

.test-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.test-con {
    float: left;
    width: 60%;
    padding-left: 15px;
}

.test-con h1 {
    font-size: 22px;
    color: #fcc107;
    font-family: 'Denk One', sans-serif;
}

.test-con p {
    font-size: 18px;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
}

.abt-us {
    float: left;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fcc107;
    outline: 3px solid #fff;
    outline-offset: -15px;
}

.abt-right {
    float: left;
    width: 100%;
}

.abt-sub {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
}

.abt-sub span {
    background: #000;
    padding: 8px 15px;
    border-radius: 5px;
}

.abt-header {
    float: left;
    width: 100%;
    font-size: 35px;
    padding-top: 10px;
    color: #670000;
    font-family: 'Denk One', sans-serif;
}

.abt-desc {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 17px;
    color: #000;
    line-height: 32px;
    padding-top: 15px;
    font-family: 'Fredoka', sans-serif;
}

.abt-desc span {
    color: #670000;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}





.footer {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(../images/whybg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: 0 auto;
    background: #000000d2;
    z-index: -1;
}

.contact1 {
    float: left;
    width: 100%;
    text-align: center;
}

.contact2 {
    padding: 0 10px 0px;
    margin-top: -90px;
    float: left;
    width: 100%;
}

.contact3 {
    padding: 0px;
}

.contact3 a {
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    animation: bkli 0.4s infinite;
}

.contact3 a i {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 2px solid#ffa800;
    line-height: 80px;
    color: #ffa800;
    font-size: 25px;
    text-align: center;
    margin-right: 6px;
    font-family: 'Denk One', sans-serif;
}

@keyframes bkli {
    0% {
        color: #ffa800;
        text-shadow: 0 0 30px;
    }

    50% {
        color: #fff;
        text-shadow: 0 0 10px;
    }

    100% {
        color: #ffa800;
        text-shadow: 0 0 30px;
    }
}

.footer-header {
    float: left;
    width: 100%;
    font-size: 30px;
    border-bottom: 2px dashed #fcc107;
    font-family: 'Denk One', sans-serif;
    color: #fcc107;
}

.footer ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 9px 0 0 0;
    list-style: none;
    text-align: left;
}

.footer li {
    list-style: none;
    padding: 5px 0 5px 0;
    line-height: 26px;
    font-size: 18px;
    font-weight: 300;
    float: left;
    width: 100%;
    font-family: 'Fredoka', sans-serif;
    color: white;
}

.footer i {
    color: #fcc107;
    font-size: 20px;
    padding: 0 8px 0 0;
}

.footer li a {
    color: #fcc107;
    padding: 5px 0 5px 0;
    line-height: 26px;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #fcc107;
    padding: 7px 6px;
    display: block;
    margin-bottom: 7px;
    text-decoration: none;
    transition: .6s;
}

.footer li a:hover {
    color: white;
    border: 1px solid white;
}

.copyrt {
    width: 100%;

    float: left;
    text-align: center;
    font-size: 16px;
    font-family: 'Fredoka', sans-serif;
    padding: 20px;
    color: black;
    background: white;
}


.last-row img {
    float: left;
    width: 60px;
}

/*.last-row {
    float: left;
    width: 100%;
}
*/

.cal {

    bottom: 0px;
    left: 10px;
    position: fixed;
    z-index: 1111;

}

.whatsaapp img {
    -webkit-animation: mover 0.5s infinite alternate;
    animation: mover 0.5s infinite alternate;
}

.cal img {
    -webkit-animation: mover 0.5s infinite alternate;
    animation: mover 0.5s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.whatsaapp {

    bottom: 0px;
    right: 10px;
    position: fixed;
    z-index: 1111;

}

.header-top {
    float: left;
    width: 100%;
    background: #fcc107;
}

.top-left {
    font-size: 25px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    font-family: 'Denk One', sans-serif;
    background-color: #012911;
    padding: 10px 0px;
}

.top-left a {
    font-size: 25px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    font-family: 'Denk One', sans-serif;
    background-color: #012911;
    padding: 10px 0px;
}

.top-left i {
    margin-right: 10px;
}

.top-right {
    float: left;
    width: 100%;
    color: black;
    font-size: 20px;
    font-family: 'Fredoka', sans-serif;
    padding: 10px 0px;
}

.top-left1 {
    font-size: 25px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    font-family: 'Denk One', sans-serif;
    background-color: #670000;
    padding: 10px 0px;
}




@media(min-width:992px) and (max-width:1200px) {}




@media(min-width:768px) and (max-width:991px) {
    .top-hd-img22 img {
        width: 100%;
    }

    .top-right {
        display: none;
    }

    .header-top .col-sm-4 {
        width: 100%;
    }

    .abt-us .col-sm-5 {
        width: 100%;
    }

    .abt-us .col-sm-7 {
        width: 100%;
    }

    .best-ser .col-sm-4 {
        width: 50%;
    }

    .choose-sec .col-sm-3 {
        width: 50%;
    }

    .ser-list .col-sm-4 {
        width: 50%;
    }

    .testi .col-sm-4 {
        width: 50%;
    }
}




@media(min-width:640px) and (max-width:767px) {
    .top-hd-img22 img {
        width: 34%;
    }

    .top-right {
        display: none;
    }
}





@media(min-width:480px) and (max-width:639px) {
    .top-hd-img22 img {
        width: 34%;
    }

    .top-right {
        display: none;
    }

    .top-hd-img22 {
        display: none;
    }
}




@media(min-width:320px) and (max-width:479px) {

    .top-hd-img22 img {
        width: 34%;
    }

    .top-right {
        display: none;
    }

    .abt-left img {
        width: 100%;
    }

    .abt-header {
        font-size: 30px;
    }

    .just img {
        width: 30%;
    }

    .just1 {
        font-size: 35px;
    }

    .top-hd-img22 {
        display: none;
    }
}


.wa-container {
   
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%);
}


.wa-card {
    width: 64%;
    max-width: 96%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #ffffff);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(20, 25, 40, 0.08);
    padding: 22px 20px;
    box-sizing: border-box;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}


.wa-title {
    font-size: 18px;
    margin: 0 0 8px;
    color: #102a43;
    font-weight: 700
}

.wa-sub {
    font-size: 13px;
    color: #4b5766;
    margin: 0 0 14px
}


.wa-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px
}

.wa-label {
    font-size: 13px;
    color: #334155;
    margin-bottom: 6px;
    font-weight: 600
}

.wa-input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    outline: none;
    transition: box-shadow .15s, border-color .15s
}

.wa-input:focus {
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
    border-color: #90cdf4
}


.wa-textarea {
    min-height: 96px;
    resize: vertical
}


.wa-row {
    display: flex;
    gap: 10px
}

.wa-col {
    flex: 1
}


.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(90deg, #20c997, #0ea5a3);
    color: #fff;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.12);
    width: 100%;
    margin-top: 6px
}


.wa-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 10px
}

.wa-error {
    color: #f43f5e;
    font-size: 13px;
    margin-top: 8px
}


/* small screens tweak */
@media (max-width:420px) {
    .wa-card {
        padding: 18px;
        border-radius: 12px;
        width: 100% !important; 
    }

    .wa-title {
        font-size: 17px
    }
}

@media(max-width: 768px){
    .wa-row {
    display: flex;
        flex-direction: column;
        gap: 0;
}
 .wa-card {
       
        width: 90%;
    }

}


.gallery-section {
    padding: 50px 15px;

}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-item {
    width: calc(25% - 15px); /* 4 per row */
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 700px;
    display: block;
    transition: transform .3s ease;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Tablet – 2 per row */
@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 15px);
    }
}

/* Mobile – 1 per row */
@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }
}

/* .gallery-img{
    height: 400px;
    width: 400px;
} */

/* Heading Style */
.gallery-heading {
    text-align: center;
    margin-bottom: 40px;
	
}

.gallery-heading h4 {
   text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-family: 'Fredoka', sans-serif;
}

.gallery-heading h2 {
   width: 100%;
    text-align: center;
    font-size: 35px;
    color: #670000;
    font-family: 'Denk One', sans-serif;
}

.footer {
    padding: 50px 0px;
    background: var(--anity-base);
    position: relative;
    z-index: 9;
    float: left;
    width: 100%;
}

.contact-left1 {
    padding: 10px;
}

.contact-left-1 a {
    display: block;
    color: #000;
    padding: 0px 16px 24px;
    background: var(--anity-primary);
    text-align: center;
    border-radius: 10px;
}

.contact-left-1 a span {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.contact-left-1 a span strong {
    height: 90px;
    width: 90px;
    display: block;
    background: var(--anity-base);
    border-radius: 0 0 50% 50%;
    margin: 0 auto;
    text-align: center;
    line-height: 90px;
}

.contact-left-1 a span strong i {
    font-size: 43px;
    color: var(--anity-primary);
    animation: anim 1s infinite;
}

.contact-left-1 a p {
    width: 100%;
    padding: 16px 0 0;
}

.contact-left-1 a p i {
    text-transform: capitalize;
    display: block;
    font-size: 19px;
    color: var(--anity-base);
    font-weight: 800;
}

.contact-left-1 a p b {
    font-weight: 700;
    display: block;
    color: #3b3b3b;
    padding: 2px 0 0px 0;
    font-size: 19px;
}

.contact-left1 {
    padding: 10px;
}

.disclaimer {
    padding: 0;
    margin: 0;
}

.disclaimer strong {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    color: #ffffff;
}

.copy p {
    padding: 22px 0 0 0;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.breadcrumb-section{
	position: relative;
	width: 100%;
}

