/**/ /*#011d35*/ /*07294c*/
/*#1E7881*/ /**/
.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

:root * {
  /* Pause the animation */
  animation-play-state: paused;
  /* Bind the animation to scroll */
  animation-delay: calc(var(--scroll) * -1s);
  /* These last 2 properites clean up overshoot weirdness */
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.nav-icon-6 {
  width: 35px;
  height: 30px;
  margin: 10px 10px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.nav-icon-6 span {
  background-color: #06323f;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
}

.nav-icon-6 span:nth-child(1) {
  top: 0px;
  left: 0px;
}

.nav-icon-6 span:nth-child(2) {
  top: 13px;
  left: 0px;
}

.nav-icon-6 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}

.nav-icon-6:not(.open):hover span:nth-child(1) {
  transform: scaleY(1.2);
  left: -5px;
}

.nav-icon-6:not(.open):hover span:nth-child(2) {
  transform: rotate(5deg) scaleY(1.1);
}

.nav-icon-6:not(.open):hover span:nth-child(3) {
  transform: scaleY(1.2);
  left: 5px;
}

.nav-icon-6.open span:nth-child(1) {
  transform: rotate(45deg) scaleX(0.7);
  top: 13px;
  left: -8px;
}

.nav-icon-6.open span:nth-child(2) {
  transform: scale(0);
  transition-duration: 50ms;
}

.nav-icon-6.open span:nth-child(3) {
  transform: rotate(-45deg) scaleX(0.7);
  top: 13px;
  left: 7px;
}

body {
  overflow-x: hidden;
  font-family: "Readex Pro", sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #06323f;
}

::-webkit-scrollbar-thumb {
  background: #c7a863;
}

.accordion {
  border: none !important;
}
.accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #06323f;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #c7a863;
}
.accordion .accordion-item:last-of-type {
  border-bottom: none !important;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #06323f;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #c7a863;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #c7a863;
  border: 1px solid #c7a863;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #06323f;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 20em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.top-bar {
  background-color: #06323f;
}
.top-bar .phone a {
  color: #eee;
}
.top-bar .hours {
  color: #eee;
}
.top-bar svg {
  color: #c7a863;
}

.navbar {
  color: #c7a863;
  padding: 0 !important;
}
.navbar .nav-icon-6 span {
  background-color: #fff;
}
.navbar .navbar-toggler {
  color: #fff;
  transition: all 0.3s ease-in-out;
  border: none;
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar .navbar-toggler:focus[aria-expanded=true] {
  color: rgba(255, 255, 255, 0) !important;
}
.navbar .navbar-nav {
  border-bottom: 1px solid #c7a863;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border-radius: 2rem !important;
  border: 1px solid rgba(255, 255, 240, 0);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #c7a863;
  border: 1px solid #c7a863;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #c7a863;
  border: 1px solid #c7a863;
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  display: none !important;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
  transition: all 0.3s ease-in-out !important;
}
.navbar .navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}
.navbar .navbar-nav .dropdown:hover > .dropdown-menu .dropdown-item {
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .dropdown:hover > .dropdown-menu .dropdown-item:hover {
  color: #c7a863;
  background-color: #06323f;
}
.navbar .navbar-nav .dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.hero-section {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .hero-section {
    background-position: 25%;
  }
}
.hero-section .container .hero {
  min-height: 80vh;
}
.hero-section .container .hero .hero-title {
  color: #c7a863;
  text-shadow: 3px -1px #06323f;
  font-size: 2rem !important;
  transition: all 0.3s ease-in-out;
}
.hero-section .container .hero .hero-title span {
  font-size: 4.5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section .container .hero .hero-title {
    font-size: 2rem !important;
  }
}
.hero-section .container .hero .desc {
  color: #fff;
}
.hero-section .container .hero .btn {
  background-color: rgba(6, 50, 63, 0.5);
  border: 1px solid #c7a863;
  border-radius: 3rem;
  width: 40%;
  color: #c7a863;
}
.hero-section .container .hero .btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #06323f;
  color: #06323f;
}

