header {
  position: relative;
  z-index: 3;
}
header .header-top {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 9px 0;
}
header .header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
header .header-top .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
header .header-top .social a {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  color: #8c8c8c;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  background-color: #343434;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-top .social a i {
  font-size: 16px;
}
header .header-top .social a:hover {
  background-color: #ffffff;
}
header .header-top .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  overflow-x: auto;
}
header .header-top .contact-info a,
header .header-top .contact-info p {
  color: #8c8c8c;
  font-size: 12px;
  margin: 0 8px 0 0;
  padding: 0 8px 0 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
header .header-top .contact-info a i,
header .header-top .contact-info p i {
  font-size: 12px;
  margin-right: 8px;
}
header .header-top .contact-info a:not(:last-child),
header .header-top .contact-info p:not(:last-child) {
  border-right: 1px solid #8c8c8c;
}
header .header-top .contact-info a:hover,
header .header-top .contact-info p:hover {
  color: #2b8cb8;
}
header .header-bottom {
  padding: 24px 0;
}
header .header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-bottom .logo {
  width: 150px;
}
header .header-bottom .logo img {
  width: 100%;
}
header .header-bottom nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .header-bottom nav a {
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
header .header-bottom nav .has-child {
  position: relative;
  cursor: pointer;
}
header .header-bottom nav .has-child .menu-item::after {
  content: "\e005";
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
  font-family: "font-icons" !important;
}
header .header-bottom nav .child-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  position: absolute;
  left: 0;
  top: 100%;
  backdrop-filter: blur(20px);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  filter: blur(10px) saturate(0.8);
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 260ms ease, visibility 0s linear 260ms;
  will-change: opacity, transform, filter;
}
header .header-bottom nav .child-menu li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}
header .header-bottom nav .child-menu li a::before {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #3b9f6e;
  display: inline-block;
  content: "";
  margin-right: 8px;
}
header .header-bottom nav .child-menu.is-open,
header .header-bottom nav .has-child:hover .child-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0) saturate(1);
  pointer-events: auto;
  transition-delay: 0s;
}
header .header-bottom .contact-btn {
  padding: 10px 12px;
  border-radius: 3rem;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}
header .header-bottom .contact-btn:hover {
  opacity: 0.7;
}
header .header-bottom .menu-toggle {
  width: 32px;
  height: 32px;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
header .header-bottom .menu-toggle::before {
  content: "\e034";
  font-family: "font-icons" !important;
  font-size: 32px;
}
header .header-bottom .back-btn {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 0 !important;
}
header .header-bottom .current-menu {
  color: #727272;
  font-family: "CabinCondensed";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 24px !important;
}

.header-light header .header-top {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}
.header-light header .logo .dark {
  display: none;
}
.header-light header .logo .light {
  display: block;
}
.header-light header nav a,
.header-light header nav .menu-item {
  color: #ffffff;
}
.header-light header .menu-toggle {
  color: #ffffff;
}
.header-light header .contact-btn {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.header-light header .child-menu {
  background-color: #000;
  border: 1px solid #171717;
}
.header-light header .child-menu li a {
  color: #ffffff;
}

.header-dark header .header-top {
  background: #231f1e;
  backdrop-filter: blur(12px);
}
.header-dark header .logo .dark {
  display: block;
}
.header-dark header .logo .light {
  display: none;
}
.header-dark header .contact-btn {
  border: 1px solid #231f1e;
  color: #231f1e;
}
.header-dark header .child-menu {
  background-color: #ffffff;
  border: 1px solid #efefef;
}
.header-dark header .child-menu li a {
  color: #000;
}
.header-dark header .menu-toggle {
  color: #231f1e;
}

html:has(.menu-open) {
  overflow: hidden;
}

.menu-open {
  position: relative;
  overflow: hidden;
}
.menu-open::before {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: #231f1e;
  content: "";
  z-index: 3;
}
.menu-open header {
  z-index: 4;
}
.menu-open header .header-top {
  display: none;
}
.menu-open header .header-bottom .container {
  display: grid;
  grid-template-areas: "logo menu-toggle" "nav nav" "contact contact";
  row-gap: 52px;
}
.menu-open header .header-bottom .container .logo {
  grid-area: logo;
}
.menu-open header .header-bottom .container .menu-toggle {
  grid-area: menu-toggle;
}
.menu-open header .header-bottom .container nav {
  grid-area: nav;
  display: block;
  position: relative;
  overflow: hidden;
}
.menu-open header .header-bottom .container nav.active-child {
  overflow: visible;
}
.menu-open header .header-bottom .container nav.active-child li:not(.has-child.active) {
  display: none;
}
.menu-open header .header-bottom .container nav.active-child li .menu-item {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.menu-open header .header-bottom .container nav.active-child ul .child-menu {
  visibility: visible;
  left: 0;
  position: relative;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
}
.menu-open header .header-bottom .container nav.active-child ul .child-menu li {
  display: block !important;
}
.menu-open header .header-bottom .container nav ul {
  flex-direction: column;
  transition: all 0.2s ease;
}
.menu-open header .header-bottom .container nav ul li {
  width: 100%;
}
.menu-open header .header-bottom .container nav ul li.has-child {
  position: inherit !important;
}
.menu-open header .header-bottom .container nav ul li.has-child.active {
  z-index: 1;
}
.menu-open header .header-bottom .container nav ul li a,
.menu-open header .header-bottom .container nav ul li .menu-item {
  font-family: "CabinCondensed";
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}
.menu-open header .header-bottom .container nav ul li .menu-item::after {
  content: "\e009";
  font-size: 18px;
}
.menu-open header .header-bottom .container nav ul li .child-menu {
  visibility: hidden;
  opacity: 1;
  filter: none;
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
  left: 100%;
  top: 0;
  position: absolute;
  transform: none;
  background: #231f1e;
  width: 100%;
  display: block;
}
.menu-open header .header-bottom .container nav ul li .child-menu li {
  margin-bottom: 32px;
}
.menu-open header .header-bottom .container nav ul li .child-menu li a {
  color: #aaaaaa;
  font-family: "CabinCondensed";
  font-size: 24px;
  line-height: 32px;
}
.menu-open header .header-bottom .container nav ul li .child-menu li a::before {
  display: none;
}
.menu-open header .header-bottom .container nav ul li .child-menu li a::after {
  content: "\e009";
  font-size: 18px;
  font-family: "font-icons" !important;
}
.menu-open header .header-bottom .container .contact-btn {
  grid-area: contact;
  background: #ffffff;
  color: #171717;
  justify-content: center;
  display: flex;
}
.menu-open header .header-bottom .container .menu-toggle {
  color: #ffffff;
}
.menu-open header .header-bottom .container .menu-toggle::before {
  content: "\e015";
}
.menu-open header .logo .light {
  display: block;
}
.menu-open header .logo .dark {
  display: none;
}
.menu-open footer .footer-bottom {
  position: fixed;
  bottom: 40px;
  z-index: 5;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 960px;
}

.mobile-stepper-page header nav,
.mobile-stepper-page header .contact-btn,
.mobile-stepper-page header .menu-toggle {
  display: none !important;
}
.mobile-stepper-page footer {
  display: none !important;
}

@font-face {
  font-family: "Cabin";
  src: url("../fonts/cabin/Cabin-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cabin";
  src: url("../fonts/cabin/Cabin-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cabin";
  src: url("../fonts/cabin/Cabin-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cabin";
  src: url("../fonts/cabin/Cabin-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "CabinItalic";
  src: url("../fonts/cabin/Cabin-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "CabinCondensed";
  src: url("../fonts/cabin/Cabin_Condensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CabinCondensed";
  src: url("../fonts/cabin/Cabin_Condensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "CabinCondensed";
  src: url("../fonts/cabin/Cabin_Condensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "CabinCondensed";
  src: url("../fonts/cabin/Cabin_Condensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html,
body {
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}
html.overflow-clip,
body.overflow-clip {
  overflow-x: clip !important;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}
ul.list-number, ul.list-dash, ul.list-disc {
  padding-left: 15px;
}
ul.list-number li {
  list-style: number;
}
ul.list-disc li {
  list-style: disc;
}
ul.list-dash li {
  list-style: " - ";
}

.cursor-text {
  cursor: text;
}

.hide {
  display: none;
}

li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.maxw-fit {
  max-width: fit-content;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

img {
  transition: filter 0.35s ease, opacity 0.35s ease;
  filter: blur(10px);
  opacity: 0.92;
}
img.is-loaded {
  filter: blur(0);
  opacity: 1;
}

.section-tag {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #666666;
}
.section-tag.text-green::before {
  background: #3b9f6e;
}
.section-tag::before {
  width: 24px;
  height: 1px;
  background-color: #7c7c7c;
  content: "";
}

.section-title {
  font-family: "CabinCondensed";
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
}
.section-title span {
  color: #3b9f6e;
}

.section-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.page-header {
  margin-bottom: 70px;
}
.page-header .page-header-content {
  display: flex;
  align-items: center;
  gap: 70px;
}
.page-header .page-header-content .section-title {
  width: 100%;
  max-width: 600px;
}

.page-banner {
  position: relative;
  overflow: hidden;
}
.page-banner .detail {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 16px;
}
.page-banner .detail .editor {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-banner .detail .editor i {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  font-size: 20px;
  color: #3b9f6e;
  background: #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner .detail .published-at {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
}
.page-banner img,
.page-banner video {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

.home-slider {
  margin-top: -150px;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #000;
  min-height: 950px;
}
.home-slider .swiper {
  width: 100%;
  flex: 1;
}
.home-slider .swiper-slide::before {
  left: 0;
  top: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6980392157);
  z-index: 1;
}
.home-slider .swiper-slide img,
.home-slider .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-slider .swiper-slide .slider-content {
  position: absolute;
  inset: 0;
  margin: auto;
  height: calc(100% - 300px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.home-slider .swiper-slide .slider-content h3 {
  font-family: "CabinCondensed";
  font-weight: 500;
  font-size: 64px;
  line-height: 80px;
  color: #ffffff;
  margin-bottom: 24px;
}
.home-slider .swiper-slide .slider-content h3 span {
  color: #3b9f6e;
}
.home-slider .swiper-slide .slider-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
}
.home-slider .swiper-slide .slider-content .slider-act {
  margin-top: 24px;
  display: flex;
  gap: 25px;
}
.home-slider .swiper-slide .slider-content .slider-act a {
  width: 100%;
  max-width: 280px;
}
.home-slider .swiper-pagination {
  position: relative;
  bottom: 120px;
  z-index: 2;
  text-align: left;
}
.home-slider .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 13px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ffffff;
  border-radius: 8px;
}
.home-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
  width: 32px;
}
.home-slider .home-slider-stats {
  padding: 32px 0;
  background-color: rgba(52, 52, 52, 0.8);
  backdrop-filter: blur(8px);
  color: #ffffff;
}
.home-slider .home-slider-stats .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.home-slider .home-slider-stats .container .home-slider-stats__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.home-slider .home-slider-stats .container .home-slider-stats__item .city-placeholder {
  opacity: 0;
}
.home-slider .home-slider-stats .container .home-slider-stats__item:not(:last-child) {
  border-right: 1px solid #515151;
  padding: 0 63px 0 0;
}
.home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__icon {
  width: 48px;
  height: 48px;
  background-color: #231f1e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__icon i {
  font-size: 24px;
  color: #ffffff;
}
.home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__content .home-slider-stats__value {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 4px;
}
.home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__content .home-slider-stats__label {
  font-family: "CabinCondensed";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #8c8c8c;
}

.home-hero-item {
  background: #f8fafc;
  padding: 16px 0 24px;
}
.home-hero-item .list {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  min-height: 850px;
  max-height: calc(100vh - 186px);
  column-gap: 24px;
}
.home-hero-item .list .item {
  flex: 0 0 128px;
  max-width: 128px;
  padding: 64px 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.5s;
}
.home-hero-item .list .item::before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  inset: 0;
  position: absolute;
  z-index: 1;
}
.home-hero-item .list .item .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(6px) !important;
  z-index: 0;
}
.home-hero-item .list .item .hero-bg.in-view {
  transform: scale(1.1);
}
.home-hero-item .list .item .item-title {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  white-space: nowrap;
  transform: translateX(25px) rotate(90deg);
  transform-origin: left center;
  transition: transform 0.35s, font-size 0.35s;
}
.home-hero-item .list .item .content {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.home-hero-item .list .item .selects {
  display: flex;
  align-items: end;
  gap: 32px;
  max-width: 80%;
  margin-bottom: 32px;
}
.home-hero-item .list .item .selects i {
  font-size: 24px;
  color: #686868;
  margin-bottom: 12px;
}
.home-hero-item .list .item .selects .form-group {
  width: 100%;
}
.home-hero-item .list .item .selects .form-group .form-label {
  color: #fff;
}
.home-hero-item .list .item .selects .ts-wrapper {
  padding: 14px 16px;
  background: transparent;
  border: 1px solid #5b5b5b;
  border-radius: 3rem;
}
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control, .home-hero-item .list .item .selects .ts-wrapper.multi .ts-control {
  background: transparent !important;
  color: #fff !important;
}
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control:after, .home-hero-item .list .item .selects .ts-wrapper.multi .ts-control:after {
  content: "\e005";
  color: #fff;
  font-size: 24px;
}
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control .item,
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control input, .home-hero-item .list .item .selects .ts-wrapper.multi .ts-control .item,
.home-hero-item .list .item .selects .ts-wrapper.multi .ts-control input {
  padding: 0;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  background: transparent !important;
  color: #fff !important;
  flex: auto;
  max-width: fit-content;
}
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control .item::before,
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control input::before, .home-hero-item .list .item .selects .ts-wrapper.multi .ts-control .item::before,
.home-hero-item .list .item .selects .ts-wrapper.multi .ts-control input::before {
  display: none;
}
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control .item::placeholder,
.home-hero-item .list .item .selects .ts-wrapper.single .ts-control input::placeholder, .home-hero-item .list .item .selects .ts-wrapper.multi .ts-control .item::placeholder,
.home-hero-item .list .item .selects .ts-wrapper.multi .ts-control input::placeholder {
  color: #fff !important;
}
.home-hero-item .list .item.active {
  flex: 0 1 100%;
  max-width: 100%;
  padding: 64px 48px 32px;
}
.home-hero-item .list .item.active .hero-bg {
  filter: blur(0px) !important;
}
.home-hero-item .list .item.active .item-title {
  font-size: 16px;
  line-height: 24px;
  transform: translateX(0) rotate(0);
  margin-bottom: 32px;
  transition-delay: 0.45s;
}
.home-hero-item .list .item.active .content {
  opacity: 1;
  transition: opacity 0.35s;
  transition-delay: 0.8s;
  height: auto;
  overflow: visible;
}
.home-hero-item .list .item.active .content .action {
  display: flex;
  width: 80%;
  gap: 24px;
}
.home-hero-item .list .item.active .content .action .btn {
  width: 50%;
}
.home-hero-item .list .item.active .state ul {
  opacity: 1;
  transition: opacity 0.3s;
  transition-delay: 1.15s;
  width: 100%;
}
.home-hero-item .list .item.active .state .action .act-btn {
  display: flex;
}
.home-hero-item .list .item.active .state .action .act-btn.link {
  display: none;
}
.home-hero-item .list .item:not(.active) .state .action .act-btn.link {
  display: flex;
}
.home-hero-item .list .item .item-title,
.home-hero-item .list .item .content,
.home-hero-item .list .item .state {
  position: relative;
  z-index: 2;
}
.home-hero-item .list .item .tags {
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.home-hero-item .list .item .tags .tag {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  white-space: nowrap;
  column-gap: 8px;
  padding: 8px 16px;
  border-radius: 3rem;
  background: linear-gradient(180deg, #153927 0%, #3b9f6e 100%);
  position: relative;
  overflow: hidden;
}
.home-hero-item .list .item .tags .tag::before {
  position: absolute;
  content: "";
  left: 1px;
  top: 1px;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  background: #000;
  border-radius: 3rem;
  z-index: 0;
}
.home-hero-item .list .item .tags .tag i {
  font-size: 16px;
  color: #fff;
}
.home-hero-item .list .item .tags .tag > * {
  position: relative;
  z-index: 1;
}
.home-hero-item .list .item .title {
  font-family: "CabinCondensed";
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  margin-bottom: 24px;
}
.home-hero-item .list .item .title span {
  color: #3b9f6e;
}
.home-hero-item .list .item .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 64px;
}
.home-hero-item .list .item .state {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-hero-item .list .item .state .action {
  display: flex;
  column-gap: 16px;
}
.home-hero-item .list .item .state .action .act-btn {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home-hero-item .list .item .state .action .act-btn i {
  color: #fff;
  font-size: 24px;
}
.home-hero-item .list .item .state ul {
  display: flex;
  column-gap: 16px;
  opacity: 0;
  max-width: 430px;
  width: 0;
  overflow: hidden;
}
.home-hero-item .list .item .state ul li {
  max-width: 72px;
  height: 8px;
  background-color: #434343;
  border-radius: 3rem;
  width: 100%;
}
.home-hero-item .list .item .state ul li.current {
  background-color: #3b9f6e;
  max-width: 100%;
}

.home-about {
  padding: 80px 0;
}
.home-about .home-about-act {
  display: flex;
  gap: 24px;
  height: 100%;
  align-items: center;
  justify-content: start;
}

.home-about-slider .swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-about-slider .swiper-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}
.home-about-slider .swiper-header .slider-nav {
  gap: 16px;
  display: flex;
  margin-bottom: 32px;
}
.home-about-slider .swiper-header .slider-nav .slider-prev,
.home-about-slider .swiper-header .slider-nav .slider-next {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid #231f1e;
  transition: all 0.3s ease-in-out;
}
.home-about-slider .swiper-header .slider-nav .slider-prev:disabled,
.home-about-slider .swiper-header .slider-nav .slider-next:disabled {
  border-color: #9f9f9f;
}
.home-about-slider .swiper-slide {
  width: 400px;
  height: 500px;
}
.home-about-slider .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6980392157);
  z-index: 2;
}
.home-about-slider .swiper-slide .content {
  position: relative;
  z-index: 3;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.home-about-slider .swiper-slide .content h3 {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
}
.home-about-slider .swiper-slide .content a {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 48px;
}
.home-about-slider .swiper-slide .content a i {
  font-size: 24px;
  color: #231f1e;
}
.home-about-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

.home-grid {
  padding: 60px 0;
  background-color: #231f1e;
}
.home-grid .section-tag {
  color: #d1d1d1;
}
.home-grid .section-title {
  color: #ffffff;
}
.home-grid .section-title span {
  color: #3b9f6e;
}
.home-grid .section-description {
  color: #d1d1d1;
}
.home-grid .container {
  display: grid;
  column-gap: 114px;
  align-items: center;
}
.home-grid .container .banner {
  grid-area: banner;
  border: 5px solid transparent;
  border-radius: 2px;
  border-image: linear-gradient(180deg, #343434 0%, rgba(52, 52, 52, 0.2) 100%) 1;
}
.home-grid .container .banner img {
  display: block;
  width: 100%;
  height: auto;
}
.home-grid .container .section-header {
  grid-area: header;
}
.home-grid .container .section-body {
  grid-area: body;
}
.home-grid .container .section-body ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  color: #ffffff;
  position: relative;
}
.home-grid .container .section-body ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 83px;
  height: 1px;
  background-color: #333130;
}
.home-grid .container .section-body ul li i {
  color: #3b9f6e;
  margin-right: 20px;
}
.home-grid.grid-right .container {
  grid-template-columns: calc(50% - 57px);
  grid-template-areas: "banner header" "banner body";
}
.home-grid.grid-left .container {
  grid-template-columns: calc(50% - 57px);
  grid-template-areas: "header banner" "body banner";
}

.home-who-are-we {
  padding: 80px 0;
}
.home-who-are-we .container {
  display: grid;
  column-gap: 60px;
  align-items: end;
  grid-template-columns: calc(50% - 30px);
  grid-template-areas: "header body" "banner body";
}
.home-who-are-we .container .banner {
  grid-area: banner;
}
.home-who-are-we .container .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 670px;
}
.home-who-are-we .container .section-header {
  grid-area: header;
  margin-bottom: 64px;
}
.home-who-are-we .container .section-body {
  grid-area: body;
}
.home-who-are-we .container .section-body .address-card .body {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #f8fafc;
}
.home-who-are-we .container .section-body .address-card .footer {
  padding: 16px 24px;
  background: #3b9f6e;
}
.home-who-are-we .container .section-body .address-card .item {
  width: 100%;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 2px;
  padding: 16px;
}
.home-who-are-we .container .section-body .address-card .item .icon {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background: #3b9f6e;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.home-who-are-we .container .section-body .address-card .item i {
  font-size: 16px;
  color: #ffffff;
}

.page-blog {
  padding: 80px 0;
}

.blog-list-item .banner {
  position: relative;
  margin-bottom: 34px;
}
.blog-list-item .banner::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.4;
  content: "";
  z-index: 2;
}
.blog-list-item .banner img {
  width: 100%;
  height: 473px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.blog-list-item .banner .blog-link {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #231f1e;
  z-index: 2;
}
.blog-list-item .category {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  background-color: #f8fafc;
  border-radius: 3rem;
  padding: 8px 12px;
  border: 1px solid #e6e6e6;
  margin-bottom: 16px;
  max-width: fit-content;
}
.blog-list-item .category::before {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #3b9f6e;
  content: "";
  display: inline-block;
  margin-right: 12px;
}
.blog-list-item .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #231f1e;
}

.home-why-nexora {
  padding: 80px 0;
}
.home-why-nexora .container {
  display: grid;
  column-gap: 170px;
  align-items: end;
  grid-template-columns: minmax(0, 455px) 1fr;
  grid-template-areas: "header body" "banner body";
}
.home-why-nexora .container .section-header {
  grid-area: header;
}
.home-why-nexora .container .banner {
  grid-area: banner;
  margin: 0 auto;
}
.home-why-nexora .container .section-body {
  grid-area: body;
}
.home-why-nexora .container .section-body .why-nexora-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 125px;
  row-gap: 80px;
}
.home-why-nexora .container .section-body .why-nexora-list .why-nexora-list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-why-nexora .container .section-body .why-nexora-list .why-nexora-list-item i {
  font-size: 48px;
  color: #3b9f6e;
  margin-bottom: 24px;
}
.home-why-nexora .container .section-body .why-nexora-list .why-nexora-list-item .why-nexora-list-item-content-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #1f1f1f;
  margin-bottom: 16px;
}
.home-why-nexora .container .section-body .why-nexora-list .why-nexora-list-item .why-nexora-list-item-content-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #666666;
}

.how-we-work {
  padding: 80px 0 0;
  background: #f8fafc;
}
.how-we-work .container:not(.section-footer .container) {
  display: grid;
  column-gap: 127px;
  grid-template-columns: minmax(0, 570px) 1fr;
  grid-template-areas: "body header" "body banner";
}
.how-we-work .container:not(.section-footer .container) .section-header {
  grid-area: header;
}
.how-we-work .container:not(.section-footer .container) .banner {
  grid-area: banner;
  max-height: 680px;
}
.how-we-work .container:not(.section-footer .container) .banner img {
  width: 100%;
  border: 5px solid #e9e9e9;
  border-bottom: 0;
}
.how-we-work .container:not(.section-footer .container) .banner .foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #ffffff;
  width: 100%;
  color: #666666;
}
.how-we-work .container:not(.section-footer .container) .banner .foot i {
  font-size: 100px;
}
.how-we-work .container:not(.section-footer .container) .banner .foot p {
  padding-left: 24px;
  margin-bottom: 0;
  border-left: 1px solid #dbdbdb;
}
.how-we-work .container:not(.section-footer .container) .section-body {
  grid-area: body;
  margin-top: 40px;
}
.how-we-work .container:not(.section-footer .container) .section-body .how-we-work-list-item {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e6e6e6;
}
.how-we-work .container:not(.section-footer .container) .section-body .how-we-work-list-item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.how-we-work .container:not(.section-footer .container) .section-body .how-we-work-list-item .head .how-we-work-list-item-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #231f1e;
  margin-bottom: 0;
}
.how-we-work .container:not(.section-footer .container) .section-body .how-we-work-list-item .head .count {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #e3e3e3;
}
.how-we-work .container:not(.section-footer .container) .section-body .how-we-work-list-item .how-we-work-list-item-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 0;
}
.how-we-work .section-footer {
  background: #231f1e;
}
.how-we-work .section-footer .content {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  color: #ffffff;
  padding: 80px 0 100px;
}
.how-we-work .section-footer .content .title {
  font-family: "CabinCondensed";
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 24px;
}
.how-we-work .section-footer .content .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 45px;
}
.how-we-work .section-footer .content .act {
  display: flex;
  gap: 24px;
}
.how-we-work .section-footer .content .act a {
  width: 100%;
}

.breadcrumbs {
  margin: 8px 0 32px;
}
.breadcrumbs .item {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  display: inline-block;
  margin-right: 8px;
}

.banner-swiper {
  position: absolute;
  left: 0;
  top: 0;
  padding: 24px;
  background: #231f1e;
  z-index: 1;
  width: 100%;
}
.banner-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.banner-swiper .swiper-slide {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #ffffff;
  width: auto;
  display: flex;
  align-items: center;
}
.banner-swiper .swiper-slide i {
  color: #d9d9d9;
  margin-left: 24px;
  font-size: 12px;
}

.section-translate {
  background: #f8fafc;
  padding: 80px 0;
}

.request-quote {
  padding: 80px 0;
  background: #f8fafc;
}
.request-quote .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  grid-template-areas: "header form" "body form";
}
.request-quote .container .section-header {
  grid-area: header;
}
.request-quote .container .section-body {
  grid-area: body;
}
.request-quote .container .form-card {
  grid-area: form;
}
.request-quote .info-body {
  background: #3b9f6e;
  padding: 48px;
}
.request-quote .info-body .info-item {
  padding: 24px;
  display: flex;
  align-items: start;
  gap: 32px;
  color: #ffffff;
  background: #2c8c5d;
}
.request-quote .info-body .info-item:not(:last-child) {
  margin-bottom: 24px;
}
.request-quote .info-body .info-item .info-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
}
.request-quote .info-body .info-item .info-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.request-quote .info-body .info-item .count {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}
.request-quote .info-footer {
  background-image: url("/static/images/request-quote-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 32px;
  position: relative;
}
.request-quote .info-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.request-quote .info-footer p,
.request-quote .info-footer a {
  position: relative;
  z-index: 2;
}
.request-quote .info-footer p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 24px;
}
.request-quote .form-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid #eeeeee;
}
.request-quote .form-card .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 28px;
  margin-bottom: 24px;
}
.request-quote .form-card .subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  margin-bottom: 56px;
}

