@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --font-work-sans: "Work Sans", sans-serif;
  --font-inter-sans: "Inter", sans-serif;
  --black: #000000;
  --service-card: #F3F3F1;
  --service-card-text: #00000099;
  --bs-primary: #5937E0;
  --bs-secondary: #FF9E0C;
  --white: #FFFFFF;
  --choose-the-car-card: #FAFAFA;
  --rts-primary: #f9ca00;
}

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

html {
  scroll-behavior: smooth;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
}
.navbar {
  padding: 10px;
}
.navbar .navbar-brand {
  max-width: 189px;
  width: 100%;
}
.navbar .navbar-nav {
  margin-left: auto;
  justify-content: flex-start;
  width: 65%;
  gap: 12px;
}
.navbar .navbar-nav .nav-link {
  font-size: 18px;
  line-height: 100%;
  font-family: var(--font-inter-sans);
  color: var(--black);
  font-weight: 500;
}
.navbar .navbar-nav .nav-link.active {
  font-weight: 700;
}
.navbar .phone-button-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar .phone-button-container img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.navbar .phone-button-container span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-work-sans);
  color: var(--black);
}
.navbar .phone-button-container a {
  color: var(--black);
  font-family: var(--font-work-sans);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .navbar .navbar-nav {
    width: auto;
    margin-left: inherit;
  }
}

