/**
 Stylesheet 
**/

@font-face {
  font-family: "Prompt";
  src: url("../fonts/prompt/Prompt-Light.ttf");
}
@font-face {
  font-family: "Prompt";
  src: url("../fonts/prompt/Prompt-Medium.ttf");
  font-weight: 500;
}

body {
  font-family: "Prompt", sans-serif;
  color: #515C8A;
}

a,
a[href^="mailto:"] {
  text-decoration: none;
}

a[href^="mailto:"] {
  color: #2c6370;
}

.f-24 {
  font-size: 24px;
}

.f-36 {
  font-size: 36px;
}

.f-40 {
  font-size: 40px;
}

.display-7 {
  font-size: calc(1.525rem + 0.9vw);
}

.quote {
  margin-top: 55px;
  margin-left: -10px;
  margin-bottom: 0;
  font-size: 84px;
  font-style: italic;
  color: #A1B5E7;
  line-height: 0.1;
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  outline: 0;
  cursor: pointer;
}

.rounded-30 {
  border-radius: 30px;
}

.bd-gutter {
  padding-right: calc(3rem * 0.5);
  padding-left: calc(3rem * 0.5);
}

/* Color and Font */

.text-light-green {
  color: #60c6c7;
}

.text-dark-green {
  color: #0a8b84;
}

.text-green {
  color: #07b150;
}

.text-blue {
  color: #1f2a5d;
}

.text-orange {
  color: #ffaf37;
}

.text-purple {
  color: #B973B9;
}

.text-indent {
  text-indent: 10%;
}

.text-dark-500 {
  color: #2c6370;
}


/* Header */

header {
  padding: 0.75rem 0;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header .btn {
  font-size: calc(0.6rem + 1vw);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

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

.navbar li {
  position: relative;
  padding: 10px 15px;
}

@media (min-width: 992px) {
  .navbar li {
    padding-right: calc(15px + (100vw - 992px) * (15 - 30) / (700 - 1000));
  }
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  border-bottom: 3px solid transparent;
  color: #aaaaaa;
  white-space: nowrap;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #1e2a5e;
  border-bottom: 3px solid #1e2a5e;
}

.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;
  transition: 0.3s;
  border-radius: 0;
  border-bottom: 4px solid #0dbb74;
}

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

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

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #0dbb74;
  border-bottom: 3px solid transparent;
  background: transparent;
}

.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;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

@media screen and (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
    outline: 0;
  }
}

.mobile-nav-toggle span {
  position: relative;
  display: block;
  overflow: hidden;
  width: 24px;
  height: 2px;
}

.mobile-nav-toggle span + span {
  margin-top: 6px;
}

.mobile-nav-toggle span::after,
.mobile-nav-toggle span::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #263238;
}

.mobile-nav-toggle span.icon-bottom::before,
.mobile-nav-toggle span.icon-top::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
    0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s,
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.mobile-nav-toggle span.icon-bottom::after,
.mobile-nav-toggle span.icon-top::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
  transform: scaleX(0) translateZ(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.mobile-nav-toggle span.icon-middle::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
    0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s,
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.mobile-nav-toggle span.icon-middle::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
  transform: scaleX(0) translateZ(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.mobile-nav-toggle:hover span::after,
.mobile-nav-toggle:hover span::before {
  background-color: #0dbb74;
}

.mobile-nav-toggle:hover span.icon-bottom::before,
.mobile-nav-toggle:hover span.icon-top::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
  transform: scaleX(0) translateZ(0);
}

.mobile-nav-toggle:hover span.icon-bottom::after,
.mobile-nav-toggle:hover span.icon-top::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
    0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s,
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
}

.mobile-nav-toggle:hover span.icon-middle::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
  transform: scaleX(0) translateZ(0);
}

.mobile-nav-toggle:hover span.icon-middle::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
    0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s,
    -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
}

/* Hero section */