.faq {
  padding: 80px 0;
  background: #f8fafc;
}
.faq .container {
  display: grid;
  grid-template-columns: minmax(0, 665px) 1fr;
  column-gap: 40px;
  align-items: center;
  grid-template-areas: "header banner" "body banner";
}
.faq .container .section-header {
  grid-area: header;
}
.faq .container .section-body {
  grid-area: body;
}
.faq .container .banner {
  grid-area: banner;
}
.faq .container .banner img {
  width: 100%;
  max-width: 258px;
  margin: 0 auto;
  display: block;
}

.faq-acordion .accordion-item {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  margin-bottom: 24px;
}
.faq-acordion .accordion-button {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border-radius: 0;
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  padding: 24px;
  color: #000;
}
.faq-acordion .accordion-button::after {
  content: "\e005";
  background: transparent;
  font-family: "font-icons" !important;
  color: #3b9f6e;
  font-size: 16px;
}
.faq-acordion .accordion-body {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #666666;
  padding: 0 24px 24px 24px;
}

.service-big-icon {
  font-size: 350px;
  color: #f6f6f6;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 170px);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-categories button {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  padding: 12px 16px;
  border-radius: 2px;
  border: 1px solid #eeeeee !important;
  color: #666666 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-categories button.active {
  color: #ffffff !important;
  background: #231f1e;
}
.blog-categories button.active i {
  color: #ffffff;
}
.blog-categories button i {
  color: #666666;
}

.blog-detail .blog-stepper ul {
  padding: 24px;
  background: #f9f9f9;
  border: 1px solid #ededed;
  margin-top: 12px;
}
.blog-detail .blog-stepper ul li {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
}
.blog-detail .blog-stepper ul li:not(:last-child) {
  margin-bottom: 16px;
}
.blog-detail .blog-stepper ul li:before {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #d8d8d8;
  content: "";
  display: block;
}
.blog-detail .blog-stepper ul li.active {
  color: #231f1e;
}
.blog-detail .blog-stepper ul li.active:before {
  background: #231f1e;
}

.page-contact {
  padding-bottom: 80px;
}
.page-contact .container {
  display: flex;
  align-items: stretch;
}
.page-contact .container .form,
.page-contact .container .content {
  flex: 0 0 50%;
}
.page-contact .container .form {
  padding: 32px;
  background: #ffffff;
  border-radius: 2px;
}
.page-contact .container .content {
  background: url("../images/contact-banner.png") no-repeat center;
  background-size: cover;
  padding: 64px 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.page-contact .container .content:before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.page-contact .container .content .item {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: calc(50% - 12px);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #313131;
  backdrop-filter: blur(8px);
}
.page-contact .container .content .item .title {
  color: #a8a8a8;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-contact .container .content .item .title i {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid #313131;
}
.page-contact .container .content .item .title-2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
.page-contact .container .content .item a {
  overflow-wrap: break-word;
}
.page-contact .container .content .item hr {
  border-color: #5d5d5d;
}

.legal-items {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 3rem;
  padding: 12px;
  border: 1px solid #f3f3f3;
  max-width: fit-content;
  margin-bottom: 24px;
}
.legal-items button {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  background: transparent;
  border: none;
  border-radius: 3rem;
  padding: 10px 16px;
}
.legal-items button.active {
  background: #3b9f6e;
  color: #ffffff;
}

.legal-page {
  padding: 80px 0;
  background-color: #ffffff;
}
.legal-page .legal-item {
  padding: 48px 80px;
  background: #f8fafc;
  border: 1px solid #e5e5e5;
}
.legal-page .legal-item .title {
  font-family: "CabinCondensed";
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 3px solid #3b9f6e;
  max-width: fit-content;
}
.legal-page .legal-item .item {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #666666;
  margin-bottom: 16px;
}
.legal-page .legal-item .item i {
  font-size: 16px;
  color: #3b9f6e;
}
.legal-page .legal-item .sm-title {
  font-family: "CabinCondensed";
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #231f1e;
  margin-bottom: 24px;
}

#nav-legal-tab {
  margin-bottom: 48px;
  border: none;
  gap: 48px;
  flex-wrap: nowrap;
  overflow: auto hidden;
}
#nav-legal-tab button {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  padding: 0 0 10px;
  white-space: nowrap;
}
#nav-legal-tab button.active {
  color: #3b9f6e;
  border-bottom: 2px solid #3b9f6e;
}

.upload-container {
  position: relative;
  padding: 32px;
  background-color: #f8fafc;
  border: 2px dashed #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.upload-container.dragover {
  opacity: 0.6;
}
.upload-container i {
  font-size: 32px;
  color: #3b9f6e;
  margin-bottom: 24px;
}
.upload-container input {
  position: absolute;
  opacity: 0;
}
.upload-container p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px;
  color: #666666;
}

.form-alert {
  position: fixed;
  right: 20px;
  top: 20px;
  background: #3b9f6e;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 99;
}

.blog-detail {
  margin-bottom: 24px;
}
.blog-detail .media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.blog-detail .media-text.right .media {
  order: 2;
}

.blog-stepper {
  position: sticky;
  top: 10px;
}

