/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: transparent !important;
  color: rgba(34, 46, 58, .75);
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

#content #header,
#content #footer {
  display: none;
}

#content {
  margin-top: -16px;
}

h1 {
  font-size: 3.5em;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

h2 {
  background: linear-gradient(256.7deg, #2a2b32 0, #2a2b32 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  padding: 40px 0 6px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.8px;
  line-height: 52px;
  font-family: Inter, Gordita, sans-serif;
}

h3 {
  font-weight: 500;
  font-size: 1.5em;
  color: #2a2b32;
  padding: 20px 0;
}

h4 {
  padding: 20px 0;
}

p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
}

.logo {
  float: left;
}

.logo a span {
  color: black;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  text-decoration: none;
}

.navbar {
  float: right;
}

a {
  text-decoration: none;
}

a img {
  cursor: pointer;
}

.row {
  align-items: center;
}

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

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

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

.float-left {
  float: left;
}

ul li {
  list-style-type: none;
}

.br {
  border-radius: 20px;
}

@media screen and (max-width: 580px) {
  .br {
    border-radius: 12px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5%;
  bottom: 3%;
  z-index: 996;
  background: #f5bb44;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: white;
  line-height: 0;
}

.back-to-top:hover {
  background: #FF8200;
  color: white;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 9999;
  transition: all 0.5s;
  width: 100%;
  position: fixed;
  top: 0px;
}

#header div {
  margin-top: 10px;
  margin-bottom: 10px;
  justify-content: space-between !important;
}

#header .logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-transform: capitalize;
  color: #2a2b32;
  float: left;
  margin: 16px 10px;
}

#header .logo img {
  padding: 0;
  float: left;
  width: 200px;
}

.inverted {
  background-color: white;
  box-shadow: 0 3px 5px 0.3px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  display: flow-root;
  padding: 0.5rem 0.9rem;
}

.navbar a,
.navbar a:focus {
  align-items: center;
  font-size: 16px;
  color: #2a2b32;
  font-weight: 400;
  white-space: nowrap;

  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
}

.navbar a:hover,
.navbar li:hover>a {
  color: #f5bb44;
}

.navbar a button,
.navbar a:focus button {
  display: inline-block;
  align-items: center;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  margin: 0px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
}

.navbar .dropdown ul li {
  min-width: 160px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f5bb44;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .dropdown .bi-globe {
  margin: 0px 6px 0 2px;
  font-size: 16px;
}


/* Mobile Navigation */
.mobile-nav-toggle {
  color: black;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: black;
}

.nav-lang-font {
  margin-right: 6px;
  font-size: 18px;
}

ul.dropdown-menu {
  padding: 0px !important;
}

ul.dropdown-menu li {
  padding: 0px !important;
  margin: 20px 0;
}

/*--------------------------------------------------------------
  # Footer
--------------------------------------------------------------*/
footer {
  background-color: #fdfdfd;
}

.footer_top {
  position: relative;
  overflow-x: hidden;
  background-color: #FFF5BE;
}

.footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 20px;
}

.footer_top .f_widget.about-widget .f_list li a:hover {
  color: #ff8200;
}

.footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.footer_top .f-title {
  margin-bottom: 10px;
}

.footer_top .f-title img {
  width: 130px;
}

.footer_top .f_widget.about-widget .f_list li a {
  color: rgba(34, 46, 58, .75);
  text-decoration: none;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.img-about {
  width: 80%
}

/*--------------------------------------------------------------
  # Button
  --------------------------------------------------------------*/
button {
  background-color: #FF8200;
  border-radius: 50px;
  border: 0;
  color: white;
  font-weight: 500;
  font-size: larger;
  border: 1px solid #FF8200;
  margin-bottom: 2%;
}

.btn-email {
  background-color: transparent;
  border: 1px solid #FF8200;
  color: #FF8200;
  margin-left: 20px;
}

button span {
  display: inline-block;
  color: white;
  border-radius: 23px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  padding: 10px 50px;
}

button.btn-email span {
  color: #FF8200;
}

button:hover.btn-email span {
  border-color: #FF8200;
  background-color: #f5bb44;
  color: black;
}

button:hover {
  background-color: #f5bb44;
  color: black;
  border-color: #f5bb44;
}

button:hover a span,
button:hover span {
  color: black;
}

.btn-nav span {
  font-size: 16px;
  padding: 4px 22px;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  padding: 80px 0;
  background-color: #fafafa;
  margin-top: 90px;
}

#contact img {
  float: right;
  padding-right: 6%;
}

