@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;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
header#header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background: rgba(7, 24, 34, 0.5);
  backdrop-filter: blur(5px);
  z-index: 100;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024.98px) {
  header#header {
    height: 74px;
  }
}
@media screen and (max-width: 575.98px) {
  header#header > .container {
    padding: 0 20px;
  }
}
header#header.hide {
  transform: translateY(-100%);
}
header#header .header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
  flex: 0 0 220px;
}
@media screen and (max-width: 1024.98px) {
  header#header .header-logo {
    width: calc(122px + 1.5rem);
    flex: 0 0 calc(122px + 1.5rem);
  }
}
header#header .header-logo img {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1024.98px) {
  header#header .header-logo img {
    max-height: 32px;
    width: auto;
  }
}
header#header .header-logo a {
  color: #FFFFFF;
  text-decoration: none;
}
header#header .header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 220px);
  flex: 0 0 calc(100% - 220px);
}
@media screen and (max-width: 1024.98px) {
  header#header .header-menu {
    width: calc(100% - 122px - 1.5rem);
    flex: 0 0 calc(100% - 122px - 1.5rem);
  }
}
header#header .header-menu .nav-wrap {
  width: 100%;
}
header#header .header-menu .nav-wrap ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  header#header .header-menu .nav-wrap ul li {
    display: none;
  }
}
header#header .header-menu .nav-wrap ul li.phones {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  header#header .header-menu .nav-wrap ul li.phones {
    display: flex;
  }
}
header#header .header-menu .nav-wrap ul li.phones > a {
  background-color: #FFFFFF;
  color: #3D434A;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  width: 56px;
  flex: 0 0 56px;
  height: 56px;
  font-size: 0;
  border-radius: 50%;
  background-image: url(../images/phone.svg);
  background-size: 17px 17px;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.2s linear;
  opacity: 1;
}
@media screen and (max-width: 767.98px) {
  header#header .header-menu .nav-wrap ul li.phones > a {
    width: 40px;
    flex: 0 0 40px;
    height: 40px;
  }
}
header#header .header-menu .nav-wrap ul li.phones > a:hover {
  background-color: #52DCB6;
}
header#header .header-menu .nav-wrap ul li.phones > a.show + .sub-menu {
  opacity: 1;
  visibility: visible;
  display: flex;
}
header#header .header-menu .nav-wrap ul li.phones .sub-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  min-width: 280px;
  height: auto;
  padding: 12px;
  background: #E0F8F1;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
@media screen and (max-width: 767.98px) {
  header#header .header-menu .nav-wrap ul li.phones .sub-menu {
    left: unset;
    right: -4px;
    transform: unset;
  }
}
header#header .header-menu .nav-wrap ul li.phones .sub-menu:before {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 3px;
  background: #52DCB6;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  header#header .header-menu .nav-wrap ul li.phones .sub-menu:before {
    left: unset;
    transform: translateX(0) rotate(45deg);
  }
}
header#header .header-menu .nav-wrap ul li.phones .sub-menu:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E0F8F1;
  border-radius: 16px;
  z-index: 1;
}
header#header .header-menu .nav-wrap ul li.phones .sub-menu li {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 2;
}
header#header .header-menu .nav-wrap ul li.phones .sub-menu a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #3D434A;
  letter-spacing: 1.5%;
  padding: 15px 15px;
  font-size: 16px;
  line-height: 20px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  text-transform: none;
  text-decoration: none;
}
header#header .header-menu .nav-wrap ul li.phones .sub-menu a:hover {
  background: #52DCB6;
}
header#header .header-menu .nav-wrap ul li.phones .sub-menu a:active, header#header .header-menu .nav-wrap ul li.phones .sub-menu a:focus {
  background: #FFFFFF;
}
header#header .header-menu .nav-wrap ul li.button {
  margin-left: 20px;
  padding: 0;
}
header#header .header-menu .nav-wrap ul li.button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3D434A;
  height: 56px;
  width: auto;
  padding: 0 30px;
  min-width: 178px;
  border-radius: 99px;
  background: #FFC107;
  border: 1px solid #FFC107;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s linear;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 500;
  min-width: 178px;
  text-transform: capitalize;
  border-radius: 99px;
}
header#header .header-menu .nav-wrap ul li.button a:hover {
  background: #FFD930;
  border-color: #FFD930;
  color: #3D434A;
}
header#header .header-menu .nav-wrap ul li.current-menu-item a {
  color: #52DCB6;
}
header#header .header-menu .nav-wrap ul li a {
  color: #FFFFFF;
  padding: 12px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  header#header .header-menu .nav-wrap ul li a {
    padding: 12px 9px;
  }
}
header#header .header-menu .nav-wrap ul li a:hover {
  color: #52DCB6;
}

