@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0069ff;
  --black: #000;
  --text-color: #3d3d3d;
  --border: #d1d1d1;
  --white: #fff;
  --gradient: linear-gradient(94deg, #0069ff 0%, #233886 99.66%);
  --primary-font: "Kanit";
  --secondary-font: "Saira";
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
}

p,
h5,
h6 {
  font-family: var(--secondary-font);
}

/* Top bar Section Start */
.topbar {
  background: #0e0f10;
  padding-top: 5px;
  z-index: 9999 !important;
}

.phn-number {
  align-items: center !important;
  text-decoration: none;
}

.phn-number img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #0069ff;
  margin-right: 10px;
}

.phn-number p {
  font-family: var(--secondary-font);
  font-size: 1em;
  color: var(--white);
  margin-top: 10px;
}

.topbar-options {
  margin-top: 10px;
}

.lang-select {
  margin-right: 25px;
}

.lang-select img {
  width: 25px;
  margin-right: 5px;
}

.lang-select a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--secondary-font);
}

.lang-select a:hover {
  text-decoration: none;
  color: var(--white) !important;
}

.dropdown-toggle::after {
  display: none !important;
}

.lang-select svg {
  cursor: pointer;
}

.dropdown-menu li a {
  color: var(--primary-color);
}

.currency-select a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--secondary-font);
}

.currency-select a:hover {
  text-decoration: none;
  color: var(--white) !important;
}

.topbar_login_btn a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--white);
  font-family: var(--secondary-font);
  font-weight: 400;
  margin-left: 20px;
}

.topbar_login_btn i {
  padding-right: 5px;
}

.topbar_login_btn a:hover {
  color: var(--white);
}

#mobile-login {
  display: none;
}

@media screen and (max-width: 990px) {
  .topbar {
    display: none;
  }

  #mobile-login {
    display: block;
  }
}

/* Top bar Section End */

/* Navbar Start */
.navbar__main .logo {
  width: 150px;
}
.navbar__main .logo svg {
  width: 100%;
  height: 100%;
  background-size: contain;
  object-fit: contain;
}

.navbar__main a,
.navbar__main button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

.navbar__main .client_btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  background-color: transparent;
  border: none;
  padding: 8px 10px 8px 20px;
  transition: 0.5s;
}

.navbar__main .client_btn:hover svg path {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

.navbar__main .client_btn:hover span {
  color: var(--white);
}

.navbar__main .client_btn svg path {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.navbar__main .client_btn svg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: contain;
}
.navbar__main .client_btn img {
  width: 30px;
  aspect-ratio: 16 /16;
  z-index: 1;
}

.navbar__main .client_btn span {
  z-index: 1;
  color: var(--black);
  transition: 0.4s;
}

.navbar__main img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.navbar__main img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.navbar__main .section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.navbar__main .centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.navbar__main {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  display: inline-block;
  margin: 0 auto;
  background: transparent;
  box-shadow: var(--shadow-medium);
}

.navbar__main .navbar {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__main .wrapper {
  background: var(--white);
  width: 100%;
  padding: 8px 30px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.navbar__main .navbar .navbar__left {
  display: flex;
  align-items: center;
  justify-content: left;
}

.navbar__main .navbar .navbar__left .mobile_user {
  display: none;
  width: 40px;
  aspect-ratio: 16 / 16;
}

.navbar__main .navbar .navbar__left .mobile_user i {
  font-size: 26px;
  width: 40px;
  aspect-ratio: 16 / 16;
  background: #ececec;
  color: #0069ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.navbar__main .navbar .navbar__left .mobile_user a{

    text-decoration: none;
}
.navbar .navbar__center {
  display: flex;
}

.menu .menu__header {
  display: none;
  box-shadow: var(--shadow-medium);
}

.menu .menu__inner {
  margin: 0px;
  padding: 0px;
}

.menu .menu__inner .menu__item {
  position: static;
  display: inline-block;
}

.menu .menu__inner .menu__item:last-child {
  padding-right: 0;
}

.menu .menu__inner .menu__item .menu__link {
  border-bottom: 3px solid transparent;
  transition: 0.4s;
  padding: 0px 6px;
}

.menu .menu__inner .menu__item .active {
  border-bottom: 3px solid var(--white);
}

.menu .menu__inner .menu__item .menu__link:hover {
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
}

.menu .menu__inner .menu__item .menu__link.active {
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
}

.menu .menu__inner .menu__item .menu__link:hover i {
  color: var(--primary-color);
}

.menu .menu__inner .menu__item .menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--primary-font);
  cursor: pointer;
  margin: 0px 2px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.25s ease;
}

.menu .menu__inner .menu__item .menu__link i {
  margin-left: 5px;
  font-size: 16px !important;
  color: var(--text-color);
  transition: 0.35s;
  padding-top: 3px;
}

.navbar__main .submenu {
  position: absolute;
  z-index: 100;
  top: 80%;
  left: 50%;
  width: 100%;
  height: auto;
  padding: 20px 15px;
  border-radius: 20px;
  border-top: 2px solid var(--color);
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}

.submenu.megamenu__text {
  padding: 26px 26px;
  border: 1px solid var(--border);
}

.submenu.megamenu__normal .submenu__list .active {
  border-bottom: 3px solid var(--primary-color) !important;
}

.submenu .submenu__inner .submenu__list {
  padding: 0;
}

.submenu .submenu__inner__offer {
  width: 40%;
  padding-left: 20px;
  background: #edf9ff;
  border-radius: 16px;
  padding: 30px;
}

.submenu .submenu__inner__offer .offer__img img {
  width: 100%;
  background-position: center;
  background-size: cover;
}

.submenu .submenu__inner__offer .offer {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.submenu .submenu__inner__offer .offer__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  position: relative;
}

.submenu .submenu__inner__offer .offer__img img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: contain;
  background-position: center;
}

