footer {
  background: linear-gradient(90deg, #1D34AC 10%, #4459C5 100%);
  padding: 45px 0;
}
@media (max-width: 991px) {
  footer {
    margin-bottom: 65px;
  }
}
footer .footer-wrap {
  display: flex;
  align-items: stretch;
  min-height: 120px;
}
footer .footer-wrap .container {
  display: flex;
  align-items: stretch;
}
footer .footer-wrap .footer-left {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1.2;
}
@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;
  }
}
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: "Averta Regular";
  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;
}
footer .footer-wrap .footer-left .colD a.theme-btn {
  font-family: "Averta Regular";
  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: 20px;
  border-right: 1px solid #D0CFCF;
}
@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: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
}
footer .footer-wrap .footer-right .colA .contact .contact-details a {
  color: #fff;
  font-size: 16px;
  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 {
  font-family: "Averta Regular";
  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: 10px;
  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;
  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;
  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;
  }
}/*# sourceMappingURL=footer.css.map */