@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
button:focus,
button:active,
button {
  box-shadow: none !important;
}

.btn-primary {
  padding: 1.2rem 2rem;
  gap: 8px;
  background: #ff6b00;
  color: #ffffff;
  border-radius: 0.8rem;
  display: inline-block;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .btn-primary {
    padding: 0.8rem 2rem;
  }
}
.btn-primary span {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding-right: 2rem;
  position: relative;
}
.btn-primary span::after {
  content: url(../images/icon/angle-right.svg);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
}
.btn-primary:hover {
  color: #ffffff !important;
  background: linear-gradient(180deg, #ffab48 0%, #e76100 100%), #d95b00;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media (max-width: 1400px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

*,
*:before,
*:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins";
  color: #333333;
}

html,
body {
  overflow-x: hidden;
}

p,
a,
ul > li,
span,
th,
td {
  font-size: 1.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 3.6rem;
}

p,
span,
li,
a {
  line-height: 3.15rem;
  font-weight: 300;
}

a,
a:hover,
a:active,
a:focus,
.btn:focus,
.btn:hover,
button:focus,
button:active,
button,
select:focus {
  outline: none;
  text-decoration: none;
}

a {
  transition: 0.3s;
}

a:hover {
  color: #0378cc !important;
}

strong {
  font-weight: 600;
}

.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 3.6rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
}

.text-semibold {
  font-weight: 500;
}

.main-list {
  margin-left: 1.5rem;
}
.main-list li {
  margin-bottom: 1rem;
}

.highlighted-list li {
  font-weight: 500;
  background: #ddebff;
  border-left: 6px solid #09bc5b;
  padding: 0.8rem 1.5rem;
  line-height: 3.6rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.highlighted-div {
  background: #ddebff;
  padding: 2rem;
}
.highlighted-div p {
  margin-bottom: 0;
}

table {
  border: 1px solid #cccccc;
}
table.table {
  margin: 2rem 0;
}
table.table thead {
  background: #e5efea;
  border-bottom: 1px solid #cccccc;
}
table.table thead th {
  color: #ff6b00;
  padding: 1.5rem 1.3rem;
}
table.table thead th:last-child {
  padding: 1rem 2rem;
}
table.table tbody td {
  padding: 1rem 1.3rem;
}
table.table tbody td:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}
table.table tbody td:nth-child(odd) {
  font-weight: 500;
  color: #00438b;
  background-color: #f4f4f4;
}
table.table tbody td:last-child {
  font-weight: 300;
  padding: 1rem 2rem;
}

.floating-buttons-bottom {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  gap: 1rem;
  flex-direction: row-reverse;
  display: none;
}
@media (max-width: 576px) {
  .floating-buttons-bottom {
    bottom: 8rem;
  }
}
.floating-buttons-bottom button {
  font-size: 1.8rem;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 1rem 2rem;
  transition: 0.3s;
}
.floating-buttons-bottom button.scroll-top {
  background: #ff6b00;
}
.floating-buttons-bottom button.scroll-top .fa {
  font-size: 2rem;
  transition: 0.3s;
}
.floating-buttons-bottom button.get-quote {
  font-weight: 500;
  text-transform: uppercase;
  background: #00438b;
  color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.floating-buttons-bottom button.get-quote:hover {
  color: #ffffff !important;
  background: #0378cc;
}

.floating-buttons {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .floating-buttons {
    bottom: 0;
    left: 0;
    top: auto;
    transform: inherit;
    flex-direction: row;
  }
}
.floating-buttons a {
  line-height: 1;
  padding: 10px;
}
@media (max-width: 576px) {
  .floating-buttons a {
    flex: 1;
    text-align: center;
    align-items: center;
  }
}
.floating-buttons a .fa {
  font-size: 3rem;
  color: #fff;
}
.floating-buttons__call {
  background-color: #ff6b00;
}
.floating-buttons__whatsapp {
  background-color: #64b161;
}
.floating-buttons__get-quote {
  font-size: 2rem;
  background: #00438b;
  color: #fff;
}

body.modal-open {
  padding-right: 0 !important;
}

.modal.fade.show {
  padding-right: 0 !important;
}

.header-top {
  background-color: #e5eaef;
  padding: 6px 0;
}

.header-social-links ul li:not(:last-child) {
  margin-right: 1.8rem;
}
.header-social-links ul li a:hover img {
  transform: scale(1.2);
}

.header-contact ul li:not(:last-child) {
  margin-right: 4rem;
}
.header-contact ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #555555;
  display: flex;
  align-items: center;
}
.header-contact ul li a img {
  margin-right: 1rem;
}

.navbar {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 6rem;
  }
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-item:not(:last-child) {
    margin-right: 4rem;
  }
}
.navbar .navbar-nav .nav-item.active .nav-link {
  color: #f9c935;
  pointer-events: none;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #333333;
  padding: 1.5rem 0;
}
@media (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 1rem 0;
    border-top: 1px solid #9a9ea6;
  }
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border: none;
  content: url("../images/icon/caret.svg");
  vertical-align: text-top;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  padding: 1rem 0;
  border: none;
  border-radius: 0;
  background-color: #e5eaef;
}
.navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-item {
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 1rem 2rem;
}

@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.fixed .navbar-brand img {
  height: 5rem;
  transition: height 0.5s;
}

.contact-form {
  margin-top: 4rem;
}
.contact-form .form-group {
  position: relative;
}
.contact-form .form-control {
  height: 5rem;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
  letter-spacing: 0.01em;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}