footer#footer {
  background: #071822;
  padding: 54px 0 86px;
}
footer#footer > .container > .row {
  align-items: center;
}
@media screen and (max-width: 991.98px) {
  footer#footer .col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100%;
  }
}
footer#footer .col.logo {
  width: 190px;
  max-width: 190px;
}
footer#footer .col.logo img {
  max-width: 160px;
}
footer#footer .col.menu {
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  footer#footer .col.menu {
    margin-bottom: 34px;
  }
}
footer#footer .col.menu ul {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  footer#footer .col.menu ul li {
    width: 100%;
  }
}
footer#footer .col.menu ul li.phone {
  position: relative;
}
footer#footer .col.menu ul li.phone a {
  padding-left: 30px;
}
footer#footer .col.menu ul li.phone a:after, footer#footer .col.menu ul li.phone a:before {
  position: absolute;
  top: 3px;
  left: 0;
  content: url(../images/phone-green.svg);
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
footer#footer .col.menu ul li.phone a:after {
  content: url(../images/phone-green-light.svg);
  display: none;
}
footer#footer .col.menu ul li.phone a:hover:before {
  display: none;
}
footer#footer .col.menu ul li.phone a:hover:after {
  display: block;
}
footer#footer .col.menu a {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #52DCB6;
  transition: all 0.1s linear;
  text-decoration: none;
}
footer#footer .col.menu a:hover {
  color: #E0F8F1;
}
footer#footer .col.socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  width: 190px;
  max-width: 190px;
}
@media screen and (max-width: 991.98px) {
  footer#footer .col.socials {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}
footer#footer .col.socials a:hover svg path {
  fill: #52DCB6;
}
footer#footer .col.socials a svg {
  width: auto;
  height: 25px;
}
footer#footer .col.socials a svg path {
  transition: all 0.2s linear;
}
footer#footer .copyright {
  padding-top: 24px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.8;
}
@media screen and (max-width: 991.98px) {
  footer#footer .copyright {
    margin-bottom: 46px;
  }
}