.section-hero {
  padding-top: 107px;
  height: 90vh;
  color: #fff;
  position: relative;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.section-hero h1 {
  font-size: calc(1.885rem + 1.5vw);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.section-hero p {
  font-size: 18px;
  font-weight: 500;
}

/* section partnership */
.section-partnership {
  padding-bottom: 60px;
}

/* main content */

.heading {
  font-size: 40px;
  color: #1f2a5d;
}

.sub-heading::after {
  content: "";
  width: 62px;
  height: 3px;
  display: inline-block;
  background: #1f2a5d;
  margin: 7px 10px;
}

.ul-probs div span:nth-child(3) {
  margin-top: 6px;
}

.ul-probs .desc {
  align-items: flex-start;
  flex-direction: column;
  color: #1f2a5d;
  font-weight: 500;
}

.ul-probs .desc p {
  margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
  .ul-probs .desc {
    align-items: center;
    flex-direction: row;
  }
}

/* Section Why us */
.section-whyus {
  padding-top: 90px;
  background-image: url("../images/bg/bg-shadow.png");
  background-position: center top;
  background-repeat: repeat-x;
  background-size: 100%;
}

.whyus-media {
  min-height: 100%;
  /* border-bottom: 1px solid #e8e8e8; */
  border-radius: 15px;
  padding: 10px;
  transition: background-color 300ms ease;
}

.whyus-media.yellow-icon:hover {
  background-color: #fffaf1;
}
.whyus-media.purple-icon:hover {
  background-color: #f2e2ff;
}
.whyus-media.blue-icon:hover {
  background-color: #f4f7ff;
}
.whyus-media.green-icon:hover {
  background-color: #f5fffc;
}

@media (min-width: 768px) {
  .whyus-media {
    min-height: 230px;
  }
}

.whyus-media:last-child {
  border: 0;
}

.whyus-media .icon {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  border-radius: 50%;
}

.whyus-media-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Section Services */
.section-services .icon-box {
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.section-services .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-services .icon-box.green {
  background-color: #E4FFEF;
  transition: background-color 300ms ease;
}
.section-services .icon-box.green:hover {
  background-color: #E4FFEF;
}

.section-services .icon-box.blue {
  background-color: #E7F1FF;
  transition: background-color 300ms ease;
}
.section-services .icon-box.blue:hover {
  background-color: #E7F1FF;
}

.section-services .icon-box.purple {
  background-color: #FAEBFF;
  transition: background-color 300ms ease;
}
.section-services .icon-box.purple:hover {
  background-color: #FAEBFF;
}

.section-services .icon-box.green .icon {
  background-image: url("../images/bg/bg-rounded-green.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 159px;
  height: 138px;
}

.section-services .icon-box.blue .icon {
  background-image: url("../images/bg/bg-rounded-blue.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 159px;
  height: 138px;
}

.section-services .icon-box.purple .icon {
  background-image: url("../images/bg/bg-rounded-purple.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 159px;
  height: 138px;
}

.section-services .icon-box ul li {
  padding-left: 39px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.8;
}

.section-services .icon-box ul li::before {
  margin-left: -39px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  width: 29px;
  height: 29px;
  content: "";
}

.section-services .icon-box ul li ul li::before {
  margin-left: 0;
  content: none;
}

.section-services .icon-box.green ul li::before {
  background-image: url("../images/icons/icon-circle-check-fill-green.png");
}

.section-services .icon-box.blue ul li::before {
  background-image: url("../images/icons/icon-circle-check-fill-blue.png");
}

.section-services .icon-box.purple ul li::before {
  background-image: url("../images/icons/icon-circle-check-fill-purple.png");
}

/* Price Proposal */

.form-price {
  background-color: #f7f8fa;
}

/* Blog */

.b-card .card-body {
  width: 96%;
  position: relative;
  float: left;
  top: -20px;
  left: 2%;
  background-color: #f0f3ff;
}

.b-card a,
.b-card a:hover {
  color: inherit;
}

/* Icon */
.icon {
  display: inline-block;
}

.icon-file {
  background-image: url("../images/icons/icon-file.png");
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
}

/* Background */
.bg-green {
  background-color: #E4FFEF;
}

.bg-dark-green {
  background-color: #26b19a;
}

.bg-blue {
  background-color: #E7F1FF;
}

.bg-light-blue {
  background-color: #E7F1FF;
}

.bg-light-green {
  background-color: #E4FFEF;
}

.bg-dark-blue {
  background-color: #acdcfa;
}

.bg-purple {
  background-color: #FAEBFF;
}

.bg-orange {
  background-color: #fff1db;
}

.bg-light-gray {
  background-color: #f7f8fa;
}

/* Footer */
footer {
  color: #2c6370;
  position: relative;
  background-image: url('../images/bg/bg-footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); 
  z-index: 1;
}

footer * {
  position: relative;
  z-index: 2;
}

.footer-link {
  color: #2c6370;
  text-decoration: none;
}

.footer-link:hover {
  color: #0dbb74;
}

/*------------------------------------- 
 # Offcanvas Humbergar Menu Style ENd
 -------------------------------------*/
.offcanvas-modal.modal.fade .modal-dialog {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.offcanvas-modal.modal.show .modal-dialog {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas-dialog {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  margin: 0;
}
.offcanvas-dialog .modal-content {
  height: 100%;
  border-radius: 0;
  border: 0;
}

.offcanvas-header {
  padding: 20px 15px;
  border-bottom: 1px solid #cccccc;
}

.offcanvas-logo {
  max-width: 160px;
}

.offcanvas-menu {
  position: relative;
  z-index: 1;
  height: 100%;
}

.offcanvas-menu::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: #fff;
}

.offcanvas-menu ul ul {
  display: none;
}

.offcanvas-menu > ul > li > ul li {
  border-bottom: 0px;
}
.offcanvas-menu > ul > li > ul li a {
  border-top: 1px solid #cccccc;
  padding-left: 30px;
}

.offcanvas-menu ul > li {
  border-bottom: 1px solid #cccccc;
}

.offcanvas-menu ul > li:last-child {
  border-bottom: 0;
}

.offcanvas-menu li.active > ul {
  display: block;
}

.offcanvas-menu li a {
  padding: 15px;
  position: relative;
}

.offcanvas-menu ul li.active > a,
.offcanvas-menu ul li a:hover {
  background: #fff;
}

.offcanvas-menu .dropdown-menu {
  width: 100%;
  padding: 0;
  border: 0;
}

.offcanvas-menu .dropdown-menu > ul > li > ul li a {
  border-top: 0;
}

/* Button */

.btn {
  color: #fff;
  font-size: 18px;
  padding: 0.75rem 3rem;
  border-radius: 33px;
}
.btn:hover {
  color: #fff;
}

.btn-lg {
  font-size: 24px;
}

.btn-outline-orange {
  padding: 8px 16px;
  border: 1px solid #1f2a5d;
  color: #1f2a5d;
  background: transparent;
}

.btn-outline-orange:hover,
.btn-orange {
  background-color: #1f2a5d;
  color: #fff;
}

.btn-orange {
  padding: 8px 16px;
  border: 1px solid #04b04f;
  background: #04b04f;
}

.btn-orange:hover {
  background-color: #1f2a5d;
}

.btn-close:hover {
  opacity: 1;
}

.btn-green {
  background-color: #07b150;
}

.btn-green-sec{
  border: #07b150 2px solid;
  color: #07b150;
}

.btn-green:hover,
.btn-green-sec:hover {
  background-color: #0a9145;
}

.btn-blue {
  background-color: #1e2a5e;
  border: #1e2a5e 2px solid;
}

.btn-blue-sec {
  border: #1e2a5e 2px solid;
  color: #1e2a5e;
}

.btn-blue:hover,
.btn-blue-sec:hover {
  background-color: #1f274a;
  border: #1e2a5e 2px solid;
}

.btn-purple {
  background-color: #b973b9;
}

.btn-purple-sec {
  border: #b973b9 2px solid;
  color: #b973b9;
}

.btn-purple:hover,
.btn-purple-sec:hover {
  color: #fff;
  background-color: #9e569e;
}

.btn-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Modal -- Join Us */
.joinus .modal-header {
  justify-content: center;
  position: relative;
  border-bottom: 0;
}

.joinus .modal-header .btn-close {
  position: absolute;
  right: 17px;
  
}

.joinus .modal-body {
  padding: 1rem 3rem;
}

.joinus .btn-close {
  background: url("../images/icons/icon-close.png");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  width: 50px;
  height: 50px;
  opacity: 1;
}

.joinus .btn-close:hover {
  opacity: 1;
}

/* Form */
.form-control,
.form-select {
  border-color: #7a7a7a;
}

/* Form -- Join Us */
.custom-file-button input[type="file"] {
  color: #7a7a7a;
  border-left-color: #07B150;
}

.custom-file-button input[type="file"]::-webkit-file-upload-button {
  display: none;
}

.custom-file-button input[type="file"]::file-selector-button {
  display: none;
}

.custom-file-button label.input-group-text {
  background-color: #fff;
  color: #07B150;
  border-color: #07B150;
}

.file-upload small {
  position: absolute;
  right: 0;
  bottom: -25px;
}

/* Accounting */

.circle img {
  margin-right: 0.7rem;
}

.circle-info p {
  margin-bottom: 0;
  font-weight: 600;
}

/* Accordian */
.accordion-item {
  color: #6c6e74;
  border: 0;
  margin-bottom: 2rem;
}

.accordion-button {
  font-size: 24px;
}


.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  width: 20px;
  height: 12px;
  background-image: url("../images/icons/icon-arrow-up.png");
}

.accordion-button:not(.collapsed) {
  color: #0a8b84;
  background-color: transparent;
  box-shadow: none;
}

#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.loading-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-top-color: #3498db;
  animation: spin 1s ease-in-out infinite;
}

.loading-text {
  margin-top: 5px;
  margin-left: 10px;
  font-size: 24px;
  color: #fff;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.items-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.line-btw{
  border-bottom: 1px solid #e8e8e8;
  margin-top: 10px;
  margin-bottom: 10px;
}

.underline{
  text-decoration: underline;
}


.sticky-contact {
  position: fixed;
  right: 0;
  top: 75%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px 0 0 10px;
}

.contact-btn {
  background-color: #1f2a5d;
  color: white;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  border-radius: 10px 0 0 10px;
}

.contact-icons {
  display: none;
  flex-direction: row;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

.contact-icons.show {
  display: flex;
  transform: translateX(0);
  margin-left: 10px;
}

.contact-icons a {
  color: #151515;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  margin: 0 8px;
  text-decoration: none;
  border-radius: 5px;
}

.contact-btn img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  margin-bottom: 4px;
}

.contact-icons a img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .sticky-contact {
    top: 90%;
  }

  .contact-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .contact-icons {
    transform: translateY(100%);
  }

  .contact-icons.show {
    transform: translateY(0);
    margin-left: 0;
  }

  .contact-icons a {
    padding: 6px;
    margin: 0 6px;
    font-size: 12px;
  }

  .contact-btn img,
  .contact-icons a img {
    width: 20px;
    height: 20px;
  }
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.grid-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 1.5rem;
  gap: 0px;
}

@media (max-width: 600px) {
  .grid-service {
    grid-template-columns: repeat(1, 1fr);
  }
  .text-service {
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .grid-service {
    grid-template-columns: repeat(3, 1fr);
  }
  .text-service {
    font-size: 1.5rem;
  }
}

.pt-8 {
  padding-top: 4rem;
}

.img-service {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block; 
  position: relative;
  cursor: pointer;
}

.text-service {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; 
  align-items: center; 
  position: absolute; 
  font-weight: 500;
  top: 0; 
  left: 0; 
  z-index: 1; 
  color: white; 
  text-align: center; 
  background-color: rgba(59, 174, 236, 0.4);
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease; 
}

.text-service {
  margin: 0; 
}

.text-service:hover {
  opacity: 0; 
  visibility: hidden; 
}


.hover-zoom {

  display: inline-block;
  border-radius: none;
}

.hover-zoom img {
  transition: transform 0.3s ease;   
  border-radius: 16px;
}

.hover-zoom:hover img {
  transform: scale(1.05); 
  
}

.img-blogs {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
  max-width: 100%;
  display: block; 
  position: relative;
}

@media screen and (max-width: 768px) {
  .img-blogs {
    height: 300px;
  }
}

.w-50 {
  width: 50%;
}

.w-full-items-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap:  4rem;
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

}

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


.scale-08x {
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .scale-08x {
    transform: scale(0.7);
  }
}

.h-full-items-center{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.text-advisory-1 {
  font-size: 3rem;
  font-weight: 600;
}

.text-advisory-2 {  
  margin-top: -1rem;
  font-size: 4rem;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .text-advisory-1 {
    font-size: 2rem;
  }

  .text-advisory-2 {
    font-size: 3rem;
  }
  
}

.btn-advisory-1{
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  color: #fff;
  background-color: #07B150;
  border-color: #07B150;
}

.btn-advisory-1:hover{
  color: #fff;
  background-color: #414C8A;
  border-color: #414C8A
}


.btn-advisory-2{
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  color: #fff;
  background-color: #1E2A5E;
  border-color: #1E2A5E;
}

.btn-advisory-2:hover{
  color: #fff;
  background-color: #7BD5A1;
  border-color: #7BD5A1;
}

.text-dark-green{
  color: #104956;
}

.text-pink{
  color: #B973B9;
}

.bg-light-pink{
  background-color: #FAEBFF;
}

.text-dark-pink{
  color: #1E2A5E;
}

.w-full-items-start{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-advisory-3{
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  color: #fff;
  background-color: #B973B9;
  border-color: #B973B9;
}

.btn-advisory-3:hover{
  color: #fff;
  background-color: #414C8A;
  border-color: #414C8A;
}

.pt-2{
  padding-top: 0.5rem;
}

