/* Base Style CSS Start */

/* Fonts */

/* Roboto Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Gilroy Font */

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Thin.ttf);
  font-weight: 200;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts//Gilroy-Regular.ttf);
  font-weight: 400;
}

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

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-ExtraBold.ttf);
  font-weight: 800;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Black.ttf);
  font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy";
  scroll-behavior: smooth;
}

:root {
  --primary: #ff0000;
  --secondary: #161c2d;
  --white: #ffffff;
  --black: #000000;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
  color: var(--secondary);
}

p {
  font-size: 18px;
  font-weight: 500;
  line-height: 168%;
  letter-spacing: -0.2px;
  color: var(--black);
  opacity: 0.7;
}

p a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}

p a:hover {
  color: var(--secondary);
}

.primary-btn a {
  display: block;
  width: 160px;
  font-size: 17px;
  font-weight: 600;
  line-height: 188%;
  letter-spacing: -0.6px;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.primary-btn a:hover {
  background: var(--secondary);
}

.section-spacing {
  padding: 100px 0;
}

.container {
  padding: 0 20px;
}

/* Base Style CSS End */

/* Header Part CSS Start */

/* Navigation Section CSS Start */

.navbar {
  padding: 30px 0;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  z-index: 999;
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
}

@keyframes sticky {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

.main-menu ul li {
  padding: 20px 0;
  padding-right: 20px;
  position: relative;
}

.main-menu ul li:last-child {
  padding-right: 0;
}

.main-menu ul li a {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  padding: 14px 20px;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li a:hover {
  color: var(--white);
  background: var(--primary);
}

/* .main-menu ul li a.active {
  color: var(--primary);
  padding-bottom: 4px;
  border-bottom: 5px solid var(--primary);
} */

.main-menu ul li a:focus,
.main-menu ul li a:active {
  color: var(--white);
  background: var(--primary);
}

.dropdown {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: #f9f9f9;
  box-shadow: 0px 3px 4px 1px rgb(0 0 0 / 60%);
  display: none;
  z-index: 999;
}

.main-menu ul li:focus-within,
.main-menu ul li:hover > .dropdown {
  display: initial;
}

.dropdown li {
  padding: 0 !important;
  border-bottom: 1px solid var(--white);
}

.dropdown li a {
  display: block;
  font-family: "Roboto", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--secondary) !important;
  padding: 16px 0;
  padding-left: 30px;
  transition: all 0.3s ease-in-out;
}

.dropdown li a.active {
  color: var(--white) !important;
  background: var(--primary);
}

.dropdown li a:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* Navigation Section CSS End */

/* Mobile Navigation Section CSS Start */

#Mobile-menu {
  background: var(--white);
}

#Mobile-menu.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
}

@keyframes sticky {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

.mobile-menu-wrapper {
  padding: 20px;
}

.bars {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.bars:hover {
  color: var(--primary);
}

.bar-icon {
  font-size: 20px;
  padding-right: 9px;
}

.bars span {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mobile-logo {
  max-width: 135px;
}

.mobile-call a span {
  font-size: 25px;
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.mobile-call a span:hover {
  color: var(--primary);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  padding: 30px 0;
  background: var(--white);
  overflow-x: hidden;
  overflow-y: scroll;
  transition: left 0.3s ease-in-out;
  z-index: 999;
}

.mobile-nav.active {
  left: 0;
}

.mobile-main-menu ul li {
  margin-left: 0;
}

.mobile-main-menu ul li a {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--secondary);
  padding: 13px 15px;
  transition: all 0.3s ease-in-out;
}

.mobile-main-menu ul li > a.m-active,
.mobile-main-menu ul li > a:hover {
  color: var(--primary) !important;
}

.sub-menu {
  background: #f9f9f9;
  display: none;
}

.sub-menu a {
  font-family: "Roboto", sans-serif;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--secondary);
  padding-left: 30px !important;
  border-bottom: 2px solid var(--white);
}

.sub-menu a:hover {
  color: var(--white) !important;
  background: var(--secondary);
}

.sub-btn i {
  font-size: 16px;
}

.sub-btn.active {
  color: var(--white) !important;
  background: var(--primary) !important;
}

.sub-btn.active:hover {
  color: var(--white) !important;
}

.fa-minus {
  display: none;
  padding-top: 8px;
}

.sub-btn.active .fa-plus {
  display: none;
}

.sub-btn.active .fa-minus {
  display: block;
}

#cross-icon {
  display: flex;
  justify-content: end;
  padding-right: 15px;
}

#cross-icon i {
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#cross-icon i:hover,
#cross-icon i:focus,
#cross-icon i:active {
  color: var(--primary);
}

