/* ===================================================
>>> TABLE OF CONTENTS:
======================================================
01. Fonts
02. General
03. Scroll top button
04. Header

=================================================== */
/* ----------------------------------------------------------------
    01. Fonts
------------------------------------------------------------------- */
/* Galano Grotesque Font */
/* Light */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 300;
  src: local("Galano Grotesque Light"), url("../fonts/GalanoGrotesqueLight.otf") format("opentype");
}
/* Regular */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 400;
  src: local("Galano Grotesque Regular"), url("../fonts/GalanoGrotesqueRegular.otf") format("opentype");
}
/* Medium */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 500;
  src: local("Galano Grotesque Medium"), url("../fonts/GalanoGrotesqueMedium.otf") format("opentype");
}
/* SemiBold */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 600;
  src: local("Galano Grotesque SemiBold"), url("../fonts/GalanoGrotesqueSemiBold.otf") format("opentype");
}
/* Bold */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 700;
  src: local("Galano Grotesque Bold"), url("{../fonts/GalanoGrotesqueBold.otf") format("opentype");
}
/* ExtraBold */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 800;
  src: local("Galano Grotesque ExtraBold"), url("../fonts/GalanoGrotesqueExtraBold.otf") format("opentype");
}
/* Heavy */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 900;
  src: local("Galano Grotesque Heavy"), url("../fonts/GalanoGrotesqueHeavy.otf") format("opentype");
}
/* Black */
@font-face {
  font-family: "Galano Grotesque";
  font-style: normal;
  font-weight: 1000;
  src: local("Galano Grotesque Black"), url("../fonts/GalanoGrotesqueBlack.otf") format("opentype");
}
:root {
  --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Galano Grotesque", var(--fallback-fonts);
}
/* Colors */ :root {
  --color-primary: 28, 45, 110;
  --color-primary-dark: 8, 20, 66;
  --color-white: #fff;
  --font-remixicon: remixicon;
  --font-bootstrap-icons: bootstrap-icons;
}
/* Smooth scroll behavior */ :root {
  scroll-behavior: smooth;
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--color-primary)) transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: rgb(var(--color-primary));
}
::selection {
  background: rgb(var(--color-primary));
}
::selection {
  color: var(--color-white);
  text-shadow: none;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
/*--------------------------------------------------------------
    02. General
--------------------------------------------------------------*/
body {
  font-family: var(--font-primary);
  font-weight: 500;
  overflow-x: hidden;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #282337;
}
p {
  color: #373737;
}
@media (min-width: 1270px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    /*max-width: 1250px !important;*/
  }
}
a {
  color: rgb(var(--color-primary));
  text-decoration: none;
}
a:hover {
  color: rgb(var(--color-primary-dark));
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.list-dot li {
  list-style: square;
  list-style-position: inside;
  font-size: 16px;
  font-weight: 400;
}
.list-dot-two {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.list-dot-two li {
  font-size: 16px;
  position: relative;
  padding-inline-start: 25px;
  width: 100%;
  font-weight: 400;
}
@media (min-width:768px) {
  .list-dot-two.two li {
    width: 48%;
  }
}
.list-dot-two li:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  background: rgb(var(--color-primary));
  transform: rotate(45deg);
  width: 10.17px;
  height: 10.17px;
  opacity: 0.4;
}
.bg-trasparent {
  background: transparent !important;
}
.w-fit-content {
  width: fit-content;
}
input[type="checkbox"] {
  accent-color: rgb(var(--color-primary)) !important;
  height: 15px;
  width: 15px;
}
input[type="radio"] {
  accent-color: rgb(var(--color-primary)) !important;
  height: 15px;
  width: 15px;
}
.fw-600 {
  font-weight: 600;
}
.main-footer hr {
  color: #000;
}
/* ----------------------------------------------------------------
    03. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset-inline-end: 10px;
  bottom: -40px;
  z-index: 99999;
  background: rgb(0, 0, 0);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.5s;
  cursor: pointer;
  border: 0;
  outline: unset;
  box-shadow: unset;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  inset-inline-start: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: rgb(var(--color-primary-dark));
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 67px;
}
/* ----------------------------------------------------------------
    04. Header
------------------------------------------------------------------- */
.main-header {
  background-color: #FFF;
  height: 67px;
  position: relative;
}
.header-sticky {
  position: fixed;
  z-index: 14;
  width: 100%;
  box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 20px 0px;
  transition: transform 100ms ease-in-out, background-color 200ms ease-in-out;
  background-color: rgb(252, 252, 252);
}
.main-header.dropdown-open {
  background-color: rgb(252, 252, 252);
}
.main-header .nabbar-nav {
  margin-bottom: 0;
  height: 100%;
}
.main-header .nabbar-nav > .container-lg {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand {
  display: inline-block;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand img {
  max-height: 30px;
}
/* Desktop Navigation */
@media (min-width: 992px) {
  .main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand {
    margin-inline-end: 32px;
  }
  .main-header .nabbar-nav .mainmenu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
  }
  .main-header .nabbar-nav .mainmenu li {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu li.megamenu {
    position: inherit;
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s;
    color: rgb(54, 54, 54);
    font-weight: 600;
  }
  .main-header .nabbar-nav .mainmenu > li > a > span.offer {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu > li > a > span.offer:after {
    content: attr(data-offer);
    background: rgb(var(--color-primary));
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    padding: 1px 4px;
    margin-inline-start: 5px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    top: -5px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown > a > .dropdown-indicator {
    font-size: 12px;
    line-height: 0;
    margin-inline-start: 5px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened > a {
    color: rgb(var(--color-primary));
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened > a > .dropdown-indicator {
    transform: rotate(-180deg);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu {
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    background-color: rgb(252, 252, 252);
    border-radius: 0px 0px 50px 50px;
    padding: 32px 0px;
    position: absolute;
    top: 67px;
    left: 0px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out;
    z-index: 5;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.megamenu.two .submenu {
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    background-color: rgb(252, 252, 252);
    border-radius: 0px 0px 50px 50px;
    padding: 32px 0px;
    position: absolute;
    top: 67px;
    left: 50%;
    width: 50%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out;
    z-index: 5;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    transform: translateX(-50%);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.visible {
    visibility: visible;
    pointer-events: unset;
    opacity: 1;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.megamenu.two .submenu.visible {
    visibility: visible;
    pointer-events: unset;
    opacity: 1;
  }
  .main-header .navbar-button, .main-header .nabbar-nav .mobile-menu-header {
    display: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 960px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    border-bottom: 1px dashed rgb(235, 235, 235);
    list-style: none;
    padding-bottom: 24px;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.megamenu.two .submenu .megamenu-item > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 16px;
    padding: 32px 24px 0px;
    background-color: rgb(243, 249, 255);
    border-radius: 10px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div > p:first-child {
    color: rgb(54, 54, 54);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div > p:nth-child(2) {
    color: rgb(54, 54, 54);
    font-size: 10px;
    line-height: 18px;
    margin-bottom: 0;
    font-weight: 400;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div > a {
    color: rgb(var(--color-primary));
    display: flex;
    -moz-box-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    padding-bottom: 2px;
    width: fit-content;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading img {
    width: 100px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div > a:hover {
    background-size: 100% 1px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div > a > i {
    margin-inline-start: 5px;
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div > a:hover > i {
    margin-inline-start: 10px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list > div > img {
    margin-top: 0px;
    margin-bottom: -17px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading span {
    display: block;
    padding: 4px 8px;
    border-radius: 10px;
    width: max-content;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    white-space: nowrap;
    height: 24px;
    position: relative;
    z-index: 5;
    background-color: rgb(144, 219, 150);
    color: rgb(54, 54, 54);
    font-size: 13px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(144, 219, 150) transparent transparent transparent;
    transform: translatey(-50%) rotate(90deg);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a {
    color: rgb(var(--color-primary));
    display: flex;
    -moz-box-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
    padding-bottom: 2px;
    width: fit-content;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a i {
    margin-inline-start: 5px;
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a:hover {
    background-size: 100% 1px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a:hover i {
    margin-inline-start: 10px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    padding: 16px 32px 16px 16px;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover {
    background-color: rgb(243, 249, 255);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:after {
    content: '\ea6c';
    right: 10px;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
    transform: translateX(-60%);
    font-family: var(--font-remixicon);
    font-size: 17px;
    color: rgb(var(--color-primary));
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover:after {
    opacity: 1;
    transform: translateX(-20%);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon {
    align-self: start;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    height: 38px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    width: 38px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner > i {
    font-size: 20px;
    line-height: 0;
    color: rgb(var(--color-primary));
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover > .inner > .icon > .inner {
    background-color: rgb(255, 255, 255);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings > .labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom {
    -moz-box-align: center;
    align-items: center;
    display: flex;
    gap: 8px;
    padding-top: 24px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom .icon {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    display: flex;
    height: 38px;
    -moz-box-pack: center;
    justify-content: center;
    min-width: 38px;
    width: 38px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom .content {
    color: rgb(54, 54, 54);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom .content strong a {
    position: relative;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom .content strong a:hover {
    background-size: 100% 1px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu {
    width: 763px;
    transform: translate(0px, 26px) !important;
    left: unset !important;
    right: 0 !important;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu {
    width: 383px;
    transform: translate(0px, 26px) !important;
    left: unset !important;
    right: 0 !important;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu {
    width: 700px;
    transform: translate(0px, 26px) !important;
    left: unset !important;
    right: 0 !important;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or:before {
    content: "";
    display: block;
    border-left: 1px dashed rgb(205, 216, 223);
    height: 70px;
    width: 1px;
    margin-bottom: 8px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or:after {
    content: "";
    display: block;
    border-left: 1px dashed rgb(205, 216, 223);
    height: 70px;
    width: 1px;
    margin-top: 8px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .or:before {
    content: "";
    display: block;
    border-left: 1px dashed rgb(205, 216, 223);
    height: 35px;
    width: 1px;
    margin-bottom: 8px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .or:after {
    content: "";
    display: block;
    border-left: 1px dashed rgb(205, 216, 223);
    height: 35px;
    width: 1px;
    margin-top: 8px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or p {
    color: rgb(205, 216, 223);
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    padding: 8px;
    display: block;
    height: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 1140px;
  }
}
@media (min-width: 1270px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 1250px !important;
  }
  .main-header .nabbar-nav .mainmenu li.megamenu.two .submenu > div {
    max-width: 100% !important;
  }
}
.main-header .nabbar-nav .nav-right-side-bar {
  display: flex;
  gap: 0 25px;
}
.main-header .nabbar-nav .nav-right-side-bar .item > a {
  font-size: 15px;
  cursor: pointer;
  color: rgb(var(--color-primary));
}
.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu {
  background: unset;
  border: unset;
  padding: unset;
}
.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner {
  background-color: rgb(252, 252, 252);
  box-shadow: rgba(46, 147, 238, 0.2) 0px 0px 20px 0px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: 200ms ease-in-out;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  padding: 32px;
  max-height: 400px;
  overflow-y: scroll;
}
.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .heading {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: start;
  justify-content: flex-start;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgb(235, 235, 235);
  margin-bottom: 24px;
}
.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .heading svg {
  width: 28px;
  height: 28px;
}
.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .heading p {
  color: rgb(54, 54, 54);
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner {
  -moz-box-align: center;
  align-items: center;
  /*display: flex;*/
  flex-direction: column;
  /* gap: 24px; */
  -moz-box-pack: center;
  justify-content: center;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a {
  padding: 16px;
  display: flex;
  /* flex-direction: column; */
  width: 100%;
  position: relative;
  transition: all 0.5s;
  border-radius: 4px;
  gap: 5px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a:hover {
  background: rgba(var(--color-primary), 0.2);
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .lables {
  padding: 4px 8px;
  border-radius: 6px;
  width: max-content;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  white-space: nowrap;
  height: 24px;
  position: absolute;
  top: -12px;
  z-index: 5;
  font-size: 14px;
  font-weight: 400;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .lables:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .lables.warning {
  background-color: rgb(255, 164, 100);
  color: rgb(54, 54, 54);
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .lables.warning:after {
  border-color: rgb(255, 164, 100) transparent transparent transparent;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .lables.success {
  background-color: #bae6d3;
  color: rgb(54, 54, 54);
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .lables.success:after {
  border-color: #bae6d3 transparent transparent transparent;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .headings {
  color: rgb(54, 54, 54);
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu > .inner > .inner a .contents {
  color: rgb(133, 152, 177);
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: justify;
  justify-content: space-between;
  gap: 8px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents {
  display: flex;
  align-items: flex-start;
  -moz-box-pack: start;
  justify-content: flex-start;
  gap: 24px;
  flex-direction: column;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a {
  -moz-box-align: center;
  align-items: center;
  background-color: transparent;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  padding: 16px 32px 16px 16px;
  position: relative;
  text-decoration: none;
  transition: 0.4s ease-in-out;
  width: 100%;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a:hover {
  background-color: rgb(243, 249, 255);
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  gap: 8px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a:after {
  content: '\ea6c';
  right: 10px;
  position: absolute;
  opacity: 0;
  transition: 0.4s ease-in-out;
  transform: translateX(-60%);
  font-family: var(--font-remixicon);
  font-size: 17px;
  color: rgb(var(--color-primary));
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a:hover:after {
  opacity: 1;
  transform: translateX(-20%);
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .icon {
  align-self: start;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .icon > .inner {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(243, 249, 255);
  border-radius: 100px;
  height: 38px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  transition: 0.4s ease-in-out;
  width: 38px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a:hover > .inner > .icon > .inner {
  background-color: rgb(255, 255, 255);
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .content {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .content > .headings {
  color: rgb(54, 54, 54);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .content > .subheading {
  color: rgb(124, 144, 170);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > .links > p {
  color: rgb(166, 182, 204);
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 16px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > .links a {
  -moz-box-align: center;
  background: transparent;
  color: rgb(0, 112, 209);
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 19px;
  text-decoration: none;
  width: fit-content;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > .links a + a {
  margin-top: 8px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu > .inner > .inner > .contents > .links a:hover {
  text-decoration: underline;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: justify;
  justify-content: space-between;
  gap: 8px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents {
  display: flex;
  align-items: flex-start;
  -moz-box-pack: start;
  justify-content: flex-start;
  gap: 24px;
  flex-direction: column;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a {
  -moz-box-align: center;
  align-items: center;
  background-color: transparent;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  padding: 16px 32px 16px 16px;
  position: relative;
  text-decoration: none;
  transition: 0.4s ease-in-out;
  width: 100%;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a:hover {
  background-color: rgb(243, 249, 255);
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner {
  display: flex;
  -moz-box-align: center;
  align-items: center;
  gap: 8px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a:after {
  content: '\ea6c';
  right: 10px;
  position: absolute;
  opacity: 0;
  transition: 0.4s ease-in-out;
  transform: translateX(-60%);
  font-family: var(--font-remixicon);
  font-size: 17px;
  color: rgb(var(--color-primary));
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a:hover:after {
  opacity: 1;
  transform: translateX(-20%);
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .icon {
  align-self: start;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .icon > .inner {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(243, 249, 255);
  border-radius: 100px;
  height: 38px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  transition: 0.4s ease-in-out;
  width: 38px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .icon > .inner > i {
  font-size: 20px;
  color: rgb(var(--color-primary));
  line-height: 0;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a:hover > .inner > .icon > .inner {
  background-color: rgb(255, 255, 255);
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .content {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .content > .headings {
  color: rgb(54, 54, 54);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}
.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu > .inner > .inner > .contents > a > .inner > .content > .subheading {
  color: rgb(124, 144, 170);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
/* Mobile Navigation */
@media (max-width: 991px) {
  .main-header .navbar-button {
    height: auto;
    width: auto;
    text-align: center;
    outline: none;
    border: 0 none;
    padding: 0;
    background: transparent;
    display: block;
    font-size: 25px;
    margin-inline-end: 15px;
  }
  .main-header .mobile-menu-header {
    display: flex;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  .main-header .mobile-menu-header .logo img {
    max-height: 30px;
  }
  .main-header .mobile-menu-header .close-icon .navbar-close {
    border: 0 none;
    width: 40px;
    height: 40px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: transparent;
    line-height: 0;
  }
  .main-header .header-menu {
    z-index: 9999;
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s ease-out;
  }
  .main-header .header-menu.active {
    visibility: visible;
    opacity: 1;
  }
  .main-header .header-menu > .inner {
    width: 320px;
    z-index: 999;
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    left: -150px;
    transition: all .5s ease-out;
  }
  .main-header .header-menu.active > .inner {
    opacity: 1;
    left: 0;
    overflow-y: auto;
  }
  .main-header .nabbar-nav .mainmenu {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .main-header .nabbar-nav .mainmenu > li {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(246, 246, 249);
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    color: rgb(54, 54, 54);
    text-decoration: none;
    background-color: transparent;
    border: medium;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    width: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a.open {
    color: rgb(var(--color-primary));
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a > .dropdown-indicator {
    font-size: 17px;
    transform: rotate(-90deg);
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a.open > .dropdown-indicator {
    transform: rotate(-180deg);
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown .submenu {
    display: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    list-style: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: 15px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.img-list {
    display: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 0;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon {
    align-self: start;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    height: 38px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    width: 38px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner > i {
    font-size: 20px;
    line-height: 0;
    color: rgb(var(--color-primary));
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings > .labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom {
    display: none;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu {
    left: auto !important;
    right: 0 !important;
    width: 400px;
    transform: translate(0px, 26px) !important;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner {
    flex-direction: column;
    gap: 16px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: justify;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    height: 100%;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or:before {
    content: "";
    display: block;
    margin-bottom: 0px;
    margin-right: 8px;
    border-left: medium;
    border-top: 1px dashed rgb(205, 216, 223);
    width: 100%;
    height: 1px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or:after {
    content: "";
    display: block;
    margin-top: 0px;
    margin-left: 8px;
    border-left: medium;
    border-top: 1px dashed rgb(205, 216, 223);
    width: 100%;
    height: 1px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner > .inner > .or p {
    color: rgb(205, 216, 223);
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    padding: 8px;
    display: block;
    height: 100%;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu {
    width: 383px;
    transform: translate(0px, 26px) !important;
    left: unset !important;
    right: 0 !important;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu {
    width: 323px;
    transform: translate(0px, 26px) !important;
    left: unset !important;
    right: 0 !important;
  }
}
@media (max-width:575px) {
  .main-header .nabbar-nav .nav-right-side-bar {
    gap: 0 14px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner {
    padding: 23px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu {
    width: 320px;
    transform: translate(60px, 26px) !important;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu {
    width: 320px;
    transform: translate(40px, 26px) !important;
  }
  .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu {
    transform: translate(0px, 26px) !important;
  }
}
/* banner CSS */
.home-banners {
  overflow: hidden;
  position: relative;
  padding: 20px 0px 20px 0px;
  background-color: rgb(243, 249, 255);
}
.home-banners .home-banner {
  background: url("../images/home-banner.jpg") no-repeat center;
  border-radius: 12px;
  text-align: center;
  padding: 50px;
  height: calc(100vh - 120px);
  height: calc(100dvh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
.home-banners .home-banner h1 {
  color: #FFF !important;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.3;
  margin: 0;
  margin-bottom: 0;
  font-weight: 700;
}
.home-banners .home-banner p {
  color: #FFF;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 40px;
}
.banner {
  overflow: hidden;
  position: relative;
  padding: 60px 0px 40px;
}
.banner.pb-increase {
  padding-bottom: 60px;
}
@media (max-width:991px) {
  .banner {
    padding-top: 40px;
  }
}
.banner.one {
  background-color: rgb(243, 249, 255);
}
.banner .banner-heading {
  display: block;
}
.banner .banner-heading h5 {
  color: rgb(54, 54, 54);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  margin: 0px 0px 8px;
  text-transform: initial;
  margin-bottom: 0;
}
.banner .banner-heading h1 {
  color: rgb(54, 54, 54);
  font-size: 57px;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 0;
  font-weight: 700;
}
.banner .banner-heading p {
  color: rgb(54, 54, 54);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}
.banner .banner-heading .list-one-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.banner .banner-heading .list-one-line li {
  -moz-box-align: center;
  align-items: center;
  color: rgb(54, 54, 54);
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
  position: relative;
  padding-inline-start: 15px;
}
.banner .banner-heading .list-one-line li:before {
  content: '';
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 7px;
  left: 0;
}
.banner .banner-heading .btn-and-starting-price {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  align-items: center;
}
.banner .banner-heading .starting-price {
  display: flex;
  flex-direction: column;
}
.banner .banner-heading .starting-price .st {
  font-size: 14px;
  display: block;
  text-align: start;
}
.banner .banner-heading .starting-price h3 {
  font-size: 25px;
  font-weight: 600;
  color: rgb(var(--color-primary-dark));
  margin-bottom: 0;
}
.banner .banner-heading .money-back {
  font-size: 15px;
  color: rgb(54, 54, 54);
  line-height: 18px;
}
.banner .banner-heading .money-back i {
  color: rgb(var(--color-primary));
  font-size: 28px;
  line-height: 1;
  vertical-align: sub;
}
@media (max-width:767px) {
  .banner .banner-heading h1 {
    font-size: 38px;
  }
}
.banner .banner-heading .promocode {
  font-size: 23px;
  color: rgb(var(--color-primary));
  margin-top: 0;
  margin-bottom: 0;
  line-height: 2;
  position: relative;
  font-weight: 600;
}
.banner .banner-heading .promocode .code {
  font-size: 25px;
  text-align: center;
  color: rgb(var(--color-primary));
  padding: 4px 10px;
  border: 3px dotted rgb(var(--color-primary));
  margin-left: 10px;
  border-radius: 0 0 0 13px;
  position: relative
}
.banner .banner-heading .promocode .copy {
  padding: 0 10px;
  background: rgb(var(--color-primary));
  border-radius: 0 4px 4px 0;
  margin-inline-start: -3px;
  cursor: pointer;
  border: 1px solid rgb(var(--color-primary));
}
.banner .banner-heading .promocode .copy svg {
  width: 16px;
  height: 19px;
  fill: #fff;
  cursor: pointer
}
.banner .banner-heading .promocode .promotooltip {
  position: relative;
  display: inline-block;
}
.banner .banner-heading .promocode .promotooltip .tooltiptext {
  visibility: hidden;
  width: fit-content;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 20px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
  white-space: nowrap;
  transform: translate(-50%);
}
.banner .banner-heading .promocode .promotooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.banner .banner-heading .promocode .promotooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.shared-hosting-banner {
  overflow: hidden;
  position: relative;
  padding: 0px 0px 0px 0px;
  background-color: rgb(243, 249, 255);
}
.shared-hosting-banner .swiper.swiper-plans .swiper-arrows {
  margin-bottom: 30px;
}
.shared-hosting-banner .breadcrumb {
  padding: 7px 0px;
  background: #FFF;
  margin: 50px 0px 0px 0px;
  border-bottom: 1px solid #dbdbdb;
  box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 20px 0px;
  transition: all 0.3s ease;
}
@media(max-width:991px) {
  .main-header .nabbar-nav .nav-right-side-bar .item > a > span, .main-header .nabbar-nav .nav-right-side-bar .item > button > span {
    display: none !important;
  }
  .shared-hosting-banner {
    padding-bottom: 50px;
  }
  .shared-hosting-banner .breadcrumb {
    display: none;
  }
}
.shared-hosting-banner .breadcrumb.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 13;
  margin: 0px;
  border-bottom: 0px solid #dbdbdb;
}
.shared-hosting-banner .breadcrumb ul {
  display: flex;
  padding: 6px 0px;
}
.shared-hosting-banner .breadcrumb ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.shared-hosting-banner .breadcrumb ul li a {
  padding: 12px;
  margin-right: 12px;
  line-height: 10px;
  cursor: pointer;
}
.shared-hosting-banner .breadcrumb ul li a:hover {
  background: #1c2d6e;
  color: #FFF;
  border-radius: 6px;
}
.scroll-menu a.active {
  background: #1c2d6e;
  color: #FFF;
  border-radius: 6px;
}
.shared-hosting-banner .breadcrumb .top-button {
  float: right;
}
.shared-hosting-banner .breadcrumb .top-button .btn-01 {
  font-size: 15px;
  line-height: 16px;
  padding: 15px 20px;
}
.shared-hosting-banner .breadcrumb .top-button .btn-01 svg {
  width: 13px;
  fill: #FFF;
  margin-right: 5px;
}
.underline {
  text-decoration: underline;
  font-size: 16px;
}
.shared-hosting-banner .banner-heading {
  padding: 30px 0px 0px 0px;
}
.shared-hosting-banner .banner-heading h1 {
  color: rgb(54, 54, 54);
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.3;
  margin: 0;
  margin-bottom: 0;
  font-weight: 700;
}
.shared-hosting-banner .banner-heading p {
  color: rgb(54, 54, 54);
  font-size: 40px;
  font-weight: 400;
  line-height: 54px;
  margin-bottom: 16px;
}
.domains {
  width: fit-content;
  padding: 10px;
  border: 1px solid rgb(var(--color-primary));
  border-radius: 8px;
  background: rgb(var(--color-primary));
  min-width: 140px;
  transition: all .4s;
}
.domains .title {
  display: block;
  font-size: 25px;
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
}
.domains .price {
  display: block;
  font-size: 15px;
  color: var(--color-white);
  font-weight: 300;
  text-align: center;
}
.domains:hover {
  background: #0828a4;
  border-color: #0828a4;
}
.icons.two i {
  font-size: 30px;
}
.d-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.d-search p {
  font-size: 16px !important;
  margin-bottom: 0 !important;
}
.button-group {
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1c2d6e, #1c2d6e);
  margin-bottom: 20px;
}
.pill {
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  color: #cfcfff;
  transition: 0.3s;
}
.pill.active {
  background: #ffffff;
  color: #1b1a3a;
}
.list-check li {
  display: flex;
  align-items: start;
  line-height: 30px;
}
.list-check li::before {
  content: "\F272";
  font-family: bootstrap-icons;
  font-size: 20px;
  position: relative;
  margin-inline-end: 5px;
  color: #1d2a3b;
  font-weight: 900;
  top: -4px;
}
.domain_promo {
  background-color: #fff;
  border: 1px solid #dedee2;
  border-radius: 16px;
  padding: 40px 24px
}
.domain_promo .price {
  font-size: 38px;
  font-weight: 600;
}
@media(max-width:480px) {
  .domain_promo {
    padding: 20px 15px
  }
}
/* =========================================================================
    Buttons
========================================================================= */
.btn-01 {
  line-height: 60px;
  font-size: 18px;
  color: #fff;
  padding: 0 30px;
  position: relative;
  background: rgb(var(--color-primary));
  font-weight: 700;
  display: block;
  width: fit-content;
  transition: all 0.5s;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
}
.btn-01:hover {
  background: rgb(var(--color-primary-dark));
  color: #fff;
}
/* ----------------------------------------------------------------
   Section Gap & Heading
------------------------------------------------------------------- */
.section-gap {
  padding: 60px 0;
}
.section-heading {
  display: block;
}
.section-heading.gap-bottom {
  margin-bottom: 60px;
}
.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
}
.section-heading p {
  font-size: 16px;
  font-weight: 400;
}
.section-heading.center h2, .section-heading.center p {
  text-align: center;
}
.section-heading.white h2, .section-heading.white p {
  color: #fff;
}
.section-heading.white p {
  opacity: 0.7;
}
@media (max-width:767px) {
  .section-gap {
    padding: 40px 0;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .section-heading.gap-bottom {
    margin-bottom: 40px;
  }
}
/* ----------------------------------------------------------------
   Domain Search Homepage
------------------------------------------------------------------- */
.banner-up-domain-search {
  width: 100%;
}
.banner-up-domain-search .inner {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(252, 252, 252);
  border-radius: 20px;
  box-shadow: rgba(46, 147, 238, 0.2) 0px 0px 20px 0px;
  display: flex;
  list-style: none;
  padding: 15px;
  z-index: 5;
  width: 100%;
}
.banner-up-domain-search .inner .inside {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
}
.banner-up-domain-search .inner .inside p {
  display: block;
  margin-bottom: 0;
  color: rgb(54, 54, 54);
  font-size: 14px;
  line-height: 18px;
  max-width: max-content;
  width: 100%;
}
.banner-up-domain-search .inner .inside .inputs {
  -moz-box-align: center;
  align-items: center;
  display: flex;
  width: 100%;
  gap: 15px;
}
.banner-up-domain-search .inner .inside .inputs .input-box {
  display: flex;
  width: 80%;
}
.banner-up-domain-search .inner .inside .inputs .input-box span {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(241, 243, 246);
  border: 1px solid rgb(205, 216, 223);
  border-radius: 4px 0px 0px 4px;
  color: rgb(166, 182, 204);
  display: flex;
  font-size: 14px;
  line-height: 22px;
  padding: 20px 25px;
  text-align: center;
}
.banner-up-domain-search .inner .inside .inputs .input-box input {
  border-width: 1px 1px 1px 0px;
  border-style: solid;
  border-color: rgb(205, 216, 223);
  border-image: none;
  border-radius: 0px 6px 6px 0px;
  color: rgb(54, 54, 54);
  line-height: 22px;
  padding: 20px;
  font-size: 14px;
  width: 100%;
  outline: unset;
}
.banner-up-domain-search .inner .inside .inputs .submit-box {
  display: block;
  width: 20%
}
.submit-box.two {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.submit-box.two .selects {
  background: unset;
  border: 1px solid rgb(var(--color-primary));
  height: 62px;
  border-radius: 6px;
  color: rgb(var(--color-primary));
}
.banner-up-domain-search .inner .inside .inputs .submit-box .btn-01, .banner-up-domain-search .inner .inside .inputs .submit-box .btn-01:hover {
  line-height: 1;
  box-shadow: 0px 0px 0px 0px rgba(var(--color-primary), 0.3);
  padding: 22px 20px;
  width: 100%;
  border-radius: 6px;
}
@media (max-width:991px) {
  .banner-up-domain-search .inner {
    border-radius: 10px;
  }
}
@media (max-width:767px) {
  .home-banners .home-banner {
    padding: 5px;
  }
  .banner-up-domain-search .inner .inside .inputs .input-box {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
  }
  .banner-up-domain-search .inner .inside .inputs {
    -moz-box-align: center;
    align-items: center;
    display: block;
    width: 100%;
    gap: 15px;
  }
  .banner-up-domain-search .inner .inside .inputs .submit-box {
    display: block;
    width: 100%;
  }
}
/* ----------------------------------------------------------------
   Home Page Services
------------------------------------------------------------------- */
.swiper-homepage-product .swiper-arrows {
  display: flex;
  justify-content: end;
  gap: 15px;
}
.swiper-homepage-product .swiper-arrows a {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  border: medium;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  height: 42px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: relative;
  width: 42px;
  font-size: 25px;
  color: #fff;
}
.swiper-homepage-product .swiper-arrows a:before {
  content: "";
  background-color: rgb(var(--color-primary));
  border-radius: 50%;
  bottom: -4px;
  height: 120%;
  left: -4px;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  transform: translateZ(-1px);
  width: 120%;
  z-index: -1;
}
.swiper-homepage-product .swiper-arrows a:hover:before {
  opacity: 0.3;
}
.swiper-homepage-product .swiper-arrows a.swiper-button-disabled {
  background-color: rgb(252, 252, 252);
  border: 1px solid rgb(235, 235, 235);
  color: rgb(205, 216, 223);
  cursor: auto;
}
.swiper-homepage-product .swiper-arrows a.swiper-button-disabled:before {
  content: unset;
}
.service-01 {
  border-radius: 10px;
  border: 1px solid rgb(235, 235, 235);
  flex: 1 1 0%;
  padding: 32px;
  transition: border 0.2s ease-in, box-shadow 0.2s ease-in;
  width: 100%;
  height: 100%;
  display: block;
}
.service-01:hover {
  border: 1px solid rgb(var(--color-primary));
  box-shadow: rgba(46, 147, 238, 0.2) 0px 4px 8px;
}
.service-01 .icon {
  margin-bottom: 18px;
}
.service-01 .icon > .inner {
  -moz-box-align: center;
  align-items: center;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(243, 249, 255);
  padding: 10px;
  transition: 0.2s;
}
.service-01 .icon > .inner i {
  font-size: 25px;
  line-height: 0;
  color: rgb(var(--color-primary));
}
.service-01 h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: rgb(54, 54, 54);
  transition: color 0.2s;
  margin-bottom: 15px;
}
.service-01:hover h3 {
  color: rgb(var(--color-primary));
}
.service-01 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgb(54, 54, 54);
  margin-bottom: 0;
}
.service-01 .starting-price {
  font-size: 16px;
  line-height: 26px;
  color: rgb(var(--color-primary));
  display: block;
  font-weight: 700;
  margin-bottom: 0;
}
.service-01 a {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: rgb(var(--color-primary));
  display: block;
}
.service-01:hover a span {
  text-decoration: underline;
}
.service-01 a i {
  margin-inline-start: 5px;
  transition: all 0.2s;
}
.service-01:hover a i {
  margin-inline-start: 8px;
}
.swiper .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid rgb(var(--color-primary));
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(var(--color-primary));
}
.ulcollapse {
  list-style: none;
  position: relative;
  padding: 0px;
  margin: 0;
}
.ulcollapse li {
  padding-bottom: 15px;
  border-bottom: 2px solid rgb(235, 235, 235);
}
.ulcollapse li.active {
  border-color: rgb(var(--color-primary));
}
.ulcollapse li + li {
  margin-top: 20px;
}
.ulcollapse li a {
  color: rgb(54, 54, 54);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
}
.ulcollapse li.active a, .ulcollapse li a:hover {
  color: rgb(var(--color-primary)) !important;
  font-weight: 500;
}
.ulcollapse li.active a {
  padding-bottom: 15px;
}
.ulcollapse li a i {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  background: rgb(243, 249, 255);
  margin-inline-end: 10px;
  font-size: 20px;
}
.ulcollapse li a i.fal {
  font-size: 17px;
}
.ulcollapse li p {
  color: rgb(54, 54, 54);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  display: none;
}
.swiper-testimonilas .swiper-arrows {
  display: flex;
  justify-content: end;
  gap: 15px;
}
.swiper-testimonilas .swiper-arrows a {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  border: medium;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  height: 42px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: relative;
  width: 42px;
  font-size: 25px;
  color: #fff;
}
.swiper-testimonilas .swiper-arrows a:before {
  content: "";
  background-color: rgb(var(--color-primary));
  border-radius: 50%;
  bottom: -4px;
  height: 120%;
  left: -4px;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  transform: translateZ(-1px);
  width: 120%;
  z-index: -1;
}
.swiper-testimonilas .swiper-arrows a:hover:before {
  opacity: 0.3;
}
.swiper-testimonilas .swiper-arrows a.swiper-button-disabled {
  background-color: rgb(252, 252, 252);
  border: 1px solid rgb(235, 235, 235);
  color: rgb(205, 216, 223);
  cursor: auto;
}
.swiper-testimonilas .swiper-arrows a.swiper-button-disabled:before {
  content: unset;
}
.testimonilas-item {
  display: flex !important;
  -moz-box-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  background: rgb(252, 252, 252);
  border: 1px solid rgb(235, 235, 235);
  border-radius: 10px;
  padding: 32px;
  position: relative;
  flex-direction: column;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  margin-top: 10px;
  margin-bottom: 10px;
}
.testimonilas-item:hover {
  border: 1px solid rgb(var(--color-primary));
  box-shadow: rgba(46, 147, 238, 0.2) 0px 4px 8px;
}
.testimonilas-item .icon {
  margin-bottom: 16px;
}
.testimonilas-item .icon img {}
.testimonilas-item > p {
  color: rgb(54, 54, 54);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
.testimonilas-item .tetimonilas-ownor {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.testimonilas-item .tetimonilas-ownor h3 {
  font-size: 16px;
  line-height: 18px;
  color: rgb(54, 54, 54);
  font-weight: 600;
  margin-bottom: 0;
}
.testimonilas-item .tetimonilas-ownor img {
  max-height: 25px;
  opacity: 0.5;
}
/* map  css start*/
.network-map-wrap ul li {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin: -6px;
  background-color: rgb(var(--color-primary));
  border-radius: 50%;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
  -webkit-transition: .5s linear;
}
@-webkit-keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
    box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
    box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
  }
}
@keyframes ripple {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
    box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
    box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
  }
}
.custom-map-location li {
  list-style: none;
}
.network-map-wrap ul li span {
  display: block;
  width: max-content;
  height: max-content;
  top: -100%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -100%);
  opacity: .9;
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  z-index: 1070;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
}
.network-map-wrap ul li span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}
@media (max-width:575px) {
  .network-map-wrap img {
    min-height: 265px;
  }
}
/* faq css start  */
.faq-items .accordion li {
  list-style: none;
  padding: 15px 20px;
  border: 1px solid rgb(240, 239, 239);
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: rgba(50, 50, 50, 0.1) 0px 0px 5px 0px;
}
.faq-items .accordion li a {
  color: rgb(54, 54, 54) !important;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  gap: 16px;
  -moz-box-pack: justify;
  justify-content: space-between;
  line-height: 24px;
  transition: all 0.3s;
  align-items: center;
  line-height: 1.2;
}
.faq-items .accordion li.active a {
  color: rgb(var(--color-primary)) !important;
}
.faq-items .accordion li a i {
  font-size: 25px;
  transition: all 0.3s;
}
.faq-items .accordion li.active a i {
  transform: rotate(-180deg);
}
.faq-items .accordion li p {
  display: none;
  margin-bottom: 0;
  color: rgb(54, 54, 54);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}
.main-footer {
  background-color: rgb(var(--color-primary));
  border-radius: 0px;
  padding: 60px 0px 30px;
  position: relative;
}
@media (max-width:767px) {
  .main-footer {
    padding: 40px 0px 30px;
  }
}
.main-footer .footer-info a.logo {
  display: block;
}
.main-footer .footer-info a.logo img {
  max-height: 33px;
}
.main-footer .footer-info p {
  color: rgb(124, 144, 170);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 16px 0px;
  margin-bottom: 0;
  margin-top: 5px;
}
.main-footer .footer-social-media {
  display: flex;
  flex-wrap: wrap
}
.main-footer .footer-social-media a {
  width: 35px;
  height: 35px;
  line-height: 40px;
  border-radius: 50px;
  border: 1px solid;
  border-color: rgb(var(--color-primary));
  color: #fff;
  text-align: center;
  font-size: 15px;
  transition: all .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  background: rgb(var(--color-primary));
}
.main-footer .footer-social-media a i {
  font-size: 16px;
  color: #fff;
  line-height: 0;
}
.main-footer .footer-social-media a:hover {
  color: #fff;
  background: rgb(var(--color-primary-dark));
  border-color: rgb(var(--color-primary-dark));
}
.main-footer .footer-social-media a:hover i {
  color: #fff;
}
.main-footer .footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-footer .footer-list li {
  list-style: none;
  margin: 10px 0;
}
.main-footer .footer-list li.payment {
  width: 50px;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 30px;
}
.main-footer .footer-list li.payment svg {
  fill: #FFF;
}
.main-footer .footer-list a.social {
  width: 30px;
  display: inline-block;
  margin-right: 15px;
}
.main-footer .footer-list a.social svg {
  fill: #FFF;
}
.main-footer .footer-list li.phone {
  font-size: 30px;
  color: #FFF;
  font-weight: 600;
  margin-bottom: 25px;
}
.main-footer .footer-list li.email a {
  font-size: 24px;
  color: #FFF;
  font-weight: 600;
}
.main-footer .footer-list li.heading_list {
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 0;
}
.main-footer .footer-list li a {
  position: relative;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  padding-bottom: 0px;
  display: inline-block;
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.main-footer .footer-list li a:hover {
  background-size: 100% 1px;
}
.main-footer .footer-bootm-item {
  display: block;
}
.main-footer .footer-bootm-item ul {
  text-align: center;
  margin: 0;
  padding: 0;
}
.main-footer .footer-bootm-item ul li {
  margin: 0;
  padding: 0px 15px;
  display: inline;
  line-height: 15px;
}
.main-footer .footer-bootm-item ul li a {
  color: #FFF;
}
.main-footer .footer-bootm-item ul li a {
  position: relative;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer .footer-bootm-item ul li a:hover {
  background-size: 100% 1px;
}
.main-footer .copy-right-content {
  display: block;
  text-align: center;
}
.main-footer .copy-right-content p {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 0;
}
.swiper.swiper-plans .swiper-arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.swiper.swiper-plans .swiper-arrows a {
  -moz-box-align: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  border: medium;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  height: 42px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: relative;
  width: 42px;
  font-size: 25px;
  color: #fff;
}
.swiper.swiper-plans .swiper-arrows a:before {
  content: "";
  background-color: rgb(var(--color-primary));
  border-radius: 50%;
  bottom: -4px;
  height: 120%;
  left: -4px;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  transform: translateZ(-1px);
  width: 120%;
  z-index: -1;
}
.swiper.swiper-plans .swiper-arrows a:hover:before {
  opacity: 0.3;
}
.swiper.swiper-plans .swiper-arrows a.swiper-button-disabled {
  background-color: rgb(252, 252, 252);
  border: 1px solid rgb(235, 235, 235);
  color: rgb(205, 216, 223);
  cursor: auto;
}
.swiper.swiper-plans .swiper-arrows a.swiper-button-disabled:before {
  content: unset;
}
.price-section {
  padding: 20px;
  background: #f7f7f7;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 23px;
  position: relative;
  text-align: start;
}
.price-section h4 {
  font-size: 20px;
  line-height: 28px;
  color: rgb(var(--color-primary));
  font-weight: 800;
  margin-bottom: 5px;
}
.price-section h4 sup {
  font-size: 14px;
  line-height: 28px;
  color: #666;
  font-weight: 400;
  margin-bottom: 5px;
}
.price-section h3 {
  color: rgb(var(--color-primary-dark));
  font-weight: 800;
  font-size: 45px;
  margin-bottom: 0;
}
.price-section h3 sup, .price-section h3 sub {
  color: #5f6b79;
  font-size: 20px;
  font-weight: 400;
  margin: 0 5px;
}
.price-section .discount-price {
  font-weight: 400;
  font-size: 16px;
  color: #c73636;
  display: block;
}
.price-section .discount-price .off {
  background: rgb(186, 230, 211);
  border-radius: 12px;
  color: rgb(31, 32, 68);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  margin-bottom: 1px;
  padding: 2px 10px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  margin-inline-start: 5px;
}
.price-section ul {
  margin-top: 30px;
}
.price-section ul li {
  font-size: 14px;
  color: rgb(54, 54, 54);
  cursor: default;
  font-weight: 400;
}
.price-section ul li + li {
  margin-top: 10px;
}
.services-02 {
  display: flex;
  align-items: start;
  gap: 18px;
  height: 100%;
}
.services-02 .icons {
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(232 243 255);
  border-radius: 6px;
  max-width: 30px;
  max-height: 30px;
}
.services-02 .icons svg {
  height: 15px;
  fill: #464343;
}
.services-02 h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.services-02 p {
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 14px;
  color: #4b5563;
  line-height: 24px;
}
.box-features {
  background: #EDF5FF;
  border-radius: 25px;
  padding: 60px;
}
.box-features .box-features1:first-child {
  margin-bottom: 50px;
}
.box-features .box-features1 .icon svg {
  width: 32px;
  fill: rgb(var(--color-primary));
  margin-bottom: 20px;
}
.box-features .box-features1 h5 {
  font-weight: 600;
}
.box-features .box-features1 p {
  font-size: 16px;
  font-weight: 400;
  color: #515151;
  line-height: 28px;
  margin: 0px;
}
.services-02 ul {
  margin-top: 10px;
}
.box-features .box-features1 ul li, .services-02 ul li {
  display: flex;
  align-items: start;
  font-size: 14px;
  padding: 5px 0;
  font-weight: 400;
}
.box-features .box-features1 ul li::before, .services-02 ul li::before {
  content: "\F272";
  font-family: bootstrap-icons;
  font-size: 18px;
  position: relative;
  margin-inline-end: 5px;
  color: #1d2a3b;
  font-weight: 900;
  top: -2px;
}
.features {
  margin: 30px 0px 0px 0px;
}
.features .icon svg {
  width: 32px;
  fill: rgb(var(--color-primary));
  margin-bottom: 20px;
}
.features h5 {
  font-weight: 600;
}
.features p {
  font-size: 16px;
  font-weight: 400;
  color: #515151;
  line-height: 28px;
  margin: 0px;
}
.more-questions {
  text-align: center;
  border: 1px solid rgb(240, 239, 239);
  padding: 30px;
  border-radius: 6px;
  box-shadow: rgba(50, 50, 50, 0.1) 0px 0px 5px 0px;
}
.more-questions svg {
  width: 40px;
  margin-bottom: 15px;
  fill: #666;
}
.more-questions p {
  font-weight: 400;
}
.more-questions a {
  font-size: 24px;
  font-weight: 600;
}
.more-questions a {
  position: relative;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.more-questions a:hover {
  background-size: 100% 1px;
}
.verticle-pricing-box {
  padding: 13px;
  background-color: #dcf4f6;
  border-radius: 10px;
}
.verticle-pricing-box .pricing-title {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 10px;
}
.verticle-pricing-box.pro .pricing-title {
  background-color: #00adef24;
}
.verticle-pricing-box .pricing-title span {
  background-color: #00adef29;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  color: #001042;
}
.verticle-pricing-box .pricing-title h5 {
  font-size: 1.25rem;
  font-weight: 600;
}
.verticle-pricing-box .pricing-title p {
  font-size: 14px;
  font-weight: 400;
}
.verticle-pricing-box .pricing-features {
  display: flex;
  flex-wrap: wrap;
}
.verticle-pricing-box .pricing-features li {
  width: 50%;
  display: block;
  position: relative;
  padding-inline-start: 29px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
@media (max-width:992px) {
  .verticle-pricing-box .pricing-features li {
    width: 100%;
  }
}
.verticle-pricing-box .pricing-features li:after {
  content: '\F26E';
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 24px;
  color: rgb(var(--color-primary));
  font-family: var(--font-bootstrap-icons);
  line-height: 1;
}
.verticle-pricing-box .pricing-amount {
  padding-inline-start: 40px;
  border-inline-start: 1px solid rgba(0, 16, 66, .1);
}
@media (max-width:992px) {
  .verticle-pricing-box .pricing-amount {
    padding-inline-start: calc(var(--bs-gutter-x) * .5);
    padding-top: 20px;
    border-inline-start: unset;
    border-top: 1px solid rgba(0, 16, 66, .1);
  }
}
.verticle-pricing-box .pricing-amount h3 {
  font-size: 1.875em;
  font-weight: 600;
}
.verticle-pricing-box .pricing-amount p {
  font-size: 14px;
  font-weight: 400;
}
.theme-preview {
  padding: 8px;
  background: #fff;
  box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07) !important;
  border-radius: 4px;
}
.theme-preview .previewimg {
  height: 250px;
  overflow: hidden;
  display: block;
  position: relative;
}
@media (max-width:575px) {
  .theme-preview .previewimg {
    height: 200px;
  }
}
.theme-preview .previewimg:after {
  content: attr(data-theme-name);
  background: #e1eaff;
  color: #2f0f0f;
  font-size: 16px;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 1px;
}
.theme-preview .buying-option {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.theme-preview .buying-option a:first-child {
  padding: 0;
  display: block;
  width: fit-content;
  border-radius: 5px;
  color: rgb(var(--color-primary)) !important;
  line-height: 1.5;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  background-size: 0px 1px;
  transition: all 500ms ease;
  padding-bottom: 2px;
}
.theme-preview .buying-option a:first-child:hover {
  background-size: 100% 1px;
}
.theme-preview .buying-option a:last-child {
  padding: 10px 15px;
  display: block;
  width: fit-content;
  background: #53d267 !important;
  border-radius: 5px;
  color: #fff !important;
  line-height: 1.5;
  transition: all 0.3s;
}
.theme-preview .buying-option a:last-child:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: translatey(-5px);
}
.tabs-section-two .tabs {
  display: block;
  width: 100%;
}
.tabs-section-two .tabs .items {
  display: block;
  margin: 0 auto 60px;
  border-bottom: 1px solid #e0e0e0;
}
.tabs-section-two .tabs .items .item {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 12px 0;
  position: relative;
  color: rgb(var(--color-primary));
  cursor: pointer;
}
.tabs-section-two .tabs.many-tabs .items .item {
  font-size: 16px;
}
.tabs-section-two .tabs .items .item + .item {
  margin-inline-start: 40px;
}
.tabs-section-two .tabs .items .item.active {
  color: #1b1b1b;
  font-weight: 600;
}
.tabs-section-two .tabs .items .item:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 4px;
  background: 0 0;
  transition: width .5s linear;
}
.tabs-section-two .tabs .items .item.active:after {
  width: 100%;
  background: rgb(var(--color-primary));
}
.tabs-section-two .contents {
  display: block;
}
.tabs-section-two .contents .item {
  display: none;
}
.tabs-section-two .contents .item.active {
  display: block;
}
@media (max-width:767px) {
  .tabs-section-two .tabs .items .item {
    font-size: 14px;
  }
  .tabs-section-two .tabs .items .item + .item {
    margin-inline-start: 30px;
  }
  .tabs-section-two .tabs .items {
    margin: 0 auto 30px;
  }
  .tabs-section-two .tabs.many-tabs .items {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .tabs-section-two .tabs.many-tabs .items::-webkit-scrollbar {
    display: none;
  }
  .tabs-section-two .tabs.many-tabs .items {
    display: flex;
  }
  .tabs-section-two .tabs.many-tabs .items .item {
    white-space: nowrap;
  }
}
/*==============new plan css======================*/
.price-section {
  background: #f7f7f7;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  text-align: center;
  border: 1px solid #DDD;
  padding: 0px !important;
}
.price-section.active {
  border: 2px solid rgb(var(--color-primary));
}
.price-section p {
  font-size: 14px;
  font-weight: 400;
}
.card-body {
  padding: 20px;
}
.plan-header-space {
  display: block;
  height: 52px;
  width: 100%;
}
.plan-header-space.active span {
  padding: 0.625rem 0;
  background-color: #1A4884;
  color: #fff;
}
.plan-header-space.active span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.40625rem;
  text-transform: uppercase;
  padding: 15px;
  width: 100%;
  display: block;
  border-radius: 20px 20px 0px 0px;
}
.discount-price {
  margin-top: 30px;
}
.discount-price span {
  background: #e5fcff !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 0.90rem !important;
  margin-bottom: 2rem !important;
  padding: 5px 10px !important;
  border-radius: 0px !important;
}
.price-section ul {
  padding: 0 0 0 30px !important;
  margin-top: 0;
  text-align: start;
}
.price-section ul li {
  display: flex;
  align-items: start;
}
.price-section ul li::before {
  content: "\F272";
  font-family: bootstrap-icons;
  font-size: 20px;
  position: relative;
  margin-inline-end: 5px;
  color: #1d2a3b;
  font-weight: 900;
  top: -4px;
}
.more-features-btn {
  background: unset;
  border: unset;
  line-height: 40px;
  padding: 20px 30px;
  width: 100%;
}
.more-features-btn {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1875rem;
  line-height: 122%;
  border-top: 2px solid #23b7f0;
}
.hidden {
  display: none;
}
.more-features-btn i {
  color: rgb(var(--color-primary)) !important;
  transition: color 0.3s ease;
}
.more-features-btn.active i {
  color: rgb(var(--color-primary)) !important;
}
.swiper.swiper-plans {
  overflow: inherit !important;
}
/*domain-slide*/
.swiper.swiper-plans.two {
  overflow: hidden !important;
}
.swiper.swiper-plans.two .swiper-arrows {
  margin-top: 5px;
}
/*domain-slide*/
/* ----------------------------------------------------------------
   login css
------------------------------------------------------------------- */
.login_page {
  overflow: hidden;
  position: relative;
  padding: 0px 0px 0px 0px;
  background-color: rgb(243, 249, 255);
  min-height: 100vh;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 40px 0px;
}
.login_content {
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #fff;
}
.input_one {
  display: flex;
  padding: 10px 15px;
  border-radius: 6px;
  background: var(--color-white);
  border: 1px solid rgb(var(--color-primary));
  outline: none;
  width: 100%;
  align-content: center;
}
.labels {
  display: block;
  font-size: 15px;
  color: rgb(var(--color-primary-dark));
  text-align: start;
  font-weight: 500;
  margin-bottom: 0;
}
.forgot-password-link {
  color: rgb(var(--color-primary));
  transition: var(--transition);
}
.forgot-password-link:hover {
  color: rgb(var(--color-primary-dark)) transition: var(--transition);
}
.login-content {
  padding: 20px 0px 10px 0px;
  border-bottom: 1px solid rgb(var(--color-primary-dark))
}
/* ----------------------------------------------------------------
   login css
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
  padding: 20px;
  position: relative;
  box-shadow: 0 0 5px #e1e1e1;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
}
.sunrise-form .labels {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  width: 100%;
}
.sunrise-form .smd-info {
  position: absolute;
  right: 20px;
  top: 6px;
}
.sunrise-form .smd-info .tooltip-txt {
  position: relative;
  cursor: help;
  color: rgb(var(--color-primary));
  font-weight: 500;
  font-size: 15px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info {
  display: none;
  padding: 15px;
  z-index: 5;
  cursor: default;
  background: #272727;
  color: #ededed;
  font-size: 12px;
  line-height: 1.5;
  position: absolute;
  top: 25px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
  width: 635px;
  right: 2px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
  background: url('../images/up_arrow.png') 0 0 no-repeat;
  right: 29px;
  width: 22px;
  height: 12px;
  position: absolute;
  top: -10px;
  display: block;
}
.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
  display: block;
}
.sunrise-form .smd-info .tooltip-txt + .tooltip-txt {
  cursor: pointer;
}
@media (max-width:991px) {
  .sunrise-form .smd-info {
    display: none;
  }
}
.sunrise-form .input {
  width: 100%;
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 15px;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
}
/* ----------------------------------------------------------------
    Contact Page
------------------------------------------------------------------- */
.contact .info {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}
.contact .info p {
  color: #8d969f;
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #dddedf;
}
.contact .info-item i {
  font-size: 24px;
  color: rgb(var(--color-primary));
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #8d969f;
}
.contact form {
  width: 100%;
}
.contact form .form-group {
  padding-bottom: 8px;
}
.contact form input[type=text], .contact form input[type=email], .contact form textarea {
  color: #8d969f;
  background-color: #fff;
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: #c0c0c0;
}
.contact form input[type=text]:focus, .contact form input[type=email]:focus, .contact form textarea:focus {
  border-color: rgb(var(--color-primary));
}
.contact form input[type=text]::placeholder, .contact form input[type=email]::placeholder, .contact form textarea::placeholder {
  color: #8d969f;
}
.contact form input[type=text], .contact form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}
.contact form textarea {
  padding: 10px 12px;
  height: 290px;
}
@media(max-width:991px) {
  .shared-hosting-banner .banner-heading h1 {
    font-size: 30px;
  }
  .shared-hosting-banner .banner-heading p {
    font-size: 18px;
    line-height: 30px;
  }
  .home-banners .home-banner {
    height: auto;
  }
  .home-banners .home-banner h1 {
    font-size: 30px;
  }
  .home-banners .home-banner p {
    font-size: 18px;
  }
  .banner-up-domain-search .inner .inside .inputs .submit-box .btn-01, .banner-up-domain-search .inner .inside .inputs .submit-box .btn-01:hover {
    padding: 22px 10px;
  }
    .shared-hosting-banner .breadcrumb {display: none;}
}