.submenu__list .submenu__item {
  width: 100%;
  display: flex !important;
  gap: 20px;
  text-decoration: none;
  transition: 0.4s;
  padding: 10px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.submenu__list .submenu__item p {
  margin: 0;
  font-size: 14px !important;
  color: var(--text-color) !important;
}

.submenu__list .submenu__item .image img {
  width: 50px;
  aspect-ratio: 16 / 16;
  background-size: cover;
}

.submenu__list .submenu__item h3 {
  margin: 0;
  font-size: 20px !important;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.submenu__list .submenu__item:hover {
  background: #edf9ff;
}

.submenu__list .submenu__item.active {
  background: #edf9ff;
}

.submenu .submenu__inner__offer .offer__img .badge {
  position: absolute;
  right: 0px;
  top: 10px;
}

.submenu .submenu__inner__offer .offer__img .badge span {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}

.submenu .submenu__inner__offer .offer__img .details {
  position: absolute;
  right: 20px;
  top: 40px;
  text-align: right;
}

.submenu .submenu__inner__offer .offer__img .details h2 {
  font-size: 32px;
  font-weight: 800;
  margin-top: 16px;
  color: var(--white);
}

.submenu .submenu__inner__offer .offer__img .details p {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
}

.submenu .submenu__inner__offer .details .shop_now_btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 30px;
  padding: 10px 30px;
  transition: 0.4s;
}

.submenu .submenu__inner__offer .details .shop_now_btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.submenu .submenu__list li {
  display: block;
  line-height: 1;
  margin: 0 auto;
}
.submenu .submenu__list li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  line-height: 1.4;
  text-transform: capitalize;
  color: var(--text-color);
  transition: all 0.25s ease-in-out;
}

.submenu .submenu__list .menu__link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.submenu .submenu__list .menu__link:hover::after {
  width: 100%;
}

.submenu .submenu__list li .active:hover::after {
  width: 0% !important;
}

.submenu .submenu__list .menu__link:nth-child(1) {
  margin-top: 0px;
}
.submenu .submenu__list .menu__link:hover {
  color: var(--primary-color);
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
  pointer-events: none;
}

.navbar__main .burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 25px;
  height: 15px;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

.burger .burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 15px;
  background: var(--black) !important;
}

.navbar__main .burger .burger-line:nth-child(1) {
  top: 0px;
  height: 2px;
}
.navbar__main .burger .burger-line:nth-child(2) {
  top: 8px;
  width: 70%;
}
.navbar__main .burger .burger-line:nth-child(3) {
  top: 16px;
}

.mobile_sidelogo {
  display: none;
  background: var(--primary-color);
  padding: 16px 20px;
}

.mobile_sidelogo svg {
  display: block;
  height: 40px;
  width: 140px;
  object-fit: contain;
}

.mobile_view_contact {
  width: 100%;
  display: none;
}

.mobile_view_contact .card_item {
  width: 100%;
  display: flex;
  padding: 0px 10px;
  padding-bottom: 10px;
  justify-content: space-between;
  gap: 10px;
}

.mobile_view_contact .card_item .active {
  background: var(--primary-color);
  color: var(--white);
}

.mobile_view_contact .card_item .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid #83d7ff;
  text-decoration: none;
  padding: 10px;
  border-radius: 12px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.mobile_view_contact .card_item .item span {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--secondary-font);
}

.mobile_view_contact .card_item .item:hover {
  background: var(--primary-color);
  color: var(--white);
}

.mobile_view_contact .card_item .item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Landscape orientation for smaller devices */
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .submenu .megamenu__text__wrapper .inner__wrapper {
    flex-direction: column;
    overflow-y: auto;
  }
}
/* Landscape orientation for smaller devices */