/*Finance*/
@keyframes upsdowns {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.finance .hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 80vh;
}
.finance .hero .hero-title {
  color: #c7a863;
  text-shadow: 3px -1px #06323f;
  font-size: 2.5rem !important;
  transition: all 0.3s ease-in-out;
}
.finance .hero .hero-title span {
  color: #fff;
}
@media (max-width: 768px) {
  .finance .hero .hero-title {
    font-size: 2rem !important;
  }
}
.finance .hero .desc {
  color: #fff;
}
.finance .hero .btn {
  background-color: rgba(6, 50, 63, 0.5);
  border: 1px solid #c7a863;
  border-radius: 3rem;
  width: 40%;
  color: #c7a863;
}
.finance .hero .btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #06323f;
  color: #06323f;
}
.finance .f-header {
  background-color: #06323f;
}
.finance .f-header .f-header-content .f-header-title {
  color: #c7a863;
}
.finance .f-header .f-header-content .f-header-desc {
  color: #fff;
}
.finance .f-header .f-header-btn {
  background-color: #c7a863;
}
.finance .f-header .f-header-btn a {
  color: #06323f !important;
}
.finance .f-header .f-header-btn:hover {
  background-color: #053e70;
}
.finance .f-header .f-header-btn:hover a {
  color: #c7a863 !important;
}
.finance .f-section-about-us .about-title {
  color: #06323f;
}
.finance .f-section-about-us .line {
  width: 25%;
  background-color: #c7a863;
  height: 0.3rem;
  border-radius: 0.5rem;
}
.finance .f-section-about-us .about-desc {
  color: #06323f;
}
.finance .f-section-about-us .about-desc svg {
  color: #c7a863 !important;
}
.finance .f-section-service {
  background-color: #06323f;
}
.finance .f-section-service .title {
  color: #fff;
}
.finance .f-section-service .line {
  width: 35%;
  background-color: #c7a863;
  height: 0.3rem;
  border-radius: 0.5rem;
}
.finance .f-section-service .desc {
  color: #fff;
}
.finance .f-review-section {
  background-image: url("../assets/section-image.webp") !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.finance .f-review-section .title {
  color: #fff;
}
.finance .f-review-section .title::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3px;
  background-color: #c7a863;
  border-radius: 2px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .finance .f-review-section .title::after {
    width: 2rem;
  }
}
.finance .f-review-section .title::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3px;
  background-color: #c7a863;
  border-radius: 2px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .finance .f-review-section .title::before {
    width: 2rem;
  }
}
.finance .f-review-section .owl-carousel {
  height: 100%;
  border: 1px solid #eeeff1;
}
.finance .f-review-section .owl-carousel .item h4 {
  color: #c7a863 !important;
}
.finance .f-review-section .owl-carousel .item p {
  color: #eeeff1;
}
.finance .f-review-section .owl-nav [aria-label=Previous] {
  color: #ff636a;
  font-size: 3rem !important;
  margin: 1rem;
}
.finance .f-review-section .owl-nav [aria-label=Next] {
  color: #ff636a;
  font-size: 3rem !important;
  margin: 1rem;
}
.finance #counter {
  list-style: none;
}
.finance #counter li {
  text-align: center;
}
.finance #counter li .content {
  border-radius: 1rem;
  border: 1px solid #c7a863;
}
.finance #counter span {
  color: #eeeff1;
}
.finance #counter svg {
  color: #c7a863;
}
.finance #counter p {
  color: #eeeff1;
}

