footer {
  background: linear-gradient(90deg, #1D34AC 10%, #4459C5 100%);
  padding: 45px 0;
}
@media (max-width: 991px) {
  footer {
    margin-bottom: 50px;
  }
}
footer .footer-wrap {
  display: flex;
  align-items: stretch;
  min-height: 120px;
}
footer .footer-wrap .container {
  display: flex;
  align-items: stretch;
  padding: 0px 24px;
}
footer .footer-wrap .footer-left {
  display: flex;
  align-items: center;
  gap: 60px;
  flex: 1;
}
@media (max-width: 768px) {
  footer .footer-wrap .footer-left {
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }
}
@media (max-width: 540px) {
  footer .footer-wrap .footer-left {
    padding: 20px 16px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrap .footer-left {
    align-items: baseline;
  }
}
footer .footer-wrap .footer-left .colC {
  width: 100%;
  max-width: 275px;
}
@media (max-width: 991px) {
  footer .footer-wrap .footer-left .colC {
    max-width: 100%;
  }
}
footer .footer-wrap .footer-left .colC h5 {
  color: #fff;
  font-weight: 600;
  padding-bottom: 16px;
  font-size: 20px;
}
footer .footer-wrap .footer-left .colC .form {
  --theme: #fff;
  --color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-wrap .footer-left .colC .form .form-group {
  position: relative;
}
footer .footer-wrap .footer-left .colC .form .form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 6px 0;
  font-size: 16px;
  width: 100%;
  outline: none;
}
footer .footer-wrap .footer-left .colC .form .form-group input::-moz-placeholder {
  color: transparent;
}
footer .footer-wrap .footer-left .colC .form .form-group input::placeholder {
  color: transparent;
}
footer .footer-wrap .footer-left .colC .form .form-group label {
  position: absolute;
  left: 0;
  top: 6px;
  color: rgba(255, 255, 255, 0.6980392157);
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease;
}
footer .footer-wrap .footer-left .colC .form .theme-btn {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 6px 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .footer-wrap .footer-left .colC .form .theme-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
footer .footer-wrap .footer-left .colC .form .theme-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
footer .footer-wrap .footer-left .colC .form .theme-btn:hover::before {
  width: 100%;
}
footer .footer-wrap .footer-left .colC .form .theme-btn {
  align-self: flex-start;
  margin-top: 6px;
}
footer .footer-wrap .footer-left .colD {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 540px) {
  footer .footer-wrap .footer-left .colD {
    max-width: 100%;
  }
}
footer .footer-wrap .footer-left .colD h5 {
  color: #fff;
  font-weight: 600;
  padding-bottom: 16px;
  font-size: 20px;
}
footer .footer-wrap .footer-left .colD a:not(.theme-btn) {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6980392157);
  line-height: 1.5;
  margin-bottom: 8px;
  width: 100%;
  max-width: 240px;
}
footer .footer-wrap .footer-left .colD a.theme-btn {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 6px 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .footer-wrap .footer-left .colD a.theme-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
footer .footer-wrap .footer-left .colD a.theme-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
footer .footer-wrap .footer-left .colD a.theme-btn:hover::before {
  width: 100%;
}
footer .footer-wrap .footer-left .colD a.theme-btn {
  margin-top: 10px;
  display: inline-block;
}
footer .footer-wrap .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  flex: 1;
  border-left: none;
}
@media (max-width: 768px) {
  footer .footer-wrap .footer-right {
    padding: 20px 16px;
  }
}
@media (max-width: 540px) {
  footer .footer-wrap .footer-right {
    flex-direction: column;
    padding: 16px;
  }
}
footer .footer-wrap .footer-right .colA {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  footer .footer-wrap .footer-right .colA {
    gap: 12px;
  }
}
footer .footer-wrap .footer-right .colA .contact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
footer .footer-wrap .footer-right .colA .contact:not(:last-child) {
  padding-right: 15px;
  border-right: 1px solid #D0CFCF;
  cursor: pointer;
}
@media (max-width: 540px) {
  footer .footer-wrap .footer-right .colA .contact:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}
footer .footer-wrap .footer-right .colA .contact svg path {
  fill: var(--white);
}
footer .footer-wrap .footer-right .colA .contact .contact-details h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
  padding: 0;
}
footer .footer-wrap .footer-right .colA .contact .contact-details a {
  color: #fff;
  font-size: 12px;
  opacity: 0.7;
}
footer .footer-wrap .footer-right .colA .contact .contact-details a:hover {
  opacity: 1 !important;
  color: var(--white);
}
@media (max-width: 1024px) {
  footer .footer-wrap .footer-right .colA .contact .contact-details a {
    font-size: 12px;
  }
}
footer .footer-wrap .footer-right .colB {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
@media (max-width: 540px) {
  footer .footer-wrap .footer-right .colB {
    flex-direction: column;
  }
}
footer .footer-wrap .footer-right .colB .theme-btn {
  background: #fff;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 6px 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .footer-wrap .footer-right .colB .theme-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
footer .footer-wrap .footer-right .colB .theme-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
footer .footer-wrap .footer-right .colB .theme-btn:hover::before {
  width: 100%;
}
footer .footer-wrap .footer-right .colB .theme-btn {
  align-self: flex-start;
  margin-top: 6px;
}
footer .footer-wrap .footer-right .colB .social-icons ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-wrap .footer-right .colB .social-icons ul li img {
  width: 22px;
  height: 22px;
}
footer .footer-wrap .footer-right .colB ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown {
  position: relative;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown::before {
  content: "";
  background-image: url(../../icon/dark-down.svg);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 92%;
  background-size: var(--arrowsize) auto;
  position: absolute;
  right: 4%;
  top: 9%;
  width: 20px;
  height: 20px;
  z-index: 3;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown {
  position: relative;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown::before {
  filter: brightness(0) invert(1);
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown:hover::before {
  filter: brightness(1);
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown:hover::before {
  transform: rotate(180deg);
  transition: 0.5s ease;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .pay-fee {
  background: var(--white);
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .btn2 {
  border-color: var(--white);
  color: var(--white);
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .btn2:hover {
  color: var(--black);
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .btn2:hover::before, footer .footer-wrap .footer-right .colB ul li.hasDropdown .btn2:hover::after {
  background-color: var(--white);
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown a {
  padding: 6px 30px 6px 10px;
  color: #000;
  border-color: #000;
  transition: 0.3s ease;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  z-index: -1;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown a:hover::before {
  width: 100%;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown a::after {
  border-radius: 25px;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown a::before {
  border-radius: 25px;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  bottom: calc(100% + var(--triangle));
  top: auto;
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(90deg) scale3d(0.86, 0.75, 1);
  transform-origin: bottom;
  transition: 0.4s ease;
  opacity: 0;
  min-width: 185px;
  z-index: 6;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul {
  display: block;
  background: #fff;
  padding: 12px 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  text-align: left;
  white-space: nowrap;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li {
  display: block;
  padding: 0;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li:not(:last-child) {
  margin-bottom: 2px;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a {
  font-size: 13px;
  display: block;
  color: #000;
  padding: 5px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  z-index: -1;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a:hover::before {
  width: 100%;
}
footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a:hover {
  color: #fff;
}
@media (max-width: 675px) {
  footer .footer-wrap .container {
    flex-direction: column;
  }
  footer .footer-wrap .footer-left {
    flex-direction: column;
  }
  footer .footer-wrap .footer-right .colA {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-wrap .footer-right .colA .contact {
    border-right: none !important;
    padding-right: 0 !important;
  }
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--prime);
  display: none;
}
@media (max-width: 991px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  color: var(--white);
  font-size: 16px;
  height: var(--footerstrip);
  text-transform: uppercase;
  font-weight: 600;
}
.footer-strip ul li a svg {
  width: 20px;
  height: 20px;
}
.footer-strip ul li a svg[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg[fill] {
  fill: var(--white);
}
.footer-strip ul li a svg path[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg path[fill] {
  fill: var(--white);
}

@media (max-width: 991px) {
  .footer-strip {
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }
  .footer-strip ul {
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
  }
  .footer-strip ul li {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-strip ul li a {
    width: 100%;
    min-height: var(--footerstrip);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    padding: 8px 6px;
    gap: 5px;
    font-size: 14px;
  }
  .footer-strip ul li a svg {
    display: block;
    margin: 0 auto;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .footer-strip ul li a {
    min-height: 58px;
    font-size: 12px;
    padding: 7px 5px;
    gap: 4px;
  }
  .footer-strip ul li a svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 675px) {
  .footer-strip ul li a {
    min-height: 56px;
    font-size: 11px;
    padding: 6px 4px;
    gap: 4px;
  }
  .footer-strip ul li a svg {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 540px) {
  .footer-strip ul li a {
    min-height: 54px;
    font-size: 10px;
    padding: 6px 3px;
    gap: 3px;
  }
  .footer-strip ul li a svg {
    width: 16px;
    height: 16px;
  }
}
@media only screen and (max-width: 420px) {
  .footer-strip ul li a {
    min-height: 52px;
    font-size: 9px;
    padding: 5px 2px;
    gap: 3px;
  }
  .footer-strip ul li a svg {
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 365px) {
  .footer-strip ul li a {
    min-height: 50px;
    font-size: 8px;
    padding: 4px 2px;
    gap: 2px;
  }
  .footer-strip ul li a svg {
    width: 13px;
    height: 13px;
  }
}
@media only screen and (max-width: 345px) {
  .footer-strip ul li a {
    min-height: 48px;
    font-size: 7px;
    padding: 4px 1px;
    gap: 2px;
  }
  .footer-strip ul li a svg {
    width: 12px;
    height: 12px;
  }
}
@media only screen and (max-width: 320px) {
  .footer-strip ul li a {
    min-height: 46px;
    font-size: 7px;
    padding: 3px 1px;
    gap: 1px;
  }
  .footer-strip ul li a svg {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 1280px) {
  footer {
    padding: 40px 0;
  }
  footer .footer-wrap {
    min-height: 110px;
  }
  footer .footer-wrap .container {
    padding: 0 20px;
  }
  footer .footer-wrap .footer-left {
    gap: 50px;
  }
  footer .footer-wrap .footer-left .colC {
    max-width: 260px;
  }
  footer .footer-wrap .footer-left .colC h5 {
    font-size: 18px;
    padding-bottom: 14px;
  }
  footer .footer-wrap .footer-left .colC .form .form-group input {
    font-size: 15px;
    padding: 5px 0;
  }
  footer .footer-wrap .footer-left .colC .form .form-group label {
    font-size: 15px;
  }
  footer .footer-wrap .footer-left .colC .form .theme-btn {
    font-size: 14px;
    padding: 6px 14px;
  }
  footer .footer-wrap .footer-left .colD {
    max-width: 280px;
  }
  footer .footer-wrap .footer-left .colD h5 {
    font-size: 18px;
    padding-bottom: 14px;
  }
  footer .footer-wrap .footer-left .colD a:not(.theme-btn) {
    font-size: 12px;
    max-width: 230px;
  }
  footer .footer-wrap .footer-left .colD a.theme-btn {
    font-size: 14px;
    padding: 6px 14px;
  }
  footer .footer-wrap .footer-right {
    gap: 35px;
  }
  footer .footer-wrap .footer-right .colA {
    gap: 15px;
  }
  footer .footer-wrap .footer-right .colA .contact:not(:last-child) {
    padding-right: 12px;
  }
  footer .footer-wrap .footer-right .colA .contact svg {
    width: 22px;
    height: 22px;
  }
  footer .footer-wrap .footer-right .colA .contact .contact-details h6 {
    font-size: 13px;
  }
  footer .footer-wrap .footer-right .colA .contact .contact-details a {
    font-size: 11.5px;
  }
  footer .footer-wrap .footer-right .colB {
    gap: 35px;
  }
  footer .footer-wrap .footer-right .colB .theme-btn {
    font-size: 14px;
    padding: 6px 14px;
  }
  footer .footer-wrap .footer-right .colB .social-icons ul {
    gap: 7px;
  }
  footer .footer-wrap .footer-right .colB .social-icons ul li img {
    width: 20px;
    height: 20px;
  }
  footer .footer-wrap .footer-right .colB ul {
    gap: 18px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown a {
    font-size: 15px;
    padding: 6px 26px 6px 9px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a {
    font-size: 12px;
  }
}
@media (max-width: 1152px) {
  footer {
    padding: 38px 0;
  }
  footer .footer-wrap {
    min-height: 105px;
  }
  footer .footer-wrap .container {
    padding: 0 18px;
  }
  footer .footer-wrap .footer-left {
    gap: 40px;
  }
  footer .footer-wrap .footer-left .colC {
    max-width: 250px;
  }
  footer .footer-wrap .footer-left .colC h5 {
    font-size: 17px;
    padding-bottom: 13px;
  }
  footer .footer-wrap .footer-left .colC .form .form-group input {
    font-size: 14px;
  }
  footer .footer-wrap .footer-left .colC .form .form-group label {
    font-size: 14px;
  }
  footer .footer-wrap .footer-left .colC .form .theme-btn {
    font-size: 13px;
    padding: 6px 13px;
  }
  footer .footer-wrap .footer-left .colD {
    max-width: 270px;
  }
  footer .footer-wrap .footer-left .colD h5 {
    font-size: 17px;
    padding-bottom: 13px;
  }
  footer .footer-wrap .footer-left .colD a:not(.theme-btn) {
    font-size: 12px;
    max-width: 220px;
  }
  footer .footer-wrap .footer-left .colD a.theme-btn {
    font-size: 13px;
    padding: 6px 13px;
  }
  footer .footer-wrap .footer-right {
    gap: 30px;
  }
  footer .footer-wrap .footer-right .colA {
    gap: 13px;
  }
  footer .footer-wrap .footer-right .colA .contact:not(:last-child) {
    padding-right: 10px;
  }
  footer .footer-wrap .footer-right .colA .contact svg {
    width: 21px;
    height: 21px;
  }
  footer .footer-wrap .footer-right .colA .contact .contact-details h6 {
    font-size: 13px;
  }
  footer .footer-wrap .footer-right .colA .contact .contact-details a {
    font-size: 11px;
  }
  footer .footer-wrap .footer-right .colB {
    gap: 30px;
  }
  footer .footer-wrap .footer-right .colB .theme-btn {
    font-size: 13px;
    padding: 6px 13px;
  }
  footer .footer-wrap .footer-right .colB .social-icons ul {
    gap: 7px;
  }
  footer .footer-wrap .footer-right .colB .social-icons ul li img {
    width: 20px;
    height: 20px;
  }
  footer .footer-wrap .footer-right .colB ul {
    gap: 16px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown a {
    font-size: 14px;
    padding: 6px 24px 6px 9px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu {
    min-width: 175px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  footer {
    padding: 35px 0;
  }
  footer .footer-wrap {
    min-height: 100px;
  }
  footer .footer-wrap .container {
    padding: 0 16px;
  }
  footer .footer-wrap .footer-left {
    gap: 35px;
  }
  footer .footer-wrap .footer-left .colC {
    max-width: 240px;
  }
  footer .footer-wrap .footer-left .colC h5 {
    font-size: 16px;
    padding-bottom: 12px;
  }
  footer .footer-wrap .footer-left .colC .form {
    gap: 8px;
  }
  footer .footer-wrap .footer-left .colC .form .form-group input {
    font-size: 14px;
    padding: 5px 0;
  }
  footer .footer-wrap .footer-left .colC .form .form-group label {
    font-size: 14px;
  }
  footer .footer-wrap .footer-left .colC .form .theme-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
  footer .footer-wrap .footer-left .colD {
    max-width: 260px;
  }
  footer .footer-wrap .footer-left .colD h5 {
    font-size: 16px;
    padding-bottom: 12px;
  }
  footer .footer-wrap .footer-left .colD a:not(.theme-btn) {
    font-size: 11.5px;
    max-width: 210px;
    margin-bottom: 6px;
  }
  footer .footer-wrap .footer-left .colD a.theme-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
  footer .footer-wrap .footer-right {
    gap: 25px;
  }
  footer .footer-wrap .footer-right .colA {
    gap: 12px;
  }
  footer .footer-wrap .footer-right .colA .contact:not(:last-child) {
    padding-right: 10px;
  }
  footer .footer-wrap .footer-right .colA .contact svg {
    width: 20px;
    height: 20px;
  }
  footer .footer-wrap .footer-right .colA .contact .contact-details h6 {
    font-size: 12.5px;
  }
  footer .footer-wrap .footer-right .colA .contact .contact-details a {
    font-size: 11px;
  }
  footer .footer-wrap .footer-right .colB {
    gap: 25px;
  }
  footer .footer-wrap .footer-right .colB .theme-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
  footer .footer-wrap .footer-right .colB .social-icons ul {
    gap: 6px;
  }
  footer .footer-wrap .footer-right .colB .social-icons ul li img {
    width: 19px;
    height: 19px;
  }
  footer .footer-wrap .footer-right .colB ul {
    gap: 14px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown a {
    font-size: 13.5px;
    padding: 6px 22px 6px 8px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu {
    min-width: 170px;
  }
  footer .footer-wrap .footer-right .colB ul li.hasDropdown .dropdown-menu ul li a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }
  header {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto !important;
    width: 100%;
    height: auto !important;
    min-height: 80px;
    background-color: var(--prime-dark);
  }
  header.header-fixed, header.header-fit {
    bottom: auto !important;
    height: auto !important;
    min-height: 80px;
  }
  header .header-container {
    height: auto;
    padding: 10px 16px !important;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }
  header .header-container .lower-container {
    order: 1;
    display: block !important;
    width: auto;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 0;
  }
  header .header-container .lower-container > ul {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  header .header-container .lower-container > ul > li {
    display: none !important;
  }
  header .header-container .lower-container > ul > .colB {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
  }
  header .header-container .lower-container > ul > .colB .logo {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  header .header-container .lower-container > ul > .colB .logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  header .header-container .lower-container > ul > .colB .logo a img {
    width: 52px !important;
    max-width: 52px;
    height: auto !important;
  }
  header .header-container .upper-container {
    order: 2;
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 0 !important;
    margin: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }
  header .header-container .upper-container .colA {
    display: none !important;
  }
  header .header-container .upper-container .colC {
    width: 100%;
    height: auto;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header .header-container .upper-container .colC > ul {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    padding: 0;
    margin: 0;
  }
  header .header-container .upper-container .colC > ul > li {
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
  }
  header .header-container .upper-container .colC > ul > li:last-child {
    padding-left: 0 !important;
    padding-top: 0 !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop,
  header .header-container .upper-container .colC > ul > li.hover-btn:not(.group-sites),
  header .header-container .upper-container .colC > ul > li:last-child {
    display: flex !important;
  }
  header .header-container .upper-container .colC > ul > li.reg-btn,
  header .header-container .upper-container .colC > ul > li.group-sites {
    display: none !important;
  }
  header .header-container .upper-container .colC > ul > li.hover-btn:not(.group-sites) > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px !important;
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 30px;
    background: transparent;
  }
  header .header-container .upper-container .colC > ul > li.login-drop {
    position: relative;
  }
  header .header-container .upper-container .colC > ul > li.login-drop::before {
    display: none !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px !important;
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 30px;
    background: transparent;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a::after {
    display: none !important;
    content: none !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop .dropdown-menu {
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    translate: 0 0;
    min-width: 180px;
  }
  header .header-container .upper-container .colC > ul > li.login-drop .dropdown-menu::before {
    left: auto;
    right: 16px;
    translate: 0 0;
  }
  header .header-container .upper-container .colC > ul > li.login-drop .dropdown-menu ul {
    padding: 10px 8px;
  }
  header .header-container .upper-container .colC > ul > li.login-drop .dropdown-menu ul li a {
    font-size: 12px;
  }
  header .header-container .upper-container .colC > ul > li:last-child button.ham-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 76px;
  }
  header {
    min-height: 76px;
  }
  header.header-fixed, header.header-fit {
    min-height: 76px;
  }
  header .header-container {
    padding: 10px 12px !important;
    gap: 14px;
  }
  header .header-container .lower-container > ul > .colB .logo a img {
    width: 48px !important;
    max-width: 48px;
  }
  header .header-container .upper-container .colC > ul {
    gap: 11px;
  }
  header .header-container .upper-container .colC > ul > li.hover-btn:not(.group-sites) > a {
    font-size: 11px;
    padding: 6px 16px !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a {
    font-size: 11px;
    padding: 6px 16px !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a::after {
    display: none !important;
    content: none !important;
  }
  header .header-container .upper-container .colC > ul > li:last-child button.ham-btn {
    width: 22px;
    height: 17px;
  }
}
@media (max-width: 520px) {
  body {
    padding-top: 72px;
  }
  header {
    min-height: 72px;
  }
  header.header-fixed, header.header-fit {
    min-height: 72px;
  }
  header .header-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 10px !important;
  }
  header .header-container .lower-container {
    width: auto;
    justify-self: start;
  }
  header .header-container .lower-container > ul {
    justify-content: flex-start;
  }
  header .header-container .lower-container > ul > .colB .logo a img {
    width: 46px !important;
    max-width: 46px;
    height: auto !important;
  }
  header .header-container .upper-container {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }
  header .header-container .upper-container .colC {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .header-container .upper-container .colC > ul {
    width: 100%;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  header .header-container .upper-container .colC > ul > li.hover-btn:not(.group-sites) > a {
    font-size: 10.5px;
    padding: 6px 14px !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a {
    font-size: 10.5px;
    padding: 6px 14px !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a::after {
    display: none !important;
    content: none !important;
  }
  header .header-container .upper-container .colC > ul > li:last-child button.ham-btn {
    width: 20px;
    height: 16px;
  }
}
@media (max-width: 520px) and (max-width: 540px) {
  header .header-container .upper-container .colC > ul > li:last-child button.ham-btn {
    width: 40px;
  }
}
@media only screen and (max-width: 420px) {
  body {
    padding-top: 68px;
  }
  header {
    min-height: 68px;
  }
  header.header-fixed, header.header-fit {
    min-height: 68px;
  }
  header .header-container {
    padding: 8px 8px !important;
    gap: 10px;
  }
  header .header-container .lower-container > ul > .colB .logo a img {
    width: 42px !important;
    max-width: 42px;
  }
  header .header-container .upper-container .colC > ul {
    gap: 8px;
  }
  header .header-container .upper-container .colC > ul > li.hover-btn:not(.group-sites) > a {
    font-size: 10px;
    padding: 5px 12px !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a {
    font-size: 10px;
    padding: 5px 12px !important;
  }
  header .header-container .upper-container .colC > ul > li.login-drop > a::after {
    display: none !important;
    content: none !important;
  }
  header .header-container .upper-container .colC > ul > li:last-child button.ham-btn {
    width: 18px;
    height: 15px;
  }
}/*# sourceMappingURL=footer.css.map */