@media (min-width: 992px) {
  .submenu.megamenu__normal {
    left: 85%;
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .submenu.megamenu__text {
    display: flex;
    width: 60%;
    gap: 20px;
    height: auto;
  }
  .submenu .megamenu__text__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .submenu .megamenu__text__wrapper .inner__wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1250px) {
  .menu .menu__inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .menu .menu__header .menu__title {
    cursor: pointer;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
    transition: all 0.25s ease;
  }
  .menu .menu__header .menu__arrow {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0px 15px 0px 15px;
  }

  .navbar__main .burger {
    display: block;
  }

  .menu .menu__inner .menu__item .menu__link:hover {
    border-bottom: 3px solid transparent;
  }

  .submenu__list .submenu__item h3 {
    font-size: 18px !important;
    margin-bottom: 6px;
  }

  .submenu__list .submenu__item {
    gap: 10px;
  }

  .mobile_view_contact {
    display: block;
  }

  .navbar__main .navbar .navbar__left .mobile_user {
    display: block;
  }

  .submenu .submenu__inner__offer .offer__img {
    padding: 40px;
  }

  .menu .menu__header .menu__arrow > i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--white);
    transition: all 0.25s ease;
    border: 1px solid var(--white);
    border-radius: 4px;
    padding: 5px 5px 3.5px 5px;
    transform: rotate(90deg) !important;
  }
  .menu .menu__header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }
  .menu .menu__header.is-active {
    visibility: visible;
    padding: 10px 0;
    background: var(--primary-color);
  }
  .menu .menu__header.is-active > .menu__arrow {
    display: flex;
  }

  .navbar__main .menu {
    position: fixed;
    top: 0px;
    left: 0;
    width: 300px;
    max-width: 100%;
    min-height: 100vh;
    z-index: 100;
    overflow: hidden;
    background-color: #fff;
    transform: translate(-100%);
    transition: all 0.4s ease-in-out;
  }
  .navbar__main .menu.is-active {
    transform: translate(0%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile_view_contact .card_item {
    padding-bottom: 70px;
  }
  .navbar__main .navbar .navbar__left {
    flex: 0 0 100%;
    justify-content: space-between;
  }
  .navbar .navbar__center {
    flex: 0 0 100%;
    align-items: center;
  }
}

@media screen and (max-width: 1250px) {
  .menu .menu__inner .menu__item {
    display: block;
    padding: 0;
    margin-left: 0px;
  }
  .menu .menu__inner {
    padding-top: 53px;
  }
}
@media (min-width: 1250px) {
  .menu .menu__inner .menu__item:hover > .menu__link i {
    transform: rotate(180deg);
  }

  .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
}
@media (min-width: 1250px) {
  .navbar__main .submenu {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

@media screen and (max-width: 1250px) {
  .submenu .submenu__inner {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .mobile_sidelogo {
    display: block;
  }

  .submenu .submenu__inner__offer {
    width: 100%;
    height: auto;
    padding: 0px;
  }

  .navbar__main .client_btn {
    display: none;
  }

  .navbar__main .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    max-width: none;
    min-width: auto;
    margin-top: 50px;
    padding: 15px 15px;
    border-radius: 0;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
  }
  .navbar__main .submenu.is-active {
    display: block;
  }
  .navbar__main .submenu.is-active .mobile_sidelogo {
    display: none;
  }

  .menu .menu__inner i {
    margin-left: 10px;
    font-size: 10px !important;
    color: var(--primary-color);
  }

  .menu .menu__inner .menu__item .menu__link {
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--black);
  }

  .submenu .submenu__list {
    margin-bottom: 20px;
  }
}

@media (max-width: 1250px) {
  .navbar__main .burger {
    opacity: 1;
    visibility: visible;
  }

  .navbar__main .wrapper {
    padding: 8px 10px;
  }

  .navbar__main .overlay {
    cursor: url(../icons/close.png), crosshair;
    pointer-events: visible;
  }

  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .submenu .submenu__list li a {
    display: inline-block;
    max-width: 100%;
  }
}
/* Navbar End */

/* Footer Start */

#footer {
  position: relative;
  background-color: #0e0f10;
  padding-top: 100px;
  margin-top: 80px;
}

.footer_shape {
  width: 130px;
  position: absolute;
  top: 0;
  left: 0;
}

.footer_shape img {
  width: 100%;
}

.footer_contact h4 {
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 1.6em;
  font-weight: 400;
  margin-bottom: 25px;
}

.footer_contact_btn_box .footer_contact_btn {
  font-family: var(--secondary-font);
  font-weight: 600;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 170px;
  font-size: 1em;
  text-decoration: none;
  background-color: var(--white);
  color: var(--primary-color);
  /* padding: 13px 30px; */
  clip-path: polygon(8% 0, 92% 0, 100% 48%, 91% 100%, 8% 100%, 0% 50%);
  transition: 0.4s;
}

.footer_contact_btn_box .footer_contact_btn:hover svg {
  margin-left: 10px;
}

.footer_contact_btn_box .footer_contact_btn svg {
  width: 25px;
  margin-left: 5px;
  transition: 0.5s;
}

.footer_contact_btn_box .footer_contact_btn svg path {
  fill: var(--primary-color);
}

.footer_contact_social {
  display: flex;
  flex-direction: column;
  justify-content: right;
  width: 100%;
}

.footer_contact_social .stripe {
  display: flex;
  align-items: end;
  justify-content: right;
}

.footer_contact_social h4 {
  text-align: center;
}

#footer .flow-us {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
}