.mobile-menu-bottom {
  padding: 30px 12px 0 20px;
}

.mobile-menu-bottom ul li a {
  font-size: 20px;
  color: #a1aeb7;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-bottom ul li a:hover {
  color: var(--primary) !important;
}

.mobile-menu-bottom ul li {
  width: initial;
  padding-right: 30px;
}

.mobile-menu-bottom > ul {
  display: flex;
  flex-direction: row;
  padding-bottom: 15px;
}

.mobile-menu-bottom p {
  font-size: 14px;
  color: #7b7b7b;
  margin-bottom: 0;
}

.mobile-menu-bottom p a {
  font-weight: 400;
  color: #7b7b7b;
  text-decoration: underline;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-bottom p a:hover {
  color: var(--primary) !important;
}

.mobile-privacy-menu ul li {
  padding: 0;
  padding-bottom: 10px;
}

.mobile-privacy-menu ul li a {
  font-size: 16px;
  text-decoration: underline !important;
  color: #7b7b7b;
}

/* Mobile Navigation Section CSS End */

/* Hero Section CSS Start */

.hero-container {
  padding: 113px 0;
  border-radius: 10px;
}

.hero-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0d17;
  border-radius: 10px;
  z-index: -1;
}

.home-hero-container {
  background: url(../images/home-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 650px;
  margin: auto;
  text-align: center;
}

.hero-content h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  color: #f4f7fa;
  margin: 0;
}

.hero-content h1 {
  font-size: 65px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white);
  padding: 20px 0;
  margin-bottom: 20px;
}

/* Hero Section CSS End */

/* Header Part CSS End */

/* Main Part CSS Start */

/* Experts Section CSS Start */

.experts-title {
  max-width: 700px;
  margin: auto;
}

.experts-container {
  max-width: 850px;
  margin: auto;
  padding-top: 50px;
}

.experts-content p a {
  font-weight: 500;
}

/* Experts Section CSS End */

/* Preferred Section CSS Start */

.preferred-wrapper {
  background: #f8f8f8;
}

.preferred-top {
  max-width: 720px;
  margin: auto;
}

.preferred-top p {
  font-weight: 400;
  padding-top: 10px;
}

.preferred-brands {
  max-width: 870px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 52px;
  padding: 50px 0 60px;
}

/* Preferred Section CSS End */

/* Services Section CSS Start */

.services-top h2 {
  max-width: 770px;
  margin: auto;
  text-align: center;
}

.services-top p {
  max-width: 850px;
  margin: auto;
  text-align: center;
  padding-top: 15px;
}

.service-card {
  margin-top: 60px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  box-shadow: 0px 4px 3px 0px #979797;
}

.services-card-img img {
  max-width: 100%;
  width: 100%;
  max-height: 200px;
  height: 100%;
  border-radius: 10px;
}

.service-card-content {
  padding: 20px 10px 0;
}

.service-card-content h5 {
  font-size: 21px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: var(--black);
}

.service-card-content p {
  font-size: 17px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: -0.2px;
  color: var(--black);
  opacity: 0.7;
}

.learn-more-btn a {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 188%;
  letter-spacing: -0.6px;
  text-decoration-line: underline;
  color: var(--primary);
  padding-left: 10px;
  padding-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.learn-more-btn a:hover {
  color: var(--secondary);
}

.learn-more-btn a i {
  padding-left: 20px;
}

/* Services Section CSS End */

/* Guarantee Section CSS Start */

.guarantee-wrapper {
  background: var(--secondary);
}

.guarantee-container {
  max-width: 1000px;
  margin: auto;
}

.guarantee-content {
  max-width: 450px;
}

.guarantee-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 119%;
  color: var(--white);
}