.contact-form .form-control.message-box {
  height: 10rem;
  padding-top: 1rem;
}
.contact-form .invalid-feedback {
  font-size: 1.2rem;
  color: #ff5a5a;
  position: absolute;
  top: 95%;
}
.contact-form .btn-primary {
  border: none;
  outline: none;
  width: 100%;
}
.contact-form .btn-primary span::after {
  display: none;
}

::-moz-placeholder {
  color: #333333;
  opacity: 1;
}

::placeholder {
  color: #333333;
}

.footer {
  padding: 2.4rem 0;
  border-top: 1px solid #dfdfe0;
}
.footer__logo {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin-bottom: 3.6rem;
}
@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 1rem;
  }
}
.footer__contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.footer__contact-detail p,
.footer__contact-detail a {
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: #333333;
  margin-bottom: 0;
}
.footer__contact-detail p span,
.footer__contact-detail a span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #9a9ea6;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.footer__links-title {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-bottom: 1.4rem;
}
.footer__link-list li a {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: #9a9ea6;
  text-transform: capitalize;
  margin-bottom: 1.4rem;
  display: block;
  transition: 0.3s;
}
.footer__link-list li a:hover {
  margin-left: 3px;
}
.footer__social li a {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer__social li a span:first-child {
  width: 4rem;
  height: 4rem;
  background: #ebedf2;
  border-radius: 30px;
  padding: 8px;
  display: flex;
  transition: 0.3s;
}
.footer__social li a span:last-child {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: #9a9ea6;
}
@media (max-width: 576px) {
  .footer .copyright {
    padding-bottom: 4rem;
  }
}
.footer .copyright p {
  font-weight: 400;
  font-size: 14px;
  line-height: 2.1rem;
  color: #9a9ea6;
  padding-top: 2.4rem;
  border-top: 1px solid #dfdfe0;
}

.banner {
  background-image: url("../images/banner/banner-home.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .banner {
    height: 40vh;
  }
}
@media (max-width: 576px) {
  .banner {
    height: 40vh;
  }
}
.banner__text {
  margin-bottom: 15rem;
}
@media (max-width: 576px) {
  .banner__text {
    margin-bottom: 12rem;
  }
}
.banner__text h1 {
  font-weight: 800;
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 4.8rem;
}
@media (max-width: 992px) {
  .banner__text h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
}
@media (max-width: 576px) {
  .banner__text h1 {
    font-size: 2.4rem;
  }
}
.banner__text h1 span {
  font-weight: 800;
  font-size: 6rem;
  line-height: 6rem;
  color: #09e06c;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .banner__text h1 span {
    font-size: 3.6rem;
    line-height: 3.6rem;
  }
}

@media (max-width: 768px) {
  .facts .numberBox {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.facts .numberBox .counter-value,
.facts .numberBox span {
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 3.6rem;
  color: #0c55b8;
  display: inline-block;
}
@media (max-width: 992px) {
  .facts .numberBox .counter-value,
  .facts .numberBox span {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.facts .numberBox p {
  font-weight: 400;
  font-size: 1.8rem;
  color: #0c55b8;
}
@media (max-width: 768px) {
  .facts .numberBox p {
    font-size: 1.5rem;
  }
}
.facts .numberBox h6 {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.8rem;
  padding-bottom: 7px;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 992px) {
  .facts .numberBox h6 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
.facts .numberBox h6::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 0.4rem;
  background-color: #09e06c;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .facts .numberBox h6::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.intro {
  background-color: #edf4f6;
}
.intro__text p {
  font-weight: 300;
  font-size: 2rem;
  line-height: 3.5rem;
}

.features {
  background-color: #edf4f6;
}
.features .feature {
  text-align: center;
  padding: 0 1.8rem;
  border-radius: 1.6rem;
  margin-top: 15rem;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .features .feature {
    background-color: #ffffff;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
  }
}
.features .feature:hover {
  background-color: #ffffff;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
}
.features .feature:hover .feature__icon {
  box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.25);
}
.features .feature__icon {
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  padding: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -25%;
  transition: 0.3s;
}
.features .feature__name {
  font-weight: 600;
  font-size: 2.2rem;
  color: #0378cc;
  margin: 3.4rem 0 1.5rem;
}
.features .feature .btn-primary {
  margin: 4rem 0;
}

.key-factor__row {
  margin-top: 6rem;
}
.key-factor__name {
  font-weight: 600;
  font-size: 3rem;
  line-height: 4.5rem;
  color: #0378cc;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .key-factor__name {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
}

.cta-banner {
  background-image: url("../images/banner-vision.svg");
  background-size: cover;
  height: 64rem;
}
@media (max-width: 767px) {
  .cta-banner {
    height: 30rem;
  }
}

.vision {
  margin-top: -14rem;
}
.vision__box {
  background-color: #0378cc;
  color: #ffffff;
  padding: 4rem 6rem;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .vision__box {
    padding: 2rem;
  }
}
.vision__box-left {
  display: flex;
  align-items: center;
  gap: 3.8rem;
}
@media (max-width: 991px) {
  .vision__box-left {
    gap: 2rem;
  }
}
.vision__box-left img {
  width: 6.4rem;
  height: 6.4rem;
}

.cta {
  padding: 7.7rem 0 5.2rem;
}
.cta p {
  font-size: 2rem;
  line-height: 2rem;
}/*# sourceMappingURL=style.css.map */