.section-2_blocks_with_image {
  position: relative;
  background: #FFFFFF;
  padding: 148px 0 132px;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image {
    padding: 100px 0 60px;
  }
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    background: #071822;
    z-index: 1;
  }
}
.section-2_blocks_with_image > .container {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 575.98px) {
  .section-2_blocks_with_image > .container {
    padding: 0 40px;
  }
}
.section-2_blocks_with_image > .container > .row {
  align-items: center;
}
.section-2_blocks_with_image .text-block {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image .text-block {
    font-size: 18px;
  }
}
.section-2_blocks_with_image .text-block h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000000;
  line-height: 1.2;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image .text-block h2 {
    font-size: 36px;
  }
}
.section-2_blocks_with_image .text-block p {
  margin-bottom: 15px;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image .text-block p br {
    display: none;
  }
}
.section-2_blocks_with_image .text-block p:last-child {
  margin-bottom: 0;
}
.section-2_blocks_with_image .text-block .actions {
  display: flex;
  gap: 16px 10px;
  margin-top: 60px;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image .text-block .actions {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .section-2_blocks_with_image .text-block .actions {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.section-2_blocks_with_image .text-block .actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3D434A;
  height: 56px;
  width: auto;
  padding: 0 30px;
  min-width: 178px;
  border-radius: 99px;
  background: #FFC107;
  border: 1px solid #FFC107;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s linear;
  background: #FFFFFF;
  border-color: #071822;
  padding: 0 26px;
  white-space: nowrap;
}
.section-2_blocks_with_image .text-block .actions a:hover {
  background: #FFD930;
  border-color: #FFD930;
  color: #3D434A;
}
.section-2_blocks_with_image .text-block .actions a:hover {
  background: #52DCB6;
  border-color: #52DCB6;
}
.section-2_blocks_with_image .text-block .actions a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3D434A;
  height: 56px;
  width: auto;
  padding: 0 30px;
  min-width: 178px;
  border-radius: 99px;
  background: #FFC107;
  border: 1px solid #FFC107;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s linear;
  background: #071822;
  border-color: #071822;
  padding: 0 26px;
  color: #FFFFFF;
}
.section-2_blocks_with_image .text-block .actions a:first-child:hover {
  background: #FFD930;
  border-color: #FFD930;
  color: #3D434A;
}
.section-2_blocks_with_image .text-block .actions a:first-child:hover {
  background: #52DCB6;
  border-color: #52DCB6;
}
.section-2_blocks_with_image .image-block {
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image .image-block {
    margin-bottom: 100px;
  }
}
.section-2_blocks_with_image .image-block .image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  width: calc(100% - 74px);
  margin-left: 74px;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image .image-block .image-wrap {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .section-2_blocks_with_image .image-block .image-wrap {
    aspect-ratio: 0.78;
  }
}
.section-2_blocks_with_image .image-block .image-wrap img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.section-2_blocks_with_image .image-block .label {
  position: absolute;
  left: 0;
  bottom: 63px;
  background: #52DCB6;
  padding: 24px 35px 23px 30px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 400;
  color: #0B212D;
  width: auto;
  display: inline-block;
}
@media screen and (max-width: 991.98px) {
  .section-2_blocks_with_image .image-block .label {
    bottom: -55px;
    left: unset;
    right: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .section-2_blocks_with_image .image-block .label {
    width: calc(100% - 60px);
  }
}
.section-2_blocks_with_image .image-block .label .value {
  font-family: "Abhaya Libre", serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -3%;
}

.section-calculator {
  position: relative;
  background: #071822;
  padding: 178px 0 97px;
}
@media screen and (max-width: 991.98px) {
  .section-calculator {
    padding: 138px 0 192px;
  }
}
.section-calculator > .container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 575.98px) {
  .section-calculator > .container {
    padding: 0 20px;
  }
}
.section-calculator .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  z-index: 0;
}
.section-calculator .bg-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44%;
  background: linear-gradient(0deg, #071822 0%, rgba(7, 24, 34, 0) 100%);
}
.section-calculator .bg-image img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.section-calculator .before_title {
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 20%;
  color: #52DCB6;
  margin-bottom: 10px;
}
.section-calculator h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media screen and (max-width: 991.98px) {
  .section-calculator h2 {
    font-size: 36px;
    max-width: 360px;
    margin: 0 auto;
  }
}
.section-calculator .calculator-wrapp {
  position: relative;
  background: #F5F6F6;
  border-radius: 16px;
  margin-top: 144px;
  padding: 32px 32px 32px 75px;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .calculator-wrapp {
    padding: 20px 20px 200px;
  }
}
.section-calculator .calculator-wrapp .title {
  font-size: 36px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 26px;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .calculator-wrapp .title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 18px;
  }
}
.section-calculator .form-wrapp {
  padding-top: 18px;
  padding-bottom: 35px;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .form-wrapp .inner {
    padding: 20px;
    border: 1px solid #9EA1A4;
    border-radius: 16px;
  }
}
.section-calculator .field-x2 {
  display: flex;
  align-items: center;
  gap: 15px 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .field-x2 {
    flex-wrap: wrap;
    gap: 10px 0;
  }
}
.section-calculator .field-x2 + .title {
  border-top: 1px solid #9EA1A4;
  padding-top: 18px;
}
.section-calculator .field-x2 input, .section-calculator .field-x2 select {
  width: calc(50% - 5px);
  height: 56px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  border-radius: 16px;
  border: 1px solid #52DCB6;
  outline: none;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .field-x2 input, .section-calculator .field-x2 select {
    width: 100%;
    order: 2;
  }
}
.section-calculator .field-x2 select {
  background: #52DCB6;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.section-calculator .field-x2 label {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .field-x2 label {
    font-size: 16px;
    width: 100%;
    order: 1;
  }
}
.section-calculator .text {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
}
.section-calculator .actions {
  display: flex;
  justify-content: flex-start;
  gap: 15px 10px;
  flex-wrap: wrap;
  padding: 10px;
}
.section-calculator .actions button {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  background: #FFFFFF;
  border-radius: 99px;
  border: 1px solid #D8D9DB;
  transition: all 0.2s linear;
  width: auto;
  height: 56px;
  padding: 0 30px;
}
@media screen and (max-width: 1199.98px) {
  .section-calculator .actions button {
    height: 50px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 991.98px) {
  .section-calculator .actions button {
    padding: 0 30px;
  }
}
.section-calculator .actions button:hover {
  background: #E0F8F1;
  border-color: #E0F8F1;
}
.section-calculator .actions button.active {
  background: #52DCB6;
  border-color: #52DCB6;
}
.section-calculator .result-wrapp {
  background: #52DCB6;
  background-image: url(../images/dots-bg.svg);
  background-repeat: no-repeat;
  background-position: center 90%;
  background-size: 100% auto;
  padding: 38px 32px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .result-wrapp {
    position: absolute;
    width: calc(100% - 40px);
    height: 380px;
  }
}
.section-calculator .result-wrapp .result {
  display: inline-block;
  width: auto;
  position: relative;
  font-family: "Abhaya Libre", serif;
  font-size: 128px;
  font-weight: 500;
  line-height: 1;
  color: #071822;
  margin-bottom: 0;
}
@media screen and (max-width: 1299.98px) {
  .section-calculator .result-wrapp .result {
    font-size: 110px;
  }
}
@media screen and (max-width: 1199.98px) {
  .section-calculator .result-wrapp .result {
    font-size: 90px;
  }
}
@media screen and (max-width: 991.98px) {
  .section-calculator .result-wrapp .result {
    font-size: 72px;
    line-height: 90px;
  }
}
.section-calculator .result-wrapp .result:after {
  position: absolute;
  top: 100%;
  right: 0;
  padding-right: 8px;
  content: "Your Savings";
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #071822;
  text-align: right;
}
@media screen and (max-width: 991.98px) {
  .section-calculator .result-wrapp .result:after {
    text-align: center;
    padding: 0;
    width: 100%;
    line-height: 1;
  }
}

.section-faq.simple {
  background: #FFFFFF;
  padding: 108px 0 134px;
}
@media screen and (max-width: 991.98px) {
  .section-faq.simple {
    padding: 45px 0 75px;
  }
}
@media all and (min-width: 1200px) {
  .section-faq.simple > .container {
    max-width: 1072px;
  }
}
@media print {
  .section-faq.simple > .container {
    max-width: 1072px;
  }
}
@media screen and (max-width: 575.98px) {
  .section-faq.simple > .container {
    padding: 0 40px;
  }
}
.section-faq.simple .before_title {
  text-align: center;
  margin-bottom: 10px;
}
.section-faq.simple h2 {
  text-align: center;
  margin-bottom: 60px;
}
.section-faq.simple .accordion-button {
  padding: 20px 42px 20px 0;
}
.section-faq.has-image {
  background: #071822;
}
@media screen and (max-width: 767.98px) {
  .section-faq.has-image > .container {
    padding: 0 20px;
  }
}
.section-faq.has-image > .container .inner_container {
  position: relative;
  margin-top: -143px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 92px 75px 75px;
  max-width: calc(1320px - 1.5rem);
  z-index: 1;
}
@media screen and (max-width: 991.98px) {
  .section-faq.has-image > .container .inner_container {
    padding: 44px 20px 40px;
  }
}
@media screen and (max-width: 1199.98px) {
  .section-faq.has-image > .container h2 {
    font-size: 46px;
  }
}
@media screen and (max-width: 991.98px) {
  .section-faq.has-image > .container h2 {
    font-size: 36px;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 991.98px) {
  .section-faq.has-image > .container h2 br {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .section-faq.has-image .accordion-button {
    font-size: 20px;
    line-height: 28px;
  }
}
.section-faq.has-image .accordion-button svg {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.section-faq.has-image .accordion-body {
  padding-left: 45px;
}
.section-faq .before_title {
  font-size: 15px;
  font-weight: 400;
  color: #52DCB6;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media screen and (max-width: 991.98px) {
  .section-faq .before_title {
    margin-bottom: 15px;
  }
}
.section-faq h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #071822;
}
@media screen and (max-width: 991.98px) {
  .section-faq h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991.98px) {
  .section-faq h2 br {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .section-faq .faq-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.68;
  }
}
.section-faq .faq-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991.98px) {
  .section-faq .faq-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
}
.section-faq .accordion-item {
  border: 1px solid #D6DDE4;
  border-left: none;
  border-right: none;
}
.section-faq .accordion-item:not(:last-child) {
  border-bottom: none;
}
.section-faq .accordion-button {
  position: relative;
  font-size: 22px;
  font-weight: 400;
  color: #071822;
  line-height: 32px;
  padding: 20px 42px 20px 45px;
  background: #FFFFFF;
  box-shadow: none;
  outline: none;
}
.section-faq .accordion-button:before, .section-faq .accordion-button:after {
  position: absolute;
  top: 36px;
  right: 0;
  content: "";
  display: block;
  width: 20px;
  height: 1.3px;
  background: #52DCB6;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s linear;
}
@media screen and (max-width: 991.98px) {
  .section-faq .accordion-button:before, .section-faq .accordion-button:after {
    top: 50%;
    transform: translateY(-50%);
  }
}
.section-faq .accordion-button:after {
  transform: rotate(90deg);
}
.section-faq .accordion-button:not(.collapsed):after {
  opacity: 0;
  visibility: hidden;
  transform: rotate(0);
}
.section-faq .accordion-body {
  padding: 0 52px 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: #071822;
  line-height: 1.6;
}
.section-faq .accordion-body p {
  margin-bottom: 15px;
}
.section-faq .accordion-body p:last-child {
  margin-bottom: 0;
}

.section-hero-home {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 168px 0 228px;
}
@media screen and (max-width: 991.98px) {
  .section-hero-home {
    padding: 124px 0 50px;
  }
}
.section-hero-home > .container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 575.98px) {
  .section-hero-home > .container {
    padding: 0 40px;
  }
}
.section-hero-home > .container > .row {
  align-items: center;
}
.section-hero-home img.featured_image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-position: center center;
  object-fit: cover;
  width: 100.01%;
  height: 100.01%;
}
.section-hero-home .content {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  max-width: 380px;
}
@media screen and (max-width: 991.98px) {
  .section-hero-home .content {
    margin-bottom: 60px;
    max-width: 100%;
  }
}
.section-hero-home .content p:last-child {
  margin-bottom: 0;
}