#contact p {
  margin-top: 20px;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 160px 0px 30px 0px;
  position: relative;
  overflow: hidden;
}

.main-banner .left-content {
  margin-right: 15px;
}

.main-banner .left-content h6 {
  text-transform: capitalize;
  font-size: 33px;
  font-weight: 700;
  color: #FF8200;
  margin-bottom: -10px;
  text-transform: uppercase;
}

.main-banner .left-content h2 {
  z-index: 2;
  position: relative;
  font-weight: 700;
  font-size: 68px;
  line-height: normal;
  color: #2a2a2a;
  margin-bottom: 20px;
  margin-top: -20px;
}

.main-banner .left-content p {
  margin-bottom: 30px;
  font-size: 20px;
}

.left-content h2+span {
  font-size: 32px;
  color: #333;
}

.main-banner .right-image {
  text-align: right;
  position: relative;
  z-index: 20;
}

.main-banner .right-image img {
  max-width: 593px;
}

.border-first-button span {
  display: inline-block !important;
  color: #fff;
  border-radius: 23px;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  padding: 10px 50px
}

@media (max-width: 767px) {
  .main-banner .info-stat {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# 4 Benefits
--------------------------------------------------------------*/
.services {
  position: relative;
  overflow: hidden;
}

.services .section-heading h2 {
  padding-right: 30px;
}

.services .service-item {
  border: 1px solid #f0f0f0;
  border-radius: 23px;
  padding: 30px;
  background-color: #fff;
  margin-bottom: 30px;
  transition: all .4s;
  display: flex;
  align-items: center;
}

.services .service-item h4 {
  font-size: 20px;
  color: #2a2a2a;
  margin: 0;
  padding: 0;
  transition: all .4s;
}

.services .service-item p {
  margin-bottom: 0;
}

.services .service-item .icon {
  margin-right: 10px;
}

.services .service-item:hover {
  border-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.services .service-item:hover h4 {
  color: #FF8200;
}

.section {
  padding-top: 30px;
  margin-top: 90px;
}

.section-heading .line-dec {
  width: 60px;
  height: 2px;
  background: rgb(235, 161, 0);
  background: linear-gradient(90deg, rgb(235, 161, 0) 0%, rgb(255, 213, 61) 100%);
}

.section-heading h2 {
  color: #2a2a2a;
  font-size: 30px;
  text-decoration: none;
  /* margin-bottom: 30px; */
  line-height: 44px;
}

.templatemo-feature {
  max-width: 66px;
}

/*--------------------------------------------------------------
# 3 Benefits
--------------------------------------------------------------*/
.features-small-item {
  display: block;
  background: white;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.10);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  margin-bottom: 30px;
  min-height: 371px;
}

.features-small-item:hover .icon {
  background-color: #FF8200;
}

.features-small-item .icon {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 90px;
  height: 90px;
  line-height: 90px;
  margin: auto;
  position: relative;
  margin-bottom: 30px;
  background: #f5bb44;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.features-small-item .icon i img {
  width: 50px;
}

.features-small-item .features-title {
  font-size: 20px;
  color: #2a2a2a;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.features-small-item p {
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.features-small-item a {
  float: right;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# about us
--------------------------------------------------------------*/
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.left-heading.light .section-title {
  color: white;
}

.left-heading .section-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  color: #2a2a2a;
  letter-spacing: 0.25px;
  margin-bottom: 30px;
  position: relative;
}

.hr {
  bottom: 0px;
  width: 100%;
  height: 1px;
  margin-top: 100px;
  border-bottom: 1px solid #eee;
}

/*--------------------------------------------------------------
# VIP Benefits
--------------------------------------------------------------*/
ul.vipbenefit {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  margin: 50px 0 0;
}

ul.vipbenefit li:first-child {
  width: 80px;
  margin-right: 30px;
  align-items: center;
}

ul.vipbenefit li p {
  margin: 4px 0;
  padding: 0px;
}

ul.vipbenefit li h4 {
  margin: 4px 0 20px 0;
  padding: 0px;
  font-size: 20px;
  color: #2a2a2a;
  line-height: 30px;
  transition: all .4s;
}

ul.vipbenefit li {
  list-style-type: none;
  padding: 0px;
  float: left;
  width: 75%;
  vertical-align: top;
  min-height: 130px;
}

p:empty {
  display: none;
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
section.world-node[data-v-011858e9] {
  position: relative;
  padding: 40px 0 80px;
  text-align: center;
}

section.world-node .world-map[data-v-011858e9] {
  position: relative;
  margin: 40px auto 0;
  width: 100%;
  text-align: center
}

section.world-node .world-map .map-img[data-v-011858e9] {
  opacity: 7;
  width: 100%
}

section.world-node .world-map .node-list .node-dot[data-v-011858e9] {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FF8200;
  box-shadow: 0 0 7px 1px #fff;
  border-radius: 8px;
  opacity: 1;
  border: 2px solid #fff;
  z-index: 1;
  cursor: pointer
}

section.world-node .world-map .node-list .node-dot[data-v-011858e9]:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  height: 20px;
  width: 20px;
  margin: -10px 0 0 -10px;
  animation: pulsate-a3a01502 2s linear;
  animation-iteration-count: 1;
  animation-iteration-count: infinite;
  background-color: #f5bb44;
  border-radius: 100%;
  z-index: 0
}

section.world-node .world-map .node-list .node-dot.usa-lax[data-v-011858e9] {
  left: 14%;
  top: 54%
}

section.world-node .world-map .node-list .node-dot.tw[data-v-011858e9] {
  right: 19%;
  top: 60%
}

section.world-node .world-map .node-list .node-dot.hk[data-v-011858e9] {
  right: 20.3%;
  top: 60%
}

section.world-node .world-map .node-list .node-dot.fr[data-v-011858e9] {
  right: 52%;
  top: 48%
}

section.world-node .world-map .node-list .node-dot.sg[data-v-011858e9] {
  right: 24%;
  top: 68.4%
}

section.world-node .world-map .node-list .node-dot.kr[data-v-011858e9] {
  right: 17%;
  top: 53%
}

section.world-node .world-map .node-list .node-dot.jp[data-v-011858e9] {
  right: 13.5%;
  top: 54%
}

section.world-node .world-map .node-list .node-dot.de[data-v-011858e9] {
  right: 49.5%;
  top: 44%
}

section.world-node .world-map .node-list .node-dot.gb[data-v-011858e9] {
  right: 52.5%;
  top: 43%
}

section.world-node .world-map .node-list .node-dot.tr[data-v-011858e9] {
  right: 43.5%;
  top: 52%
}

section.world-node .world-map[data-v-011858e9]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  filter: blur(90px);
  -webkit-filter: blur(90px);
  opacity: .1;
  transition: opacity .3s ease-in-out;
  transform: translateZ(0)
}

section.world-node .world-node-more[data-v-011858e9] {
  margin-top: 60px;
  margin-bottom: 20px;
  text-align: center
}

section.world-node .world-node-more .more-btn[data-v-011858e9] {
  margin: 20px auto 0;
  min-width: 160px;
  height: 42px;
  font-weight: 500;
  color: white;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  border-radius: 100px;
  transition: .3s
}

@keyframes pulsate-a3a01502 {
  0% {
    -webkit-transform: scale(0);
    opacity: .05
  }

  20% {
    -webkit-transform: scale(.7);
    opacity: .1
  }

  40% {
    -webkit-transform: scale(1.5);
    opacity: .2
  }

  60% {
    -webkit-transform: scale(2);
    opacity: .3
  }

  to {
    -webkit-transform: scale(3);
    opacity: 0
  }
}

/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/
.terms {
  margin-top: 100px;
}


/*--------------------------------------------------------------
# Compare
--------------------------------------------------------------*/
img.baox {
  width: 60px;
  margin: 10px 0;
}

img.baoxc {
  width: 80px;
}

.row .feature-table {
  margin: 20px 0 10px;
  text-align: center;
  position: relative;
}

.row .feature-table.hide-550 {
  display: block;
  position: relative;
}

.row .feature-table.show-550 {
  display: none;
}

.row .feature-table.show-550 #sticky {
  background-color: #fef8de;
}

.row .feature-table.show-550 #sticky.stick {
  margin: 0 auto;
  margin-top: 0 !important;
  position: sticky;
  top: 94px;
  width: -webkit-fill-available;
  z-index: 99;
}