#footer .license {
  margin-top: 40px;
}

.footer_content .heading .title {
  font-size: 18px;
  color: var(--white);
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 20px;
}

#footer .partner .footer_content:nth-child(1) .title {
  text-align: left;

}

#footer .partner .footer_content:nth-child(2) .title {
  text-align: right;

}

#footer .partner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

#footer .partner .footer_content {
  width: 40%;

}

#footer .partner .footer_content:first-child {
  width: 58%;
}

#footer .partner .footer_content:nth-child(2) {
  width: 40%;
}

.footer_content .box {
  display: inline-block;
  width: 100%;
}

.footer_content .box img {
  width: 100%;
  background-size: contain;
  object-fit: contain;
}

#footer .footer-partner-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

#footer .footer-partner-logo {
  min-width: 0;
  height: 66px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-partner-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

#footer .footer-partner-logo:nth-child(-n+5) img {
  max-height: 42px;
}

#footer .footer-partner-logo:nth-child(4) img {
  max-height: 48px;
}

#footer .footer-partner-logo:nth-child(5) img {
  max-height: 36px;
}

#footer .footer-partner-logo-iso {
  width: 84px;
  height: 58px;
  flex: 0 0 84px;
}

#footer .footer-partner-logo-iso img {
  width: 84px;
  max-width: 84px;
  max-height: 58px;
}

#footer .license span {
  font-size: 18px;
  color: var(--white);
  font-family: var(--primary-font);
  font-weight: 400;
}

.footer_content .footer_logo {
  width: 180px;
  margin-bottom: 40px;
}

.footer_content .footer_logo img {
  width: 100%;
}

.footer_desc p {
  font-family: var(--secondary-font);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0px;
}

.footer_payment_methods_img {
  margin-bottom: 25px;
}

.footer_payment_methods_img img {
  width: 65%;
  float: right;
}

.payment_more_btn {
  text-align: right;
}

.payment_more_btn a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--secondary-font);
  font-weight: 600;
  transition: 0.5s;
}

.payment_more_btn a:hover {
  color: var(--white);
}

.payment_more_btn a:hover svg {
  transform: translateX(10px);
}

.payment_more_btn a svg {
  width: 30px;
  margin-left: 5px;
  transition: 0.5s;
}

.footer_content h3 {
  font-size: 18px;
  color: var(--white);
  font-family: var(--primary-font);
  font-weight: 500;
  margin-bottom: 25px;
}

.footer_menu {
  width: 100%;
}

.footer_menu_items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_menu_items li {
  padding-bottom: 10px;
}

.footer_menu_items li a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--secondary-font);
}

.footer_menu_items li a:hover {
  color: #ccc;
}

.footer_menu_items .footer_contact_btn svg {
  width: 30px;
  margin-right: 5px;
}

.footer_menu_items .footer_contact_btn svg path {
  fill: var(--primary-color) !important;
}

/* copyright */

.copyright {
  margin-top: 50px;
  border-top: 1px solid #ffffff;
  padding: 20px 0;
}

.copyright_content {
  color: var(--white);
  font-family: var(--secondary-font);
  font-size: 1rem;
}

.copyright_content .stripe {
  display: flex;
  align-items: center;
  gap: 10px;
}


.copyright_content .member {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyright_content .member .icon img {
  width: 28px;
  height: 28px;
}

.copyright_content .member p {
  color: var(--white);
    font-family: var(--secondary-font);
    font-size: 1rem;
    text-align: left;
  margin: 0;
}


.copyright_content span {
  color: var(--primary-color);
  font-weight: 600;
}

.copyright_content span:first-child {
  font-size: 1.2em;
}

.copyright_social_items {
  position: relative;
  float: right;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.copyright_social_items li {
  position: relative;
  width: 40px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0% 25%, 50% 0, 100% 25%, 100% 76%, 50% 100%, 0% 75%);
  background: var(--white);
  transition: 0.5s;
}

.copyright_social_items li a {
  text-decoration: none;
  color: var(--white);
  position: relative;
  width: 47px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0% 25%, 50% 0, 100% 25%, 100% 76%, 50% 100%, 0% 75%);
  background-color: #0e0f10;
  transition: 0.5s;
  z-index: 10px;
}

.copyright_social_items li a i {
  color: #000000 !important;
  font-size: 1.4em;
  filter: invert(1);
  transition: 0.5s;
}

.copyright_social_items li:hover a {
  background: #fff;
}