.section-review_gallery {
  background: #071822;
  padding: 100px 0 169px;
  max-width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  .section-review_gallery {
    padding: 100px 0 80px;
  }
}
.section-review_gallery[data-current_review="0"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="0"] [data-id="0"] {
  display: block;
}
.section-review_gallery[data-current_review="1"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="1"] [data-id="1"] {
  display: block;
}
.section-review_gallery[data-current_review="2"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="2"] [data-id="2"] {
  display: block;
}
.section-review_gallery[data-current_review="3"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="3"] [data-id="3"] {
  display: block;
}
.section-review_gallery[data-current_review="4"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="4"] [data-id="4"] {
  display: block;
}
.section-review_gallery[data-current_review="5"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="5"] [data-id="5"] {
  display: block;
}
.section-review_gallery[data-current_review="6"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="6"] [data-id="6"] {
  display: block;
}
.section-review_gallery[data-current_review="7"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="7"] [data-id="7"] {
  display: block;
}
.section-review_gallery[data-current_review="8"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="8"] [data-id="8"] {
  display: block;
}
.section-review_gallery[data-current_review="9"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="9"] [data-id="9"] {
  display: block;
}
.section-review_gallery[data-current_review="10"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="10"] [data-id="10"] {
  display: block;
}
.section-review_gallery[data-current_review="11"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="11"] [data-id="11"] {
  display: block;
}
.section-review_gallery[data-current_review="12"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="12"] [data-id="12"] {
  display: block;
}
.section-review_gallery[data-current_review="13"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="13"] [data-id="13"] {
  display: block;
}
.section-review_gallery[data-current_review="14"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="14"] [data-id="14"] {
  display: block;
}
.section-review_gallery[data-current_review="15"] [data-id] {
  display: none;
}
.section-review_gallery[data-current_review="15"] [data-id="15"] {
  display: block;
}
@media screen and (max-width: 575.98px) {
  .section-review_gallery > .container {
    padding: 0 40px;
  }
}
.section-review_gallery .image-block {
  position: relative;
  z-index: 2;
}
.section-review_gallery .image-block .image-wrap {
  position: absolute;
  top: 58px;
  width: 100%;
  height: calc(100% - 58px - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
.section-review_gallery .image-block .image-wrap img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.section-review_gallery .image-block .slide-arrows {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: calc(100% - 94px - 48px);
  color: #52DCB6;
  font-size: 13px;
  letter-spacing: 21%;
  text-align: right;
}
.section-review_gallery .image-block .slide-arrows .counters {
  margin-right: 30px;
}
.section-review_gallery .image-block .slide-arrows button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  padding: 5px 10px;
  margin: 0;
}
.section-review_gallery .image-block .slide-arrows button:hover svg path {
  fill: #E0F8F1;
}
.section-review_gallery .image-block .slide-arrows button[disabled] {
  cursor: default;
}
.section-review_gallery .image-block .slide-arrows button[disabled] svg path {
  fill: #FFFFFF;
}
.section-review_gallery .image-block .slide-arrows button svg path {
  fill: #52DCB6;
  transition: all 0.2s linear;
}
.section-review_gallery .review-block {
  position: relative;
  z-index: 1;
}
.section-review_gallery .review-block .review-wrap {
  position: relative;
  width: calc(100% + 94px + 0.75rem);
  transform: translateX(calc(-94px - 0.75rem));
  background: #FFFFFF;
  border-radius: 16px;
  padding: 75px 75px 95px 163px;
}
@media screen and (max-width: 991.98px) {
  .section-review_gallery .review-block .review-wrap {
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: unset;
    transform: unset;
    overflow: hidden;
  }
}
@media screen and (max-width: 767.98px) {
  .section-review_gallery .review-block .review-wrap {
    overflow: visible;
  }
}
@media screen and (max-width: 767.98px) {
  .section-review_gallery .review-block .review-wrap .owl-stage-outer {
    overflow: visible;
  }
}
.section-review_gallery .review-block .review-wrap .owl-stage {
  display: flex;
  align-items: stretch;
}
.section-review_gallery .review-block .review-wrap .owl-dots {
  position: absolute;
  top: 360px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 19px;
  z-index: 3;
}
@media screen and (max-width: 767.98px) {
  .section-review_gallery .review-block .review-wrap .owl-dots {
    top: 40%;
  }
}
@media screen and (max-width: 575.98px) {
  .section-review_gallery .review-block .review-wrap .owl-dots {
    top: calc((100vw - 80px) * 0.48);
  }
}
.section-review_gallery .review-block .review-wrap .owl-dots .owl-dot {
  display: block;
  width: 9px;
  height: 9px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.section-review_gallery .review-block .review-wrap .owl-dots .owl-dot.active {
  width: 19px;
  height: 19px;
  background: #52DCB6;
}
.section-review_gallery .review-block .review-wrap .item {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  .section-review_gallery .review-block .review-wrap .item {
    height: 100%;
  }
}
.section-review_gallery .review-block .review-wrap .image_review {
  display: flex;
  aspect-ratio: 1.75;
  overflow: hidden;
}
.section-review_gallery .review-block .review-wrap .image_review img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.section-review_gallery .review-block .review-wrap .item-content {
  padding: 33px 15px 30px;
}
.section-review_gallery .review-block .review-wrap .title {
  font-size: 48px;
  font-weight: 400;
  color: #071822;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199.98px) {
  .section-review_gallery .review-block .review-wrap .title {
    font-size: 38px;
  }
}
@media screen and (max-width: 991.98px) {
  .section-review_gallery .review-block .review-wrap .title {
    font-size: 24px;
  }
}
.section-review_gallery .review-block .review-wrap .review {
  font-size: 16px;
  font-weight: 400;
  color: #071822;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .section-review_gallery .review-block .review-wrap .review {
    padding-bottom: 100px;
    margin-bottom: 0;
  }
}
.section-review_gallery .review-block .meta {
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .section-review_gallery .review-block .meta {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 15px;
  }
}
.section-review_gallery .review-block .meta .author {
  width: calc(100% - 176px);
  font-size: 15px;
  font-weight: 400;
  color: #071822;
}
@media screen and (max-width: 767.98px) {
  .section-review_gallery .review-block .meta .author {
    width: calc(100% - 115px);
  }
}
.section-review_gallery .review-block .meta .author .username {
  font-weight: 600;
}
.section-review_gallery .review-block .meta .data {
  width: 176px;
}
@media screen and (max-width: 767.98px) {
  .section-review_gallery .review-block .meta .data {
    width: 115px;
  }
}
.section-review_gallery .review-block .meta .data .rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 4px 0;
  margin-bottom: 10px;
}
.section-review_gallery .review-block .meta .data .posted_on {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #071822;
}
.section-review_gallery .review-block .meta .data .posted_on .posted_on-logo {
  margin-top: 8px;
}
.section-review_gallery .review-block .meta .data .posted_on .posted_on-logo img {
  height: 21px;
  width: auto;
}
.section-review_gallery .actions {
  margin-top: 40px;
}
@media screen and (max-width: 991.98px) {
  .section-review_gallery .actions {
    text-align: center;
    margin-top: 20px;
  }
}
.section-review_gallery .actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3D434A;
  height: 56px;
  width: auto;
  padding: 0 30px;
  min-width: 178px;
  border-radius: 99px;
  background: #FFC107;
  border: 1px solid #FFC107;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s linear;
  padding: 0 36px;
}
.section-review_gallery .actions a:hover {
  background: #FFD930;
  border-color: #FFD930;
  color: #3D434A;
}