.succes-wrapper {
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.succes-wrapper i {
  font-size: 70px;
  margin-bottom: 24px;
  background: #3b9f6e;
  width: 95px;
  height: 95px;
  border-radius: 95px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.succes-wrapper .sc-title {
  color: #3b9f6e;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.succes-wrapper .sc-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 70px;
  text-align: center;
}
.succes-wrapper .btn {
  max-width: 260px;
  width: 100%;
}

.faq-tabs {
  margin-bottom: 48px;
  border: none;
}
.faq-tabs button {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  padding: 12px 16px;
  border-radius: 2px;
  border: 1px solid #eeeeee !important;
  color: #666666 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-tabs button.active {
  color: #ffffff !important;
  background: #231f1e;
}
.faq-tabs button.active i {
  color: #ffffff;
}
.faq-tabs button i {
  color: #666666;
}

.ask-to-us-cta {
  padding: 64px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 40px;
  background: url("../images/ask-to-us-cta-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.ask-to-us-cta h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}
.ask-to-us-cta .btn {
  width: 100%;
  max-width: 192px;
  justify-content: space-between;
}

.faq-cta {
  padding: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  background: url("../images/faq-cta-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.faq-cta h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}
.faq-cta .btn {
  width: 100%;
  max-width: 192px;
  justify-content: space-between;
}

.globe {
  position: relative;
  overflow: hidden;
}
.globe img {
  width: 100%;
}
.globe .languages {
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  overflow: hidden;
  gap: 24px;
}
.globe .languages-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  width: max-content;
}
.globe span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3b9f6e;
  border: 1px solid #3b9f6e;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 3rem;
  box-shadow: 8.64px 8.64px 21.61px 0px rgba(59, 159, 110, 0.2);
  transition: all 0.3s;
  white-space: nowrap;
  background: #fff;
}
.globe::before, .globe::after {
  width: 60px;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  z-index: 2;
}
.globe::before {
  left: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.globe::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

@keyframes scrollInfinite {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(calc(var(--distance) * -1));
  }
}
.highlights {
  padding: 32px 0;
  background: #3b9f6e;
}
.highlights .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.highlights .item {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.highlights .item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.highlights .item i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  background: #2c8c5d;
}

.service-item-slider-1 .swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-item-slider-1 .swiper-header .section-title {
  max-width: 380px;
}
.service-item-slider-1 .swiper-header .slider-nav {
  gap: 16px;
  display: flex;
  margin-bottom: 32px;
}
.service-item-slider-1 .swiper-header .slider-nav .slider-prev,
.service-item-slider-1 .swiper-header .slider-nav .slider-next {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid #231f1e;
  transition: all 0.3s ease-in-out;
}
.service-item-slider-1 .swiper-header .slider-nav .slider-prev:disabled,
.service-item-slider-1 .swiper-header .slider-nav .slider-next:disabled {
  border-color: #9f9f9f;
}
.service-item-slider-1 .swiper-wrapper {
  align-items: stretch;
}
.service-item-slider-1 .swiper-wrapper .swiper-slide {
  height: auto;
}

.document-authentication {
  padding: 80px 0;
}
.document-authentication .item-grid {
  display: grid;
  column-gap: 70px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "header banner" "body banner";
}
.document-authentication .item-grid .head {
  grid-area: header;
}
.document-authentication .item-grid .banner {
  grid-area: banner;
}
.document-authentication .item-grid .body {
  grid-area: body;
}

.manuel-qr {
  padding: 32px 44px;
  border: 1px solid #d8d8d8;
  background: #f8fafc;
  border-radius: 2px;
}
.manuel-qr .web-content,
.manuel-qr .mobile-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.manuel-qr .mobile-content {
  display: none;
}
.manuel-qr .mobile-content i {
  width: 120px;
  height: 120px;
  border: 1px solid #ededed;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #3b9f6e;
  margin-bottom: 32px;
}
.manuel-qr .mobile-content .description {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 32px;
}
.manuel-qr .mobile-content .btn {
  width: 100%;
}
.manuel-qr .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  text-align: center;
}
.manuel-qr .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #666;
}
.manuel-qr img {
  width: 100%;
  max-width: 50%;
  margin-bottom: 32px;
  background-color: #fff;
  padding: 30px;
}

.direct-form,
.manuel-qr {
  display: none;
}
.direct-form.active,
.manuel-qr.active {
  display: flex;
}

.steps-wrapper {
  position: relative;
}

.mobile-steps-pos {
  position: absolute;
  right: 15px;
  top: -60px;
}
.mobile-steps-pos .first-step,
.mobile-steps-pos .step {
  display: none;
}
.mobile-steps-pos .first-step.active,
.mobile-steps-pos .step.active {
  display: block;
}

.mobile-steps .step {
  height: 100vh;
  max-height: calc(100vh - 160px);
  display: none;
  flex-direction: column;
}
.mobile-steps .step.active {
  display: flex;
}
.mobile-steps .step .body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-steps .step .footer {
  flex-shrink: 0;
  padding: 24px 16px;
  box-shadow: 0px -8px 20px 0px rgba(102, 102, 102, 0.1);
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.mobile-steps .step:first-child {
  padding-top: 42px;
  text-align: center;
}
.mobile-steps .step:first-child .primary-icon {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  font-size: 64px;
  color: #3b9f6e;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.mobile-steps .step:last-child {
  padding-top: 42px;
  text-align: center;
}
.mobile-steps .step:last-child .primary-icon {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  font-size: 100px;
  color: #fff;
  background: #3b9f6e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.mobile-steps .step .step-title {
  font-family: "CabinCondensed";
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.mobile-steps .step .step-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
}
.mobile-steps .step .ssl-info {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 40px;
  column-gap: 16px;
}
.mobile-steps .step .ssl-info i {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background: #3b9f6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.mobile-steps .step.camera-step {
  position: fixed;
  left: 0;
  top: 0;
  height: calc(100vh - 30px);
  overflow: hidden;
  z-index: 99;
  width: 100%;
  flex-direction: column;
  padding: 73px 16px 16px;
}
.mobile-steps .step.camera-step video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
}
.mobile-steps .step.camera-step .close-camera,
.mobile-steps .step.camera-step .continue {
  position: absolute;
  right: 16px;
  top: 24px;
  z-index: 3;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.mobile-steps .step.camera-step .continue {
  left: 16px;
  right: auto;
}
.mobile-steps .step.camera-step .sceen {
  flex: 1;
  width: 100%;
  border: 5px solid #3b9f6e;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  margin-bottom: 10px;
}
.mobile-steps .step.camera-step .description {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #e8e8e8;
  position: relative;
  z-index: 3;
  margin-bottom: 12px;
}
.mobile-steps .step.camera-step #takePhoto {
  width: 64px;
  height: 64px;
  border-radius: 64px;
  border: 5px solid #d9d9d9;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
.mobile-steps .step.camera-step .photos {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  position: relative;
  z-index: 3;
  margin-bottom: 12px;
}
.mobile-steps .step.camera-step .photos .photo-item .item-info,
.mobile-steps .step.camera-step .photos .photo-item button {
  display: none;
}
.mobile-steps .step.camera-step .photos .photo-item img {
  max-width: 100px;
}
.mobile-steps .step .photos.rendered .photo-item {
  background: #f8fafc;
  border: 1px solid #e6e6e6;
  position: relative;
  padding: 16px;
  border-radius: 2px;
}
.mobile-steps .step .photos.rendered .photo-item:not(:last-child) {
  margin-bottom: 16px;
}
.mobile-steps .step .photos.rendered .photo-item .remove {
  position: absolute;
  top: 6px;
  right: 6px;
  border: none;
  outline: none;
  box-shadow: none;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  color: #fff;
  background-color: #c93030;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.mobile-steps .step .photos.rendered .photo-item .remove i {
  font-size: 16px;
}
.mobile-steps .step .photos.rendered .photo-item img {
  width: 100%;
  margin-bottom: 16px;
}
.mobile-steps .step .photos.rendered .photo-item .item-info {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #3b9f6e;
  column-gap: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
}
.mobile-steps .step .photos.rendered .photo-item .item-info i {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #3b9f6e;
  background: #fff;
}

.section-contact-cta .content {
  padding: 32px;
  background-image: url("../images/contact-cta-bg.jpg");
  background-size: cover;
  background-position: center right;
  position: relative;
}
.section-contact-cta .content:before {
  background: linear-gradient(90deg, #231f1e 0%, rgba(35, 31, 30, 0.1) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  z-index: 0;
}
.section-contact-cta .content > * {
  position: relative;
  z-index: 1;
}
.translate-category-groups {
  position: relative;
  width: 100%;
  min-height: 600px;
}
.translate-category-groups .category-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.translate-category-groups .category-path-line {
  fill: none;
  stroke: #d4d4d4;
  stroke-width: 2;
}
.translate-category-groups .item:nth-child(2), .translate-category-groups .item:nth-child(8) {
  width: 64px;
  height: 64px;
  border: 1px solid #eaeaea;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 5.33px 5.33px 0px rgba(0, 0, 0, 0.2509803922);
}
.translate-category-groups .item:nth-child(2) img, .translate-category-groups .item:nth-child(8) img {
  width: 36px;
}
.translate-category-groups .item:not(:nth-child(2)):not(:nth-child(8)) {
  padding: 12px;
  border: 1px solid #3b9f6e;
  border-radius: 3rem;
  color: #3b9f6e;
  max-width: fit-content;
  box-shadow: 8.64px 8.64px 21.61px 0px rgba(59, 159, 110, 0.2);
  background: #fff;
}
.translate-category-groups .item {
  position: absolute;
  z-index: 1;
}
.translate-category-groups .item-1 {
  left: 0;
  top: 0;
}
.translate-category-groups .item-2 {
  left: 15%;
  top: 90px;
}
.translate-category-groups .item-3 {
  left: 30%;
  top: 200px;
}
.translate-category-groups .item-4 {
  left: 0;
  top: 280px;
}
.translate-category-groups .item-5 {
  left: 35%;
  top: 350px;
}
.translate-category-groups .item-6 {
  left: 28%;
  top: 450px;
}
.translate-category-groups .item-7 {
  left: 80%;
  top: 450px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 3rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.btn-filled-white {
  background-color: #ffffff;
  color: #0f1419;
  border: 1px solid #ffffff;
}
.btn-filled-white:hover {
  opacity: 0.7;
  background-color: #ffffff;
  color: #0f1419;
  border: 1px solid #ffffff;
}

.btn-bordered-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-bordered-white:hover {
  opacity: 0.7;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-filled-dark {
  background-color: #0f1419;
  color: #ffffff;
  border: 1px solid #0f1419;
}
.btn-filled-dark:hover {
  opacity: 0.7;
  background-color: #0f1419;
  color: #ffffff;
  border: 1px solid #0f1419;
}

.btn-bordered-dark {
  background-color: transparent;
  color: #0f1419;
  border: 1px solid #0f1419;
}
.btn-bordered-dark:hover {
  opacity: 0.7;
  background-color: transparent;
  color: #0f1419;
  border: 1px solid #0f1419;
}

.btn-filled-green {
  background-color: #3b9f6e;
  color: #ffffff;
  border: 1px solid #3b9f6e;
}
.btn-filled-green:hover {
  opacity: 0.7;
  background-color: #3b9f6e;
  color: #ffffff;
  border: 1px solid #3b9f6e;
}

.btn-bordered-green {
  background-color: transparent;
  color: #3b9f6e;
  border: 1px solid #3b9f6e;
}
.btn-bordered-green:hover {
  opacity: 0.7;
  background-color: transparent;
  color: #3b9f6e;
  border: 1px solid #3b9f6e;
}

.btn-filled-active-green.active {
  background-color: #3b9f6e;
  color: #ffffff;
  border: 1px solid #3b9f6e;
}
.btn-filled-active-green.active:hover {
  opacity: 0.7;
  background-color: #3b9f6e;
  color: #ffffff;
  border: 1px solid #3b9f6e;
}

.btn-bordered-active-green.active {
  background-color: transparent;
  color: #3b9f6e;
  border: 1px solid #3b9f6e;
}
.btn-bordered-active-green.active:hover {
  opacity: 0.7;
  background-color: transparent;
  color: #3b9f6e;
  border: 1px solid #3b9f6e;
}

.btn-filled-natural {
  background-color: #eeeeee;
  color: #ffffff;
  border: 1px solid #eeeeee;
}
.btn-filled-natural:hover {
  opacity: 0.7;
  background-color: #eeeeee;
  color: #ffffff;
  border: 1px solid #eeeeee;
}

.btn-bordered-natural {
  background-color: transparent;
  color: #666666;
  border: 1px solid #eeeeee;
}
.btn-bordered-natural:hover {
  opacity: 0.7;
  background-color: transparent;
  color: #666666;
  border: 1px solid #eeeeee;
}

.form-group.required .form-label::after {
  content: "*";
  margin-left: 4px;
}
.form-group.error .form-control,
.form-group.error .form-select {
  border-color: #ff0000;
}
.form-group .form-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
}
.form-group .form-control,
.form-group .form-select {
  width: 100%;
  padding: 10px 0px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #d8d8d8;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  box-shadow: none;
}
.form-group .error-message {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
  display: block;
  color: #f23a3a;
}

.form-check {
  padding-left: 0px;
}
.form-check .group {
  display: flex;
  align-items: start;
  gap: 16px;
}
.form-check .error-message {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
  display: block;
  color: #f23a3a;
}
.form-check .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 1px;
  float: none;
  margin-left: 0px;
}
.form-check .form-check-input:checked {
  background-color: #3b9f6e;
  border-color: #3b9f6e;
}
.form-check .form-check-input:focus {
  border-color: #3b9f6e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(59, 159, 110, 0.25);
}
.form-check .form-check-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.single input, .ts-wrapper.multi .ts-control,
.ts-wrapper.multi input {
  padding: 0 10px 0 0 !important;
  border: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.ts-wrapper.single .ts-control, .ts-wrapper.multi .ts-control {
  position: relative;
  white-space: nowrap;
}
.ts-wrapper.single .ts-control::after, .ts-wrapper.multi .ts-control::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #3b9f6e;
  content: "\e005";
  font-family: "font-icons" !important;
}
.ts-wrapper.multi .item {
  background: transparent !important;
  padding: 0 !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #231f1e !important;
  margin: 0 !important;
}
.ts-wrapper.multi .item::after {
  content: ",";
}
.ts-wrapper.multi .ts-more {
  padding: 0;
  color: #666 !important;
  cursor: default;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 22px;
}

.form-type-select {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 25px;
}
.form-type-select .form-check {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  border: 1px solid #e6e6e6;
  padding: 14px;
  border-radius: 2px;
  width: 100%;
  margin-bottom: 24px;
}
.form-type-select .form-check:has(input:checked) {
  border-color: #3b9f6e;
}
.form-type-select .form-check:has(input:checked) .tt {
  color: #3b9f6e;
}
.form-type-select .form-check input {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  margin-bottom: 8px;
}
.form-type-select .form-check .tt {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  display: block;
  text-align: center;
}
.form-type-select .form-check .dd {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  display: block;
  text-align: center;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.m-0 {
  margin: 0px;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.p-0 {
  padding: 0px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.gap-0 {
  gap: 0px;
}

.radius-0 {
  border-radius: 0px !important;
}

.ml-1 {
  margin-left: 1px;
}

.mr-1 {
  margin-right: 1px;
}

.mt-1 {
  margin-top: 1px;
}

.mb-1 {
  margin-bottom: 1px;
}

.m-1 {
  margin: 1px;
}

.mx-1 {
  margin-left: 1px;
  margin-right: 1px;
}

.my-1 {
  margin-top: 1px;
  margin-bottom: 1px;
}

.pr-1 {
  padding-right: 1px;
}

.pl-1 {
  padding-left: 1px;
}

.pt-1 {
  padding-top: 1px;
}

.pb-1 {
  padding-bottom: 1px;
}

.p-1 {
  padding: 1px;
}

.px-1 {
  padding-left: 1px;
  padding-right: 1px;
}

.py-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.gap-1 {
  gap: 1px;
}

.radius-1 {
  border-radius: 1px !important;
}

.ml-2 {
  margin-left: 2px;
}

.mr-2 {
  margin-right: 2px;
}

.mt-2 {
  margin-top: 2px;
}

.mb-2 {
  margin-bottom: 2px;
}

.m-2 {
  margin: 2px;
}

.mx-2 {
  margin-left: 2px;
  margin-right: 2px;
}

.my-2 {
  margin-top: 2px;
  margin-bottom: 2px;
}

.pr-2 {
  padding-right: 2px;
}

.pl-2 {
  padding-left: 2px;
}

.pt-2 {
  padding-top: 2px;
}

.pb-2 {
  padding-bottom: 2px;
}

.p-2 {
  padding: 2px;
}

.px-2 {
  padding-left: 2px;
  padding-right: 2px;
}

.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.gap-2 {
  gap: 2px;
}

.radius-2 {
  border-radius: 2px !important;
}

.ml-3 {
  margin-left: 3px;
}

.mr-3 {
  margin-right: 3px;
}

.mt-3 {
  margin-top: 3px;
}

.mb-3 {
  margin-bottom: 3px;
}

.m-3 {
  margin: 3px;
}

.mx-3 {
  margin-left: 3px;
  margin-right: 3px;
}

.my-3 {
  margin-top: 3px;
  margin-bottom: 3px;
}

.pr-3 {
  padding-right: 3px;
}

.pl-3 {
  padding-left: 3px;
}

.pt-3 {
  padding-top: 3px;
}

.pb-3 {
  padding-bottom: 3px;
}

.p-3 {
  padding: 3px;
}

.px-3 {
  padding-left: 3px;
  padding-right: 3px;
}

.py-3 {
  padding-top: 3px;
  padding-bottom: 3px;
}

.gap-3 {
  gap: 3px;
}

.radius-3 {
  border-radius: 3px !important;
}

.ml-4 {
  margin-left: 4px;
}

.mr-4 {
  margin-right: 4px;
}

.mt-4 {
  margin-top: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.m-4 {
  margin: 4px;
}

.mx-4 {
  margin-left: 4px;
  margin-right: 4px;
}

.my-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.pr-4 {
  padding-right: 4px;
}

.pl-4 {
  padding-left: 4px;
}

.pt-4 {
  padding-top: 4px;
}

.pb-4 {
  padding-bottom: 4px;
}

.p-4 {
  padding: 4px;
}

.px-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.gap-4 {
  gap: 4px;
}

.radius-4 {
  border-radius: 4px !important;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.m-5 {
  margin: 5px;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.p-5 {
  padding: 5px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.gap-5 {
  gap: 5px;
}

.radius-5 {
  border-radius: 5px !important;
}

.ml-6 {
  margin-left: 6px;
}

.mr-6 {
  margin-right: 6px;
}

.mt-6 {
  margin-top: 6px;
}

.mb-6 {
  margin-bottom: 6px;
}

.m-6 {
  margin: 6px;
}

.mx-6 {
  margin-left: 6px;
  margin-right: 6px;
}

.my-6 {
  margin-top: 6px;
  margin-bottom: 6px;
}

.pr-6 {
  padding-right: 6px;
}

.pl-6 {
  padding-left: 6px;
}

.pt-6 {
  padding-top: 6px;
}

.pb-6 {
  padding-bottom: 6px;
}

.p-6 {
  padding: 6px;
}

.px-6 {
  padding-left: 6px;
  padding-right: 6px;
}

.py-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.gap-6 {
  gap: 6px;
}

.radius-6 {
  border-radius: 6px !important;
}

.ml-7 {
  margin-left: 7px;
}

.mr-7 {
  margin-right: 7px;
}

.mt-7 {
  margin-top: 7px;
}

.mb-7 {
  margin-bottom: 7px;
}

.m-7 {
  margin: 7px;
}

.mx-7 {
  margin-left: 7px;
  margin-right: 7px;
}

.my-7 {
  margin-top: 7px;
  margin-bottom: 7px;
}

.pr-7 {
  padding-right: 7px;
}

.pl-7 {
  padding-left: 7px;
}

.pt-7 {
  padding-top: 7px;
}

.pb-7 {
  padding-bottom: 7px;
}

.p-7 {
  padding: 7px;
}

.px-7 {
  padding-left: 7px;
  padding-right: 7px;
}

.py-7 {
  padding-top: 7px;
  padding-bottom: 7px;
}

.gap-7 {
  gap: 7px;
}

.radius-7 {
  border-radius: 7px !important;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.m-8 {
  margin: 8px;
}

.mx-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.p-8 {
  padding: 8px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.gap-8 {
  gap: 8px;
}

.radius-8 {
  border-radius: 8px !important;
}

.ml-9 {
  margin-left: 9px;
}

.mr-9 {
  margin-right: 9px;
}

.mt-9 {
  margin-top: 9px;
}

.mb-9 {
  margin-bottom: 9px;
}

.m-9 {
  margin: 9px;
}

.mx-9 {
  margin-left: 9px;
  margin-right: 9px;
}

.my-9 {
  margin-top: 9px;
  margin-bottom: 9px;
}

.pr-9 {
  padding-right: 9px;
}

.pl-9 {
  padding-left: 9px;
}

.pt-9 {
  padding-top: 9px;
}

.pb-9 {
  padding-bottom: 9px;
}

.p-9 {
  padding: 9px;
}

.px-9 {
  padding-left: 9px;
  padding-right: 9px;
}

.py-9 {
  padding-top: 9px;
  padding-bottom: 9px;
}

.gap-9 {
  gap: 9px;
}

.radius-9 {
  border-radius: 9px !important;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.m-10 {
  margin: 10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.p-10 {
  padding: 10px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.gap-10 {
  gap: 10px;
}

.radius-10 {
  border-radius: 10px !important;
}

.ml-11 {
  margin-left: 11px;
}

.mr-11 {
  margin-right: 11px;
}

.mt-11 {
  margin-top: 11px;
}

.mb-11 {
  margin-bottom: 11px;
}

.m-11 {
  margin: 11px;
}

.mx-11 {
  margin-left: 11px;
  margin-right: 11px;
}

.my-11 {
  margin-top: 11px;
  margin-bottom: 11px;
}

.pr-11 {
  padding-right: 11px;
}

.pl-11 {
  padding-left: 11px;
}

.pt-11 {
  padding-top: 11px;
}

.pb-11 {
  padding-bottom: 11px;
}

.p-11 {
  padding: 11px;
}

.px-11 {
  padding-left: 11px;
  padding-right: 11px;
}

.py-11 {
  padding-top: 11px;
  padding-bottom: 11px;
}

.gap-11 {
  gap: 11px;
}

.radius-11 {
  border-radius: 11px !important;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.m-12 {
  margin: 12px;
}

.mx-12 {
  margin-left: 12px;
  margin-right: 12px;
}

.my-12 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.p-12 {
  padding: 12px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.gap-12 {
  gap: 12px;
}

.radius-12 {
  border-radius: 12px !important;
}

.ml-13 {
  margin-left: 13px;
}

.mr-13 {
  margin-right: 13px;
}

.mt-13 {
  margin-top: 13px;
}

.mb-13 {
  margin-bottom: 13px;
}

.m-13 {
  margin: 13px;
}

.mx-13 {
  margin-left: 13px;
  margin-right: 13px;
}

.my-13 {
  margin-top: 13px;
  margin-bottom: 13px;
}

.pr-13 {
  padding-right: 13px;
}

.pl-13 {
  padding-left: 13px;
}

.pt-13 {
  padding-top: 13px;
}

.pb-13 {
  padding-bottom: 13px;
}

.p-13 {
  padding: 13px;
}

.px-13 {
  padding-left: 13px;
  padding-right: 13px;
}

.py-13 {
  padding-top: 13px;
  padding-bottom: 13px;
}

.gap-13 {
  gap: 13px;
}

.radius-13 {
  border-radius: 13px !important;
}

.ml-14 {
  margin-left: 14px;
}

.mr-14 {
  margin-right: 14px;
}

.mt-14 {
  margin-top: 14px;
}

.mb-14 {
  margin-bottom: 14px;
}

.m-14 {
  margin: 14px;
}

.mx-14 {
  margin-left: 14px;
  margin-right: 14px;
}

.my-14 {
  margin-top: 14px;
  margin-bottom: 14px;
}

.pr-14 {
  padding-right: 14px;
}

.pl-14 {
  padding-left: 14px;
}

.pt-14 {
  padding-top: 14px;
}

.pb-14 {
  padding-bottom: 14px;
}

.p-14 {
  padding: 14px;
}

.px-14 {
  padding-left: 14px;
  padding-right: 14px;
}

.py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.gap-14 {
  gap: 14px;
}

.radius-14 {
  border-radius: 14px !important;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.m-15 {
  margin: 15px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.p-15 {
  padding: 15px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.gap-15 {
  gap: 15px;
}

.radius-15 {
  border-radius: 15px !important;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.m-16 {
  margin: 16px;
}

.mx-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.p-16 {
  padding: 16px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.gap-16 {
  gap: 16px;
}

.radius-16 {
  border-radius: 16px !important;
}

.ml-17 {
  margin-left: 17px;
}

.mr-17 {
  margin-right: 17px;
}

.mt-17 {
  margin-top: 17px;
}

.mb-17 {
  margin-bottom: 17px;
}

.m-17 {
  margin: 17px;
}

.mx-17 {
  margin-left: 17px;
  margin-right: 17px;
}

.my-17 {
  margin-top: 17px;
  margin-bottom: 17px;
}

.pr-17 {
  padding-right: 17px;
}

.pl-17 {
  padding-left: 17px;
}

.pt-17 {
  padding-top: 17px;
}

.pb-17 {
  padding-bottom: 17px;
}

.p-17 {
  padding: 17px;
}

.px-17 {
  padding-left: 17px;
  padding-right: 17px;
}

.py-17 {
  padding-top: 17px;
  padding-bottom: 17px;
}

.gap-17 {
  gap: 17px;
}

.radius-17 {
  border-radius: 17px !important;
}

.ml-18 {
  margin-left: 18px;
}

.mr-18 {
  margin-right: 18px;
}

.mt-18 {
  margin-top: 18px;
}

.mb-18 {
  margin-bottom: 18px;
}

.m-18 {
  margin: 18px;
}

.mx-18 {
  margin-left: 18px;
  margin-right: 18px;
}

.my-18 {
  margin-top: 18px;
  margin-bottom: 18px;
}

.pr-18 {
  padding-right: 18px;
}

.pl-18 {
  padding-left: 18px;
}

.pt-18 {
  padding-top: 18px;
}

.pb-18 {
  padding-bottom: 18px;
}

.p-18 {
  padding: 18px;
}

.px-18 {
  padding-left: 18px;
  padding-right: 18px;
}

.py-18 {
  padding-top: 18px;
  padding-bottom: 18px;
}

.gap-18 {
  gap: 18px;
}

.radius-18 {
  border-radius: 18px !important;
}

.ml-19 {
  margin-left: 19px;
}

.mr-19 {
  margin-right: 19px;
}

.mt-19 {
  margin-top: 19px;
}

.mb-19 {
  margin-bottom: 19px;
}

.m-19 {
  margin: 19px;
}

.mx-19 {
  margin-left: 19px;
  margin-right: 19px;
}

.my-19 {
  margin-top: 19px;
  margin-bottom: 19px;
}

.pr-19 {
  padding-right: 19px;
}

.pl-19 {
  padding-left: 19px;
}

.pt-19 {
  padding-top: 19px;
}

.pb-19 {
  padding-bottom: 19px;
}

.p-19 {
  padding: 19px;
}

.px-19 {
  padding-left: 19px;
  padding-right: 19px;
}

.py-19 {
  padding-top: 19px;
  padding-bottom: 19px;
}

.gap-19 {
  gap: 19px;
}

.radius-19 {
  border-radius: 19px !important;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.m-20 {
  margin: 20px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.gap-20 {
  gap: 20px;
}

.radius-20 {
  border-radius: 20px !important;
}

.ml-21 {
  margin-left: 21px;
}

.mr-21 {
  margin-right: 21px;
}

.mt-21 {
  margin-top: 21px;
}

.mb-21 {
  margin-bottom: 21px;
}

.m-21 {
  margin: 21px;
}

.mx-21 {
  margin-left: 21px;
  margin-right: 21px;
}

.my-21 {
  margin-top: 21px;
  margin-bottom: 21px;
}

.pr-21 {
  padding-right: 21px;
}

.pl-21 {
  padding-left: 21px;
}

.pt-21 {
  padding-top: 21px;
}

.pb-21 {
  padding-bottom: 21px;
}

.p-21 {
  padding: 21px;
}

.px-21 {
  padding-left: 21px;
  padding-right: 21px;
}

.py-21 {
  padding-top: 21px;
  padding-bottom: 21px;
}

.gap-21 {
  gap: 21px;
}

.radius-21 {
  border-radius: 21px !important;
}

.ml-22 {
  margin-left: 22px;
}

.mr-22 {
  margin-right: 22px;
}

.mt-22 {
  margin-top: 22px;
}

.mb-22 {
  margin-bottom: 22px;
}

.m-22 {
  margin: 22px;
}

.mx-22 {
  margin-left: 22px;
  margin-right: 22px;
}

.my-22 {
  margin-top: 22px;
  margin-bottom: 22px;
}

.pr-22 {
  padding-right: 22px;
}

.pl-22 {
  padding-left: 22px;
}

.pt-22 {
  padding-top: 22px;
}

.pb-22 {
  padding-bottom: 22px;
}

.p-22 {
  padding: 22px;
}

.px-22 {
  padding-left: 22px;
  padding-right: 22px;
}

.py-22 {
  padding-top: 22px;
  padding-bottom: 22px;
}

.gap-22 {
  gap: 22px;
}

.radius-22 {
  border-radius: 22px !important;
}

.ml-23 {
  margin-left: 23px;
}

.mr-23 {
  margin-right: 23px;
}

.mt-23 {
  margin-top: 23px;
}

.mb-23 {
  margin-bottom: 23px;
}

.m-23 {
  margin: 23px;
}

.mx-23 {
  margin-left: 23px;
  margin-right: 23px;
}

.my-23 {
  margin-top: 23px;
  margin-bottom: 23px;
}

.pr-23 {
  padding-right: 23px;
}

.pl-23 {
  padding-left: 23px;
}

.pt-23 {
  padding-top: 23px;
}

.pb-23 {
  padding-bottom: 23px;
}

.p-23 {
  padding: 23px;
}

.px-23 {
  padding-left: 23px;
  padding-right: 23px;
}

.py-23 {
  padding-top: 23px;
  padding-bottom: 23px;
}

.gap-23 {
  gap: 23px;
}

.radius-23 {
  border-radius: 23px !important;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.m-24 {
  margin: 24px;
}

.mx-24 {
  margin-left: 24px;
  margin-right: 24px;
}

.my-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.p-24 {
  padding: 24px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.gap-24 {
  gap: 24px;
}

.radius-24 {
  border-radius: 24px !important;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.m-25 {
  margin: 25px;
}

.mx-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.p-25 {
  padding: 25px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.gap-25 {
  gap: 25px;
}

.radius-25 {
  border-radius: 25px !important;
}

.ml-26 {
  margin-left: 26px;
}

.mr-26 {
  margin-right: 26px;
}

.mt-26 {
  margin-top: 26px;
}

.mb-26 {
  margin-bottom: 26px;
}

.m-26 {
  margin: 26px;
}

.mx-26 {
  margin-left: 26px;
  margin-right: 26px;
}

.my-26 {
  margin-top: 26px;
  margin-bottom: 26px;
}

.pr-26 {
  padding-right: 26px;
}

.pl-26 {
  padding-left: 26px;
}

.pt-26 {
  padding-top: 26px;
}

.pb-26 {
  padding-bottom: 26px;
}

.p-26 {
  padding: 26px;
}

.px-26 {
  padding-left: 26px;
  padding-right: 26px;
}

.py-26 {
  padding-top: 26px;
  padding-bottom: 26px;
}

.gap-26 {
  gap: 26px;
}

.radius-26 {
  border-radius: 26px !important;
}

.ml-27 {
  margin-left: 27px;
}

.mr-27 {
  margin-right: 27px;
}

.mt-27 {
  margin-top: 27px;
}

.mb-27 {
  margin-bottom: 27px;
}

.m-27 {
  margin: 27px;
}

.mx-27 {
  margin-left: 27px;
  margin-right: 27px;
}

.my-27 {
  margin-top: 27px;
  margin-bottom: 27px;
}

.pr-27 {
  padding-right: 27px;
}

.pl-27 {
  padding-left: 27px;
}

.pt-27 {
  padding-top: 27px;
}

.pb-27 {
  padding-bottom: 27px;
}

.p-27 {
  padding: 27px;
}

.px-27 {
  padding-left: 27px;
  padding-right: 27px;
}

.py-27 {
  padding-top: 27px;
  padding-bottom: 27px;
}

.gap-27 {
  gap: 27px;
}

.radius-27 {
  border-radius: 27px !important;
}

.ml-28 {
  margin-left: 28px;
}

.mr-28 {
  margin-right: 28px;
}

.mt-28 {
  margin-top: 28px;
}

.mb-28 {
  margin-bottom: 28px;
}

.m-28 {
  margin: 28px;
}

.mx-28 {
  margin-left: 28px;
  margin-right: 28px;
}

.my-28 {
  margin-top: 28px;
  margin-bottom: 28px;
}

.pr-28 {
  padding-right: 28px;
}

.pl-28 {
  padding-left: 28px;
}

.pt-28 {
  padding-top: 28px;
}

.pb-28 {
  padding-bottom: 28px;
}

.p-28 {
  padding: 28px;
}

.px-28 {
  padding-left: 28px;
  padding-right: 28px;
}

.py-28 {
  padding-top: 28px;
  padding-bottom: 28px;
}

.gap-28 {
  gap: 28px;
}

.radius-28 {
  border-radius: 28px !important;
}

.ml-29 {
  margin-left: 29px;
}

.mr-29 {
  margin-right: 29px;
}

.mt-29 {
  margin-top: 29px;
}

.mb-29 {
  margin-bottom: 29px;
}

.m-29 {
  margin: 29px;
}

.mx-29 {
  margin-left: 29px;
  margin-right: 29px;
}

.my-29 {
  margin-top: 29px;
  margin-bottom: 29px;
}

.pr-29 {
  padding-right: 29px;
}

.pl-29 {
  padding-left: 29px;
}

.pt-29 {
  padding-top: 29px;
}

.pb-29 {
  padding-bottom: 29px;
}

.p-29 {
  padding: 29px;
}

.px-29 {
  padding-left: 29px;
  padding-right: 29px;
}

.py-29 {
  padding-top: 29px;
  padding-bottom: 29px;
}

.gap-29 {
  gap: 29px;
}

.radius-29 {
  border-radius: 29px !important;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.m-30 {
  margin: 30px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.p-30 {
  padding: 30px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.gap-30 {
  gap: 30px;
}

.radius-30 {
  border-radius: 30px !important;
}

.ml-31 {
  margin-left: 31px;
}

.mr-31 {
  margin-right: 31px;
}

.mt-31 {
  margin-top: 31px;
}

.mb-31 {
  margin-bottom: 31px;
}

.m-31 {
  margin: 31px;
}

.mx-31 {
  margin-left: 31px;
  margin-right: 31px;
}

.my-31 {
  margin-top: 31px;
  margin-bottom: 31px;
}

.pr-31 {
  padding-right: 31px;
}

.pl-31 {
  padding-left: 31px;
}

.pt-31 {
  padding-top: 31px;
}

.pb-31 {
  padding-bottom: 31px;
}

.p-31 {
  padding: 31px;
}

.px-31 {
  padding-left: 31px;
  padding-right: 31px;
}

.py-31 {
  padding-top: 31px;
  padding-bottom: 31px;
}

.gap-31 {
  gap: 31px;
}

.radius-31 {
  border-radius: 31px !important;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.m-32 {
  margin: 32px;
}

.mx-32 {
  margin-left: 32px;
  margin-right: 32px;
}

.my-32 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.p-32 {
  padding: 32px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.gap-32 {
  gap: 32px;
}

.radius-32 {
  border-radius: 32px !important;
}

.ml-33 {
  margin-left: 33px;
}

.mr-33 {
  margin-right: 33px;
}

.mt-33 {
  margin-top: 33px;
}

.mb-33 {
  margin-bottom: 33px;
}

.m-33 {
  margin: 33px;
}

.mx-33 {
  margin-left: 33px;
  margin-right: 33px;
}

.my-33 {
  margin-top: 33px;
  margin-bottom: 33px;
}

.pr-33 {
  padding-right: 33px;
}

.pl-33 {
  padding-left: 33px;
}

.pt-33 {
  padding-top: 33px;
}

.pb-33 {
  padding-bottom: 33px;
}

.p-33 {
  padding: 33px;
}

.px-33 {
  padding-left: 33px;
  padding-right: 33px;
}

.py-33 {
  padding-top: 33px;
  padding-bottom: 33px;
}

.gap-33 {
  gap: 33px;
}

.radius-33 {
  border-radius: 33px !important;
}

.ml-34 {
  margin-left: 34px;
}

.mr-34 {
  margin-right: 34px;
}

.mt-34 {
  margin-top: 34px;
}

.mb-34 {
  margin-bottom: 34px;
}

.m-34 {
  margin: 34px;
}

.mx-34 {
  margin-left: 34px;
  margin-right: 34px;
}

.my-34 {
  margin-top: 34px;
  margin-bottom: 34px;
}

.pr-34 {
  padding-right: 34px;
}

.pl-34 {
  padding-left: 34px;
}

.pt-34 {
  padding-top: 34px;
}

.pb-34 {
  padding-bottom: 34px;
}

.p-34 {
  padding: 34px;
}

.px-34 {
  padding-left: 34px;
  padding-right: 34px;
}

.py-34 {
  padding-top: 34px;
  padding-bottom: 34px;
}

.gap-34 {
  gap: 34px;
}

.radius-34 {
  border-radius: 34px !important;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.m-35 {
  margin: 35px;
}

.mx-35 {
  margin-left: 35px;
  margin-right: 35px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.p-35 {
  padding: 35px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.gap-35 {
  gap: 35px;
}

.radius-35 {
  border-radius: 35px !important;
}

.ml-36 {
  margin-left: 36px;
}

.mr-36 {
  margin-right: 36px;
}

.mt-36 {
  margin-top: 36px;
}

.mb-36 {
  margin-bottom: 36px;
}

.m-36 {
  margin: 36px;
}

.mx-36 {
  margin-left: 36px;
  margin-right: 36px;
}

.my-36 {
  margin-top: 36px;
  margin-bottom: 36px;
}

.pr-36 {
  padding-right: 36px;
}

.pl-36 {
  padding-left: 36px;
}

.pt-36 {
  padding-top: 36px;
}

.pb-36 {
  padding-bottom: 36px;
}

.p-36 {
  padding: 36px;
}

.px-36 {
  padding-left: 36px;
  padding-right: 36px;
}

.py-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.gap-36 {
  gap: 36px;
}

.radius-36 {
  border-radius: 36px !important;
}

.ml-37 {
  margin-left: 37px;
}

.mr-37 {
  margin-right: 37px;
}

.mt-37 {
  margin-top: 37px;
}

.mb-37 {
  margin-bottom: 37px;
}

.m-37 {
  margin: 37px;
}

.mx-37 {
  margin-left: 37px;
  margin-right: 37px;
}

.my-37 {
  margin-top: 37px;
  margin-bottom: 37px;
}

.pr-37 {
  padding-right: 37px;
}

.pl-37 {
  padding-left: 37px;
}

.pt-37 {
  padding-top: 37px;
}

.pb-37 {
  padding-bottom: 37px;
}

.p-37 {
  padding: 37px;
}

.px-37 {
  padding-left: 37px;
  padding-right: 37px;
}

.py-37 {
  padding-top: 37px;
  padding-bottom: 37px;
}

.gap-37 {
  gap: 37px;
}

.radius-37 {
  border-radius: 37px !important;
}

.ml-38 {
  margin-left: 38px;
}

.mr-38 {
  margin-right: 38px;
}

.mt-38 {
  margin-top: 38px;
}

.mb-38 {
  margin-bottom: 38px;
}

.m-38 {
  margin: 38px;
}

.mx-38 {
  margin-left: 38px;
  margin-right: 38px;
}

.my-38 {
  margin-top: 38px;
  margin-bottom: 38px;
}

.pr-38 {
  padding-right: 38px;
}

.pl-38 {
  padding-left: 38px;
}

.pt-38 {
  padding-top: 38px;
}

.pb-38 {
  padding-bottom: 38px;
}

.p-38 {
  padding: 38px;
}

.px-38 {
  padding-left: 38px;
  padding-right: 38px;
}

.py-38 {
  padding-top: 38px;
  padding-bottom: 38px;
}

.gap-38 {
  gap: 38px;
}

.radius-38 {
  border-radius: 38px !important;
}

.ml-39 {
  margin-left: 39px;
}

.mr-39 {
  margin-right: 39px;
}

.mt-39 {
  margin-top: 39px;
}

.mb-39 {
  margin-bottom: 39px;
}

.m-39 {
  margin: 39px;
}

.mx-39 {
  margin-left: 39px;
  margin-right: 39px;
}

.my-39 {
  margin-top: 39px;
  margin-bottom: 39px;
}

.pr-39 {
  padding-right: 39px;
}

.pl-39 {
  padding-left: 39px;
}

.pt-39 {
  padding-top: 39px;
}

.pb-39 {
  padding-bottom: 39px;
}

.p-39 {
  padding: 39px;
}

.px-39 {
  padding-left: 39px;
  padding-right: 39px;
}

.py-39 {
  padding-top: 39px;
  padding-bottom: 39px;
}

.gap-39 {
  gap: 39px;
}

.radius-39 {
  border-radius: 39px !important;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.m-40 {
  margin: 40px;
}

.mx-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.p-40 {
  padding: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.gap-40 {
  gap: 40px;
}

.radius-40 {
  border-radius: 40px !important;
}

.ml-41 {
  margin-left: 41px;
}

.mr-41 {
  margin-right: 41px;
}

.mt-41 {
  margin-top: 41px;
}

.mb-41 {
  margin-bottom: 41px;
}

.m-41 {
  margin: 41px;
}

.mx-41 {
  margin-left: 41px;
  margin-right: 41px;
}

.my-41 {
  margin-top: 41px;
  margin-bottom: 41px;
}

.pr-41 {
  padding-right: 41px;
}

.pl-41 {
  padding-left: 41px;
}

.pt-41 {
  padding-top: 41px;
}

.pb-41 {
  padding-bottom: 41px;
}

.p-41 {
  padding: 41px;
}

.px-41 {
  padding-left: 41px;
  padding-right: 41px;
}

.py-41 {
  padding-top: 41px;
  padding-bottom: 41px;
}

.gap-41 {
  gap: 41px;
}

.radius-41 {
  border-radius: 41px !important;
}

.ml-42 {
  margin-left: 42px;
}

.mr-42 {
  margin-right: 42px;
}

.mt-42 {
  margin-top: 42px;
}

.mb-42 {
  margin-bottom: 42px;
}

.m-42 {
  margin: 42px;
}

.mx-42 {
  margin-left: 42px;
  margin-right: 42px;
}

.my-42 {
  margin-top: 42px;
  margin-bottom: 42px;
}

.pr-42 {
  padding-right: 42px;
}

.pl-42 {
  padding-left: 42px;
}

.pt-42 {
  padding-top: 42px;
}

.pb-42 {
  padding-bottom: 42px;
}

.p-42 {
  padding: 42px;
}

.px-42 {
  padding-left: 42px;
  padding-right: 42px;
}

.py-42 {
  padding-top: 42px;
  padding-bottom: 42px;
}

.gap-42 {
  gap: 42px;
}

.radius-42 {
  border-radius: 42px !important;
}

.ml-43 {
  margin-left: 43px;
}

.mr-43 {
  margin-right: 43px;
}

.mt-43 {
  margin-top: 43px;
}

.mb-43 {
  margin-bottom: 43px;
}

.m-43 {
  margin: 43px;
}

.mx-43 {
  margin-left: 43px;
  margin-right: 43px;
}

.my-43 {
  margin-top: 43px;
  margin-bottom: 43px;
}

.pr-43 {
  padding-right: 43px;
}

.pl-43 {
  padding-left: 43px;
}

.pt-43 {
  padding-top: 43px;
}

.pb-43 {
  padding-bottom: 43px;
}

.p-43 {
  padding: 43px;
}

.px-43 {
  padding-left: 43px;
  padding-right: 43px;
}

.py-43 {
  padding-top: 43px;
  padding-bottom: 43px;
}

.gap-43 {
  gap: 43px;
}

.radius-43 {
  border-radius: 43px !important;
}

.ml-44 {
  margin-left: 44px;
}

.mr-44 {
  margin-right: 44px;
}

.mt-44 {
  margin-top: 44px;
}

.mb-44 {
  margin-bottom: 44px;
}

.m-44 {
  margin: 44px;
}

.mx-44 {
  margin-left: 44px;
  margin-right: 44px;
}

.my-44 {
  margin-top: 44px;
  margin-bottom: 44px;
}

.pr-44 {
  padding-right: 44px;
}

.pl-44 {
  padding-left: 44px;
}

.pt-44 {
  padding-top: 44px;
}

.pb-44 {
  padding-bottom: 44px;
}

.p-44 {
  padding: 44px;
}

.px-44 {
  padding-left: 44px;
  padding-right: 44px;
}

.py-44 {
  padding-top: 44px;
  padding-bottom: 44px;
}

.gap-44 {
  gap: 44px;
}

.radius-44 {
  border-radius: 44px !important;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.m-45 {
  margin: 45px;
}

.mx-45 {
  margin-left: 45px;
  margin-right: 45px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.p-45 {
  padding: 45px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.gap-45 {
  gap: 45px;
}

.radius-45 {
  border-radius: 45px !important;
}

.ml-46 {
  margin-left: 46px;
}

.mr-46 {
  margin-right: 46px;
}

.mt-46 {
  margin-top: 46px;
}

.mb-46 {
  margin-bottom: 46px;
}

.m-46 {
  margin: 46px;
}

.mx-46 {
  margin-left: 46px;
  margin-right: 46px;
}

.my-46 {
  margin-top: 46px;
  margin-bottom: 46px;
}

.pr-46 {
  padding-right: 46px;
}

.pl-46 {
  padding-left: 46px;
}

.pt-46 {
  padding-top: 46px;
}

.pb-46 {
  padding-bottom: 46px;
}

.p-46 {
  padding: 46px;
}

.px-46 {
  padding-left: 46px;
  padding-right: 46px;
}

.py-46 {
  padding-top: 46px;
  padding-bottom: 46px;
}

.gap-46 {
  gap: 46px;
}

.radius-46 {
  border-radius: 46px !important;
}

.ml-47 {
  margin-left: 47px;
}

.mr-47 {
  margin-right: 47px;
}

.mt-47 {
  margin-top: 47px;
}

.mb-47 {
  margin-bottom: 47px;
}

.m-47 {
  margin: 47px;
}

.mx-47 {
  margin-left: 47px;
  margin-right: 47px;
}

.my-47 {
  margin-top: 47px;
  margin-bottom: 47px;
}

.pr-47 {
  padding-right: 47px;
}

.pl-47 {
  padding-left: 47px;
}

.pt-47 {
  padding-top: 47px;
}

.pb-47 {
  padding-bottom: 47px;
}

.p-47 {
  padding: 47px;
}

.px-47 {
  padding-left: 47px;
  padding-right: 47px;
}

.py-47 {
  padding-top: 47px;
  padding-bottom: 47px;
}

.gap-47 {
  gap: 47px;
}

.radius-47 {
  border-radius: 47px !important;
}

.ml-48 {
  margin-left: 48px;
}

.mr-48 {
  margin-right: 48px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-48 {
  margin-bottom: 48px;
}

.m-48 {
  margin: 48px;
}

.mx-48 {
  margin-left: 48px;
  margin-right: 48px;
}

.my-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.pr-48 {
  padding-right: 48px;
}

.pl-48 {
  padding-left: 48px;
}

.pt-48 {
  padding-top: 48px;
}

.pb-48 {
  padding-bottom: 48px;
}

.p-48 {
  padding: 48px;
}

.px-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.gap-48 {
  gap: 48px;
}

.radius-48 {
  border-radius: 48px !important;
}

.ml-49 {
  margin-left: 49px;
}

.mr-49 {
  margin-right: 49px;
}

.mt-49 {
  margin-top: 49px;
}

.mb-49 {
  margin-bottom: 49px;
}

.m-49 {
  margin: 49px;
}

.mx-49 {
  margin-left: 49px;
  margin-right: 49px;
}

.my-49 {
  margin-top: 49px;
  margin-bottom: 49px;
}

.pr-49 {
  padding-right: 49px;
}

.pl-49 {
  padding-left: 49px;
}

.pt-49 {
  padding-top: 49px;
}

.pb-49 {
  padding-bottom: 49px;
}

.p-49 {
  padding: 49px;
}

.px-49 {
  padding-left: 49px;
  padding-right: 49px;
}

.py-49 {
  padding-top: 49px;
  padding-bottom: 49px;
}

.gap-49 {
  gap: 49px;
}

.radius-49 {
  border-radius: 49px !important;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.m-50 {
  margin: 50px;
}

.mx-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.p-50 {
  padding: 50px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.gap-50 {
  gap: 50px;
}

.radius-50 {
  border-radius: 50px !important;
}

.ml-51 {
  margin-left: 51px;
}

.mr-51 {
  margin-right: 51px;
}

.mt-51 {
  margin-top: 51px;
}

.mb-51 {
  margin-bottom: 51px;
}

.m-51 {
  margin: 51px;
}

.mx-51 {
  margin-left: 51px;
  margin-right: 51px;
}

.my-51 {
  margin-top: 51px;
  margin-bottom: 51px;
}

.pr-51 {
  padding-right: 51px;
}

.pl-51 {
  padding-left: 51px;
}

.pt-51 {
  padding-top: 51px;
}

.pb-51 {
  padding-bottom: 51px;
}

.p-51 {
  padding: 51px;
}

.px-51 {
  padding-left: 51px;
  padding-right: 51px;
}

.py-51 {
  padding-top: 51px;
  padding-bottom: 51px;
}

.gap-51 {
  gap: 51px;
}

.radius-51 {
  border-radius: 51px !important;
}

.ml-52 {
  margin-left: 52px;
}

.mr-52 {
  margin-right: 52px;
}

.mt-52 {
  margin-top: 52px;
}

.mb-52 {
  margin-bottom: 52px;
}

.m-52 {
  margin: 52px;
}

.mx-52 {
  margin-left: 52px;
  margin-right: 52px;
}

.my-52 {
  margin-top: 52px;
  margin-bottom: 52px;
}

.pr-52 {
  padding-right: 52px;
}

.pl-52 {
  padding-left: 52px;
}

.pt-52 {
  padding-top: 52px;
}

.pb-52 {
  padding-bottom: 52px;
}

.p-52 {
  padding: 52px;
}

.px-52 {
  padding-left: 52px;
  padding-right: 52px;
}

.py-52 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.gap-52 {
  gap: 52px;
}

.radius-52 {
  border-radius: 52px !important;
}

.ml-53 {
  margin-left: 53px;
}

.mr-53 {
  margin-right: 53px;
}

.mt-53 {
  margin-top: 53px;
}

.mb-53 {
  margin-bottom: 53px;
}

.m-53 {
  margin: 53px;
}

.mx-53 {
  margin-left: 53px;
  margin-right: 53px;
}

.my-53 {
  margin-top: 53px;
  margin-bottom: 53px;
}

.pr-53 {
  padding-right: 53px;
}

.pl-53 {
  padding-left: 53px;
}

.pt-53 {
  padding-top: 53px;
}

.pb-53 {
  padding-bottom: 53px;
}

.p-53 {
  padding: 53px;
}

.px-53 {
  padding-left: 53px;
  padding-right: 53px;
}

.py-53 {
  padding-top: 53px;
  padding-bottom: 53px;
}

.gap-53 {
  gap: 53px;
}

.radius-53 {
  border-radius: 53px !important;
}

.ml-54 {
  margin-left: 54px;
}

.mr-54 {
  margin-right: 54px;
}

.mt-54 {
  margin-top: 54px;
}

.mb-54 {
  margin-bottom: 54px;
}

.m-54 {
  margin: 54px;
}

.mx-54 {
  margin-left: 54px;
  margin-right: 54px;
}

.my-54 {
  margin-top: 54px;
  margin-bottom: 54px;
}

.pr-54 {
  padding-right: 54px;
}

.pl-54 {
  padding-left: 54px;
}

.pt-54 {
  padding-top: 54px;
}

.pb-54 {
  padding-bottom: 54px;
}

.p-54 {
  padding: 54px;
}

.px-54 {
  padding-left: 54px;
  padding-right: 54px;
}

.py-54 {
  padding-top: 54px;
  padding-bottom: 54px;
}

.gap-54 {
  gap: 54px;
}

.radius-54 {
  border-radius: 54px !important;
}

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

.mt-55 {
  margin-top: 55px;
}

.mb-55 {
  margin-bottom: 55px;
}

.m-55 {
  margin: 55px;
}

.mx-55 {
  margin-left: 55px;
  margin-right: 55px;
}

.my-55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.pr-55 {
  padding-right: 55px;
}

.pl-55 {
  padding-left: 55px;
}

.pt-55 {
  padding-top: 55px;
}

.pb-55 {
  padding-bottom: 55px;
}

.p-55 {
  padding: 55px;
}

.px-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.py-55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.gap-55 {
  gap: 55px;
}

.radius-55 {
  border-radius: 55px !important;
}

.ml-56 {
  margin-left: 56px;
}

.mr-56 {
  margin-right: 56px;
}

.mt-56 {
  margin-top: 56px;
}

.mb-56 {
  margin-bottom: 56px;
}

.m-56 {
  margin: 56px;
}

.mx-56 {
  margin-left: 56px;
  margin-right: 56px;
}

.my-56 {
  margin-top: 56px;
  margin-bottom: 56px;
}

.pr-56 {
  padding-right: 56px;
}

.pl-56 {
  padding-left: 56px;
}

.pt-56 {
  padding-top: 56px;
}

.pb-56 {
  padding-bottom: 56px;
}

.p-56 {
  padding: 56px;
}

.px-56 {
  padding-left: 56px;
  padding-right: 56px;
}

.py-56 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.gap-56 {
  gap: 56px;
}

.radius-56 {
  border-radius: 56px !important;
}

.ml-57 {
  margin-left: 57px;
}

.mr-57 {
  margin-right: 57px;
}

.mt-57 {
  margin-top: 57px;
}

.mb-57 {
  margin-bottom: 57px;
}

.m-57 {
  margin: 57px;
}

.mx-57 {
  margin-left: 57px;
  margin-right: 57px;
}

.my-57 {
  margin-top: 57px;
  margin-bottom: 57px;
}

.pr-57 {
  padding-right: 57px;
}

.pl-57 {
  padding-left: 57px;
}

.pt-57 {
  padding-top: 57px;
}

.pb-57 {
  padding-bottom: 57px;
}

.p-57 {
  padding: 57px;
}

.px-57 {
  padding-left: 57px;
  padding-right: 57px;
}

.py-57 {
  padding-top: 57px;
  padding-bottom: 57px;
}

.gap-57 {
  gap: 57px;
}

.radius-57 {
  border-radius: 57px !important;
}

.ml-58 {
  margin-left: 58px;
}

.mr-58 {
  margin-right: 58px;
}

.mt-58 {
  margin-top: 58px;
}

.mb-58 {
  margin-bottom: 58px;
}

.m-58 {
  margin: 58px;
}

.mx-58 {
  margin-left: 58px;
  margin-right: 58px;
}

.my-58 {
  margin-top: 58px;
  margin-bottom: 58px;
}

.pr-58 {
  padding-right: 58px;
}

.pl-58 {
  padding-left: 58px;
}

.pt-58 {
  padding-top: 58px;
}

.pb-58 {
  padding-bottom: 58px;
}

.p-58 {
  padding: 58px;
}

.px-58 {
  padding-left: 58px;
  padding-right: 58px;
}

.py-58 {
  padding-top: 58px;
  padding-bottom: 58px;
}

.gap-58 {
  gap: 58px;
}

.radius-58 {
  border-radius: 58px !important;
}

.ml-59 {
  margin-left: 59px;
}

.mr-59 {
  margin-right: 59px;
}

.mt-59 {
  margin-top: 59px;
}

.mb-59 {
  margin-bottom: 59px;
}

.m-59 {
  margin: 59px;
}

.mx-59 {
  margin-left: 59px;
  margin-right: 59px;
}

.my-59 {
  margin-top: 59px;
  margin-bottom: 59px;
}

.pr-59 {
  padding-right: 59px;
}

.pl-59 {
  padding-left: 59px;
}

.pt-59 {
  padding-top: 59px;
}

.pb-59 {
  padding-bottom: 59px;
}

.p-59 {
  padding: 59px;
}

.px-59 {
  padding-left: 59px;
  padding-right: 59px;
}

.py-59 {
  padding-top: 59px;
  padding-bottom: 59px;
}

.gap-59 {
  gap: 59px;
}

.radius-59 {
  border-radius: 59px !important;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.m-60 {
  margin: 60px;
}

.mx-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.p-60 {
  padding: 60px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.gap-60 {
  gap: 60px;
}

.radius-60 {
  border-radius: 60px !important;
}

.ml-61 {
  margin-left: 61px;
}

.mr-61 {
  margin-right: 61px;
}

.mt-61 {
  margin-top: 61px;
}

.mb-61 {
  margin-bottom: 61px;
}

.m-61 {
  margin: 61px;
}

.mx-61 {
  margin-left: 61px;
  margin-right: 61px;
}

.my-61 {
  margin-top: 61px;
  margin-bottom: 61px;
}

.pr-61 {
  padding-right: 61px;
}

.pl-61 {
  padding-left: 61px;
}

.pt-61 {
  padding-top: 61px;
}

.pb-61 {
  padding-bottom: 61px;
}

.p-61 {
  padding: 61px;
}

.px-61 {
  padding-left: 61px;
  padding-right: 61px;
}

.py-61 {
  padding-top: 61px;
  padding-bottom: 61px;
}

.gap-61 {
  gap: 61px;
}

.radius-61 {
  border-radius: 61px !important;
}

.ml-62 {
  margin-left: 62px;
}

.mr-62 {
  margin-right: 62px;
}

.mt-62 {
  margin-top: 62px;
}

.mb-62 {
  margin-bottom: 62px;
}

.m-62 {
  margin: 62px;
}

.mx-62 {
  margin-left: 62px;
  margin-right: 62px;
}

.my-62 {
  margin-top: 62px;
  margin-bottom: 62px;
}

.pr-62 {
  padding-right: 62px;
}

.pl-62 {
  padding-left: 62px;
}

.pt-62 {
  padding-top: 62px;
}

.pb-62 {
  padding-bottom: 62px;
}

.p-62 {
  padding: 62px;
}

.px-62 {
  padding-left: 62px;
  padding-right: 62px;
}

.py-62 {
  padding-top: 62px;
  padding-bottom: 62px;
}

.gap-62 {
  gap: 62px;
}

.radius-62 {
  border-radius: 62px !important;
}

.ml-63 {
  margin-left: 63px;
}

.mr-63 {
  margin-right: 63px;
}

.mt-63 {
  margin-top: 63px;
}

.mb-63 {
  margin-bottom: 63px;
}

.m-63 {
  margin: 63px;
}

.mx-63 {
  margin-left: 63px;
  margin-right: 63px;
}

.my-63 {
  margin-top: 63px;
  margin-bottom: 63px;
}

.pr-63 {
  padding-right: 63px;
}

.pl-63 {
  padding-left: 63px;
}

.pt-63 {
  padding-top: 63px;
}

.pb-63 {
  padding-bottom: 63px;
}

.p-63 {
  padding: 63px;
}

.px-63 {
  padding-left: 63px;
  padding-right: 63px;
}

.py-63 {
  padding-top: 63px;
  padding-bottom: 63px;
}

.gap-63 {
  gap: 63px;
}

.radius-63 {
  border-radius: 63px !important;
}

.ml-64 {
  margin-left: 64px;
}

.mr-64 {
  margin-right: 64px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-64 {
  margin-bottom: 64px;
}

.m-64 {
  margin: 64px;
}

.mx-64 {
  margin-left: 64px;
  margin-right: 64px;
}

.my-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.pr-64 {
  padding-right: 64px;
}

.pl-64 {
  padding-left: 64px;
}

.pt-64 {
  padding-top: 64px;
}

.pb-64 {
  padding-bottom: 64px;
}

.p-64 {
  padding: 64px;
}

.px-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.py-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.gap-64 {
  gap: 64px;
}

.radius-64 {
  border-radius: 64px !important;
}

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

.mt-65 {
  margin-top: 65px;
}

.mb-65 {
  margin-bottom: 65px;
}

.m-65 {
  margin: 65px;
}

.mx-65 {
  margin-left: 65px;
  margin-right: 65px;
}

.my-65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.pr-65 {
  padding-right: 65px;
}

.pl-65 {
  padding-left: 65px;
}

.pt-65 {
  padding-top: 65px;
}

.pb-65 {
  padding-bottom: 65px;
}

.p-65 {
  padding: 65px;
}

.px-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.py-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.gap-65 {
  gap: 65px;
}

.radius-65 {
  border-radius: 65px !important;
}

.ml-66 {
  margin-left: 66px;
}

.mr-66 {
  margin-right: 66px;
}

.mt-66 {
  margin-top: 66px;
}

.mb-66 {
  margin-bottom: 66px;
}

.m-66 {
  margin: 66px;
}

.mx-66 {
  margin-left: 66px;
  margin-right: 66px;
}

.my-66 {
  margin-top: 66px;
  margin-bottom: 66px;
}

.pr-66 {
  padding-right: 66px;
}

.pl-66 {
  padding-left: 66px;
}

.pt-66 {
  padding-top: 66px;
}

.pb-66 {
  padding-bottom: 66px;
}

.p-66 {
  padding: 66px;
}

.px-66 {
  padding-left: 66px;
  padding-right: 66px;
}

.py-66 {
  padding-top: 66px;
  padding-bottom: 66px;
}

.gap-66 {
  gap: 66px;
}

.radius-66 {
  border-radius: 66px !important;
}

.ml-67 {
  margin-left: 67px;
}

.mr-67 {
  margin-right: 67px;
}

.mt-67 {
  margin-top: 67px;
}

.mb-67 {
  margin-bottom: 67px;
}

.m-67 {
  margin: 67px;
}

.mx-67 {
  margin-left: 67px;
  margin-right: 67px;
}

.my-67 {
  margin-top: 67px;
  margin-bottom: 67px;
}

.pr-67 {
  padding-right: 67px;
}

.pl-67 {
  padding-left: 67px;
}

.pt-67 {
  padding-top: 67px;
}

.pb-67 {
  padding-bottom: 67px;
}

.p-67 {
  padding: 67px;
}

.px-67 {
  padding-left: 67px;
  padding-right: 67px;
}

.py-67 {
  padding-top: 67px;
  padding-bottom: 67px;
}

.gap-67 {
  gap: 67px;
}

.radius-67 {
  border-radius: 67px !important;
}

.ml-68 {
  margin-left: 68px;
}

.mr-68 {
  margin-right: 68px;
}

.mt-68 {
  margin-top: 68px;
}

.mb-68 {
  margin-bottom: 68px;
}

.m-68 {
  margin: 68px;
}

.mx-68 {
  margin-left: 68px;
  margin-right: 68px;
}

.my-68 {
  margin-top: 68px;
  margin-bottom: 68px;
}

.pr-68 {
  padding-right: 68px;
}

.pl-68 {
  padding-left: 68px;
}

.pt-68 {
  padding-top: 68px;
}

.pb-68 {
  padding-bottom: 68px;
}

.p-68 {
  padding: 68px;
}

.px-68 {
  padding-left: 68px;
  padding-right: 68px;
}

.py-68 {
  padding-top: 68px;
  padding-bottom: 68px;
}

.gap-68 {
  gap: 68px;
}

.radius-68 {
  border-radius: 68px !important;
}

.ml-69 {
  margin-left: 69px;
}

.mr-69 {
  margin-right: 69px;
}

.mt-69 {
  margin-top: 69px;
}

.mb-69 {
  margin-bottom: 69px;
}

.m-69 {
  margin: 69px;
}

.mx-69 {
  margin-left: 69px;
  margin-right: 69px;
}

.my-69 {
  margin-top: 69px;
  margin-bottom: 69px;
}

.pr-69 {
  padding-right: 69px;
}

.pl-69 {
  padding-left: 69px;
}

.pt-69 {
  padding-top: 69px;
}

.pb-69 {
  padding-bottom: 69px;
}

.p-69 {
  padding: 69px;
}

.px-69 {
  padding-left: 69px;
  padding-right: 69px;
}

.py-69 {
  padding-top: 69px;
  padding-bottom: 69px;
}

.gap-69 {
  gap: 69px;
}

.radius-69 {
  border-radius: 69px !important;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.m-70 {
  margin: 70px;
}

.mx-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.my-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.p-70 {
  padding: 70px;
}

.px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.gap-70 {
  gap: 70px;
}

.radius-70 {
  border-radius: 70px !important;
}

.ml-71 {
  margin-left: 71px;
}

.mr-71 {
  margin-right: 71px;
}

.mt-71 {
  margin-top: 71px;
}

.mb-71 {
  margin-bottom: 71px;
}

.m-71 {
  margin: 71px;
}

.mx-71 {
  margin-left: 71px;
  margin-right: 71px;
}

.my-71 {
  margin-top: 71px;
  margin-bottom: 71px;
}

.pr-71 {
  padding-right: 71px;
}

.pl-71 {
  padding-left: 71px;
}

.pt-71 {
  padding-top: 71px;
}

.pb-71 {
  padding-bottom: 71px;
}

.p-71 {
  padding: 71px;
}

.px-71 {
  padding-left: 71px;
  padding-right: 71px;
}

.py-71 {
  padding-top: 71px;
  padding-bottom: 71px;
}

.gap-71 {
  gap: 71px;
}

.radius-71 {
  border-radius: 71px !important;
}

.ml-72 {
  margin-left: 72px;
}

.mr-72 {
  margin-right: 72px;
}

.mt-72 {
  margin-top: 72px;
}

.mb-72 {
  margin-bottom: 72px;
}

.m-72 {
  margin: 72px;
}

.mx-72 {
  margin-left: 72px;
  margin-right: 72px;
}

.my-72 {
  margin-top: 72px;
  margin-bottom: 72px;
}

.pr-72 {
  padding-right: 72px;
}

.pl-72 {
  padding-left: 72px;
}

.pt-72 {
  padding-top: 72px;
}

.pb-72 {
  padding-bottom: 72px;
}

.p-72 {
  padding: 72px;
}

.px-72 {
  padding-left: 72px;
  padding-right: 72px;
}

.py-72 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.gap-72 {
  gap: 72px;
}

.radius-72 {
  border-radius: 72px !important;
}

.ml-73 {
  margin-left: 73px;
}

.mr-73 {
  margin-right: 73px;
}

.mt-73 {
  margin-top: 73px;
}

.mb-73 {
  margin-bottom: 73px;
}

.m-73 {
  margin: 73px;
}

.mx-73 {
  margin-left: 73px;
  margin-right: 73px;
}

.my-73 {
  margin-top: 73px;
  margin-bottom: 73px;
}

.pr-73 {
  padding-right: 73px;
}

.pl-73 {
  padding-left: 73px;
}

.pt-73 {
  padding-top: 73px;
}

.pb-73 {
  padding-bottom: 73px;
}

.p-73 {
  padding: 73px;
}

.px-73 {
  padding-left: 73px;
  padding-right: 73px;
}

.py-73 {
  padding-top: 73px;
  padding-bottom: 73px;
}

.gap-73 {
  gap: 73px;
}

.radius-73 {
  border-radius: 73px !important;
}

.ml-74 {
  margin-left: 74px;
}

.mr-74 {
  margin-right: 74px;
}

.mt-74 {
  margin-top: 74px;
}

.mb-74 {
  margin-bottom: 74px;
}

.m-74 {
  margin: 74px;
}

.mx-74 {
  margin-left: 74px;
  margin-right: 74px;
}

.my-74 {
  margin-top: 74px;
  margin-bottom: 74px;
}

.pr-74 {
  padding-right: 74px;
}

.pl-74 {
  padding-left: 74px;
}

.pt-74 {
  padding-top: 74px;
}

.pb-74 {
  padding-bottom: 74px;
}

.p-74 {
  padding: 74px;
}

.px-74 {
  padding-left: 74px;
  padding-right: 74px;
}

.py-74 {
  padding-top: 74px;
  padding-bottom: 74px;
}

.gap-74 {
  gap: 74px;
}

.radius-74 {
  border-radius: 74px !important;
}

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.mt-75 {
  margin-top: 75px;
}

.mb-75 {
  margin-bottom: 75px;
}

.m-75 {
  margin: 75px;
}

.mx-75 {
  margin-left: 75px;
  margin-right: 75px;
}

.my-75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.p-75 {
  padding: 75px;
}

.px-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.py-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.gap-75 {
  gap: 75px;
}

.radius-75 {
  border-radius: 75px !important;
}

.ml-76 {
  margin-left: 76px;
}

.mr-76 {
  margin-right: 76px;
}

.mt-76 {
  margin-top: 76px;
}

.mb-76 {
  margin-bottom: 76px;
}

.m-76 {
  margin: 76px;
}

.mx-76 {
  margin-left: 76px;
  margin-right: 76px;
}

.my-76 {
  margin-top: 76px;
  margin-bottom: 76px;
}

.pr-76 {
  padding-right: 76px;
}

.pl-76 {
  padding-left: 76px;
}

.pt-76 {
  padding-top: 76px;
}

.pb-76 {
  padding-bottom: 76px;
}

.p-76 {
  padding: 76px;
}

.px-76 {
  padding-left: 76px;
  padding-right: 76px;
}

.py-76 {
  padding-top: 76px;
  padding-bottom: 76px;
}

.gap-76 {
  gap: 76px;
}

.radius-76 {
  border-radius: 76px !important;
}

.ml-77 {
  margin-left: 77px;
}

.mr-77 {
  margin-right: 77px;
}

.mt-77 {
  margin-top: 77px;
}

.mb-77 {
  margin-bottom: 77px;
}

.m-77 {
  margin: 77px;
}

.mx-77 {
  margin-left: 77px;
  margin-right: 77px;
}

.my-77 {
  margin-top: 77px;
  margin-bottom: 77px;
}

.pr-77 {
  padding-right: 77px;
}

.pl-77 {
  padding-left: 77px;
}

.pt-77 {
  padding-top: 77px;
}

.pb-77 {
  padding-bottom: 77px;
}

.p-77 {
  padding: 77px;
}

.px-77 {
  padding-left: 77px;
  padding-right: 77px;
}

.py-77 {
  padding-top: 77px;
  padding-bottom: 77px;
}

.gap-77 {
  gap: 77px;
}

.radius-77 {
  border-radius: 77px !important;
}

.ml-78 {
  margin-left: 78px;
}

.mr-78 {
  margin-right: 78px;
}

.mt-78 {
  margin-top: 78px;
}

.mb-78 {
  margin-bottom: 78px;
}

.m-78 {
  margin: 78px;
}

.mx-78 {
  margin-left: 78px;
  margin-right: 78px;
}

.my-78 {
  margin-top: 78px;
  margin-bottom: 78px;
}

.pr-78 {
  padding-right: 78px;
}

.pl-78 {
  padding-left: 78px;
}

.pt-78 {
  padding-top: 78px;
}

.pb-78 {
  padding-bottom: 78px;
}

.p-78 {
  padding: 78px;
}

.px-78 {
  padding-left: 78px;
  padding-right: 78px;
}

.py-78 {
  padding-top: 78px;
  padding-bottom: 78px;
}

.gap-78 {
  gap: 78px;
}

.radius-78 {
  border-radius: 78px !important;
}

.ml-79 {
  margin-left: 79px;
}

.mr-79 {
  margin-right: 79px;
}

.mt-79 {
  margin-top: 79px;
}

.mb-79 {
  margin-bottom: 79px;
}

.m-79 {
  margin: 79px;
}

.mx-79 {
  margin-left: 79px;
  margin-right: 79px;
}

.my-79 {
  margin-top: 79px;
  margin-bottom: 79px;
}

.pr-79 {
  padding-right: 79px;
}

.pl-79 {
  padding-left: 79px;
}

.pt-79 {
  padding-top: 79px;
}

.pb-79 {
  padding-bottom: 79px;
}

.p-79 {
  padding: 79px;
}

.px-79 {
  padding-left: 79px;
  padding-right: 79px;
}

.py-79 {
  padding-top: 79px;
  padding-bottom: 79px;
}

.gap-79 {
  gap: 79px;
}

.radius-79 {
  border-radius: 79px !important;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.m-80 {
  margin: 80px;
}

.mx-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.p-80 {
  padding: 80px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.gap-80 {
  gap: 80px;
}

.radius-80 {
  border-radius: 80px !important;
}

.ml-81 {
  margin-left: 81px;
}

.mr-81 {
  margin-right: 81px;
}

.mt-81 {
  margin-top: 81px;
}

.mb-81 {
  margin-bottom: 81px;
}

.m-81 {
  margin: 81px;
}

.mx-81 {
  margin-left: 81px;
  margin-right: 81px;
}

.my-81 {
  margin-top: 81px;
  margin-bottom: 81px;
}

.pr-81 {
  padding-right: 81px;
}

.pl-81 {
  padding-left: 81px;
}

.pt-81 {
  padding-top: 81px;
}

.pb-81 {
  padding-bottom: 81px;
}

.p-81 {
  padding: 81px;
}

.px-81 {
  padding-left: 81px;
  padding-right: 81px;
}

.py-81 {
  padding-top: 81px;
  padding-bottom: 81px;
}

.gap-81 {
  gap: 81px;
}

.radius-81 {
  border-radius: 81px !important;
}

.ml-82 {
  margin-left: 82px;
}

.mr-82 {
  margin-right: 82px;
}

.mt-82 {
  margin-top: 82px;
}

.mb-82 {
  margin-bottom: 82px;
}

.m-82 {
  margin: 82px;
}

.mx-82 {
  margin-left: 82px;
  margin-right: 82px;
}

.my-82 {
  margin-top: 82px;
  margin-bottom: 82px;
}

.pr-82 {
  padding-right: 82px;
}

.pl-82 {
  padding-left: 82px;
}

.pt-82 {
  padding-top: 82px;
}

.pb-82 {
  padding-bottom: 82px;
}

.p-82 {
  padding: 82px;
}

.px-82 {
  padding-left: 82px;
  padding-right: 82px;
}

.py-82 {
  padding-top: 82px;
  padding-bottom: 82px;
}

.gap-82 {
  gap: 82px;
}

.radius-82 {
  border-radius: 82px !important;
}

.ml-83 {
  margin-left: 83px;
}

.mr-83 {
  margin-right: 83px;
}

.mt-83 {
  margin-top: 83px;
}

.mb-83 {
  margin-bottom: 83px;
}

.m-83 {
  margin: 83px;
}

.mx-83 {
  margin-left: 83px;
  margin-right: 83px;
}

.my-83 {
  margin-top: 83px;
  margin-bottom: 83px;
}

.pr-83 {
  padding-right: 83px;
}

.pl-83 {
  padding-left: 83px;
}

.pt-83 {
  padding-top: 83px;
}

.pb-83 {
  padding-bottom: 83px;
}

.p-83 {
  padding: 83px;
}

.px-83 {
  padding-left: 83px;
  padding-right: 83px;
}

.py-83 {
  padding-top: 83px;
  padding-bottom: 83px;
}

.gap-83 {
  gap: 83px;
}

.radius-83 {
  border-radius: 83px !important;
}

.ml-84 {
  margin-left: 84px;
}

.mr-84 {
  margin-right: 84px;
}

.mt-84 {
  margin-top: 84px;
}

.mb-84 {
  margin-bottom: 84px;
}

.m-84 {
  margin: 84px;
}

.mx-84 {
  margin-left: 84px;
  margin-right: 84px;
}

.my-84 {
  margin-top: 84px;
  margin-bottom: 84px;
}

.pr-84 {
  padding-right: 84px;
}

.pl-84 {
  padding-left: 84px;
}

.pt-84 {
  padding-top: 84px;
}

.pb-84 {
  padding-bottom: 84px;
}

.p-84 {
  padding: 84px;
}

.px-84 {
  padding-left: 84px;
  padding-right: 84px;
}

.py-84 {
  padding-top: 84px;
  padding-bottom: 84px;
}

.gap-84 {
  gap: 84px;
}

.radius-84 {
  border-radius: 84px !important;
}

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

.mt-85 {
  margin-top: 85px;
}

.mb-85 {
  margin-bottom: 85px;
}

.m-85 {
  margin: 85px;
}

.mx-85 {
  margin-left: 85px;
  margin-right: 85px;
}

.my-85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.pl-85 {
  padding-left: 85px;
}

.pt-85 {
  padding-top: 85px;
}

.pb-85 {
  padding-bottom: 85px;
}

.p-85 {
  padding: 85px;
}

.px-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.py-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.gap-85 {
  gap: 85px;
}

.radius-85 {
  border-radius: 85px !important;
}

.ml-86 {
  margin-left: 86px;
}

.mr-86 {
  margin-right: 86px;
}

.mt-86 {
  margin-top: 86px;
}

.mb-86 {
  margin-bottom: 86px;
}

.m-86 {
  margin: 86px;
}

.mx-86 {
  margin-left: 86px;
  margin-right: 86px;
}

.my-86 {
  margin-top: 86px;
  margin-bottom: 86px;
}

.pr-86 {
  padding-right: 86px;
}

.pl-86 {
  padding-left: 86px;
}

.pt-86 {
  padding-top: 86px;
}

.pb-86 {
  padding-bottom: 86px;
}

.p-86 {
  padding: 86px;
}

.px-86 {
  padding-left: 86px;
  padding-right: 86px;
}

.py-86 {
  padding-top: 86px;
  padding-bottom: 86px;
}

.gap-86 {
  gap: 86px;
}

.radius-86 {
  border-radius: 86px !important;
}

.ml-87 {
  margin-left: 87px;
}

.mr-87 {
  margin-right: 87px;
}

.mt-87 {
  margin-top: 87px;
}

.mb-87 {
  margin-bottom: 87px;
}

.m-87 {
  margin: 87px;
}

.mx-87 {
  margin-left: 87px;
  margin-right: 87px;
}

.my-87 {
  margin-top: 87px;
  margin-bottom: 87px;
}

.pr-87 {
  padding-right: 87px;
}

.pl-87 {
  padding-left: 87px;
}

.pt-87 {
  padding-top: 87px;
}

.pb-87 {
  padding-bottom: 87px;
}

.p-87 {
  padding: 87px;
}

.px-87 {
  padding-left: 87px;
  padding-right: 87px;
}

.py-87 {
  padding-top: 87px;
  padding-bottom: 87px;
}

.gap-87 {
  gap: 87px;
}

.radius-87 {
  border-radius: 87px !important;
}

.ml-88 {
  margin-left: 88px;
}

.mr-88 {
  margin-right: 88px;
}

.mt-88 {
  margin-top: 88px;
}

.mb-88 {
  margin-bottom: 88px;
}

.m-88 {
  margin: 88px;
}

.mx-88 {
  margin-left: 88px;
  margin-right: 88px;
}

.my-88 {
  margin-top: 88px;
  margin-bottom: 88px;
}

.pr-88 {
  padding-right: 88px;
}

.pl-88 {
  padding-left: 88px;
}

.pt-88 {
  padding-top: 88px;
}

.pb-88 {
  padding-bottom: 88px;
}

.p-88 {
  padding: 88px;
}

.px-88 {
  padding-left: 88px;
  padding-right: 88px;
}

.py-88 {
  padding-top: 88px;
  padding-bottom: 88px;
}

.gap-88 {
  gap: 88px;
}

.radius-88 {
  border-radius: 88px !important;
}

.ml-89 {
  margin-left: 89px;
}

.mr-89 {
  margin-right: 89px;
}

.mt-89 {
  margin-top: 89px;
}

.mb-89 {
  margin-bottom: 89px;
}

.m-89 {
  margin: 89px;
}

.mx-89 {
  margin-left: 89px;
  margin-right: 89px;
}

.my-89 {
  margin-top: 89px;
  margin-bottom: 89px;
}

.pr-89 {
  padding-right: 89px;
}

.pl-89 {
  padding-left: 89px;
}

.pt-89 {
  padding-top: 89px;
}

.pb-89 {
  padding-bottom: 89px;
}

.p-89 {
  padding: 89px;
}

.px-89 {
  padding-left: 89px;
  padding-right: 89px;
}

.py-89 {
  padding-top: 89px;
  padding-bottom: 89px;
}

.gap-89 {
  gap: 89px;
}

.radius-89 {
  border-radius: 89px !important;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.m-90 {
  margin: 90px;
}

.mx-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.my-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.p-90 {
  padding: 90px;
}

.px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.gap-90 {
  gap: 90px;
}

.radius-90 {
  border-radius: 90px !important;
}

.ml-91 {
  margin-left: 91px;
}

.mr-91 {
  margin-right: 91px;
}

.mt-91 {
  margin-top: 91px;
}

.mb-91 {
  margin-bottom: 91px;
}

.m-91 {
  margin: 91px;
}

.mx-91 {
  margin-left: 91px;
  margin-right: 91px;
}

.my-91 {
  margin-top: 91px;
  margin-bottom: 91px;
}

.pr-91 {
  padding-right: 91px;
}

.pl-91 {
  padding-left: 91px;
}

.pt-91 {
  padding-top: 91px;
}

.pb-91 {
  padding-bottom: 91px;
}

.p-91 {
  padding: 91px;
}

.px-91 {
  padding-left: 91px;
  padding-right: 91px;
}

.py-91 {
  padding-top: 91px;
  padding-bottom: 91px;
}

.gap-91 {
  gap: 91px;
}

.radius-91 {
  border-radius: 91px !important;
}

.ml-92 {
  margin-left: 92px;
}

.mr-92 {
  margin-right: 92px;
}

.mt-92 {
  margin-top: 92px;
}

.mb-92 {
  margin-bottom: 92px;
}

.m-92 {
  margin: 92px;
}

.mx-92 {
  margin-left: 92px;
  margin-right: 92px;
}

.my-92 {
  margin-top: 92px;
  margin-bottom: 92px;
}

.pr-92 {
  padding-right: 92px;
}

.pl-92 {
  padding-left: 92px;
}

.pt-92 {
  padding-top: 92px;
}

.pb-92 {
  padding-bottom: 92px;
}

.p-92 {
  padding: 92px;
}

.px-92 {
  padding-left: 92px;
  padding-right: 92px;
}

.py-92 {
  padding-top: 92px;
  padding-bottom: 92px;
}

.gap-92 {
  gap: 92px;
}

.radius-92 {
  border-radius: 92px !important;
}

.ml-93 {
  margin-left: 93px;
}

.mr-93 {
  margin-right: 93px;
}

.mt-93 {
  margin-top: 93px;
}

.mb-93 {
  margin-bottom: 93px;
}

.m-93 {
  margin: 93px;
}

.mx-93 {
  margin-left: 93px;
  margin-right: 93px;
}

.my-93 {
  margin-top: 93px;
  margin-bottom: 93px;
}

.pr-93 {
  padding-right: 93px;
}

.pl-93 {
  padding-left: 93px;
}

.pt-93 {
  padding-top: 93px;
}

.pb-93 {
  padding-bottom: 93px;
}

.p-93 {
  padding: 93px;
}

.px-93 {
  padding-left: 93px;
  padding-right: 93px;
}

.py-93 {
  padding-top: 93px;
  padding-bottom: 93px;
}

.gap-93 {
  gap: 93px;
}

.radius-93 {
  border-radius: 93px !important;
}

.ml-94 {
  margin-left: 94px;
}

.mr-94 {
  margin-right: 94px;
}

.mt-94 {
  margin-top: 94px;
}

.mb-94 {
  margin-bottom: 94px;
}

.m-94 {
  margin: 94px;
}

.mx-94 {
  margin-left: 94px;
  margin-right: 94px;
}

.my-94 {
  margin-top: 94px;
  margin-bottom: 94px;
}

.pr-94 {
  padding-right: 94px;
}

.pl-94 {
  padding-left: 94px;
}

.pt-94 {
  padding-top: 94px;
}

.pb-94 {
  padding-bottom: 94px;
}

.p-94 {
  padding: 94px;
}

.px-94 {
  padding-left: 94px;
  padding-right: 94px;
}

.py-94 {
  padding-top: 94px;
  padding-bottom: 94px;
}

.gap-94 {
  gap: 94px;
}

.radius-94 {
  border-radius: 94px !important;
}

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

.mt-95 {
  margin-top: 95px;
}

.mb-95 {
  margin-bottom: 95px;
}

.m-95 {
  margin: 95px;
}

.mx-95 {
  margin-left: 95px;
  margin-right: 95px;
}

.my-95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.pl-95 {
  padding-left: 95px;
}

.pt-95 {
  padding-top: 95px;
}

.pb-95 {
  padding-bottom: 95px;
}

.p-95 {
  padding: 95px;
}

.px-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.py-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.gap-95 {
  gap: 95px;
}

.radius-95 {
  border-radius: 95px !important;
}

.ml-96 {
  margin-left: 96px;
}

.mr-96 {
  margin-right: 96px;
}

.mt-96 {
  margin-top: 96px;
}

.mb-96 {
  margin-bottom: 96px;
}

.m-96 {
  margin: 96px;
}

.mx-96 {
  margin-left: 96px;
  margin-right: 96px;
}

.my-96 {
  margin-top: 96px;
  margin-bottom: 96px;
}

.pr-96 {
  padding-right: 96px;
}

.pl-96 {
  padding-left: 96px;
}

.pt-96 {
  padding-top: 96px;
}

.pb-96 {
  padding-bottom: 96px;
}

.p-96 {
  padding: 96px;
}

.px-96 {
  padding-left: 96px;
  padding-right: 96px;
}

.py-96 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.gap-96 {
  gap: 96px;
}

.radius-96 {
  border-radius: 96px !important;
}

.ml-97 {
  margin-left: 97px;
}

.mr-97 {
  margin-right: 97px;
}

.mt-97 {
  margin-top: 97px;
}

.mb-97 {
  margin-bottom: 97px;
}

.m-97 {
  margin: 97px;
}

.mx-97 {
  margin-left: 97px;
  margin-right: 97px;
}

.my-97 {
  margin-top: 97px;
  margin-bottom: 97px;
}

.pr-97 {
  padding-right: 97px;
}

.pl-97 {
  padding-left: 97px;
}

.pt-97 {
  padding-top: 97px;
}

.pb-97 {
  padding-bottom: 97px;
}

.p-97 {
  padding: 97px;
}

.px-97 {
  padding-left: 97px;
  padding-right: 97px;
}

.py-97 {
  padding-top: 97px;
  padding-bottom: 97px;
}

.gap-97 {
  gap: 97px;
}

.radius-97 {
  border-radius: 97px !important;
}

.ml-98 {
  margin-left: 98px;
}

.mr-98 {
  margin-right: 98px;
}

.mt-98 {
  margin-top: 98px;
}

.mb-98 {
  margin-bottom: 98px;
}

.m-98 {
  margin: 98px;
}

.mx-98 {
  margin-left: 98px;
  margin-right: 98px;
}

.my-98 {
  margin-top: 98px;
  margin-bottom: 98px;
}

.pr-98 {
  padding-right: 98px;
}

.pl-98 {
  padding-left: 98px;
}

.pt-98 {
  padding-top: 98px;
}

.pb-98 {
  padding-bottom: 98px;
}

.p-98 {
  padding: 98px;
}

.px-98 {
  padding-left: 98px;
  padding-right: 98px;
}

.py-98 {
  padding-top: 98px;
  padding-bottom: 98px;
}

.gap-98 {
  gap: 98px;
}

.radius-98 {
  border-radius: 98px !important;
}

.ml-99 {
  margin-left: 99px;
}

.mr-99 {
  margin-right: 99px;
}

.mt-99 {
  margin-top: 99px;
}

.mb-99 {
  margin-bottom: 99px;
}

.m-99 {
  margin: 99px;
}

.mx-99 {
  margin-left: 99px;
  margin-right: 99px;
}

.my-99 {
  margin-top: 99px;
  margin-bottom: 99px;
}

.pr-99 {
  padding-right: 99px;
}

.pl-99 {
  padding-left: 99px;
}

.pt-99 {
  padding-top: 99px;
}

.pb-99 {
  padding-bottom: 99px;
}

.p-99 {
  padding: 99px;
}

.px-99 {
  padding-left: 99px;
  padding-right: 99px;
}

.py-99 {
  padding-top: 99px;
  padding-bottom: 99px;
}

.gap-99 {
  gap: 99px;
}

.radius-99 {
  border-radius: 99px !important;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.m-100 {
  margin: 100px;
}

.mx-100 {
  margin-left: 100px;
  margin-right: 100px;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.p-100 {
  padding: 100px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.gap-100 {
  gap: 100px;
}

.radius-100 {
  border-radius: 100px !important;
}

.card-style-1 {
  background: #ffffff;
  border-radius: 2px;
  padding: 32px;
  position: relative;
  height: 100%;
}
.card-style-1 .head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.card-style-1 .head i {
  border: 1px solid #eeeeee;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b9f6e;
  font-size: 24px;
  flex-shrink: 0;
}
.card-style-1 .head .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #231f1e;
  margin-bottom: 8px;
}
.card-style-1 .head .subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #666666;
  margin-bottom: 0;
}
.card-style-1::after {
  width: 100%;
  height: 10px;
  background: #3b9f6e;
  position: absolute;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  left: 0;
  bottom: 0;
  z-index: 0;
  content: "";
  display: block;
}
.card-style-1 ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 16px;
}
.card-style-1 ul li:not(:last-child) {
  margin-bottom: 16px;
}
.card-style-1 ul li i {
  color: #3b9f6e;
  font-size: 16px;
}

.card-style-2 {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  height: 100%;
}
.card-style-2 i {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: #3b9f6e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.card-style-2 .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #231f1e;
  margin-bottom: 16px;
}
.card-style-2 .subtitle,
.card-style-2 .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 16px;
}
.card-style-2 .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.card-style-2 .tags .tag {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  padding: 6px 8px;
  border-radius: 3rem;
  background: #f8fafc;
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
}
.card-style-2 .tags .tag:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #3b9f6e;
  display: inline-block;
  margin-right: 8px;
}

.card-style-3 {
  padding: 32px;
  background: #f8fafc;
  border: 1px solid #e6e6e6;
  height: 100%;
}
.card-style-3 i {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: #ffffff;
  color: #3b9f6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  border: 1px solid #eeeeee;
  flex-shrink: 0;
}
.card-style-3 .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #231f1e;
  margin-bottom: 16px;
}
.card-style-3 .subtitle,
.card-style-3 .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}
.card-style-3 .list-disc li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 12px;
}
.card-style-3 .list-disc li::before {
  content: "";
  color: #3b9f6e;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #3b9f6e;
  margin-right: 16px;
}

.card-style-4 {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  display: flex;
}
.card-style-4 .count {
  font-family: "CabinCondensed";
  font-weight: 700;
  font-size: 32px;
  line-height: 28px;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: #3b9f6e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 32px;
  flex-shrink: 0;
}
.card-style-4 .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
}
.card-style-4 .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 48px;
}
.card-style-4 .content {
  max-width: 750px;
}
.card-style-4 .content ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}
.card-style-4 .content ul li:not(:last-child) {
  margin-bottom: 24px;
}
.card-style-4 .content ul li i {
  color: #3b9f6e;
  font-size: 16px;
}
.card-style-4 .duration {
  margin-left: auto;
  font-weight: 400;
  font-style: Italic;
  font-size: 14px;
  line-height: 22px;
  color: #3b9f6e;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.card-style-4 .tag {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 3rem;
  border: 1px solid #e6e6e6;
  font-style: normal;
  margin-bottom: 8px;
  max-width: fit-content;
}
.card-style-4 .tag::before {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #3b9f6e;
  content: "";
  display: inline-block;
  margin-right: 12px;
}

.card-style-5 {
  padding: 24px 24px 24px 34px;
  background: #ffffff;
  position: relative;
  height: 100%;
}
.card-style-5::before {
  width: 10px;
  height: 100%;
  left: 0px;
  top: 0;
  position: absolute;
  background: #3b9f6e;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  content: "";
  display: block;
}
.card-style-5 i {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: #f8fafc;
  border: 1px solid #e6e6e6;
  font-size: 24px;
  color: #3b9f6e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.card-style-5 .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
.card-style-5 .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}

.card-style-6 {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.card-style-6::before,
.card-style-6 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.card-style-6 img {
  object-fit: cover;
  z-index: 0;
}
.card-style-6:before {
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  content: "";
  display: block;
}
.card-style-6 .title {
  font-family: "CabinCondensed";
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  margin-bottom: 195px;
}
.card-style-6 .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.card-style-7 {
  padding: 16px;
  gap: 16px;
  display: flex;
  background: #f8fafc;
  border: 1px solid transparent;
}
.card-style-7 i {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #3b9f6e;
  flex-shrink: 0;
}
.card-style-7 .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #3b9f6e;
  margin-bottom: 12px;
}
.card-style-7 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  margin-bottom: 0;
}

.card-style-8 {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #e6e6e6;
  background: #ffffff;
}
.card-style-8 .title {
  font-family: "CabinCondensed";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #3b9f6e;
}
.card-style-8 .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666;
}

.card-style-9 {
  background: #ffffff;
  border-radius: 2px;
  padding: 32px;
  position: relative;
  height: 100%;
  border: 1px solid #e6e6e6;
}
.card-style-9 .head {
  display: flex;
  align-items: start;
  gap: 24px;
  margin-bottom: 32px;
}
.card-style-9 .head i {
  border: 1px solid #eeeeee;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: #3b9f6e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}
.card-style-9 .head .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #231f1e;
  margin-bottom: 8px;
}
.card-style-9 .head .subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #666666;
  margin-bottom: 0;
}
.card-style-9 ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 16px;
}
.card-style-9 ul li:not(:last-child) {
  margin-bottom: 16px;
}
.card-style-9 ul li i {
  color: #3b9f6e;
  font-size: 16px;
  border-radius: 3rem;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.card-style-9 .info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  color: #666666;
}
.card-style-9 .info i {
  color: #3b9f6e;
}

.text-1 {
  font-size: 1px;
}
.text-1-important {
  font-size: 1px !important;
}

.text-2 {
  font-size: 2px;
}
.text-2-important {
  font-size: 2px !important;
}

.text-3 {
  font-size: 3px;
}
.text-3-important {
  font-size: 3px !important;
}

.text-4 {
  font-size: 4px;
}
.text-4-important {
  font-size: 4px !important;
}

.text-5 {
  font-size: 5px;
}
.text-5-important {
  font-size: 5px !important;
}

.text-6 {
  font-size: 6px;
}
.text-6-important {
  font-size: 6px !important;
}

.text-7 {
  font-size: 7px;
}
.text-7-important {
  font-size: 7px !important;
}

.text-8 {
  font-size: 8px;
}
.text-8-important {
  font-size: 8px !important;
}

.text-9 {
  font-size: 9px;
}
.text-9-important {
  font-size: 9px !important;
}

.text-10 {
  font-size: 10px;
}
.text-10-important {
  font-size: 10px !important;
}

.text-11 {
  font-size: 11px;
}
.text-11-important {
  font-size: 11px !important;
}

.text-12 {
  font-size: 12px;
}
.text-12-important {
  font-size: 12px !important;
}

.text-13 {
  font-size: 13px;
}
.text-13-important {
  font-size: 13px !important;
}

.text-14 {
  font-size: 14px;
}
.text-14-important {
  font-size: 14px !important;
}

.text-15 {
  font-size: 15px;
}
.text-15-important {
  font-size: 15px !important;
}

.text-16 {
  font-size: 16px;
}
.text-16-important {
  font-size: 16px !important;
}

.text-17 {
  font-size: 17px;
}
.text-17-important {
  font-size: 17px !important;
}

.text-18 {
  font-size: 18px;
}
.text-18-important {
  font-size: 18px !important;
}

.text-19 {
  font-size: 19px;
}
.text-19-important {
  font-size: 19px !important;
}

.text-20 {
  font-size: 20px;
}
.text-20-important {
  font-size: 20px !important;
}

.text-21 {
  font-size: 21px;
}
.text-21-important {
  font-size: 21px !important;
}

.text-22 {
  font-size: 22px;
}
.text-22-important {
  font-size: 22px !important;
}

.text-23 {
  font-size: 23px;
}
.text-23-important {
  font-size: 23px !important;
}

.text-24 {
  font-size: 24px;
}
.text-24-important {
  font-size: 24px !important;
}

.text-25 {
  font-size: 25px;
}
.text-25-important {
  font-size: 25px !important;
}

.text-26 {
  font-size: 26px;
}
.text-26-important {
  font-size: 26px !important;
}

.text-27 {
  font-size: 27px;
}
.text-27-important {
  font-size: 27px !important;
}

.text-28 {
  font-size: 28px;
}
.text-28-important {
  font-size: 28px !important;
}

.text-29 {
  font-size: 29px;
}
.text-29-important {
  font-size: 29px !important;
}

.text-30 {
  font-size: 30px;
}
.text-30-important {
  font-size: 30px !important;
}

.text-31 {
  font-size: 31px;
}
.text-31-important {
  font-size: 31px !important;
}

.text-32 {
  font-size: 32px;
}
.text-32-important {
  font-size: 32px !important;
}

.text-33 {
  font-size: 33px;
}
.text-33-important {
  font-size: 33px !important;
}

.text-34 {
  font-size: 34px;
}
.text-34-important {
  font-size: 34px !important;
}

.text-35 {
  font-size: 35px;
}
.text-35-important {
  font-size: 35px !important;
}

.text-36 {
  font-size: 36px;
}
.text-36-important {
  font-size: 36px !important;
}

.text-37 {
  font-size: 37px;
}
.text-37-important {
  font-size: 37px !important;
}

.text-38 {
  font-size: 38px;
}
.text-38-important {
  font-size: 38px !important;
}

.text-39 {
  font-size: 39px;
}
.text-39-important {
  font-size: 39px !important;
}

.text-40 {
  font-size: 40px;
}
.text-40-important {
  font-size: 40px !important;
}

.text-41 {
  font-size: 41px;
}
.text-41-important {
  font-size: 41px !important;
}

.text-42 {
  font-size: 42px;
}
.text-42-important {
  font-size: 42px !important;
}

.text-43 {
  font-size: 43px;
}
.text-43-important {
  font-size: 43px !important;
}

.text-44 {
  font-size: 44px;
}
.text-44-important {
  font-size: 44px !important;
}

.text-45 {
  font-size: 45px;
}
.text-45-important {
  font-size: 45px !important;
}

.text-46 {
  font-size: 46px;
}
.text-46-important {
  font-size: 46px !important;
}

.text-47 {
  font-size: 47px;
}
.text-47-important {
  font-size: 47px !important;
}

.text-48 {
  font-size: 48px;
}
.text-48-important {
  font-size: 48px !important;
}

.text-49 {
  font-size: 49px;
}
.text-49-important {
  font-size: 49px !important;
}

.text-50 {
  font-size: 50px;
}
.text-50-important {
  font-size: 50px !important;
}

.text-51 {
  font-size: 51px;
}
.text-51-important {
  font-size: 51px !important;
}

.text-52 {
  font-size: 52px;
}
.text-52-important {
  font-size: 52px !important;
}

.text-53 {
  font-size: 53px;
}
.text-53-important {
  font-size: 53px !important;
}

.text-54 {
  font-size: 54px;
}
.text-54-important {
  font-size: 54px !important;
}

.text-55 {
  font-size: 55px;
}
.text-55-important {
  font-size: 55px !important;
}

.text-56 {
  font-size: 56px;
}
.text-56-important {
  font-size: 56px !important;
}

.text-57 {
  font-size: 57px;
}
.text-57-important {
  font-size: 57px !important;
}

.text-58 {
  font-size: 58px;
}
.text-58-important {
  font-size: 58px !important;
}

.text-59 {
  font-size: 59px;
}
.text-59-important {
  font-size: 59px !important;
}

.text-60 {
  font-size: 60px;
}
.text-60-important {
  font-size: 60px !important;
}

.text-61 {
  font-size: 61px;
}
.text-61-important {
  font-size: 61px !important;
}

.text-62 {
  font-size: 62px;
}
.text-62-important {
  font-size: 62px !important;
}

.text-63 {
  font-size: 63px;
}
.text-63-important {
  font-size: 63px !important;
}

.text-64 {
  font-size: 64px;
}
.text-64-important {
  font-size: 64px !important;
}

.text-65 {
  font-size: 65px;
}
.text-65-important {
  font-size: 65px !important;
}

.text-66 {
  font-size: 66px;
}
.text-66-important {
  font-size: 66px !important;
}

.text-67 {
  font-size: 67px;
}
.text-67-important {
  font-size: 67px !important;
}

.text-68 {
  font-size: 68px;
}
.text-68-important {
  font-size: 68px !important;
}

.text-69 {
  font-size: 69px;
}
.text-69-important {
  font-size: 69px !important;
}

.text-70 {
  font-size: 70px;
}
.text-70-important {
  font-size: 70px !important;
}

.text-71 {
  font-size: 71px;
}
.text-71-important {
  font-size: 71px !important;
}

.text-72 {
  font-size: 72px;
}
.text-72-important {
  font-size: 72px !important;
}

.text-73 {
  font-size: 73px;
}
.text-73-important {
  font-size: 73px !important;
}

.text-74 {
  font-size: 74px;
}
.text-74-important {
  font-size: 74px !important;
}

.text-75 {
  font-size: 75px;
}
.text-75-important {
  font-size: 75px !important;
}

.text-76 {
  font-size: 76px;
}
.text-76-important {
  font-size: 76px !important;
}

.text-77 {
  font-size: 77px;
}
.text-77-important {
  font-size: 77px !important;
}

.text-78 {
  font-size: 78px;
}
.text-78-important {
  font-size: 78px !important;
}

.text-79 {
  font-size: 79px;
}
.text-79-important {
  font-size: 79px !important;
}

.text-80 {
  font-size: 80px;
}
.text-80-important {
  font-size: 80px !important;
}

.text-81 {
  font-size: 81px;
}
.text-81-important {
  font-size: 81px !important;
}

.text-82 {
  font-size: 82px;
}
.text-82-important {
  font-size: 82px !important;
}

.text-83 {
  font-size: 83px;
}
.text-83-important {
  font-size: 83px !important;
}

.text-84 {
  font-size: 84px;
}
.text-84-important {
  font-size: 84px !important;
}

.text-85 {
  font-size: 85px;
}
.text-85-important {
  font-size: 85px !important;
}

.text-86 {
  font-size: 86px;
}
.text-86-important {
  font-size: 86px !important;
}

.text-87 {
  font-size: 87px;
}
.text-87-important {
  font-size: 87px !important;
}

.text-88 {
  font-size: 88px;
}
.text-88-important {
  font-size: 88px !important;
}

.text-89 {
  font-size: 89px;
}
.text-89-important {
  font-size: 89px !important;
}

.text-90 {
  font-size: 90px;
}
.text-90-important {
  font-size: 90px !important;
}

.text-91 {
  font-size: 91px;
}
.text-91-important {
  font-size: 91px !important;
}

.text-92 {
  font-size: 92px;
}
.text-92-important {
  font-size: 92px !important;
}

.text-93 {
  font-size: 93px;
}
.text-93-important {
  font-size: 93px !important;
}

.text-94 {
  font-size: 94px;
}
.text-94-important {
  font-size: 94px !important;
}

.text-95 {
  font-size: 95px;
}
.text-95-important {
  font-size: 95px !important;
}

.text-96 {
  font-size: 96px;
}
.text-96-important {
  font-size: 96px !important;
}

.text-97 {
  font-size: 97px;
}
.text-97-important {
  font-size: 97px !important;
}

.text-98 {
  font-size: 98px;
}
.text-98-important {
  font-size: 98px !important;
}

.text-99 {
  font-size: 99px;
}
.text-99-important {
  font-size: 99px !important;
}

.text-100 {
  font-size: 100px;
}
.text-100-important {
  font-size: 100px !important;
}

.text-CabinCondensed {
  font-family: "CabinCondensed";
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sbold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.text-blue {
  color: #1e5fa8 !important;
}

.bg-blue {
  background: #1e5fa8 !important;
}

.border-color-blue {
  border-color: #1e5fa8 !important;
}

.text-blue-light {
  color: #2b8cb8 !important;
}

.bg-blue-light {
  background: #2b8cb8 !important;
}

.border-color-blue-light {
  border-color: #2b8cb8 !important;
}

.text-green {
  color: #3b9f6e !important;
}

.bg-green {
  background: #3b9f6e !important;
}

.border-color-green {
  border-color: #3b9f6e !important;
}

.text-green-light {
  color: #6fe9a8 !important;
}

.bg-green-light {
  background: #6fe9a8 !important;
}

.border-color-green-light {
  border-color: #6fe9a8 !important;
}

.text-primary-ink {
  color: #0f1419 !important;
}

.bg-primary-ink {
  background: #0f1419 !important;
}

.border-color-primary-ink {
  border-color: #0f1419 !important;
}

.text-secondary-ink {
  color: #2d3748 !important;
}

.bg-secondary-ink {
  background: #2d3748 !important;
}

.border-color-secondary-ink {
  border-color: #2d3748 !important;
}

.text-secondary-paper {
  color: #f8fafc !important;
}

.bg-secondary-paper {
  background: #f8fafc !important;
}

.border-color-secondary-paper {
  border-color: #f8fafc !important;
}

.text-secondary-paper-2 {
  color: #f8f8f8 !important;
}

.bg-secondary-paper-2 {
  background: #f8f8f8 !important;
}

.border-color-secondary-paper-2 {
  border-color: #f8f8f8 !important;
}

.text-primary-paper {
  color: #fafaf7 !important;
}

.bg-primary-paper {
  background: #fafaf7 !important;
}

.border-color-primary-paper {
  border-color: #fafaf7 !important;
}

.text-muted-ink {
  color: #6b7280 !important;
}

.bg-muted-ink {
  background: #6b7280 !important;
}

.border-color-muted-ink {
  border-color: #6b7280 !important;
}

.text-warm-paper {
  color: #f3f1ea !important;
}

.bg-warm-paper {
  background: #f3f1ea !important;
}

.border-color-warm-paper {
  border-color: #f3f1ea !important;
}

.text-whisper-ink {
  color: #8b95a8 !important;
}

.bg-whisper-ink {
  background: #8b95a8 !important;
}

.border-color-whisper-ink {
  border-color: #8b95a8 !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-white {
  background: #ffffff !important;
}

.border-color-white {
  border-color: #ffffff !important;
}

.text-header-top {
  color: #231f1e !important;
}

.bg-header-top {
  background: #231f1e !important;
}

.border-color-header-top {
  border-color: #231f1e !important;
}

.text-gray {
  color: #666666 !important;
}

.bg-gray {
  background: #666666 !important;
}

.border-color-gray {
  border-color: #666666 !important;
}

.text-dark-3 {
  color: #3b3b3b !important;
}

.bg-dark-3 {
  background: #3b3b3b !important;
}

.border-color-dark-3 {
  border-color: #3b3b3b !important;
}

.text-dark-4 {
  color: #676767 !important;
}

.bg-dark-4 {
  background: #676767 !important;
}

.border-color-dark-4 {
  border-color: #676767 !important;
}

.text-stroke-ink {
  color: #e6e6e6 !important;
}

.bg-stroke-ink {
  background: #e6e6e6 !important;
}

.border-color-stroke-ink {
  border-color: #e6e6e6 !important;
}

.text-green-dark-1 {
  color: #1b3227 !important;
}

.bg-green-dark-1 {
  background: #1b3227 !important;
}

.border-color-green-dark-1 {
  border-color: #1b3227 !important;
}

.text-natural {
  color: #eeeeee !important;
}

.bg-natural {
  background: #eeeeee !important;
}

.border-color-natural {
  border-color: #eeeeee !important;
}

.text-natural-2 {
  color: #f8fafc !important;
}

.bg-natural-2 {
  background: #f8fafc !important;
}

.border-color-natural-2 {
  border-color: #f8fafc !important;
}

.richtext-content h1,
.richtext-content h2,
.richtext-content h3,
.richtext-content h4,
.richtext-content h5,
.richtext-content h6 {
  font-size: 1.75rem;
  margin-bottom: 24px;
  font-family: "CabinCondensed";
}
.richtext-content p {
  font-size: 16px;
  color: #676767;
}

footer {
  padding: 80px 0;
  background: #f8fafc;
}
footer .footer-top {
  display: grid;
  grid-template-columns: minmax(150px, 420px) 1fr;
  padding-bottom: 32px;
}
footer .footer-top .footer-about {
  font-size: 150px;
}
footer .footer-top .footer-about i {
  height: 48px;
  display: flex;
  align-items: center;
}
footer .footer-top .footer-links {
  display: grid;
  grid-template-columns: minmax(100px, 155px) minmax(70px, 108px) minmax(70px, 108px) minmax(220px, 248px);
  column-gap: 80px;
}
footer .footer-top .footer-links .footer-links-item h2 {
  font-family: "CabinCondensed";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
  color: #1f1f1f;
}
footer .footer-top .footer-links .footer-links-item ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  width: 100%;
}
footer .footer-top .footer-links .footer-links-item ul li a {
  display: flex;
  align-items: center;
  width: 100%;
}
footer .footer-top .footer-links .footer-links-item ul li i {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background: #3b9f6e;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
footer .footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-bottom p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #666666;
  margin-bottom: 0;
}
footer .footer-bottom .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .footer-bottom .footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  font-size: 16px;
  color: #666666;
}

.animate-item {
  --tx: 0;
  --ty: 0;
  --scale: 1;
  --rotate: 0deg;
  --rotateX: 0deg;
  --rotateY: 0deg;
  --skewX: 0deg;
  --blur: 0px;
  opacity: 0;
  filter: blur(var(--blur));
  transform: translate(var(--tx), var(--ty)) rotate(var(--rotate)) rotateX(var(--rotateX)) rotateY(var(--rotateY)) skewX(var(--skewX)) scale(var(--scale));
  transition: all 0.7s ease-out;
}
.animate-item.top {
  --ty: -50px;
}
.animate-item.left {
  --tx: -50px;
}
.animate-item.right {
  --tx: 50px;
}
.animate-item.bottom {
  --ty: 50px;
}
.animate-item.zoom-out {
  --scale: 0;
}
.animate-item.zoom-in {
  --scale: 2;
}
.animate-item.top-left {
  --tx: -50px;
  --ty: -50px;
}
.animate-item.top-right {
  --tx: 50px;
  --ty: -50px;
}
.animate-item.bottom-left {
  --tx: -50px;
  --ty: 50px;
}
.animate-item.bottom-right {
  --tx: 50px;
  --ty: 50px;
}
.animate-item.rotate-left {
  --rotate: -15deg;
}
.animate-item.rotate-right {
  --rotate: 15deg;
}
.animate-item.rotate-top {
  --ty: -40px;
  --rotate: -8deg;
}
.animate-item.rotate-bottom {
  --ty: 40px;
  --rotate: 8deg;
}
.animate-item.flip-x {
  --rotateX: 90deg;
}
.animate-item.flip-y {
  --rotateY: 90deg;
}
.animate-item.skew-left {
  --tx: -40px;
  --skewX: -10deg;
}
.animate-item.skew-right {
  --tx: 40px;
  --skewX: 10deg;
}
.animate-item.blur {
  --blur: 10px;
}
.animate-item.bounce {
  --ty: 40px;
  --scale: 0.95;
}
.animate-item.in-view {
  opacity: 1;
  --tx: 0;
  --ty: 0;
  --scale: 1;
  --rotate: 0deg;
  --rotateX: 0deg;
  --rotateY: 0deg;
  --skewX: 0deg;
  --blur: 0px;
}

@media screen and (max-width: 1200px) {
  .home-who-are-we .container .section-body .address-card .body {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 24px;
    line-height: 32px;
  }
  .section-description {
    font-size: 14px;
    line-height: 22px;
  }
  header .header-top .contact-info a,
  header .header-top .contact-info p {
    border: none !important;
  }
  header .header-top .contact-info a:not(:first-child),
  header .header-top .contact-info p:not(:first-child) {
    display: none;
  }
  .home-slider .swiper-slide .slider-content h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .home-slider .swiper-slide .slider-content p {
    font-size: 14px;
    line-height: 22px;
  }
  .home-slider .home-slider-stats .container {
    row-gap: 30px;
    column-gap: 48px;
    flex-wrap: wrap;
  }
  .home-slider .home-slider-stats .container .home-slider-stats__item {
    border: none !important;
    width: calc(50% - 24px);
  }
  .home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__content .home-slider-stats__value {
    font-size: 20px;
    line-height: 28px;
  }
  .home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__content .home-slider-stats__label {
    font-size: 12px;
    line-height: 20px;
  }
  .home-about {
    padding: 48px 0;
  }
  .home-about .row .col-lg-6 {
    width: 100%;
  }
  .home-about .row.row-reverse {
    flex-direction: column-reverse;
    row-gap: 32px;
    margin-bottom: 32px;
  }
  .home-grid {
    padding: 48px 0;
  }
  .home-grid.grid-right .container, .home-grid.grid-left .container {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "banner" "body";
    row-gap: 32px;
  }
  .home-grid.grid-right .container .btn, .home-grid.grid-left .container .btn {
    max-width: 100%;
    justify-content: space-between;
  }
  .home-who-are-we .container {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "banner" "body";
    row-gap: 32px;
  }
  .home-who-are-we .container .section-header {
    margin-bottom: 0;
  }
  .home-who-are-we .container .d-flex {
    flex-direction: column;
    row-gap: 24px;
  }
  .home-who-are-we .container .d-flex .btn {
    max-width: 100%;
  }
  .home-who-are-we .container .d-flex .btn:first-child {
    justify-content: space-between;
  }
  .page-blog .col-lg-4 {
    width: 50%;
  }
  .document-authentication .item-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "banner" "body";
    row-gap: 32px;
  }
  .document-authentication .item-grid .banner {
    width: 100%;
  }
  .home-why-nexora .container {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "banner" "body";
    row-gap: 32px;
  }
  .home-why-nexora .container .banner img {
    width: 100%;
  }
  .how-we-work .container:not(.section-footer .container) {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "body" "banner";
    row-gap: 32px;
  }
  .how-we-work .banner {
    max-height: 100% !important;
    margin-bottom: -100px;
  }
  .how-we-work .section-footer .content {
    max-width: 100%;
    padding: 180px 0 100px;
  }
  .how-we-work .section-title {
    margin-bottom: 0;
  }
  .how-we-work .section-body {
    margin-top: 0 !important;
  }
  .page-header {
    margin-bottom: 32px;
  }
  .page-header .page-header-content {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
  .page-header .page-header-content .section-title {
    margin-bottom: 0;
  }
  .banner-swiper .swiper-slide {
    font-size: 16px;
    line-height: 24px;
  }
  .section-translate {
    padding: 48px 0;
  }
  .section-translate.style-2 .col-lg-4,
  .section-translate.style-2 .col-lg-8 {
    width: 100%;
  }
  .section-translate .section-header {
    margin-bottom: 32px !important;
  }
  .section-translate .section-header .col-lg-4 {
    width: 100%;
  }
  .section-translate .col-lg-4,
  .section-translate .col-lg-3 {
    width: 50%;
  }
  .section-translate .card-style-4 {
    flex-direction: column;
    position: relative;
    gap: 32px;
  }
  .section-translate .card-style-4 .title,
  .section-translate .card-style-4 .description {
    margin-left: 80px;
  }
  .section-translate .card-style-4 .description {
    margin-bottom: 24px;
  }
  .section-translate .card-style-4 .count {
    position: absolute;
    left: 32px;
    top: 32px;
  }
  .section-translate .card-style-4 .duration {
    margin-right: auto;
    margin-left: 0;
  }
  .request-quote .container {
    grid-template-columns: 1fr;
    gap: 32px;
    grid-template-areas: "header" "form" "body";
  }
  .faq .container {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    grid-template-areas: "header" "banner" "body";
  }
  .faq .section-header {
    margin-bottom: 0 !important;
  }
  .page-contact .container {
    flex-direction: column;
    gap: 24px;
  }
  .page-contact .container .form {
    border-radius: 0;
  }
  .legal-page {
    padding: 48px 0;
  }
  .legal-page .col-lg-6,
  .legal-page .col-lg-10 {
    width: 100%;
  }
  .home-hero-item .list {
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-height: fit-content;
  }
  .home-hero-item .list::-webkit-scrollbar {
    display: none;
  }
  .home-hero-item .list .item {
    flex: 0 0 calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
    padding: 32px 16px 60px !important;
  }
  .home-hero-item .list .item .item-title {
    font-size: 14px !important;
    line-height: 22px !important;
    transform: none !important;
    margin-bottom: 24px !important;
  }
  .home-hero-item .list .item .title {
    font-size: 24px;
    line-height: 32px;
  }
  .home-hero-item .list .item .description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 48px;
  }
  .home-hero-item .list .item .tags {
    margin-bottom: 24px;
  }
  .home-hero-item .list .item .content {
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
  }
  .home-hero-item .list .item .content .selects {
    flex-direction: column;
    max-width: 100% !important;
  }
  .home-hero-item .list .item .content .selects .form-group {
    width: 100% !important;
  }
  .home-hero-item .list .item .content .selects i {
    display: none;
  }
  .home-hero-item .list .item .content .action {
    flex-direction: column;
    width: 100% !important;
    gap: 24px;
    display: flex;
  }
  .home-hero-item .list .item .content .action .btn {
    width: 100% !important;
  }
  .home-hero-item .list .item .state {
    justify-content: end;
  }
  .home-hero-item .list .item .state ul {
    display: none;
  }
  .home-hero-item .list .item .state .act-btn {
    display: flex !important;
  }
  .home-hero-item .list .item .state .act-btn.link {
    display: none !important;
  }
  .highlights .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .highlights .item {
    justify-content: start;
    border: none !important;
  }
}
@media screen and (max-width: 992px) {
  header .header-bottom nav,
  header .header-bottom .contact-btn {
    display: none;
  }
  header .header-bottom .menu-toggle {
    display: flex;
  }
  footer .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  footer .footer-top .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  footer .footer-top .footer-links .footer-links-item:nth-child(1),
  footer .footer-top .footer-links .footer-links-item:nth-child(4) {
    grid-column: 1/-1;
  }
  .page-blog,
  .home-why-nexora,
  .home-who-are-we,
  .request-quote,
  .faq {
    padding: 48px 0;
  }
  .page-header .col-lg-7 {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .page-header .column-reverse {
    flex-direction: column-reverse;
  }
  .manuel-qr .web-content {
    display: none;
  }
  .manuel-qr .mobile-content {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .home-slider {
    min-height: 1100px;
  }
  .home-slider .home-slider-stats .container .home-slider-stats__item {
    grid-template-columns: 32px 1fr;
    padding: 0 !important;
  }
  .home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__icon {
    width: 32px;
    height: 32px;
  }
  .home-slider .home-slider-stats .container .home-slider-stats__item .home-slider-stats__icon i {
    font-size: 16px;
  }
  .home-slider .swiper-pagination {
    bottom: 66px;
  }
  .home-slider .slider-act {
    flex-direction: column;
  }
  .home-slider .slider-act a {
    max-width: 100% !important;
  }
  .home-who-are-we .container {
    grid-template-columns: 100%;
  }
  .home-who-are-we .container .d-flex {
    margin-bottom: 24px !important;
  }
  footer {
    padding: 20px 0;
  }
  .request-quote .info-body .info-item .count {
    font-size: 32px;
    line-height: 40px;
  }
  .request-quote .info-body .info-item .info-title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
  }
  .request-quote .info-body .info-item .info-subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  .request-quote .section-descriotion {
    margin-bottom: 0;
  }
  .page-header .page-header-content .section-descriotion .d-flex {
    flex-wrap: wrap;
    gap: 48px;
  }
  .page-header .page-header-content .section-descriotion .d-flex > div {
    width: calc(50% - 24px);
  }
  .page-contact .container .content {
    flex-direction: column;
    padding: 32px 40px;
  }
  .page-contact .container .content .item {
    width: 100%;
  }
  .legal-page .legal-item {
    padding: 24px;
  }
  .legal-page .legal-item .title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 32px;
  }
  header .header-bottom nav .child-menu li a {
    white-space: initial;
  }
  .highlights .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-translate .col-lg-4,
  .section-translate .col-lg-6,
  .section-translate .col-lg-3 {
    width: 100%;
  }
  .section-translate .col-lg-4 a,
  .section-translate .col-lg-6 a,
  .section-translate .col-lg-3 a {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .home-about .home-about-act {
    flex-direction: column;
  }
  .home-about .home-about-act .btn {
    max-width: 100%;
    width: 100%;
  }
  .home-about .section-title {
    margin-bottom: 24px;
  }
  .home-grid {
    padding: 24px 0;
  }
  .page-blog .d-flex {
    margin-bottom: 24px !important;
  }
  .page-blog .d-flex a {
    display: none;
  }
  .page-blog .col-lg-4 {
    width: 100%;
  }
  .home-why-nexora .container .section-body .why-nexora-list {
    display: flex;
    flex-direction: column;
    row-gap: 45px;
  }
  .how-we-work .section-footer .content .act {
    flex-direction: column;
  }
  footer .footer-bottom {
    bottom: 10px !important;
  }
  footer .footer-bottom p {
    max-width: 150px;
  }
}
@media (min-width: 300px) {
  .menu-open footer .footer-bottom {
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media (min-width: 576px) {
  .menu-open footer .footer-bottom {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .menu-open footer .footer-bottom {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .menu-open footer .footer-bottom {
    max-width: 960px;
  }
}

/*# sourceMappingURL=nexora.css.map */
