/* Oswald Light */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Oswald Regular */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Oswald Medium */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Oswald SemiBold */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Oswald Bold */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   ARCHIVO (Secondary Font)
   ========================= */

/* Archivo Light */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo/static/Archivo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Archivo Regular */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo/static/Archivo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Archivo Medium */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo/static/Archivo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Archivo SemiBold */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo/static/Archivo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Archivo Bold */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo/static/Archivo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family:
    "Oswald",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}

.font-archivo {
  font-family:
    "Archivo",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}

:root {
  /* Brand */
  --color-primary: #0054a1;
  --color-primary-light: #2f74c0;
  --color-primary-dark: #1b3664;
  --color-bg: #dce4f3;
  --font-fam: "Archivo";
}
.welcome-modal {
  z-index: 5001 !important;
}
.modal-content {
  color: var(--color-primary-dark) !important;
  border-radius: 0px !important;
}
.modal-header {
  border-bottom: none !important;
}
.modal-dialog {
  border-radius: 0px !important;
}
.modal-title {
  font-size: 25px !important;
}
.modal-body a {
  color: var(--color-primary-dark) !important;
  font-weight: 500;
  text-decoration: underline;
}

.modal-body button.btn-welcome {
  width: 100% !important;
}

/* Bottom modal */
.modal-dialog-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  pointer-events: auto; /* allow clicks inside modal */
}

.modal-content {
  border-radius: 12px 12px 0 0; /* rounded top corners */
}

/* Optional: make button stick to bottom right inside modal body */
.modal-body .btn-success {
  bottom: 1rem;
}

.goog-te-gadget {
  display: block !important;
}

#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}

.skiptranslate {
  display: none !important;
}

.goog-te-gadget {
  display: block !important;
}

#goog-gt-tt {
  display: none !important;
}

/* Match the common dynamic class prefix used by the translate overlay */
font {
  background: transparent !important;
  -webkit-box-shadow: none !important;
}

form input {
  font-family: var(--font-fam) !important;
}

.lang-compact {
  display: flex;
  align-items: center;
}
.lang-select {
  border: 1px solid rgba(15, 23, 20, 0.06);
  background: transparent;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
}

button .border-0 {
  background: transparent;
}

#chat-widget-container {
  bottom: 8px !important;
  z-index: 5000 !important;
}

html {
  scroll-behavior: smooth;
}

html * {
  scrollbar-width: thin;
  scrollbar-color: #393f94 #fff;
}

html *::-webkit-scrollbar {
  width: 5px;
}

html *::-webkit-scrollbar-track {
  background: #ddd;
}

html *::-webkit-scrollbar-thumb {
  background: #fa6501;
  border: 0px none #fa6501;
}
.global-go-up-button {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  border: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(36, 95, 58, 0.12);
  font-weight: 700;
  gap: 6px;
  padding: 0 10px;
}
.global-go-up-button.block {
  display: flex;
}
.global-go-up-button img {
  width: 12px;
  height: 12px;
  display: inline-block;
  color: #fff;
}
.global-go-up-button:focus {
  outline: 3px solid rgba(47, 122, 74, 0.12);
  outline-offset: 2px;
}

button img {
  color: white;
}

.navbar {
  padding: 0px;
}
.color-primary {
  color: var(--color-primary-dark) !important;
}

a,
input,
input + label {
  color: white !important;
  cursor: pointer !important;
}
.fw-100 {
  font-weight: 100 !important;
}
.btn {
  padding: 10px 35px;
  border-radius: 30px;
}

.nav-item a {
  color: var(--color-primary-dark) !important;
}

.btn-dark {
  background-color: var(--color-primary-dark) !important;
  color: white !important;
}

.btn-light {
  background-color: white !important;
  color: var(--color-primary-dark) !important;
}
.btn-welcome {
  color: white !important;
  border: 1px solid white !important;
  width: 50% !important;
  background-color: var(--color-primary-dark) !important;
}

.btn-welcome:hover {
  color: var(--color-primary-dark) !important;
  border: 1px solid white !important;
  width: 50% !important;
  background-color: white !important;
}
.btn-light:hover {
  background-color: var(--color-primary-dark) !important;
  color: white !important;
  border: none;
}
a.welcome-link:hover {
  border-bottom: 1px solid white !important;
  opacity: 0.8 !important;
}