.row .feature-table.show-550 #sticky.stick .feature-row-header {
  font-size: 18px;
}

.row .feature-table.show-550 #sticky.stick .feature-row-header:first-child {
  border-right: 2px solid #FFFFFF;
}

.row .feature-table td {
  color: #505e67;
  font-size: 15px;
  font-weight: 400;
  padding: 20px;
  text-align: left;
  line-height: 28px;
}

.row .feature-table table {
  width: 100%;
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.row .feature-table table tr {
  border: none;
}

.row .feature-table table td:nth-child(1) {
  border: none;
}

.row .feature-table table .feature-row-2 {
  background-color: #fffcef;
}

.row .feature-table table .feature-label p {
  color: #505e67;
  font-weight: 600;
  font-size: 16px;
  margin: 0 auto;
  text-align: left;
}

.row .feature-table.show-550 .feature-row-header {
  font-size: 15px;
  width: 47%;
  margin: 0;
  display: inline-block;
  padding: 20px 0 30px;
  vertical-align: middle;
  text-align: center;
}

.row .feature-table.show-550 .feature-row-wrap {
  border-bottom: 3px solid #fff;
}

.row .feature-table.show-550 .feature-row-wrap .feature-row-1 {
  border-bottom: 2px solid #fff;
}

.row .feature-table.show-550 .feature-row-wrap .feature-row-1 div {
  display: inline-block;
  margin: 0;
  padding: 20px 10px;
  width: 47%;
  vertical-align: middle;
  font-size: 14px;
  text-align: left;
}

.row .feature-table.show-550 .feature-row-wrap .feature-row-1 div:first-child {
  border-right: 2px solid #fff;
}

.row .feature-table.show-550 .feature-row-wrap .feature-row-2 {
  border-bottom: 2px solid #fff;
  background-color: #fef8de;
}

.row .feature-table.show-550 .feature-row-wrap .feature-row-2 div {
  display: inline-block;
  margin: 0;
  padding: 20px 10px;
  width: 49%;
  vertical-align: middle;
  font-size: 14px;
  text-align: left;
}

.row .feature-table.show-550 .feature-row-wrap .feature-row-2 div:first-child {
  border-right: 2px solid #fff;
}

.row .feature-table.show-550 .feature-row-wrap .feature-label p {
  color: #505e67;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 auto;
  padding: 20px 0;
}

.row .footer {
  font-size: 14px;
  font-style: italic;
  padding-top: 5px;
  text-align: right;
}

@media (max-width: 992px) {
  .feature-table.hide-550 {
    display: none !important;
  }

  .feature-table.show-550 {
    display: block !important;
  }

}

.container .row .section-heading {
  text-align: center;

}

.container .row .section-heading h3 {
  font-weight: bold;
}

.container .row .section-heading div {
  margin: 0 auto;
}

.container .row .col-12 {
  margin-top: 10px;
}

.container .row .col-12 img {
  display: inline-block;
}

.container .row .col-12>p {
  margin-bottom: 1px;
  font-size: 25px;
}

.f-title>img {
  display: inline-block;
}

.f-title>img+h3 {
  font-weight: bold;
  line-height: normal;
  display: inline-block;
}

.custom-bg {
  position: relative;
  background-image: url('../resource/Mask_group.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.custom-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 半透明白色，虚化效果 */
  z-index: 1;
}

.custom-bg .custom-content {
  position: relative;
  z-index: 2;
}

.card {
  background: white;
  border-radius: 20px;
  width: 370px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: block;

}

.card-header {
  background: #FFE6CC;
  padding: 15px;
  font-weight: bold;
  font-size: 20px;
  color: #FF8200;


}

.save-badge {
  background: #eaeaea;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 999px;
  font-size: 12px;
  margin-top: 10px;
  color: #666;
}


.card .price {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0 0;
}

.card .price span {
  font-size: 16px;
  font-weight: normal;
  color: #555;
}

.card .subtext {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.card .feature-list {
  text-align: left;
  padding: 0 40px;
  margin: 0;
  list-style: none;
}

.card .feature-list li {
  padding: 8px 0;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.card .feature-list li::before {
  content: '✔';
  color: orange;
  position: absolute;
  left: 0;
}

.card .cta-button {
  padding: 12px 30px;
  font-size: 16px;
  margin: 25px 0;
}
.card-header-top{
    color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  background: transparent;
}
.row > .hot{
  width: 372px;
  margin: 40px auto;
  margin-left: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, #d86b00, #ffb26b);
  padding-left: 1px;
}
.why_card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  /* max-width: 480px; */
  flex: 1;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.why_card:hover {
  transform: translateY(-5px);
}

.why_card > .icon{
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.align-top {
  align-self: flex-start !important; /* 不要垂直居中，靠上对齐 */
}
.about-card-text-top{
  margin-top: 30px;
  font-size: 18px;
}
.about-banner{
    position: relative;
  overflow-x: hidden;
  background-color: #FF820033;
}