.section-reviews_multy_blocks {
  position: relative;
  padding: 144px 0 0;
  background: #071822;
}
@media screen and (max-width: 991.98px) {
  .section-reviews_multy_blocks {
    padding: 50px 0 0;
  }
}
.section-reviews_multy_blocks:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 73px;
  background: #FFFFFF;
  z-index: 1;
}
@media screen and (max-width: 991.98px) {
  .section-reviews_multy_blocks:after {
    display: none;
  }
}
.section-reviews_multy_blocks > .container {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 575.98px) {
  .section-reviews_multy_blocks > .container {
    padding: 0 40px;
  }
}
.section-reviews_multy_blocks .before_title {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 20%;
  color: #52DCB6;
  margin-bottom: 27px;
}
@media screen and (max-width: 991.98px) {
  .section-reviews_multy_blocks .before_title {
    text-align: left;
  }
}
.section-reviews_multy_blocks h2 {
  text-align: center;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 auto 68px;
  max-width: 860px;
}
@media screen and (max-width: 991.98px) {
  .section-reviews_multy_blocks h2 {
    text-align: left;
    font-size: 36px;
    max-width: 300px;
    margin-left: unset;
    margin-right: unset;
  }
}
.section-reviews_multy_blocks .item-block {
  padding-left: 10px;
  padding-right: 10px;
}
.section-reviews_multy_blocks .item-block > div {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.section-reviews_multy_blocks .blocks {
  gap: 20px 0;
}
.section-reviews_multy_blocks .image_review,
.section-reviews_multy_blocks .image_saving {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  .section-reviews_multy_blocks .image_review,
  .section-reviews_multy_blocks .image_saving {
    aspect-ratio: 0.88;
  }
}
.section-reviews_multy_blocks .image_review img,
.section-reviews_multy_blocks .image_saving img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.section-reviews_multy_blocks .reviews {
  position: relative;
  background: #52DCB6;
}
.section-reviews_multy_blocks .reviews:before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  display: block;
  width: 100px;
  height: 62px;
  background: url(../images/comments.svg) no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.section-reviews_multy_blocks .reviews .item {
  position: relative;
  padding: 84px 20px 119px;
}
.section-reviews_multy_blocks .reviews .text_review {
  font-family: "Abhaya Libre", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #071822;
}
.section-reviews_multy_blocks .reviews .owl-stage-outer {
  height: 100%;
}
.section-reviews_multy_blocks .reviews .owl-dots {
  position: absolute;
  bottom: 73px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 19px;
  z-index: 1;
}
.section-reviews_multy_blocks .reviews .owl-dots .owl-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #071822;
  border: 1px solid #071822;
  transition: all 0.2s linear;
}
.section-reviews_multy_blocks .reviews .owl-dots .owl-dot.active {
  width: 19px;
  height: 19px;
  background: transparent;
}
.section-reviews_multy_blocks .reviews .meta_review {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: auto;
  font-size: 12px;
  font-weight: 500;
}
.section-reviews_multy_blocks .reviews .meta_review img {
  width: 77px;
  height: auto;
}
.section-reviews_multy_blocks .block_saving {
  background: #E0F8F1;
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (max-width: 991.98px) {
  .section-reviews_multy_blocks .block_saving {
    aspect-ratio: 0.88;
  }
}
.section-reviews_multy_blocks .block_saving .before {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #071822;
  margin-bottom: 12px;
}
.section-reviews_multy_blocks .block_saving .after {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #071822;
  margin-bottom: 0;
}
.section-reviews_multy_blocks .block_saving .total_saving {
  font-family: "Abhaya Libre", serif;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -3%;
  line-height: 1;
  color: #071822;
  margin-bottom: 21px;
}

.section-steps {
  padding: 124px 0 0;
  background: #071822;
}
@media screen and (max-width: 991.98px) {
  .section-steps {
    padding: 50px 0 50px;
  }
}
@media screen and (max-width: 575.98px) {
  .section-steps > .container {
    padding: 0 40px;
  }
}
.section-steps .header {
  margin-bottom: 76px;
}
@media screen and (max-width: 991.98px) {
  .section-steps .header {
    margin-bottom: 40px;
  }
}
.section-steps .header h2 {
  font-size: 58px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media screen and (max-width: 991.98px) {
  .section-steps .header h2 {
    font-size: 36px;
    max-width: 320px;
  }
}
.section-steps .header h2 span {
  color: #52DCB6;
  white-space: nowrap;
}
.section-steps .header .section-title {
  max-width: calc(100% - 360px);
}
@media screen and (max-width: 991.98px) {
  .section-steps .header .section-title {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 40px;
  }
}
.section-steps .header .section-description {
  max-width: 360px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (max-width: 991.98px) {
  .section-steps .header .section-description {
    max-width: 100%;
    flex: 0 0 100%;
    font-size: 24px;
  }
}
.section-steps .items {
  margin-bottom: 56px;
  gap: 30px 0;
}
@media screen and (max-width: 991.98px) {
  .section-steps .items {
    margin-bottom: 40px;
  }
}
.section-steps .items .item {
  position: relative;
  background: #0D2736;
  padding: 52px 40px 53px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  .section-steps .items .item {
    padding-bottom: 92px;
  }
}
.section-steps .items .item-head {
  display: flex;
}
.section-steps .items .item-head .head {
  width: calc(100% - 48px);
  margin-bottom: 20px;
}
@media screen and (max-width: 991.98px) {
  .section-steps .items .item-head .head {
    margin-bottom: 30px;
  }
}
.section-steps .items .item-head .head .label {
  display: inline-block;
  width: auto;
  height: auto;
  background: #E0F8F1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 8px 15px;
  border-radius: 99px;
  color: #071822;
  margin-bottom: 15px;
}
.section-steps .items .item-head .head h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 0;
}
.section-steps .items .item-head .icon {
  width: 48px;
}
.section-steps .items .description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #D0E9E3;
}
.section-steps .items .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #52DCB6;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 40px;
  color: #071822;
  text-align: center;
}
.section-steps .actions {
  text-align: center;
}
.section-steps .actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3D434A;
  height: 56px;
  width: auto;
  padding: 0 30px;
  min-width: 178px;
  border-radius: 99px;
  background: #FFC107;
  border: 1px solid #FFC107;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s linear;
}
.section-steps .actions a:hover {
  background: #FFD930;
  border-color: #FFD930;
  color: #3D434A;
}