.btn.btn-dark:hover {
  background-color: white !important;
  color: var(--color-primary-dark) !important;
}

.secondary-header {
  font-style: Bold;
  font-size: 45px;
  line-height: 59px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--color-primary-dark);
}

.font-sm {
  font-size: 12px;
}

.hero {
  min-height: 100vh;
}

.hero-upper {
  color: white;
  margin-top: 80px !important;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover; /* do NOT resize */
  background-position: center; /* keep same position */
  background-attachment: scroll;
  overflow: hidden;
}

.hero-upper .inner {
  width: 70% !important;
}

.hero-content {
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 60px;
  opacity: 1;
}

.text-muted {
  color: #ffffffbf !important;
  font-weight: lighter;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0%;
}

.hero-header {
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 78px;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.hero-lower-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 2rem;
  margin: 5.5rem 0;
  background-color: #1b3664;
  color: #fff;
  border-radius: 1.875rem;
  font-size: clamp(1.5rem, 2.5vw, 2.0625rem);
  text-align: center;
}

.hero-lower-wrapper h2 {
  font-size: 40px;
}

.about-us {
}

.about-us-content {
  /* padding-top: 100px; */
  padding-bottom: 100px;
}

.about-pill {
  height: 100%;
  background: var(--color-primary-dark);
  color: white;
  padding: 50px;
  border-radius: 10px;
}

.about-pill h2 {
  font-size: 23px;
  font-weight: bold;
}

.about-pill-second {
  color: var(--color-primary-dark);
  font-weight: 600;
}
.overview {
  background-color: var(--color-bg);
}