.f-partner .title {
  color: #06323f;
}
.f-partner .title::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3px;
  background-color: #c7a863;
  border-radius: 2px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .f-partner .title::after {
    width: 2rem;
  }
}
.f-partner .title::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3px;
  background-color: #c7a863;
  border-radius: 2px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .f-partner .title::before {
    width: 2rem;
  }
}
.f-partner .slider {
  width: 100%;
  height: 200px;
  padding: 20px 0;
  overflow: hidden;
}
.f-partner .slider .marquee {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.f-partner .slider .marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite alternate;
}
@media (max-width: 768px) {
  .f-partner .slider .marquee {
    width: 300%;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.f-section-banks {
  background-color: #f2f2f2;
}

.law .hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 80vh;
}
.law .hero .hero-title {
  color: #c7a863;
  text-shadow: 3px -1px #06323f;
  font-size: 2.5rem !important;
  transition: all 0.3s ease-in-out;
}
.law .hero .hero-title span {
  color: #fff;
}
@media (max-width: 768px) {
  .law .hero .hero-title {
    font-size: 2rem !important;
  }
}
.law .hero .desc {
  color: #fff;
}
.law .hero .btn {
  background-color: rgba(6, 50, 63, 0.5);
  border: 1px solid #c7a863;
  border-radius: 3rem;
  width: 40%;
  color: #c7a863;
}
.law .hero .btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #06323f;
  color: #06323f;
}
.law .law-header {
  background-color: #06323f;
}
.law .law-header .law-header-content .law-header-title {
  color: #c7a863;
}
.law .law-header .law-header-content .law-header-desc {
  color: #fff;
}
.law .law-header .law-header-btn {
  background-color: #c7a863;
}
.law .law-header .law-header-btn a {
  color: #06323f !important;
}
.law .law-header .law-header-btn:hover {
  background-color: #053e70;
}
.law .law-header .law-header-btn:hover a {
  color: #c7a863 !important;
}
.law .law-section-about-us .about-title {
  color: #06323f;
}
.law .law-section-about-us .line {
  width: 25%;
  background-color: #c7a863;
  height: 0.3rem;
  border-radius: 0.5rem;
}
.law .law-section-about-us .about-desc {
  color: #06323f;
}
.law .law-section-about-us .about-desc svg {
  color: #c7a863 !important;
}
.law .law-section-about-us ul {
  color: rgba(6, 50, 63, 0.8);
}
.law .law-section-about-us ul svg {
  color: #c7a863 !important;
}
.law .law-section-service {
  background-color: #06323f;
}
.law .law-section-service .title {
  color: #fff;
  line-height: normal;
}
.law .law-section-service .line {
  width: 35%;
  background-color: #c7a863;
  height: 0.3rem;
  border-radius: 0.5rem;
}
.law .law-section-service .desc {
  color: #fff;
}
.law .law-review-section {
  background-image: url("../assets/contract.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.law .law-review-section .title {
  color: #fff;
  border-right: 5px solid #c7a863;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .law .law-review-section .title {
    border: none;
  }
}
.law .law-review-section h3 {
  color: #fff;
  font-style: italic;
  margin-bottom: 1rem;
}
.law .law-review-section h3 svg {
  color: #c7a863 !important;
}
.law .law-review-section p {
  color: #c2c2c2;
}

.amwal .hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 80vh;
}
.amwal .hero .hero-title {
  color: #c7a863;
  text-shadow: 3px -1px #06323f;
  font-size: 2.5rem !important;
  transition: all 0.3s ease-in-out;
}
.amwal .hero .hero-title span {
  color: #fff;
}
@media (max-width: 768px) {
  .amwal .hero .hero-title {
    font-size: 2rem !important;
  }
}
.amwal .hero .desc {
  color: #fff;
}
.amwal .hero .btn {
  background-color: rgba(6, 50, 63, 0.5);
  border: 1px solid #c7a863;
  border-radius: 3rem;
  width: 40%;
  color: #c7a863;
}
.amwal .hero .btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #06323f;
  color: #06323f;
}
.amwal .law-header {
  background-color: #06323f;
}
.amwal .law-header .law-header-content .law-header-title {
  color: #c7a863;
}
.amwal .law-header .law-header-content .law-header-desc {
  color: #fff;
}
.amwal .law-header .law-header-btn {
  background-color: #c7a863;
}
.amwal .law-header .law-header-btn a {
  color: #06323f !important;
}
.amwal .law-header .law-header-btn:hover {
  background-color: #053e70;
}
.amwal .law-header .law-header-btn:hover a {
  color: #c7a863 !important;
}
.amwal .law-section-about-us .about-title {
  color: #06323f;
}
.amwal .law-section-about-us .line {
  width: 25%;
  background-color: #c7a863;
  height: 0.3rem;
  border-radius: 0.5rem;
}
.amwal .law-section-about-us .about-desc {
  color: #06323f;
}
.amwal .law-section-about-us .about-desc svg {
  color: #c7a863 !important;
}
.amwal .law-section-about-us ul {
  color: rgba(6, 50, 63, 0.8);
}
.amwal .law-section-about-us ul svg {
  color: #c7a863 !important;
}
.amwal .law-section-service {
  background-color: #06323f;
}
.amwal .law-section-service .title {
  color: #fff;
  line-height: normal;
}
.amwal .law-section-service .line {
  width: 35%;
  background-color: #c7a863;
  height: 0.3rem;
  border-radius: 0.5rem;
}
.amwal .law-section-service .desc {
  color: #fff;
}
.amwal .law-review-section {
  background-image: url("../assets/contract.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.amwal .law-review-section .title {
  color: #fff;
  border-right: 5px solid #c7a863;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .amwal .law-review-section .title {
    border: none;
  }
}
.amwal .law-review-section h3 {
  color: #fff;
  font-style: italic;
  margin-bottom: 1rem;
}
.amwal .law-review-section h3 svg {
  color: #c7a863 !important;
}
.amwal .law-review-section p {
  color: #c2c2c2;
}