.guarantee-content p {
  font-size: 19px;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.2px;
  color: var(--white);
  opacity: 0.9;
}

.guarantee-buttons a:hover {
  color: var(--secondary);
  background: var(--white);
}

.guarantee-content span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.2px;
  color: var(--white);
  opacity: 0.9;
  padding-top: 40px;
}

/* Guarantee Section CSS End */

/* Review Section CSS Start */

.review-wrapper {
  background: #f8f8f8;
}

.review-top {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.review-top p {
  padding-top: 15px;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: var(--secondary);
  opacity: 0.7;
}

.review-card {
  padding: 30px;
  margin-top: 40px;
  background: var(--white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #e7e9ed;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.review-card:hover {
  box-shadow: 0px 4px 3px 0px #979797;
}

.review-content h5 {
  font-size: 21px;
  font-weight: 500;
  line-height: 152%;
  letter-spacing: -0.5px;
  color: var(--secondary);
  margin-bottom: 0;
}

.star i {
  color: #fbbc02;
}

.client-name h6 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #737373;
  padding-top: 5px;
}

.client-name span {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: var(--secondary);
  opacity: 0.7;
}

/* Review Section CSS End */

/* Specialise Section CSS Start */

.specialise-top {
  max-width: 730px;
  margin: auto;
  text-align: center;
}

.specialise-top p {
  padding-top: 15px;
  font-weight: 600;
  margin-bottom: 0;
}

.specialise-cards {
  max-width: 730px;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.specialise-card img {
  width: 100%;
  max-height: 238px;
  height: 100%;
  border-radius: 10px;
}

.specialise-card a {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.6px;
  text-decoration-line: underline;
  color: var(--primary);
  margin-top: 30px;
}

.specialise-card a i {
  font-size: 18px;
  padding-left: 10px;
}

/* Specialise Section CSS End */

/* Work Section CSS Start */

.work-wrapper {
  background: #f8f8f8;
}

.work-top {
  max-width: 725px;
  margin: auto;
  text-align: center;
}

.work-top p {
  font-weight: 400;
  color: var(--secondary);
  padding-top: 15px;
  opacity: 0.7;
}

.work-card {
  margin-top: 40px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.work-card:hover {
  box-shadow: 0px 4px 3px 0px #979797;
}

.work-card-img img {
  width: 100%;
  max-height: 198px;
  height: 100%;
  border-radius: 10px;
}

.step-tag {
  position: absolute;
  top: 8px;
  left: 0;
}

.step-tag span {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
  color: var(--white);
  background: var(--black);
  padding: 10px 15px;
  border-radius: 10px 0 10px 0;
}

.work-card-content {
  padding: 30px 10px 10px;
}

.work-card-content h5 {
  font-size: 21px;
  font-weight: 700;
  line-height: 152%;
  letter-spacing: -0.5px;
  color: var(--secondary);
}

.work-card-content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 171%;
  letter-spacing: -0.2px;
  color: var(--black);
  opacity: 0.7;
  margin: 0;
}

/* Work Section CSS End */

/* FAQ Section CSS Start */

.faq-wrapper {
  background: var(--secondary);
}

.faq-content {
  max-width: 450px;
}

.faq-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 121%;
  letter-spacing: -1.8px;
  color: var(--white);
  margin-bottom: 25px;
}

.faq-content p {
  font-size: 19px;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.2px;
  color: var(--white);
  opacity: 0.65;
  margin-bottom: 0;
}

.accordion-container {
  position: relative;
  background: var(--white);
  padding: 10px 30px 30px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  z-index: 10;
}

.accordion-item {
  border: 1px solid #979797;
}

.accordion-item:last-child {
  margin-bottom: 20px;
}

.accordion-button {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--secondary);
  padding: 25px 0;
}

.accordion-button::after {
  background-image: url(../images/chevron-down-icon.svg);
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  background: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--white);
  background: var(--primary) !important;
  padding: 25px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/chevron-up-icon.svg);
  transform: initial;
}