.overview-image {
  background-image: url(../images/overview.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  margin-bottom: 2rem;
  border-radius: 20px;
}

.services {
  padding: 100px;
}

.services-cards {
  width: 30%;
  background: var(--color-bg);
  border-radius: 20px;
}

.pricing {
  padding: 100px;
  background: var(--color-bg);
  width: 100%;
}

.pricing-card {
  width: 100%;
  background: white;
  border-radius: 20px;
  padding-left: 15rem !important;
  padding-right: 15rem !important;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card.active {
  background: var(--color-primary-dark);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.3);
  width: 101%;
}

.pricing-card.active h1,
.pricing-card.active h2,
.pricing-card.active p,
.pricing-card.active svg {
  color: #fff;
}

/* HR color change */
.pricing-card.active hr {
  border-color: #fff !important;
}

/* Button inversion */
.pricing-card.active .btn {
  background: transparent !important;
  color: white !important;
  border: solid 1px white !important;
}

.most-popular {
  right: 50px;
  padding: 10px 35px;
  border-radius: 30px;
  background-color: var(--color-primary-dark) !important;
  color: white !important;
}

.most-popular.active {
  background-color: white !important;
  color: var(--color-primary-dark) !important;
  display: block;
}

footer {
  background-color: var(--color-primary-dark) !important;
  color: white !important;
}

.footer {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.title-footer {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a span:hover {
  opacity: 100 !important;
}

.dropdown-item {
  color: black !important;
}

.welcome-title {
  font-size: 40px;
  color: white !important;
}

.blur-modal {
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px) saturate(120%);
}

.pricing-info {
  gap: 20px;
}
@media (max-width: 991px) {
  .hero-upper .inner {
    width: auto !important;
  }
  .hero-lower-wrapper {
    flex-direction: column;
    gap: 30px;
    margin: 20px;
  }
  .hero-upper {
    background-position: 89% 0% !important;
  }
  .welcome-image {
    display: none !important;
  }

  .pricing-card {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .footer-content {
    flex-direction: column !important;
  }
}

@media (max-width: 720px) {
  .modal-body button.btn-welcome {
    margin-top: 20px !important;
    width: 50% !important;
  }
  .modal-body{
    padding-top: 0px !important;
  }

  .business {
    order: 2;
  }
  .basic {
    order: 1;
  }
  .enterprise {
    order: 3;
  }

  hr.my-4 {
    margin-top: 70px !important;
  }

  .about-pill {
    width: 100% !important;
  }

  .about-pill + .col-7 {
    width: 100% !important;
  }
  .about-pill-container {
    gap: 0px !important;
    margin-bottom: 30px;
  }
  .trusted {
    margin-top: 20px;
  }

  .status {
    margin-bottom: 30px;
  }

  .text-secondary,
  .text-secondary + h2 {
    text-align: center !important;
  }

  .btn {
    width: 100% !important;
    display: block !important;
  }

  .services,
  .pricing {
    padding: 20px !important;
  }

  .services-cards-container {
    flex-direction: column !important;
    gap: 30px;
  }

  .services-cards-container .p-5 {
    width: 100% !important;
  }

  .pricing-card {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .pricing-info {
    flex-direction: column !important;
    text-align: center !important;
  }
  .month {
    align-self: center;
    color: var(--color-primary-dark);
  }
  .pricing-info .d-flex:nth-child(2) {
    margin-top: 10px;
    text-align: left !important;
  }

  .pricing-info .d-flex a {
    width: 50% !important;
    display: inline-block !important;
    align-self: center !important;
  }

  .footer-content {
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 0px !important;
  }

  .footer-third-row {
    margin-bottom: 50px !important;
  }

  .footer {
    padding: 40px !important;
    padding-top: 70px !important;
  }

  section.services,
  section.about-us,
  section.hero,
  section.pricing {
    padding-top: 99px !important;
  }
  .hero-upper {
    margin-top: 0px !important;
  }

  .support-section {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .right-contact .d-flex:nth-child(1),
  .right-contact .d-flex:nth-child(2) {
    flex-direction: column !important;
  }
}

@media (max-width: 435px) {
  .hero-upper {
    background-position: 75% 0% !important;
  }

  .about-us-info a {
    width: 100% !important;
  }

  .about-us-info h1,
  .about-us-info h2 {
    text-align: center !important;
  }

  .overview {
    padding: 10px;
    padding-top: 20px;
  }

  .overview-image {
    border-radius: 20px;
    height: 550px;
  }
}

@media screen and (max-width: 375px) {
  .g-recaptcha {
    -webkit-transform: scale(0.77);
    transform: scale(0.77);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

.goog-text-highlight {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  font-display: swap;
  -webkit-appearance: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  min-height: 100%;
  scroll-behavior: smooth;
  height: 100%;
  font-display: swap;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  color: #000;
  background: #fff;
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 16px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-display: swap;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
em,
strong,
button,
blockquote,
small,
strike,
sub,
sup,
tt,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  list-style: none;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: 0 none;
  color: #000;
}
b {
  font-weight: bolder;
}
strong {
  font-weight: bolder;
}
i,
cite,
em,
var,
dfn {
  font-style: italic;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #e8e8e8;
  border: 0;
  height: 1px;
  margin: 15px 0;
}
img {
  border: 0;
  height: auto;
  vertical-align: middle;
}
p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  p {
    font-size: 14px;
  }
}
.po-r {
  position: relative;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

@media (max-width: 1199px) {
  #button {
    right: 10px;
    bottom: 10px;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #000 inset !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-transition:
    background-color 600000s 0s,
    color 600000s 0s;
  transition:
    background-color 600000s 0s,
    color 600000s 0s;
}
.skiptranslate,
.goog-te-combo {
  display: none !important;
}
body {
  top: 0 !important;
}
.goog-te-gadget {
  display: block !important;
}
#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}
body .goog-text-highlight {
  background: rgba(0, 0, 0, 0) !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
#teams-dropdown-menu span.icon .fa {
  display: none;
}
.loader {
  z-index: 999999;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  left: 0;
}
#teams-dropdown-menu ul li {
  text-transform: capitalize;
}
#teams-dropdown-menu {
  position: relative;
  cursor: pointer;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
  height: 36px;
  padding: 6px;
  background: #071144;
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
#teams-dropdown-menu .flag-text {
  font-size: 0px;
  color: #000;
}
#teams-dropdown-menu ul {
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow:
    0 2px 5px rgba(10, 10, 10, 0.0509803922),
    0 0 10px 0 rgba(10, 10, 10, 0.0784313725);
  box-shadow:
    0 2px 5px rgba(10, 10, 10, 0.0509803922),
    0 0 10px 0 rgba(10, 10, 10, 0.0784313725);
  display: none;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  position: absolute;
  top: 50px;
  width: 135px;
  z-index: 99;
  padding: 0;
  left: unset !important;
  right: 0;
}
#teams-dropdown-menu ul li img {
  margin-right: 10px;
}
#teams-dropdown-menu ul.active {
  display: block;
  -webkit-animation: slidedown 0.2s;
  animation: slidedown 0.2s;
  top: 50px;
}
@-webkit-keyframes slidedown {
  from {
    margin-top: -25px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes slidedown {
  from {
    margin-top: -25px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
#teams-dropdown-menu ul li {
  padding: 10px 15px;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  float: none;
}
#teams-dropdown-menu ul li:hover {
  color: #000 !important;
  background-color: #f0f0f0;
}
#teams-dropdown-menu span.icon:before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid #fff;
  border-right: 0.3em solid rgba(0, 0, 0, 0);
  border-bottom: 0;
  border-left: 0.3em solid rgba(0, 0, 0, 0);
  position: relative;
  top: 2px;
}
@media screen and (max-width: 1199px) {
  #teams-dropdown-menu .flag-text {
    font-size: 0px;
    color: #000;
    margin-right: 4px;
  }
  #teams-dropdown-menu .submenu-button {
    display: none;
  }
  #teams-dropdown-menu span.icon i {
    color: #000;
  }
}
@media (max-width: 1399px) {
  .fr_wrapper header .navbar {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .fr_wrapper header .navbar {
    padding: 15px;
  }
}
@media (max-width: 1199px) {
  .fr_wrapper header .navbar .navbar-menu {
    top: 70px;
  }
}
@media (max-width: 575px) {
  .fr_wrapper header .navbar .navbar-menu {
    top: 65px;
  }
}
@media (max-width: 1799px) {
  .fr_wrapper header .navbar .navbar-menu .navbar-nav li a {
    margin: 0 10px;
  }
}
@media (max-width: 1599px) {
  .fr_wrapper header .navbar .navbar-menu .navbar-nav li a {
    font-size: 13px;
    margin: 0 8px;
  }
}
@media (max-width: 1399px) {
  .fr_wrapper header .navbar .navbar-menu .navbar-nav li a {
    font-size: 12px;
    margin: 0 5px;
  }
}
@media (max-width: 1199px) {
  .fr_wrapper header .navbar .navbar-menu .navbar-nav li a {
    margin: 10px;
    font-size: 14px;
  }
}
@media (max-width: 1399px) {
  .fr_wrapper header .navbar .navbar-menu .navbar-nav li .support_btn {
    padding: 15px 5px;
  }
}
@media (max-width: 1199px) {
  .fr_wrapper header .navbar .navbar-menu .navbar-nav li .support_btn {
    padding: 0;
  }
}
.fr_wrapper .newsletter-section .cancel-sub .newsletter-form .btn_wrapper {
  max-width: 190px;
}
.fr_wrapper footer .footer-top .footer-desc .footer-menu .footer-link ul li a {
  text-transform: capitalize;
}
.main-header {
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1030;
  border: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-header {
    padding: 20px 0;
  }
}
.main-header.fixed-menu {
  position: fixed;
  top: -160px;
}
.main-header nav .netz-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
  flex-wrap: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main-header nav .netz-wrapper ul.rs_auto {
  margin-left: auto;
}
@media (max-width: 991px) {
  .main-header nav .netz-wrapper .logo img {
    max-width: 180px;
  }
}
@media (max-width: 575px) {
  .main-header nav .netz-wrapper .logo img {
    max-width: 170px;
  }
}
.main-header nav .netz-wrapper h1 a {
  display: block;
}
.main-header nav .netz-wrapper h1 a img {
  position: relative;
  display: block;
}
@media (max-width: 1399px) {
  .main-header nav .netz-wrapper h1 a img {
    max-width: 160px;
  }
}
@media (max-width: 991px) {
  .main-header nav .netz-wrapper h1 a img {
    max-width: 140px;
  }
}
@media (min-width: 1200px) {
  .main-header nav .netz-wrapper .burger {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1199px) {
  .main-header nav .netz-wrapper .burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0);
    border-radius: 5px;
    border: 0;
    opacity: 1;
    visibility: visible;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
.main-header nav .netz-wrapper .burger .burger-line {
  display: block;
  cursor: pointer;
  width: 20px;
  height: 2px;
  margin: 4px 0 4px auto;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #f1673b;
  border-radius: 4px;
}
.main-header nav .netz-wrapper .burger .burger-line:nth-child(1) {
  width: 20px;
  background: #095059;
}
.main-header nav .netz-wrapper .burger .burger-line:nth-child(3) {
  width: 20px;
  background: #095059;
}
.main-header nav .netz-wrapper .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  background: rgba(33, 33, 33, 0.85);
}
.main-header nav .netz-wrapper .overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
@media (max-width: 1199px) {
  .main-header nav .netz-wrapper .menu {
    position: fixed;
    top: 0;
    left: -280px;
    right: 0;
    width: 280px;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    background: #f4f7ff;
    z-index: 999;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media (max-width: 480px) {
  .main-header nav .netz-wrapper .menu {
    width: 100%;
  }
}
.main-header nav .netz-wrapper .menu.is-active {
  display: block;
  opacity: 1;
  left: 0;
  visibility: visible;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (min-width: 1200px) {
  .main-header nav .netz-wrapper .menu.is-active {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
@media (min-width: 1200px) {
  .main-header nav .netz-wrapper .menu .mobile-head {
    display: none;
  }
}
@media (max-width: 1199px) {
  .main-header nav .netz-wrapper .menu .mobile-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
  }
  .main-header nav .netz-wrapper .menu .mobile-head img {
    width: 195px;
  }
  .main-header nav .netz-wrapper .menu .mobile-head .close-menu img {
    width: 20px;
    height: 15px;
  }
}
@media (max-width: 991px) {
  .main-header nav .netz-wrapper .menu .mobile-head img {
    width: 140px;
  }
}
@media (max-width: 1199px) {
  .main-header nav .netz-wrapper .menu .menu-list {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
}
@media (max-width: 991px) {
  .main-header nav .netz-wrapper .menu .menu-list {
    height: calc(100vh - 60px);
  }
}
@media (max-width: 1199px) {
  .main-header.layout1 .navbar .netz-wrapper .menu {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: auto;
    top: -100%;
    left: 0;
    right: 0;
  }
  .main-header.layout1 .navbar .netz-wrapper .menu.is-active {
    top: 0;
  }
}
.main-header.layout1 .navbar .netz-wrapper .menu .mobile-head {
  padding: 15px;
}
@media (min-width: 576px) {
  .main-header.layout1 .navbar .netz-wrapper .menu .mobile-head {
    max-width: 540px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .main-header.layout1 .navbar .netz-wrapper .menu .mobile-head {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .main-header.layout1 .navbar .netz-wrapper .menu .mobile-head {
    max-width: 960px;
    height: 70px;
  }
}
@media (max-width: 991px) {
  .main-header.layout1 .navbar .netz-wrapper .menu .mobile-head {
    height: 60px;
  }
}
@media (max-width: 1199px) {
  .main-header.layout1 .navbar .netz-wrapper .menu .menu-list {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
}
@media (max-width: 991px) {
  .main-header.layout1 .navbar .netz-wrapper .menu .menu-list {
    height: calc(100vh - 60px);
  }
}
.main-header.sticky-header {
  -webkit-box-shadow: 0 0.0625em 0.5em rgba(116, 116, 118, 0.3);
  box-shadow: 0 0.0625em 0.5em rgba(116, 116, 118, 0.3);
  z-index: 999;
  background: #fff;
  padding: 10px 0;
  z-index: 1030;
  top: 0px !important;
}
@media (max-width: 1199px) {
  .main-header.sticky-header {
    top: 0px !important;
  }
}
.main-header.sticky-header .menu::before {
  display: none;
}
.main-header.sticky-header.active {
  top: 0px;
}

.nav-item .nav-link {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #313131;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  position: relative;
  padding: 0;
  cursor: pointer;
}
.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: #f1673b;
}
.menu {
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .menu {
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu::before {
    position: absolute;
    content: "";
    bottom: 70px;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(209, 209, 209, 0.3)),
      color-stop(51.04%, #d1d1d1),
      to(rgba(209, 209, 209, 0.3))
    );
    background: linear-gradient(
      90deg,
      rgba(209, 209, 209, 0.3) 0%,
      #d1d1d1 51.04%,
      rgba(209, 209, 209, 0.3) 100%
    );
    width: 100%;
    height: 2px;
  }
}
.menu .logo {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  display: none;
}
@media (max-width: 1199px) {
  .menu .logo {
    display: none !important;
  }
}
.netz-wrapper {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
font {
  background: rgba(0, 0, 0, 0) !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
footer {
  position: relative;
  background: #000;
  z-index: 1;
}
@media (max-width: 991px) {
  footer .footer-top {
    padding-bottom: 30px;
  }
}
footer .footer-top .footer-desc {
  position: relative;
  z-index: 1;
  padding: 50px 0 30px 0;
}
@media (max-width: 991px) {
  footer .footer-top .footer-desc {
    text-align: center;
    padding: 0;
  }
}
footer .footer-top .footer-desc .logo {
  display: block;
  margin-bottom: 40px;
}
footer .footer-top .footer-desc h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  footer .footer-top .footer-desc h3 {
    font-size: 16px;
    line-height: 19px;
  }
}
@media (max-width: 991px) {
  footer .footer-top .footer-desc h3 {
    text-align: left;
    margin-bottom: 25px;
  }
  footer .footer-top .footer-desc h3.collapsed .footer-toggler:after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: url("../images/icon/arrow-down.svg") no-repeat center;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  footer .footer-top .footer-desc h3 .footer-toggler {
    background: #fff;
    border-radius: 3px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    right: 0px;
    display: block;
    width: 22px;
    height: 22px;
  }
  footer .footer-top .footer-desc h3 .footer-toggler:after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
    width: 12px;
    height: 12px;
    background: url("../images/icon/arrow-down.svg") no-repeat center;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
}
footer .footer-top .footer-desc p {
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.6);
  padding: 30px 0 20px;
}
@media (max-width: 767px) {
  footer .footer-top .footer-desc p {
    font-size: 14px;
    text-align: center;
    padding: 20px 0 0;
  }
}
footer .footer-top .footer-desc .footer-menu {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  footer .footer-top .footer-desc .footer-menu .footer-link ul.nomob {
    display: block;
    height: auto !important;
  }
}
footer .footer-top .footer-desc .footer-menu .footer-link ul li {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  footer .footer-top .footer-desc .footer-menu .footer-link ul li {
    text-align: left;
    padding-left: 15px;
  }
}
footer .footer-top .footer-desc .footer-menu .footer-link ul li a {
  font-size: 16px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 1399px) {
  footer .footer-top .footer-desc .footer-menu .footer-link ul li a {
    font-size: 15px;
  }
}
footer .footer-top .footer-desc .footer-menu .footer-link ul li a:hover {
  color: #fa6501;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 992px) {
  footer .footer-top .footer-desc .footer-menu .footer-contact ul.nomob {
    display: block;
    height: auto !important;
  }
}
footer .footer-top .footer-desc .footer-menu .footer-contact ul li {
  margin-bottom: 20px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer
  .footer-top
  .footer-desc
  .footer-menu
  .footer-contact
  ul
  li:last-of-type {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 991px) {
  footer .footer-top .footer-desc .footer-menu .footer-contact ul li {
    text-align: left;
    padding-left: 15px;
  }
}
footer .footer-top .footer-desc .footer-menu .footer-contact ul li a {
  line-height: 17px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  footer .footer-top .footer-desc .footer-menu .footer-contact ul li a {
    font-size: 15px;
  }
}
footer .footer-top .footer-desc .footer-menu .footer-contact ul li a:hover {
  color: #fa6501;
}
footer .footer-top .footer-desc .footer-menu .footer-contact ul li img {
  padding-right: 10px;
  width: 36px;
  height: 26px;
}
footer .footer-top .footer-desc .footer-menu .footer-contact ul li span {
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 260px;
}
@media screen and (max-width: 1199px) {
  footer .footer-top .footer-desc .footer-menu .footer-contact ul li span {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  footer .footer-top .footer-desc.first {
    padding: 30px 0;
  }
}
footer .footer-top .footer-desc.first .footer-payment {
  padding-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .footer-top .footer-desc.first .footer-payment img {
    width: 275px;
  }
}
footer .footer-top .footer-desc.first .lock_icon ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer-top .footer-desc.first .lock_icon ul li span {
  padding: 3px 0 0 10px;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}
footer .footer-top .footer-payment_mob {
  margin-bottom: 20px;
  text-align: center;
}
footer .footer-top .footer-payment_mob img {
  height: 28px;
}
footer .footer-top .lock_icon_mob {
  margin-bottom: 25px;
}
footer .footer-top .lock_icon_mob ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .footer-top .lock_icon_mob ul li span {
  padding: 3px 0 0 10px;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
}
footer .copyright-footer {
  position: relative;
  background: #383838;
}
footer .copyright-footer .copyright {
  padding: 15px 0;
  text-align: center;
}
@media (max-width: 1199px) {
  footer .copyright-footer .copyright {
    padding: 15px 0 60px;
  }
}
footer .copyright-footer .copyright p {
  font-size: 16px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
  footer .copyright-footer .copyright p {
    text-align: center;
    font-size: 13px;
    line-height: 18px;
  }
}
@media (max-width: 580px) {
  footer .copyright-footer .copyright p {
    font-size: 11px;
  }
}
table {
  width: 100%;
  table-layout: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-collapse: separate;
  background: #fff;
  border: 1px solid rgba(7, 15, 43, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
table thead tr {
  background: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
table thead tr th {
  font-weight: 500;
  font-size: 21px;
  line-height: 35px;
  color: #fff;
  padding: 25px;
  word-break: break-word;
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 991px) {
  table thead tr th {
    padding: 20px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  table thead tr th {
    font-size: 15px;
    padding: 8px 15px;
  }
}
@media (max-width: 575px) {
  table thead tr th {
    font-size: 12px;
    font-weight: 400;
    padding: 8px 10px;
  }
}
table tr {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  position: relative;
}
table tr td {
  padding: 40px 30px;
  font-size: 16px;
  line-height: 19px;
  color: #071144;
  border-radius: 0;
  text-align: left;
  border-right: 1px solid rgba(7, 15, 43, 0.2);
  border-bottom: 1px solid rgba(7, 15, 43, 0.2);
}
@media (min-width: 768px) and (max-width: 991px) {
  table tr td {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  table tr td {
    font-size: 14px;
    padding: 8px 15px;
  }
}
@media (max-width: 575px) {
  table tr td {
    font-size: 12px;
    padding: 8px 10px;
  }
}
table tr td a {
  padding: 20px 20px;
  font-family: "Bitter", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  color: #8b897e;
  border-radius: 0;
  text-align: center;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  table tr td a {
    font-size: 14px;
    padding: 8px 15px;
  }
}
table tr td a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  text-decoration: underline;
}
table tr td:last-of-type {
  border-right: none;
}
table tr:last-of-type td {
  border-bottom: none;
}
table th {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
  padding: 20px 30px;
  color: #fff;
  background: #000;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1199px) {
  table th {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  table th {
    font-size: 16px;
    padding: 20px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  table th {
    font-size: 13px;
    padding: 8px 15px;
  }
}
@media (max-width: 575px) {
  table th {
    font-size: 12px;
    line-height: 20px;
    padding: 8px 10px;
  }
}

.form input,
.form textarea {
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  line-height: 18px;
  padding: 15px 20px 15px 0;
  width: 100%;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}
.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form input::-moz-placeholder,
.form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form input:-ms-input-placeholder,
.form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form input::-ms-input-placeholder,
.form textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form input:focus,
.form input:active,
.form textarea:focus,
.form textarea:active {
  color: #fff;
  background-color: #000 !important;
}
@media (max-width: 767px) {
  .form input,
  .form textarea {
    padding: 14px 20px 14px 0px;
    font-size: 14px;
  }
}
.form textarea {
  resize: none;
}
.form .remember {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 30px 0;
}
.form .remember .custom-check-box {
  color: #fff;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 767px) {
  .form .remember .custom-check-box {
    padding-left: 25px;
    font-size: 14px;
  }
}
.form .remember .custom-check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  left: 0;
  top: 0;
}
.form .remember .custom-check-box .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .form .remember .custom-check-box .checkmark {
    width: 20px;
    height: 20px;
    top: 0;
  }
}
.form .remember .custom-check-box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 11px;
  border: solid #fa6501;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .form .remember .custom-check-box .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
  }
}
.form .remember .custom-check-box input:checked ~ .checkmark {
  background-color: #fff;
}
.form .remember .custom-check-box input:checked ~ .checkmark:after {
  display: block;
}
.form .remember .custom-check-box a {
  color: #fff;
}
.form .remember .custom-check-box a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fa6501;
}
.form .remember .custom-check-box.signup {
  padding-bottom: 25px;
}
.form .remember .forgot-pass {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .form .remember .forgot-pass {
    font-size: 14px;
  }
}
.form .remember .forgot-pass:hover,
.form .remember .forgot-pass:focus {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fa6501;
}

.main-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  overflow: hidden;
}
.main-wrapper.overflow {
  overflow: initial !important;
}