.f-section-our-service {
  background-color: #eeeff1;
}
.f-section-our-service h2 {
  color: #06323f;
}
.f-section-our-service h2::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3px;
  background-color: #c7a863;
  border-radius: 2px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .f-section-our-service h2::after {
    width: 2rem;
  }
}
.f-section-our-service h2::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3px;
  background-color: #c7a863;
  border-radius: 2px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .f-section-our-service h2::before {
    width: 2rem;
  }
}
.f-section-our-service .line {
  width: 25%;
  background-color: #c7a863;
  height: 0.3rem;
  border-radius: 0.5rem;
}
.f-section-our-service .card-holder {
  background-color: #fff;
  border-top: 0.3rem solid #06323f;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.f-section-our-service .card-holder:hover {
  background-color: #06323f;
  border-top: 0.3rem solid #c7a863;
}
.f-section-our-service .card-holder:hover .title {
  color: #c7a863;
}
.f-section-our-service .card-holder:hover .desc {
  color: #fff;
}
.f-section-our-service .card-holder:hover .icon {
  color: #fff;
  left: 2rem;
  opacity: 0.1;
}
.f-section-our-service .card-holder .icon {
  color: #06323f;
  opacity: 0.05;
  position: absolute;
  line-height: 10rem;
  left: 0rem;
  font-size: 10rem;
  z-index: 0;
  transition: all 0.5s ease-in-out;
}
.f-section-our-service .card-holder .content {
  position: inherit;
  z-index: 1;
}

.icon-float {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
}

footer {
  background-color: #06323f;
  color: #fff;
  border-top: 0.2rem solid #c7a863;
}
footer .line {
  height: 2px;
  background-color: #c7a863;
}
footer .data a {
  text-decoration: none;
}
footer .made a {
  color: #fff;
}
footer .made svg {
  color: red;
}

.float {
  background-color: #06323f;
  position: fixed;
  transform: rotate(-90deg);
  top: 50%;
  left: -4.5rem;
  transition: all 0.3s ease-in-out;
  border: 0.3rem solid #c7a863;
}
@media (max-width: 768px) {
  .float {
    display: none;
  }
}
.float:hover {
  left: -3.5rem;
}
.float:hover a {
  color: #c7a863 !important;
}
.float a {
  color: #fff;
}

.btn-top {
  position: fixed;
  bottom: 1rem;
  left: 2rem;
  font-size: 2em;
  cursor: pointer;
  display: none;
  border-radius: 50%;
  color: #c7a863;
  border: 3px solid #06323f;
}
@media (max-width: 768px) {
  .btn-top {
    font-size: 1.5em;
    bottom: 1.2rem;
  }
}

.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #06323f !important;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c7a863;
  transform: scaleX(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: white !important;
}

.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  transform: scaleX(1);
}

.spam {
  display: none;
}

.form .title {
  color: #c7a863 !important;
}
.form .submit {
  background-color: #c7a863;
  color: #06323f;
  transition: all 0.3s ease-in-out;
}
.form .submit:hover {
  transform: scale(0.9);
}/*# sourceMappingURL=main.css.map */