.widget-hero {
  max-width: 484px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 991.98px) {
  .widget-hero {
    max-width: 100%;
  }
}
.widget-hero .widget-body {
  background: #52DCB6;
  padding: 37px 32px 40px;
}
@media screen and (max-width: 991.98px) {
  .widget-hero .widget-body {
    padding: 37px 25px 22px;
  }
}
.widget-hero .widget-footer {
  background: #071822;
  padding: 24px 32px 40px;
}
.widget-hero h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .widget-hero h2 {
    font-size: 18px;
  }
}
.widget-hero .input-field {
  position: relative;
  display: flex;
  gap: 10px;
  width: 100%;
  flex: 0 0 100%;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .widget-hero .input-field {
    margin-bottom: 16px;
  }
}
.widget-hero .input-field .symbol {
  color: #52DCB6;
}
.widget-hero .input-field input {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #071822;
  border-radius: 12px;
  background: #FFFFFF;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
.widget-hero .input-field input:first-letter {
  color: #52DCB6;
}
.widget-hero .table-wrap {
  padding: 0 24px;
}
@media screen and (max-width: 991.98px) {
  .widget-hero .table-wrap {
    padding: 0;
  }
}
.widget-hero .table-wrap.saved {
  margin-bottom: 24px;
}
.widget-hero .table-wrap.saved table {
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (max-width: 991.98px) {
  .widget-hero .table-wrap.saved table {
    font-size: 20px;
  }
}
.widget-hero .table-wrap.saved table tr td:last-child {
  text-align: right;
}
.widget-hero .table-wrap table {
  border: none;
  width: 100%;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  color: #071822;
}
@media screen and (max-width: 991.98px) {
  .widget-hero .table-wrap table {
    font-size: 16px;
  }
}
@media screen and (max-width: 575.98px) {
  .widget-hero .table-wrap table {
    font-size: 15px;
  }
}
.widget-hero .table-wrap table tr td {
  padding: 2px 0;
}
.widget-hero .actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.widget-hero .actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3D434A;
  height: 56px;
  width: auto;
  padding: 0 30px;
  min-width: 178px;
  border-radius: 99px;
  background: #FFC107;
  border: 1px solid #FFC107;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s linear;
}
.widget-hero .actions a:hover {
  background: #FFD930;
  border-color: #FFD930;
  color: #3D434A;
}
@media screen and (max-width: 575.98px) {
  .widget-hero .actions a {
    padding: 0 28px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #071822;
  line-height: 1.5;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 24px;
}
@media screen and (max-width: 1399.98px) {
  h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 1199.98px) {
  h1 {
    font-size: 48px;
  }
}

#wpadminbar {
  position: fixed !important;
}

/*# sourceMappingURL=styles.css.map */