.accordion-body {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.accordion-body p {
  font-size: 17px;
  font-weight: 500;
  line-height: 129%;
  letter-spacing: -0.2px;
  color: var(--secondary);
  opacity: 0.7;
  padding: 10px 0;
  margin-bottom: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-pagination-fraction {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  bottom: -5px;
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  top: initial;
  bottom: -14px;
  z-index: 11;
  transition: all 0.3s ease-in-out;
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover i,
.swiper-button-next:hover i {
  color: var(--primary);
}

.swiper-button-prev {
  left: 15px;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 20px;
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.swiper-button-prev i {
  margin-right: 7px;
}

.swiper-button-next i {
  margin-left: 7px;
}

/* FAQ Section CSS End */

/* Main Part CSS End */

/* Footer Part CSS Start */

.footer-menu h6 {
  font-weight: 700;
  font-size: 15px;
  line-height: 173%;
  letter-spacing: -0.1px;
  color: var(--secondary);
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-nav {
  padding-top: 10px;
}

.footer-nav ul li {
  padding: 7px 0;
}

.footer-nav ul li a {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.2px;
  text-decoration: underline;
  color: #181f32;
  transition: all 0.3s ease-in-out;
}

.footer-nav ul li a:hover {
  color: var(--primary);
}

.footer-wrapper hr {
  margin: 30px 0;
  border-top: 1px solid #e7e9ed;
  opacity: 1;
}

.footer-copyright p,
.footer-copyright p a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--secondary) !important;
  margin-bottom: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.footer-copyright p a:hover {
  color: var(--primary) !important;
}

.footer-social ul li {
  padding-left: 28px;
}

.footer-social ul li a i {
  font-size: 20px;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}

.footer-social ul li a i:hover,
.footer-social ul li a i:active {
  color: var(--primary) !important;
}

/* Footer Part CSS End */

/* ============***===========
About Us Page CSS
============***=========== */

/* About Us Hero Section CSS Start */

.about-hero-container {
  background: url(../images/about-us-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* About Us Hero Section CSS End */

.about-experts-title {
  max-width: 800px;
  margin: auto;
}

.about-preferred-wrapper,
.about-review-wrapper {
  background: var(--white);
}

.about-specialise-wrapper {
  background: #f8f8f8;
}

/* Your Needs Section CSS Start */

.your-needs-wrapper {
  background: #f8f8f8;
}

.your-needs-top {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.your-needs-top h2 {
  max-width: 540px;
  margin: auto;
  text-align: center;
  padding-bottom: 20px;
}

.your-needs-card {
  height: 100%;
  padding: 30px;
  background: var(--white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #e7e9ed;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.your-needs-card:hover {
  box-shadow: 0px 4px 3px 0px #979797;
}

.your-needs-card h6 {
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary);
}

.your-needs-card p {
  font-size: 19px;
  font-weight: 500;
  line-height: 168%;
  color: var(--secondary);
  margin-bottom: 0;
}

.pt-30 {
  padding-top: 30px;
}

/* Your Needs Section CSS End */

/* Client Needs Section CSS Start */

.client-needs-top h2 {
  max-width: 650px;
  margin: auto;
  text-align: center;
}

.client-needs-top p {
  max-width: 750px;
  margin: auto;
  text-align: center;
  padding-top: 20px;
}

.client-needs-card-container {
  max-width: 690px;
  margin: auto;
  padding-top: 50px;
}

.client-needs-card ol li {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary);
  list-style: initial;
  padding: 3px 0;
}

/* Client Needs Section CSS End */

/* ===============***==============
Debt Collection Services  Page CSS
===============***============== */

/* Services Hero Section CSS Start */

.services-hero-container {
  background: url(../images/services-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Services Hero Section CSS End */

.services-work-wrapper {
  background: var(--white);
}

/* ===============***==============
Commercial Debt Collection Page CSS
===============***============== */

/* Commercial Debt Collection Hero Section CSS Start */

.cdc-hero-container {
  background: url(../images/commercial-debt-collection-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Commercial Debt Collection Hero Section CSS End */

/* What Section CSS Start */

.what-container {
  max-width: 730px;
  margin: auto;
  padding-top: 15px;
}

.what-container p {
  padding-top: 5px;
}

/* What Section CSS End */

/* ===============***==============
Debt Collection Page CSS
===============***============== */

/* Debt Collection Hero Section CSS Start */

.dc-hero-container {
  background: url(../images/debt-collection-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Debt Collection Hero Section CSS End */

/* ===============***==============
Debt Collector Page CSS
===============***============== */

/* Debt Collector Hero Section CSS Start */

.dcollector-hero-container {
  background: url(../images/debt-collector-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Debt Collector Hero Section CSS End */

/* ===============***==============
Debt Recovery Page CSS
===============***============== */

/* Debt Recovery Hero Section CSS Start */

.dr-hero-container {
  background: url(../images/debt-recovery-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Debt Recovery Hero Section CSS End */

/* ===============***==============
Personal Debt Collection Page CSS
===============***============== */

/* Personal Debt Collection Hero Section CSS Start */

.pdc-hero-container {
  background: url(../images/personal-debt-collection-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Personal Debt Collection Hero Section CSS End */

/* ===============***==============
Small Business Debt Collection Page CSS
===============***============== */

/* Small Business Debt Collection Hero Section CSS Start */

.sbdc-hero-container {
  background: url(../images/small-business-debt-collection-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Small Business Debt Collection Hero Section CSS End */

/* ===============***==============
Debt Collection Agency Page CSS
===============***============== */

/* Debt Collection Agency Hero Section CSS Start */

.dca-hero-container {
  background: url(../images/home-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Debt Collection Agency Hero Section CSS End */

/* ==========***=========
Hobart Page CSS
==========***========= */

/* Hobart Hero Section CSS Start */

.hobart-hero-container {
  background: url(../images/hobart-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Hobart Hero Section CSS End */

/* ==========***=========
Launceston Page CSS
==========***========= */

/* Launceston Hero Section CSS Start */

.launceston-hero-container {
  background: url(../images/launceston-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Launceston Hero Section CSS End */

/* =========***========
Contact Us Page CSS
=========***======== */

/* Contact Us Hero Section CSS Start */

.contact-hero-container {
  background: url(../images/contact-us-hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Contact Us Hero Section CSS End */

.contact-review-wrapper {
  background: var(--white);
}

.contact-specialise-wrapper {
  background: #f8f8f8;
}

/* Contact Form Section CSS Start */

.contact-form-wrapper {
  background: var(--secondary);
  padding: 60px 0 80px;
  margin-top: 70px;
}

.contact-title h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}

.contact-from,
.contact-info-cards {
  max-width: 696px;
  width: 100%;
  margin: auto;
  padding-top: 40px;
}

.contact-input-field label {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding-bottom: 5px;
}

.contact-input-field input,
.contact-input-field textarea {
  width: 100%;
  padding: 10px 0 10px 15px;
  margin-bottom: 20px;
  border: 2px solid #646974;
  border-radius: 6px;
}

.contact-input-field input:focus,
.contact-input-field textarea:focus {
  outline: 0;
}

.contact-from ::placeholder {
  font-size: 16px;
  color: var(--dark);
}

.submit-btn button {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  padding: 17px;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: 8px;
}

.contact-bottom-container {
  max-width: 750px;
  margin: auto;
  padding: 80px 0;
}

.contact-bottom-card h2 {
  text-align: left;
  margin-bottom: 30px;
}

.contact-bottom-card p,
.contact-bottom-card ol li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--black);
  opacity: 1;
}

.contact-bottom-card p span {
  font-weight: 700;
}

.contact-bottom-card p a {
  font-weight: 400;
}

.contact-bottom-card ol {
  padding-left: 20px;
}

.contact-bottom-card ol li {
  list-style: initial;
}

.radio input {
  width: initial;
}

/* Contact Form Section CSS End */

/* =======***======
Error Page CSS
=======***====== */

/* Error Section CSS Start */

.error-wrapper {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding: 50px 0;
}

.back-home-btn a {
  width: 200px;
}

/* Error Section CSS End */

embed {
  height: 100vh;
}