.copyright_social_items li:hover i {
  transition: 0.5s;
  transform: scale(1.1);
  color: white !important;
}

.copyright_content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.copyright_content ul li a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--secondary-font);
}

@media screen and (max-width: 992px) {
  #footer .partner .footer_content:nth-child(1) .title {
    text-align: center;
  
  }
  
  #footer .partner .footer_content:nth-child(2) .title {
    text-align: center;
  
  }

}

@media screen and (max-width: 370px) {
  .copyright_content .stripe {
    flex-direction: column;
    gap: 0;
  }
  .copyright_content .bar {
    display: none;
  }

}

/* back to top btn */
.back-top-icon {
  width: 55px;
  height: 55px;
  line-height: 48px;
  text-align: center;
  color: var(--global-color);
  display: inline-block;
  background-color: var(--accent-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 50%;
  position: relative;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.back-top-icon:hover svg path {
  fill: var(--black);
}
.back-top-icon:hover svg .arrow {
  fill: var(--white);
}
.back-top-icon svg path {
  transition: 0.4s;
}
.back-top-icon svg .arrow {
  transition: 0.4s;
}

.back-top-icon svg {
  width: 40px;
  height: 40px;
}

.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 30px;
  z-index: 3;
}

@media screen and (max-width: 990px) {
  .footer_content .footer_logo {
    margin-bottom: 40px;
  }

  .footer_menu {
    margin: 40px 0 0;
  }

  .footer_contact_social .stripe {
    flex-direction: column;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .footer_content .footer_logo {
    display: block;
    margin: auto;
    margin-bottom: 40px;
  }

  .footer_payment_methods_img img {
    width: 65%;
    display: block;
    margin: auto;
    float: none;
  }

  .payment_more_btn {
    text-align: center;
  }

  .footer_contact_social .stripe {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }

  #footer .partner {
    flex-direction: column;
    gap: 40px;
  }

  #footer .partner .footer_content {
    width: 100%;
  }

  #footer .flow-us {
    align-items: center;
  }

  .footer_shape {
    display: none;
  }

  .footer_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .copyright_social_items {
    float: left;
  }

  .copyright_content {
    font-size: 0.9rem;
    text-align: center;
  }

  .copyright_content ul {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}

/* Footer End */

/* Hosted eCommerce navigation badge */
.navbar__main .hosted-ecommerce-nav {
  position: relative !important;
}

.navbar__main .hosted-ecommerce-nav .menu__link {
  position: relative;
  white-space: nowrap;
}

.navbar__main .hosted-ecommerce-label {
  white-space: nowrap;
  text-transform: none;
}

.navbar__main .hosted-ecommerce-badge {
  position: absolute;
  left: auto;
  right: -3px;
  top: 1px;
  transform: translate(30%, -20%);
  min-width: 27px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #0069ff;
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .2px;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0,105,255,.24);
}

.navbar__main .hosted-ecommerce-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 6px;
  height: 6px;
  background: #0069ff;
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 1250px) {
  .navbar__main .hosted-ecommerce-nav .menu__link {
    justify-content: flex-start;
  }

  .navbar__main .hosted-ecommerce-badge {
    position: static;
    order: 2;
    transform: none;
    margin-left: 9px;
  }

  .navbar__main .hosted-ecommerce-badge::after {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  #footer .partner .footer_content:first-child,
  #footer .partner .footer_content:nth-child(2) {
    width: 100%;
  }

  #footer .footer-partner-logos {
    max-width: 620px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media screen and (max-width: 480px) {
  #footer .footer-partner-logos {
    gap: 10px;
  }
}