.banner-section .content {
  position: relative;
  min-height: 660px;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .content .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.banner-section .content .heading-sec {
  position: relative;
  margin-top: 4rem;
}
.banner-section .content .heading-sec h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-work-sans);
}
.banner-section .content .heading-sec p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-work-sans);
  color: var(--white);
  max-width: 550px;
  width: 100%;
  margin: 27px 0 0 0;
  width: 100%;
  max-width: 464px;
}
.banner-section .content .card {
  border-radius: 20px;
  max-width: 416px;
  margin-left: auto;
}
.banner-section .content .card::before {
  content: "";
  background: url("./assets/image/car-banner-new.png");
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  z-index: 1;
  top: 30%;
}
.banner-section .content .card .card-body {
  padding: 40px;
}
.banner-section .content .card .card-body form fieldset legend {
  text-align: center;
  font-family: var(--font-work-sans);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 40px;
}
.banner-section .content .card .card-body form fieldset .form-select,
.banner-section .content .card .card-body form fieldset .form-control {
  background: var(--choose-the-car-card);
  padding: 9px 16px;
  border-radius: 12px;
  color: var(--black);
}
.banner-section .content .card .card-body form fieldset button {
  background: var(--bs-secondary);
  color: var(--white);
  display: inline-block;
  width: 100%;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: var(--font-inter-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  border: 0;
}
@media (max-width: 1399px) {
  .banner-section .content .heading-sec h2 {
    font-size: 45px;
  }
  .banner-section .content .heading-sec p {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .banner-section .content .heading-sec {
    margin-top: 0;
  }
  .banner-section .content .card {
    max-width: 100%;
    margin-left: auto;
  }
  .banner-section .content .card::before {
    display: none;
  }
  .banner-section .content .card .card-body {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .banner-section .content .heading-sec h2 {
    text-align: center;
  }
  .banner-section .content .heading-sec p {
    text-align: center;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .banner-section .content {
    padding: 2rem;
  }
  .banner-section .content .heading-sec h2 {
    font-size: 30px;
  }
  .banner-section .content .heading-sec p {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .banner-section .content {
    padding: 1rem 10px;
  }
  .banner-section .content .card .card-body {
    padding: 10px;
  }
}

.card-section {
  padding-block: 3rem;
}
.card-section .card {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-section .card img {
  width: 64px;
  height: 64px;
}
.card-section .card .card-body {
  padding: 1rem 2.5rem;
  text-align: center;
}
.card-section .card .card-body .card-title {
  font-family: var(--font-work-sans);
  color: var(--black);
  font-size: 24px;
  line-height: 100%;
  font-weight: 600;
}
.card-section .card .card-body .card-text {
  font-family: var(--font-inter-sans);
  color: var(--black);
  font-size: 16px;
  font-weight: 24px;
}
@media (max-width: 1399px) {
  .card-section .card .card-body {
    padding: 1rem;
  }
}
@media (max-width: 1199px) {
  .card-section .card .card-body img {
    width: 50px;
    height: 50px;
  }
  .card-section .card .card-body .card-title {
    font-size: 20px;
  }
  .card-section .card .card-body .card-text {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .card-section {
    padding-block: 2rem;
  }
}

.content-block {
  padding-block: 2rem;
}
.content-block:has(.heading-sec) {
  padding-block: 4rem;
}
.content-block .heading-sec {
  width: 100%;
  margin: 0 auto 40px auto;
}
.content-block .heading-sec h2 {
  text-align: start;
  font-size: 50px;
  line-height: 100%;
  color: var(--black);
  font-family: var(--font-work-sans);
  font-weight: 700;
}
.content-block .content ul {
  padding: 0;
  margin: 0;
}
.content-block .content ul li {
  list-style: none;
  margin-bottom: 28px;
}
.content-block .content ul li:last-child {
  margin-bottom: 0;
}
.content-block .content ul li .chip-erapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.content-block .content ul li .chip-erapper .chip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rts-primary);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-work-sans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-block .content ul li .chip-erapper h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  line-height: 100%;
  font-family: var(--font-work-sans);
  margin: 0;
}
.content-block .content ul li p {
  font-family: var(--font-work-sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--service-card-text);
  margin-top: 1rem;
  margin-bottom: 0;
}
.content-block .img-wrapper {
  display: flex;
  justify-content: start;
}
.content-block .img-wrapper img {
  border-radius: 20px;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .content-block:has(.heading-sec) {
    padding-block: 2rem;
  }
  .content-block .content ul li {
    margin-bottom: 18px;
  }
  .content-block .content ul li .chip-erapper .chip {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
  .content-block .content ul li .chip-erapper h3 {
    font-size: 18px;
  }
  .content-block .content ul li p {
    font-size: 15px;
    margin-top: 7px;
  }
}
@media (max-width: 991px) {
  .content-block .img-wrapper {
    justify-content: center;
  }
  .content-block .img-wrapper img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .content-block .heading-sec h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .content-block .heading-sec {
    margin: 0 auto 30px auto;
  }
  .content-block .heading-sec h2 {
    font-size: 30px;
  }
}

.services-section {
  padding-block: 4rem;
}
.services-section .heading-sec {
  width: 100%;
  max-width: 671px;
  margin: 0 auto 60px auto;
}
.services-section .heading-sec h2 {
  text-align: center;
  font-size: 50px;
  line-height: 100%;
  color: var(--black);
  font-family: var(--font-work-sans);
  font-weight: 700;
}
.services-section .card {
  overflow: hidden;
  border-radius: 20px 20px 0px 0px;
  background: var(--service-card);
  border: 0;
}
.services-section .card .card-body {
  padding: 2rem;
}
.services-section .card .card-body .card-title {
  font-family: var(--font-work-sans);
  color: var(--black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.services-section .card .card-body .card-text {
  color: var(--service-card-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--font-work-sans);
  margin-bottom: 48px;
}
.services-section .card .card-body a {
  line-height: 25px;
  text-transform: capitalize;
  font-size: 15px;
  font-family: var(--font-work-sans);
  color: var(--bs-primary);
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 767px) {
  .services-section .heading-sec {
    margin: 0 auto 40px auto;
  }
  .services-section .heading-sec h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .services-section {
    padding-block: 2rem;
  }
  .services-section .heading-sec {
    margin: 0 auto 30px auto;
  }
  .services-section .heading-sec h2 {
    font-size: 30px;
  }
  .services-section .card .card-body {
    padding: 1rem;
  }
}

.btn-section .btn {
  background: var(--bs-secondary);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--font-work-sans);
}

.choose-the-car-section {
  padding-block: 4rem;
}
.choose-the-car-section .heading-sec {
  margin-bottom: 40px;
}
.choose-the-car-section .heading-sec h2 {
  font-weight: 700;
  font-family: var(--font-work-sans);
  color: var(--black);
  font-size: 50px;
  line-height: 100%;
}
.choose-the-car-section .heading-sec a {
  font-family: var(--font-work-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.choose-the-car-section .heading-sec a svg {
  width: 24px;
  height: 24px;
}
.choose-the-car-section .card-container .card {
  padding: 1rem;
  background: var(--choose-the-car-card);
  border-radius: 16px;
  border: 0;
}
.choose-the-car-section .card-container .card .img-wrapper {
  height: 192px;
  width: 100%;
  margin-bottom: 10px;
}
.choose-the-car-section .card-container .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.choose-the-car-section .card-container .card .card-body {
  padding: 0;
}
.choose-the-car-section .card-container .card .card-body .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-work-sans);
  color: var(--black);
  font-weight: 700;
  font-size: 19px;
  line-height: 100%;
  margin: 0;
}
.choose-the-car-section .card-container .card .card-body .card-title .price {
  color: var(--bs-primary);
}
.choose-the-car-section .card-container .card .card-body .model-and-days {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-work-sans);
}
.choose-the-car-section .card-container .card .card-body .model-and-days span {
  font-size: 13px;
  font-weight: 400;
  color: var(--service-card-text);
}
.choose-the-car-section .card-container .card .card-body .features-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  font-family: var(--font-work-sans);
  margin: 30px 0;
}
.choose-the-car-section .card-container .card .card-body .features-container .feature {
  display: flex;
  align-items: center;
  gap: 5px;
}
.choose-the-car-section .card-container .card .card-body .features-container .feature svg {
  width: 18.55px;
  height: 18.55px;
}
.choose-the-car-section .card-container .card .card-body .features-container .feature span {
  font-size: 13px;
  font-weight: 400;
  color: var(--service-card-text);
}
.choose-the-car-section .card-container .card .card-body a {
  background: var(--bs-primary);
  color: var(--white);
  border-radius: 10px;
  width: 100%;
  padding: 10px 22px;
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-inter-sans);
}
@media (max-width: 1199px) {
  .choose-the-car-section .heading-sec {
    margin-bottom: 30px;
  }
  .choose-the-car-section .heading-sec h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .choose-the-car-section {
    padding-block: 2rem;
  }
  .choose-the-car-section .heading-sec {
    margin-bottom: 20px;
  }
  .choose-the-car-section .heading-sec h2 {
    font-size: 30px;
    text-align: center;
  }
  .choose-the-car-section .heading-sec a {
    margin: auto;
    font-size: 18px;
  }
  .choose-the-car-section .heading-sec a svg {
    width: 20px;
    height: 20px;
  }
}

.fact-in-number-section {
  margin-block: 4rem;
}
.fact-in-number-section .content {
  position: relative;
  min-height: 486px;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fact-in-number-section .content .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.fact-in-number-section .content .heading-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fact-in-number-section .content .heading-sec h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: var(--font-work-sans);
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
}
.fact-in-number-section .content .heading-sec p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  font-family: var(--font-work-sans);
  max-width: 720px;
  width: 100%;
}
.fact-in-number-section .content .card-container {
  position: relative;
  margin-bottom: 3rem;
}
.fact-in-number-section .content .card-container .card {
  border: 0;
  border-radius: 20px;
  margin: 0 1rem;
}
.fact-in-number-section .content .card-container .card .card-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.fact-in-number-section .content .card-container .card .card-body .icon-box {
  background: var(--bs-secondary);
  color: var(--white);
  width: 72px;
  height: 68px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fact-in-number-section .content .card-container .card .card-body h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-work-sans);
  margin: 0;
}
.fact-in-number-section .content .card-container .card .card-body p {
  font-size: 16px;
  font-weight: 600;
  color: var(--service-card-text);
  margin: 0;
}
@media (max-width: 1399px) {
  .fact-in-number-section .content .card-container .card {
    margin: 0;
  }
}
@media (max-width: 1199px) {
  .fact-in-number-section .content {
    padding: 2.5rem;
  }
  .fact-in-number-section .content .heading-sec h2 {
    font-size: 40px;
  }
  .fact-in-number-section .content .heading-sec p {
    font-size: 15px;
  }
  .fact-in-number-section .content .card-container {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .fact-in-number-section {
    margin-block: 2rem;
  }
  .fact-in-number-section .content {
    padding: 2rem 1rem;
  }
  .fact-in-number-section .content .heading-sec h2 {
    font-size: 30px;
  }
  .fact-in-number-section .content .card-container .card .card-body .icon-box {
    width: 60px;
    height: 55px;
  }
  .fact-in-number-section .content .card-container .card .card-body h3 {
    font-size: 20px;
  }
  .fact-in-number-section .content .card-container .card .card-body p {
    font-size: 14px;
  }
}

.mobile-content-block {
  padding-block: 2rem;
}
.mobile-content-block .content h2 {
  font-family: var(--font-work-sans);
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  color: var(--black);
}
.mobile-content-block .content p {
  font-family: var(--font-work-sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 60px;
  color: var(--service-card-text);
}
.mobile-content-block .content .btns-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-start;
}
.mobile-content-block .img-wrapper {
  display: flex;
  justify-content: end;
}
.mobile-content-block .img-wrapper img {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 1399px) {
  .mobile-content-block .img-wrapper img {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (max-width: 991px) {
  .mobile-content-block .content h2 {
    font-size: 40px;
  }
  .mobile-content-block .content p {
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .mobile-content-block .content .btns-container {
    gap: 1rem;
  }
  .mobile-content-block .content .btns-container a img {
    max-width: 150px;
  }
}
@media (max-width: 575px) {
  .mobile-content-block .heading-sec {
    margin: 0 auto 30px auto;
  }
  .mobile-content-block .heading-sec h2 {
    font-size: 30px;
  }
  .mobile-content-block .content h2 {
    font-size: 30px;
  }
  .mobile-content-block .content p {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .mobile-content-block .content .btns-container {
    gap: 10px;
  }
  .mobile-content-block .content .btns-container a img {
    max-width: 100%;
    width: 100%;
  }
}

.newsletter-section {
  margin-block: 4rem;
}
.newsletter-section .content {
  position: relative;
  min-height: 415px;
  padding: 1rem 4rem;
}
.newsletter-section .content .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.newsletter-section .content .heading-sec h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-work-sans);
}
.newsletter-section .content .heading-sec p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-work-sans);
  color: var(--white);
  max-width: 550px;
  width: 100%;
  margin: 37px 0;
}
.newsletter-section .content .heading-sec .form-card {
  background: var(--white);
  padding: 10px;
  max-width: 464px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-section .content .heading-sec .form-card .form-control {
  border: 0;
}
.newsletter-section .content .heading-sec .form-card .form-control:focus {
  box-shadow: none;
}
.newsletter-section .content .heading-sec .form-card button {
  background: var(--bs-secondary);
  color: var(--white);
  border-radius: 12px;
  padding: 13px 28px;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-inter-sans);
}
@media (max-width: 1199px) {
  .newsletter-section .content {
    min-height: 315px;
    padding: 2rem 4rem;
  }
  .newsletter-section .content .heading-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .newsletter-section .content .heading-sec h2 {
    font-size: 40px;
    text-align: center;
  }
  .newsletter-section .content .heading-sec p {
    text-align: center;
    font-size: 15px;
    margin: 30px 0;
  }
  .newsletter-section .content .img-wrapper {
    display: none;
  }
}
@media (max-width: 767px) {
  .newsletter-section .content {
    min-height: 250px;
    padding: 2rem 1rem 1rem 1rem;
  }
  .newsletter-section .content .heading-sec h2 {
    font-size: 30px;
  }
  .newsletter-section .content .heading-sec p {
    margin: 20px 0;
  }
  .newsletter-section .content .heading-sec .form-card button {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .newsletter-section {
    margin-block: 2rem;
  }
}

.footer-section {
  padding-top: 4rem;
}
.footer-section .card {
  border: 0;
}
.footer-section .card .card-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.footer-section .card .card-body .chip {
  background: var(--rts-primary);
  color: var(--black);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
}
.footer-section .card .card-body span {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  margin: 0;
}
.footer-section .card .card-body a {
  font-family: var(--font-work-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  margin: 0;
  text-decoration: none;
}
.footer-section .spacer {
  height: 60px;
  width: 100%;
}
.footer-section p {
  font-family: var(--font-work-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
}
.footer-section .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.footer-section .social-icon a {
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}
.footer-section .footer-listing {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-section .footer-listing h3 {
  font-family: var(--font-work-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 24px;
}
.footer-section .footer-listing ul {
  padding: 0;
  margin: 0;
}
.footer-section .footer-listing ul li {
  list-style: none;
}
.footer-section .footer-listing ul li:has(img) {
  margin-bottom: 2rem;
}
.footer-section .footer-listing ul li a {
  font-family: var(--font-work-sans);
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.footer-section .copyright-wrapper {
  background-color: var(--rts-primary);
  color: var(--black);
}
@media (max-width: 1199px) {
  .footer-section p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .footer-section {
    padding-block: 2rem;
  }
}

.img-fact {
  width: 40px;
  height: 40px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 3rem;
}
.contact-section::before {
  content: "";
  background: url("./assets/image/contact-bg-effect.png");
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
  top: 30%;
  background-repeat: no-repeat;
}
.contact-section .content h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-work-sans);
}
.contact-section .content p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-work-sans);
  color: var(--black);
  max-width: 550px;
  width: 100%;
  margin: 27px 0 0 0;
  width: 100%;
}
.contact-section .card {
  border-radius: 20px;
  background: var(--rts-primary);
}
.contact-section .card .card-body {
  padding: 40px;
}
.contact-section .card .card-body form fieldset legend {
  text-align: center;
  font-family: var(--font-work-sans);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 30px;
}
.contact-section .card .card-body form fieldset .form-select,
.contact-section .card .card-body form fieldset .form-control {
  background: var(--black);
  padding: 9px 16px;
  border-radius: 12px;
  color: var(--white);
}
.contact-section .card .card-body form fieldset .form-select::-moz-placeholder, .contact-section .card .card-body form fieldset .form-control::-moz-placeholder {
  color: var(--white);
  opacity: 0.7;
}
.contact-section .card .card-body form fieldset .form-select::placeholder,
.contact-section .card .card-body form fieldset .form-control::placeholder {
  color: var(--white);
  opacity: 0.7;
}
.contact-section .card .card-body form fieldset button {
  background: var(--black);
  color: var(--white);
  display: inline-block;
  width: 100%;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: var(--font-inter-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  border: 0;
}
@media (max-width: 1199px) {
  .contact-section {
    padding-block: 2rem;
  }
  .contact-section .content h2 {
    font-size: 40px;
  }
  .contact-section .content p {
    font-size: 14px;
    margin: 15px 0 0 0;
  }
  .contact-section .content .card .card-body {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .contact-section {
    padding-block: 1.5rem;
  }
  .contact-section .content h2 {
    font-size: 30px;
  }
  .contact-section .card .card-body {
    padding: 20px;
  }
}/*# sourceMappingURL=styles.css.map */