@font-face {
  font-family: "WhitneyBook";
  src: url("https://res.cloudinary.com/dba7l52gn/raw/upload/v1709571297/WhitneyBook_mtpriu.otf");
  font-style: normal;
  font-weight: 400;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.zoom-out-up-rev {
  animation: zoomOutUp 0.5s ease-in-out 0.25s forwards;
  animation-delay: 0.25s;
}
@keyframes zoomOutUp {
  0% {
    opacity: 0;
    transform: scale(1) translateY(50px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(-50px);
  }
}
.main-header {
  background-color: #ffffff;
  padding: 10px 0;
  text-align: center;
  /* box-shadow: 2px 1px 12px 15px #00000078; */
  position: relative;
  z-index: 1000;
}
.fixed-header {
  position: fixed;
  top: -1px;
  width: 100%;
  z-index: 1000;
  box-shadow: 2px 1px 12px 15px #00000078;
  padding: 7px 0;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #9a9999;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.lpe {
  display: flex;
  position: relative;
  width: 100%;
}
.logo {
display: block;
position: relative;
}
.phonecall {
  color: white;
  position: relative;
  top: -58px;
  left: -9px;
  font-size: 3vw;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(180deg,#00b5ef 16.2%,#00b5ef 49.18%);
  padding: 6px 10px 6px 10px;
  border-radius: 3px;
  max-width: 36vw;
  margin-left: auto;
}

.mobile_banner_logo {
  text-align: center;
}
.mobile_banner_logo h1 {
  background-color: #f0f0f0;
  font-size: 6.5vw;
  padding: 2.5rem 10px 2.5rem 10px;
  color: #666;
  font-weight: 800;
  box-shadow: 0px 0px 6px 2px rgb(12 12 12 / 14%);
}
.mobile_banner_logo span {
  font-size: 5vw;
  font-weight: 400;
  position: relative;
  top: 8px;
  line-height: 1.4;
}
.mobile_banner_logo h2 {
  font-size: 5.2vw;
  font-weight: bold;
  text-align: center;
  color: white;
  background-image: linear-gradient(
    262deg,
    #021358,
    #db2e61 53%,
    #cc425d 63%,
    #e22530
  );
  padding: 12px 12px 16px 12px;
  margin-top: -5vw;
  font-family: "WhitneyBook" !important;
}
.section1 {
  background: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1733952700/loans_dds0e9.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 65vh;
  color: white;
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 44%);
  z-index: 0;
  overflow: hidden;
}
.intro-list__item ul li::before {
  content: "";
  background-image: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1708366993/check_white_18_yqzggb.svg);
  width: 4vw;
  height: 3vw;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.intro-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.intro-list__item ul {
  list-style: none;
}
.intro-list__item ul li {
  font-size: 4.3vw;
  line-height: 9vw;
}
.intro-list__item,
.call_button,
.rating-container,
.call_button_container {
  z-index: 1;
  position: inherit;
  margin-top: 20px;
}
.call_button_container {
  margin-top: 100px;
}
.call_button_container h2 {
  text-align: center;
  font-size: 3.5vw;
  font-weight: 300;
  position: relative;
  top: 2vw;
}

.call_button {
  background: linear-gradient(45deg, #00b5ef 0%, #0077ff 50%, #00b5ef 100%);
  padding: 9px 0 15px 0;
  border-radius: 5px;
  cursor: pointer !important;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  font-size: 5vw;
  color: white;
  text-shadow: 1px 1px 8px #0000004d;
  animation: button 2s infinite;
  display: flex;
  bottom: 13.5vw;
  max-width: 93vw;
  margin: auto;
  font-family: "WhitneyBook" !important;
  box-shadow: 0px 0px 20px 13px #eeffe54d;
  background-size: 200% auto;
  transition: 0.5s;
}

.call_button:hover {
  background-position: right center;
}

.call_button,
.call_button * {
  font-family: "WhitneyBook" !important;
}
@keyframes button {
  0% {
    transform: translate(-10px);
  }

  5% {
    transform: translate(10px);
  }

  10% {
    transform: translate(-5px);
  }

  15% {
    transform: translate(5px);
  }

  20% {
    transform: translate(0);
  }

  100% {
    transform: translate(0);
  }
}
@media (max-width: 320px) {
  #btn1 {
    bottom: -8vw !important;
  }
  .call_button_container h2 {
    top: 27vw !important;
  }
}
@media (max-width: 375px) {
  #btn1 {
    bottom: 16vw;
  }
  .call_button_container h2 {
    top: 1vw;
  }
  .call_button_container {
    top: -32vw !important;
  }
}
@media (max-width: 390px) {
    .call_button_container h2 {
    top: 32vw !important;
  }
  .call_button_container {
    top: -30vw;
  }
}
@media (max-width: 414px) {
    .call_button_container h2 {
    top: 32vw !important;
  }
  .call_button_container {
    top: -25vw;
  }
}
@media (max-width: 425px) {
    .call_button_container h2 {
    top: 32vw !important;
  }
  .call_button_container {
    top: -25vw;
  }
}
@media (max-width: 428px) {
  #btn1 {
    bottom: -15vw;
  }
  .call_button_container h2 {
    top: 28vw;
  }
}
.rating-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 10vw;
  font-size: 4vw;
}
@media (max-width: 320px) {
  .rating-container {
    top: 23vw !important;
  }
}
@media (max-width: 390px) {
  .rating-container {
    top: 5vw !important;
  }
}
@media (max-width: 375px) {
  body > section.section1 > div.rating-container.zoom-out-up-rev {
    top: 24vw;
  }
}
@media (max-width: 414px) {
  .rating-container {
    top: 5vw !important;
  }
}
@media (max-width: 428px) {
  .rating-container {
    top: 18vw;
  }
}
.trustpilot__container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trustpilot__link {
  display: inline-block;
}
.trustpilot__stars {
  display: inline-block;
  zoom: 0.85;
}
.img-fluid {
  max-width: 50vw;
  height: auto;
  position: relative;
  top: -17px;
}
.section2 {
  padding: 2rem 1rem;
  background-color: whitesmoke;
}
.mt-3 {
  margin-bottom: 30px;
}
.badge_asseenon {
  width: 92vw;
  display: block;
  margin: auto;
}
.section2 h2 {
  text-align: center;
  font-size: 6vw;
  margin-bottom: 1.5rem;
  margin-top: 23px;
}
.whyus {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 92vw;
}
.service-block {
  box-shadow: inset 6vw 0vw 11vw 2vw #43424236 !important;
  border-radius: 4px;
  border: solid 1px #ededed;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.service-block-icon {
  width: 15vw;
}
.service-block-body h4 {
  font-size: 5vw;
  margin-bottom: 0.7rem;
}
.smtxt {
  font-size: 4vw;
}
.mySlides {
  display: none;
  animation: fadeInOut 3s ease-in-out infinite;
}
.slidtext {
  font-size: 5vw;
  text-align: center;
  background-color: #01b67b;
  padding: 20px 0 59px 0;
  color: white;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.02);
}
.imgslides {
  width: 40vw;
  border-radius: 0 0 5px 5px;
  display: block;
  margin: auto;
  position: relative;
  top: 29px;
}
.dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slideactive {
  background-color: #717171;
}
@keyframes fadeInOut {
  0% {
    opacity: 0.6;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.hero-stats-wrapper {
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  display: flex;
  position: relative;
  background: #242f3f;
  color: white;
  padding: 0.1rem 0 1.7rem 1rem;
  text-align: center;
  gap: 1rem;
  width: 100vw;
  left: -17px;
}
.text-color-white {
  font-size: 4vw;
}
.reviews {
  padding-bottom: 3rem;
  margin-top: 1px;
}
.text-center {
  color: #324e37;
  position: relative;
  top: 30px;
  padding: 6px;
  margin-bottom: 60px !important;
}
.accent {
  color: #00a94e;
}

.rate-tab {
  font-size: 10vw;
  color: #737373;
  font-weight: 200;
}
.mdl {
  display: flex;
  gap: 20px;
}
.rev-star {
  font-size: 4vw;
}
.bar-c1,
.bar-c2,
.bar-c3,
.bar-c4,
.bar-c5 {
  width: 60vw;
  background: #f0f0f0;
  position: relative;
  border-radius: 5px;
  height: 6vw;
  margin-bottom: 7px;
}
.bar-1,
.bar-2,
.bar-3,
.bar-4,
.bar-5 {
  height: 6vw;
  background: #1c1c1c;
  border-radius: 5px;
}
.bar-5 {
  width: 80%;
}
.bar-4 {
  width: 10%;
}
.bar-3 {
  width: 3%;
}
.bar-2 {
  width: 1%;
}
.bar-1 {
  width: 6%;
}
.rev-num {
  font-size: 4vw;
}

.testimonial-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.testimonial-box {
  background-color: #ffffff;
  padding: 19px 19px 14px 19px;
  border-radius: 4px;
  box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
  margin: auto;
  margin-top: 8px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1060px) {
  .testimonial-box {
    width: 97%;
  }
}
@media (max-width: 790px) {
  .testimonial-box {
    width: 80%;
  }
}

@media (max-width: 550px) {
  .testimonial-box {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .testimonial-box {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .testimonial-box {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .testimonial-box {
    flex-direction: column;
    justify-content: center;
  }
}
.testimonial-box:nth-child(n + 5) {
  display: none;
}
.profile {
  display: flex;
  align-items: center;
}
.profile-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
  border: 1.6px solid #f0f0f0;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vmark {
  margin: 10px 0px 0px -24px;
  background-image: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1677955009/ezgif-5-d304ed3972_ubmwtk.webp);
  width: 23px;
  height: 23px;
  position: relative;
  top: 22px;
  left: -14px;
  zoom: 0.9;
}
.name-user {
  color: #2c2c2c;
  font-size: 4.5vw;
  font-weight: 600;
  line-height: 22px;
  margin-left: -2px;
}
.stamped-verified-badge {
  color: #009dff;
  font-family: sans-serif;
  margin-left: 7px;
  font-weight: lighter;
  font-style: italic;
}
.age {
  padding: 7px 0px 3px 6px;
  margin: -20.5px 0px 3.5px 65px;
  font-size: 3.5vw;
  color: #696a6a;
}
.flag {
  margin: 10px 0px 0px 3px;
  background-image: url(https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.4.3/flags/4x3/us.svg);
  width: 36px;
  height: 27px;
}
.date {
  padding: 0px 0px 7px 2px;
  margin: 10px 0px 0px 0px;
  font-size: 3.5vw;
  color: #696a6a;
}
.insta {
  padding: 0px 0px 0px 2px;
  margin: 3px 0px 8px 0px;
  font-size: 3.5vw;
  color: #696a6a;
}
.adress {
  padding: 0px 0px 0px 1px;
  margin: 4px 0px 0px 0px;
  font-size: 3.5vw;
  color: #696a6a;
  line-height: 21px;
}
.stars {
  padding: 10px 0px 15px 5px;
  margin: 0px 0px 0px 0px;
  border-bottom: 1.2px solid #f0f0f0;
}
.readMoreInit {
  font-size: 4vw;
  font-weight: 400;
  line-height: 6.5vw;
  color: #333333;
  margin: 12px 2px 0px 2px;
}
.btnllink {
  text-align: center;
  display: block;
}
.arrow_animated {
  animation: bounce 1s infinite ease-in-out;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.partially-visible {
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
  height: 55vh;
  overflow: hidden;
}
.show-more {
  background: linear-gradient(to bottom, #bfbfbfd6, #fdfdfd);
  width: 93vw;
  text-align: center;
  padding: 9px 0px 7px 0;
  font-size: 4.5vw;
  box-shadow: 0rem -1rem 1rem 0rem #00000033;
  position: relative;
  top: -37px;
  color: #0d6efc;
  font-weight: bold;
}
.show-more.show-all {
  height: auto; /* Remove height restriction */
  overflow: visible; /* Show all content */
}

.partially-visible.hidden {
  opacity: 1;
  height: auto;
  overflow: hidden;
}
.testimonial-reply-box {
  background-color: #f1f1e9;
  padding: 6px 6px 9px 6px;
  margin: 9px 2px 5px -4px;
  border-radius: 4px;
  border: 1.8px solid #f0f0f0;
  width: 84vw;
}
.reply-profile-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
  border: 1.6px solid #f0f0f0;
}

.reply-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.support-name-user {
  color: #2c2c2c;
  font-size: 4.5vw;
  font-weight: bold;
  line-height: 22px;
}
.support-date {
  padding: 0px 0px 0px 2px;
  margin: 12.5px 0px 8.5px 0px;
  font-size: 3.5vw;
  color: #696a6a;
}
.phone {
  padding: 0px 0px 0px 2px;
  margin: 3px 0px 8px 0px;
  font-size: 3.5vw;
  color: #696a6a;
}
.celebration {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.celebration img {
  width: 35vw;
  margin-top: 36px;
}
.celebration p {
  font-size: 4.6vw;
  text-align: center;
  padding: 12px 24px 12px 24px;
}
.team_ {
  margin-top: 1rem;
  flex-direction: column;
  display: flex;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  top: 21px;
}
.warn {
  position: relative;
  top: 5px;
}
.loan-features-container {
  width: 94vw;
  margin: 45px 0 0px -6px;
  padding: 20px;
  background: linear-gradient(to bottom, #a7fac4, #f3fcdb);
  border-radius: 4px;
  box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
}

.loan-features-list {
  list-style: none;
  padding: 0;
  margin-left: -7px;
}

.loan-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.loan-feature-item-icon {
  font-size: 5vw;
  color: #009f05;
  margin-right: 8px;
  position: relative;
  top: 25px;
}

.check-icon {
  position: relative;
  top: 23px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
  left: 5px;
}
.check-icon::after {
  content: "";
  display: block;
  width: 13px;
  height: 4px;
  border-left: 2px solid #25be01;
  border-bottom: 2px solid #25be01;
  position: absolute;
  top: 14px;
  left: 4px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.loan-feature-item-title {
  font-size: 5vw;
  margin: 0;
  margin-top: 25px;
  color: #00b1e9;
  text-align: left;
}
.loan-feature-item-description {
  margin: 10px 0 0;
  color: #555;
  font-size: 4vw;
  text-align: left;
  margin-bottom: 20px;
}

.badges {
  width: 36vw;
  display: block;
  margin: auto;
}
.section3 {
  background: #01b67b;
  box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
}
.service-block-g {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}
.service-block-g img {
  width: 36vw;
  position: relative;
  top: -8px;
}
.service-block-body-g h4 {
  font-size: 5.5vw;
  margin-bottom: 0.7rem;
  color: white;
  position: relative;
  top: -15px;
}

.service-block-body-g p {
  font-size: 4.2vw;
  color: white;
  text-align: left;
  position: relative;
  left: 6px;
  top: -10px;
}
.process-section {
  border-radius: 4px;
  padding: 20px;
  margin: 15px auto;
  width: 94vw;
  box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
  margin-top: 40px;
}
.row {
  display: flex;
  flex-direction: column; /* Stack the items vertically */
  align-items: center; /* Center-align the items */
  margin: 0 auto; /* Center the row itself */
  gap: 20px; /* Add spacing between steps */
}

.row > * {
  width: 92vw; /* Make each step take the full width */
  max-width: 600px; /* Optionally limit the width of each step */
  padding: 10px;
  box-sizing: border-box;
}
.process-step {
  text-align: center;
  color: white;
  padding: 20px 14px 20px 14px;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #252f40; /* Example background color */
}
.process-step h5 {
  margin-bottom: 10px;
  font-size: 5vw;
  color: #fff;
}
.process-step p {
  margin-bottom: 0;
  font-size: 4vw;
  opacity: 0.9;
  color: #fff;
}
.step-number {
  width: 40px;
  height: 40px;
  background: #fff; /* Contrast with step background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  color: #1c4d9b; /* Match the main step background */
}
.faq-section {
  width: 94vw;
  margin: 25px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
  border-radius: 4px;
}
.faq-title {
  text-align: center;
  font-size: 5vw;
  margin-bottom: 20px;
  font-weight: bold;
  color: #00b1e9;
}
.faq {
  border-bottom: 1px solid #ddd;
  padding: 27px 0;
  cursor: pointer;
}
.faq-question {
  font-size: 4.5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq.open .faq-question span {
  transform: rotate(180deg);
}

.faq-question span {
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  font-size: 4vw;
  margin-top: 10px;
  color: #555;
}
.faq.open .faq-answer {
  display: block;
}
.faq:last-child {
  border-bottom: none;
}

.sc-fd6ec366-5 {
  background-color: #fff;
  padding: 24px 20px;
  text-align: center;
  width: 94vw;
  box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
  display: block;
  margin-bottom: 3rem !important;
  margin: auto;
}
.sc-kAyceB {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sc-kAyceB {
    font-size: 6vw;
    position: relative;
    top: -14px;
  }
}

.partner-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 logos per row */
  gap: 20px;
  justify-items: center;
}

.partner-content img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.partner-content img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.partner-content .sc-gFqAkR {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
  display: block;
  position: relative;
  top: -45px;
}

.partner-content {
  grid-template-columns: repeat(
    2,
    1fr
  ); /* 2 logos per row on smaller screens */
}

.partner-content img {
  width: 60%;
  max-width: 119px;
  position: relative;
  top: -25px;
}

#btn2 {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  animation: none;
  border-radius: 0;
  margin-top: 10px;
  max-width: 100vw;
}

#fomo {
  z-index: 9999;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 44%);
  border-radius: 5px;
  background-color: #fff;
  position: fixed;
  bottom: -100%;
  left: 10px;
  width: 95vw;
  border: 8x solid white;
  padding: 10px 4px;
  transition: all 1000ms;
  align-items: center;
  display: grid !important;
  grid-template-columns: 50px auto;
  gap: 1rem;
}

.location,
.user_name,
.from,
.Boked {
  font-size: 4vw;
  color: #045282;
}
.loanAmount {
  color: green;
  font-weight: 600;
}

.user_name {
  font-weight: bold;
}

#fomo.is-visible {
  bottom: 14vw;
}

#fomo .product_image {
  height: auto;
}

.product_image {
  border-radius: 25px;
  position: relative;
  left: 11px;
}

#fomo .wrapper {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  position: relative;
  left: 8px;
}

#fomo .wrapper .product_name {
  font-weight: 600;
  text-decoration: none;
  color: #00bf42;
  line-height: 2;
}

.time {
  position: relative;
  top: 3px;
  font-size: 3.5vw;
  padding-bottom: 3px;
}

#fomo .wrapper .amount {
  font-weight: bold;
}

#footer {
  background-color: #f4f4f9;
  padding: 20px 0;
  font-size: 3vw;
}
.container-f {
  max-width: 1140px;
  margin: 0 auto;
}
.text-muted {
  color: #6c757d;
  font-size: 3vw;
  position: relative;
  top: -20px;
  text-align: center;
}
.row-f {
  display: flex;
}
.col-sm-12,
.col-xs-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.logo-f {
  margin-bottom: 15px;
}
.logo-f img {
  max-width: 32vw;
  height: auto;
  position: relative;
  left: -9px;
  top: 7px;
  margin-bottom: 6px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 38px;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 11px;
  text-decoration: underline;
  position: relative;
  left: 10px;
  color: #00b1e9;
  padding: 7px;
  top: 2px;
}
.footer-links a {
  color: #00b1e9;
  text-decoration: none;
  font-size: 3.2vw;
}
.footer-links a:hover {
  text-decoration: underline;
}