/* Refined desktop navigation and service mega menus. */
@media (min-width: 1251px) {
  .navbar__main .wrapper { padding-top: 10px; padding-bottom: 10px; }
  .navbar__main .menu .menu__inner { display: flex; align-items: center; gap: 12px; }
  .navbar__main .menu .menu__inner .menu__item .menu__link {
    position: relative; min-height: 48px; margin: 0; padding: 0 7px; border-bottom: 0;
    font-size: 16px; font-weight: 500;
  }
  .navbar__main .menu .menu__inner .menu__item .menu__link::after {
    content: ""; position: absolute; right: 7px; bottom: -1px; left: 7px; height: 3px;
    border-radius: 4px 4px 0 0; background: var(--primary-color); transform: scaleX(0); transition: transform .25s ease;
  }
  .navbar__main .menu .menu__inner .menu__item .menu__link:hover,
  .navbar__main .menu .menu__inner .menu__item .menu__link.active { border-bottom: 0; }
  .navbar__main .menu .menu__inner .menu__item .menu__link:hover::after,
  .navbar__main .menu .menu__inner .menu__item .menu__link.active::after { transform: scaleX(1); }

  .navbar__main .client_btn {
    min-width: 142px; justify-content: center; padding: 13px 17px; border-radius: 11px;
    background: linear-gradient(135deg, #087bff, #0069ed); box-shadow: 0 10px 25px rgba(0,105,255,.23);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .navbar__main .client_btn > svg { display: none; }
  .navbar__main .client_btn span { color: #fff; }
  .navbar__main .client_btn img { display: none; }
  .navbar__main .client_btn::after {
    content: "";
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-left: 2px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background-color: rgba(255,255,255,.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M8 7h9v9'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    transition: transform .22s ease, background-color .22s ease;
  }
  .navbar__main .client_btn:hover {
    background: linear-gradient(135deg, #0069ed, #0054c8); box-shadow: 0 14px 30px rgba(0,105,255,.3); transform: translateY(-2px);
  }
  .navbar__main .client_btn:hover::after {
    background-color: rgba(255,255,255,.22);
    transform: translate(2px,-2px);
  }

  .navbar__main .submenu.megamenu__text {
    top: 100%; left: 50%; display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 20px; width: min(1160px, calc(100vw - 48px)); min-height: 370px; padding: 20px; overflow: hidden;
    border: 1px solid #e3eaf3; border-radius: 22px; background: rgba(255,255,255,.98);
    box-shadow: 0 30px 80px rgba(25,58,99,.18), 0 4px 18px rgba(25,58,99,.07);
    opacity: 0; visibility: hidden; transform: translate(-50%,10px);
    transition: opacity .22s ease, visibility .22s ease, transform .28s ease;
  }
  .navbar__main .submenu.megamenu__text::before {
    content: ""; position: absolute; top: -17px; right: 0; left: 0; height: 17px;
  }
  .navbar__main .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu.megamenu__text {
    top: 100%; opacity: 1; visibility: visible; transform: translate(-50%,0);
  }
  .navbar__main .submenu .megamenu__text__wrapper,
  .navbar__main .submenu .submenu__inner { width: 100%; min-width: 0; }
  .navbar__main .submenu .megamenu__text__wrapper { padding: 3px 4px; }
  .navbar__main .submenu .submenu__inner .submenu__list { display: grid; gap: 7px; margin: 0; padding: 0; }
  .navbar__main .submenu .submenu__list li,
  .navbar__main .submenu .submenu__list li a { width: 100%; margin: 0; }
  .navbar__main .submenu .submenu__list .submenu__item {
    position: relative; display: flex !important; align-items: center; min-height: 76px; gap: 15px;
    padding: 12px 52px 12px 14px; overflow: hidden; border: 1px solid transparent; border-radius: 14px;
    background: transparent; box-shadow: none; text-transform: none;
    transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  }
  .navbar__main .submenu .submenu__list .submenu__item::before {
    content: ""; position: absolute; top: 8px; bottom: 8px; left: 0; width: 4px;
    border-radius: 0 4px 4px 0; background: var(--primary-color); opacity: 0;
  }
  .navbar__main .submenu .submenu__list .submenu__item::after {
    content: ""; position: absolute; top: 50%; right: 16px; display: block;
    width: 34px; height: 34px; border-radius: 50%; opacity: 0;
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
    background-position: center; background-repeat: no-repeat; background-size: 16px 16px;
    transform: translateY(-50%) translateX(-6px);
    transition: opacity .2s ease, transform .22s ease;
  }
  .navbar__main .submenu .submenu__list .submenu__item:hover,
  .navbar__main .submenu .submenu__list .submenu__item.active {
    border-color: #bedbff; background: linear-gradient(100deg,#edf6ff,#f8fbff); box-shadow: 0 9px 24px rgba(0,105,255,.08);
  }
  .navbar__main .submenu .submenu__list .submenu__item:hover::before,
  .navbar__main .submenu .submenu__list .submenu__item.active::before { opacity: 1; }
  .navbar__main .submenu .submenu__list .submenu__item:hover::after,
  .navbar__main .submenu .submenu__list .submenu__item.active::after {
    opacity: 1; transform: translateY(-50%) translateX(2px);
  }
  .navbar__main .submenu .submenu__list .submenu__item .image {
    display: grid; place-items: center; flex: 0 0 56px; width: 56px; height: 56px; border-radius: 13px; background: #e6f3ff;
  }
  .navbar__main .submenu .submenu__list li:nth-child(2) .image { background: #fff1e6; }
  .navbar__main .submenu .submenu__list li:nth-child(3) .image { background: #f4eaff; }
  .navbar__main .submenu .submenu__list li:nth-child(4) .image { background: #e8f8f3; }
  .navbar__main .submenu .submenu__list .submenu__item .image img { width: 34px; height: 34px; object-fit: contain; }
  .navbar__main .submenu .submenu__list .submenu__item .image > i,
  .navbar__main .submenu .submenu__list .submenu__item .image > svg {
    margin: 0; padding: 0; color: var(--primary-color); font-size: 23px !important; line-height: 1;
  }
  .navbar__main .submenu .submenu__list .submenu__item .image > svg { width: 23px; height: 23px; }
  .navbar__main .submenu .submenu__list li:nth-child(2) .image > i,
  .navbar__main .submenu .submenu__list li:nth-child(2) .image > svg { color: #ff711f; }
  .navbar__main .submenu .submenu__list li:nth-child(3) .image > i,
  .navbar__main .submenu .submenu__list li:nth-child(3) .image > svg { color: #8e35db; }
  .navbar__main .submenu .submenu__list li:nth-child(4) .image > i,
  .navbar__main .submenu .submenu__list li:nth-child(4) .image > svg { color: #009b72; }
  .navbar__main .submenu .submenu__list .submenu__item .text { min-width: 0; }
  .navbar__main .submenu .submenu__list .submenu__item h3 {
    margin: 0 0 4px; color: #111c31; font-size: 17px !important; font-weight: 650; line-height: 1.25;
  }
  .navbar__main .submenu .submenu__list .submenu__item p {
    margin: 0; color: #67758b !important; font-size: 12px !important; line-height: 1.45;
  }

  .navbar__main .submenu .submenu__inner__offer {
    width: 100%; min-width: 0; min-height: 328px; padding: 0; overflow: hidden; border-radius: 16px; background: #07152d;
  }
  .mega-feature {
    position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end;
    width: 100%; height: 100%; min-height: 328px; padding: 28px; overflow: hidden;
    background-position: center; background-size: cover; color: #fff;
  }
  .mega-feature::before {
    content: ""; position: absolute; z-index: -1; inset: 0;
    background: linear-gradient(90deg,#06152f 0%,#06152f 45%,rgba(6,21,47,.93) 55%,rgba(6,21,47,.22) 78%,rgba(6,21,47,0) 100%);
  }
  .mega-feature--hosting,
  .mega-feature--servers,
  .mega-feature--dedicated {
    background-image: url('/assets/img/navigation-server-room.webp?v=2');
    background-position: center right;
  }
  .mega-feature > span {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #75b4ff;
    font-size: 9px; font-weight: 700; letter-spacing: 2.2px;
  }
  .mega-feature > span::after { content: ""; width: 48px; height: 1px; background: #4c9cff; }
  .mega-feature h2 {
    max-width: 56%; margin: 0 0 10px; color: #fff; font-size: 28px; font-weight: 650; line-height: 1.12; letter-spacing: -.8px;
  }
  .mega-feature > p { max-width: 56%; margin: 0 0 21px; color: #c8d4e6; font-size: 12px; line-height: 1.55; }
  .mega-feature__benefits { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; width: 59%; }
  .mega-feature__benefits small {
    display: flex; align-items: center; min-width: 0; gap: 9px; padding: 9px 10px;
    border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.09); backdrop-filter: blur(8px);
  }
  .mega-feature__benefits small i {
    display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px;
    border-radius: 8px; background: rgba(0,105,255,.9); color: #fff; font-size: 12px;
  }
  .mega-feature__benefits small b {
    overflow: hidden; color: #fff; font-size: 10px; font-weight: 600; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap;
  }
}

@media (max-width: 1250px) {
  .navbar__main .submenu .submenu__inner__offer { display: none; }
}

/* ISO certification badge in the bottom copyright row. */
#footer .copyright_content .stripe .footer-iso-certified {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
  width: 72px;
  height: 50px;
  margin-right: -3px;
}
#footer .copyright_content .stripe .footer-iso-certified img {
  display: block;
  width: 62px;
  height: 46px;
  object-fit: contain;
}

/* Modern mobile navigation matching the desktop mega-menu design. */
@media (max-width: 1250px) {
  .navbar__main .overlay {
    background: rgba(5, 14, 30, .62);
    backdrop-filter: blur(3px);
  }
  .navbar__main .menu {
    width: min(360px, 88vw);
    max-width: 360px;
    min-height: 100vh;
    min-height: 100dvh;
    background: #f7faff;
    box-shadow: 24px 0 70px rgba(3, 18, 43, .22);
  }
  .navbar__main .menu > .wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .navbar__main .mobile_sidelogo {
    margin: 12px 12px 4px;
    padding: 15px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #087bff, #0064e8);
    box-shadow: 0 12px 25px rgba(0, 105, 255, .2);
  }
  .navbar__main .mobile_sidelogo svg {
    width: 132px;
    height: 39px;
  }
  .navbar__main .menu .menu__inner {
    height: auto;
    margin: 0;
    padding: 12px 13px 28px;
    overflow: visible;
  }
  .navbar__main .menu .menu__inner .menu__item {
    margin: 3px 0;
  }
  .navbar__main .menu .menu__inner .menu__item .menu__link {
    min-height: 49px;
    justify-content: flex-start;
    gap: 8px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #18243a;
    font-size: 15px;
    font-weight: 500;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
  }
  .navbar__main .menu .menu__inner .menu__item .menu__link:hover,
  .navbar__main .menu .menu__inner .menu__item .menu__link.active {
    border-bottom: 1px solid #c5ddff;
    border-color: #c5ddff;
    background: #eaf4ff;
    color: var(--primary-color);
  }
  .navbar__main .menu .menu__inner .menu__item.menu__dropdown > .menu__link > i,
  .navbar__main .menu .menu__inner .menu__item.menu__dropdown > .menu__link > svg {
    width: 13px;
    height: 13px;
    margin-left: auto;
    padding: 0;
    color: #66758b;
    font-size: 13px !important;
  }
  .navbar__main .hosted-ecommerce-nav .menu__link { justify-content: flex-start; }
  .navbar__main .hosted-ecommerce-badge {
    margin-left: auto;
    padding: 2px 7px;
    font-size: 8px;
  }

  .navbar__main .menu .menu__header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 66px;
    padding: 0 13px;
    border-bottom: 1px solid #dce8f7;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 58, 104, .08);
  }
  .navbar__main .menu.is-submenu-open .menu__header {
    display: flex;
    visibility: visible;
    opacity: 1;
    z-index: 1000;
  }
  .navbar__main .menu.is-submenu-open .mobile_sidelogo {
    display: none;
  }
  .navbar__main .menu .menu__header.is-active {
    padding: 0 13px;
    background: #fff;
  }
  .navbar__main .menu .menu__header .menu__arrow {
    width: auto;
    height: 38px;
    margin: 0 11px 0 0;
    padding: 0 12px;
    gap: 7px;
    border-radius: 10px;
    background: #eaf4ff;
  }
  .navbar__main .menu .menu__header .menu__arrow > i,
  .navbar__main .menu .menu__header .menu__arrow > svg {
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--primary-color);
    font-size: 14px !important;
    transform: none !important;
  }
  .navbar__main .menu .menu__header .menu__back-label {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }
  .navbar__main .menu .menu__header .menu__title {
    color: #142139;
    font-size: 16px;
    font-weight: 600;
  }
  .navbar__main .submenu {
    top: 0;
    height: calc(100vh - 66px);
    height: calc(100dvh - 66px);
    margin-top: 66px;
    padding: 15px 13px 28px;
    background: #f7faff;
  }
  .navbar__main .submenu .submenu__inner { margin: 0; }
  .navbar__main .submenu .submenu__inner .submenu__list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
  }
  .navbar__main .submenu .submenu__list li,
  .navbar__main .submenu .submenu__list li a { width: 100%; margin: 0; }
  .navbar__main .submenu .submenu__list .submenu__item {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 76px;
    gap: 13px;
    padding: 11px 42px 11px 11px;
    border: 1px solid #e1eaf5;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 19px rgba(23, 63, 111, .06);
    text-transform: none;
  }
  .navbar__main .submenu .submenu__list .submenu__item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    width: 25px;
    height: 25px;
    border-radius: 7px;
    background-color: #edf5ff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230069ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    transform: translateY(-50%);
  }
  .navbar__main .submenu .submenu__list .submenu__item:hover,
  .navbar__main .submenu .submenu__list .submenu__item.active {
    border-color: #aecdff;
    background: #edf6ff;
    box-shadow: 0 9px 24px rgba(0, 105, 255, .1);
  }
  .navbar__main .submenu .submenu__list .submenu__item .image {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e5f2ff;
  }
  .navbar__main .submenu .submenu__list li:nth-child(2) .image { background: #fff0e5; }
  .navbar__main .submenu .submenu__list li:nth-child(3) .image { background: #f3e8ff; }
  .navbar__main .submenu .submenu__list li:nth-child(4) .image { background: #e7f8f2; }
  .navbar__main .submenu .submenu__list .submenu__item .image > i,
  .navbar__main .submenu .submenu__list .submenu__item .image > svg {
    width: 21px;
    height: 21px;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-size: 21px !important;
  }
  .navbar__main .submenu .submenu__list li:nth-child(2) .image > i,
  .navbar__main .submenu .submenu__list li:nth-child(2) .image > svg { color: #ff711f; }
  .navbar__main .submenu .submenu__list li:nth-child(3) .image > i,
  .navbar__main .submenu .submenu__list li:nth-child(3) .image > svg { color: #8e35db; }
  .navbar__main .submenu .submenu__list li:nth-child(4) .image > i,
  .navbar__main .submenu .submenu__list li:nth-child(4) .image > svg { color: #009b72; }
  .navbar__main .submenu .submenu__list .submenu__item .text { min-width: 0; }
  .navbar__main .submenu .submenu__list .submenu__item h3 {
    margin: 0 0 4px;
    color: #152139;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.3;
  }
  .navbar__main .submenu .submenu__list .submenu__item p {
    margin: 0;
    color: #6b788c !important;
    font-size: 10px !important;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .navbar__main .menu { width: 88vw; }
}
