@charset "UTF-8";

@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-family: "Inter", sans-serif;
  --white-color: #ffffff;
  --black-color: #000000;
  --primary-color: #0c507c;
  --secondary-color: #6b7280;
  --bg-color: #f0f7ff;
  --grey-color: #4b5563;
  --form-color: #cbced4;
}
html {
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-color: var(--primary-color) var(--white-color);
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 400;
  background: var(--white-color);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  /* overflow-x: hidden; */
}

a {
  outline: none;
  text-decoration: none;
  color: var(--grey-color);
  display: inline-block;
}
svg {
  transition: all 0.3s ease-in-out;
}
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color: var(--primary-color);
}

.btn:focus {
  box-shadow: none;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

input,
textarea,
select {
  outline: none;
  resize: none;
  font-family: var(--font-family);
}
select.form-select {
  -webkit-appearance: none; /* Safari, iOS */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* Modern browsers */
}
a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  line-height: 1.3;
  color: var(--primary-color);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 15px 0;
  padding: 0;
}

.slick-slide {
  outline: none !important;
}
a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*==============================================================
	Bootstrap Hack
==============================================================*/
.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--form-color);
}
.form-control:-moz-placeholder {
  opacity: 1;
  color: var(--form-color);
}
.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--form-color);
}
.form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--form-color);
}
input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--form-color);
}
input:-moz-placeholder {
  opacity: 1;
}
input::-moz-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder {
  opacity: 1;
}

/*==============================================================
	Custom Style
==============================================================*/
.container {
  max-width: 1480px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.h1,
h1 {
  font-size: 48px;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 700;
  margin: 0px;
  letter-spacing: -0.8px;
  color: var(--white-color);
}
.h2,
h2 {
  font-size: 39px;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 700;
  margin: 0px;
  letter-spacing: -0.8px;
  background: linear-gradient(
    270deg,
    rgba(22, 182, 209, 1) 0%,
    rgba(12, 80, 124, 0.88) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h4,
.h4 {
  font-family: var(--font-family);
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.33;
  color: var(--white-color);
  margin: 0;
}
h5,
.h5 {
  font-family: var(--font-family);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white-color);
  margin: 0;
}
h6,
.h6 {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.3px;
}
.p,
p {
  font-size: 16px;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 500;
  margin: 0px;
  color: #6c757d;
  letter-spacing: -0.3px;
}
.btn {
  padding: 12px 16px;
  border-radius: 200px;
  font-size: 16px;
  line-height: 1.15;
  background: linear-gradient(90deg, #199b4a 0%, #0db29c 100%);
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  font-family: var(--font-family);
  font-weight: 500;
  letter-spacing: -2%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn:hover {
  background: linear-gradient(
    90deg,
    rgba(22, 182, 209, 1) 0%,
    rgba(12, 80, 124, 0.88) 100%
  );
  color: var(--white-color);
}
.btn.btn-arrow {
  background: transparent;
  color: var(--grey-color);
  padding: 0;
  font-weight: 400;
  font-size: 14px;
}
.btn.btn-arrow:hover img {
  transform: rotate(-45deg);
}
.btn img {
  transition: all 0.3s ease-in-out;
}
.no-scroll {
  overflow: hidden;
}
.icon {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.section-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 555px;
  margin: 0 auto;
}

.section-quote {
  border-radius: 200px;
  border: 1px solid #b9dfff;
  padding: 10px 12px;
  background-color: var(--bg-color);
  color: var(--primary-color);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.choose-text {
  position: relative;
  padding-left: 24px;
}
.why-choose-area {
  display: flex;
  padding: 24px;
  gap: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
}
.why-choose-area .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.why-choose-list {
  max-width: 878px;
  margin: 0 auto;
  padding-top: 32px;
  --bs-gutter-x: 32px;
  row-gap: 20px;
}
.why-choose-content p {
  padding-top: 6px;
  font-size: 13px;
}
.choose-text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/CheckCircle.svg");
}
.section-content h2 span {
  text-transform: uppercase;
}
.our-services-area {
  position: relative;
}
.our-services-area {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
}
.our-services-area .icon {
  position: absolute;
  top: 36px;
  left: 36px;
}
.service-main {
  gap: 24px;
  padding-top: 26px;
  height: 100%;
}
.service-main p {
  font-size: 13px;
  padding-top: 8px;
}
.our-services-area .img-fluid {
  width: 100%;
  border-radius: 8px;
}
.our-services-list {
  padding-top: 48px;
}
.our-services-list .our-services-card {
  padding: 0 8px;
  height: 100%;
  display: flex;
}
.our-services-area {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
}
.our-services-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-color);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.our-services-wrap {
  padding: 64px 0 32px;
}
.custom-prev {
  transform: rotate(-180deg);
}
.custom-prev {
  left: 10px;
}
.custom-next {
  right: 10px;
}
.custom-prev img,
.custom-next img {
  width: 20px;
  height: 20px;
}
.slick-slide {
  display: flex !important;
  height: auto !important;
}
.slick-track {
  display: flex !important;
}
.need-info-wrap {
  padding: 32px 0 48px;
}
.need-info {
  padding: 48px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: linear-gradient(270deg, #0db29c 0%, #16b6d1 100%);
}
.need-info .btn {
  background: rgba(255, 255, 255, 0.1);
}
.need-info .btn:hover {
  background-color: var(--primary-color);
}
.info-left .title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white-color);
  padding-bottom: 5px;
}
.info-left p {
  color: var(--white-color);
}
.our-presence-wrap {
  padding: 64px 0;
}
.our-presence ul {
  max-width: 836px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.our-presence ul li {
  padding: 16px 24px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
}
.our-presence ul li .icon {
  width: 100px;
  height: 100px;
  background-color: var(--bg-color);
  border-radius: 100%;
}
.presence-title {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #083554;
}
.lightgreen {
  background-color: #0db29c;
}
.parrot {
  background-color: #88c143;
}
.green {
  background-color: #199b4a;
}
.blue {
  background-color: #16b6d1;
}
.why-choose-wrap {
  padding: 32px 0 64px;
}
.our-specialized-area {
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
}
.our-specialized-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.our-specialized-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}
.our-specialized-img .icon {
  position: absolute;
  left: 12px;
  top: 12px;
}
.our-specialized-img .icon img {
  width: auto;
  height: auto;
}
.our-specialized-content ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  padding: 8px 0 12px;
}
.our-specialized-content ul li {
  width: 50%;
  padding-left: 30px;
  position: relative;
}
.our-specialized-content ul li:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  background-repeat: no-repeat;
  background-image: url("../images/CheckCircle.svg");
}
.our-specialized-wrap {
  padding: 48px 0;
}
.our-specialized-list {
  padding-top: 32px;
  --bs-gutter-x: 32px;
  row-gap: 20px;
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.video-card img {
  width: 100%;
  height: auto;
  display: block;
}
.banner-right {
  position: relative;
  z-index: 10;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

/* footer */
.footer-wrap {
  padding: 64px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-wrap a {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  font-weight: 500;
  color: #6c757d;
}
.footer-wrap a:hover {
  color: #199b4a;
}
.footer-policy {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-left {
  max-width: 325px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-top {
  padding-bottom: 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-service ul {
  display: flex;
  row-gap: 12px;
  flex-wrap: wrap;
  max-width: 521px;
}
.footer-service ul li {
  width: 50%;
}
.footer-right ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 16px;
}
.social-listing {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-listing li a:hover svg path {
  fill: #199b4a;
}

/* header */
#scrollBtn {
  position: fixed;
  transition: all 0.3s ease-in-out;
  bottom: 40px;
  right: 40px;
  background: var(--white-color);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transform: rotate(-90deg);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.header-wrap {
  height: 68px;
  position: relative;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-menu nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
}
.header-menu nav ul li a {
  padding: 6px 12px;
}
.header-menu nav ul li a:hover {
  color: var(--primary-color);
}
.header-content .btn {
  background: linear-gradient(#0db29c 0%, #16b6d1 100%);
  padding: 8px 16px;
}
.header-content .btn:hover {
  background: var(--primary-color);
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 19px 0;
  z-index: 100;
}
.header-active {
  background-color: var(--white-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: all 0.3s ease-in-out;
  padding: 20px 30px;
  border-radius: 200px;
}
.header-menu.active {
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  z-index: 99;
}
.lineargreen {
  background: linear-gradient(#199b4a 0%, #0db29c 100%);
}

/* banner */
.banner-wrap {
  padding: 32px 0;
}
.banner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    251.33deg,
    rgba(0, 0, 0, 0) 61.22%,
    rgba(0, 0, 0, 0.75) 100%
  );
  border-radius: 16px;
}
.banner {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 32px;
  border-radius: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-left {
  z-index: 1;
}
.banner-left ul {
  padding-top: 40px;
  display: flex;
  gap: 5px;
}
.banner-left ul li {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
.banner .section-quote,
.banner .h1 {
  margin-right: auto;
}
.banner-left ul li:before {
  content: "";
  position: absolute;
  left: -15%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
}
.banner-left {
  max-width: 480px;
}
.banner-left p {
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--white-color);
}
.form-container {
  overflow: hidden;
  max-width: 560px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background-color: var(--white-color);
}
form {
  padding-top: 20px;
}
.form-label {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #545e6d;
}
.form-control,
.form-select {
  height: 40px;
  background-color: #f9fafb;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.1px;
  color: #cbced4;
  font-weight: 600;
}
.form-control:hover,
.form-control:focus,
.form-select:hover,
.form-select:focus {
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.form-check-label {
  color: var(--primary-color);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  padding-left: 5px;
}
.form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.form-check-input:hover,
.form-check-input:focus {
  box-shadow: none;
}
.form-check-input:checked {
  background-color: #0db29c;
  border-color: #0db29c;
}
.form-check-label a {
  text-decoration: underline;
}
.form-check-label a:hover {
  color: var(--black-color);
}
form button {
  transition: all 0.3s ease-in-out;
  width: 100%;
  text-align: center;
  justify-content: center;
  cursor: pointer;
}
.form-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(
    270deg,
    rgba(22, 182, 209, 1) 0%,
    rgba(12, 80, 124, 0.88) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.form-text {
  color: #6c757d;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* 
family-us */
.family-us-wrap {
  padding: 32px 0 64px;
}
.family-us {
  padding: 48px;
  border-radius: 16px;
  background: linear-gradient(270deg, #16b6d1 0%, #0c507c 100%);
  display: flex;
  gap: 48px;
  align-items: center;
}
.family-us .section-quote {
  margin-right: auto;
}
.family-us .section-content {
  width: 50%;
  max-width: 100%;
}
.family-us ul {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 18px;
}
.family-us ul li {
  width: 50%;
  color: var(--white-color);
  padding-left: 28px;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  position: relative;
}
.family-us .section-quote {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
}

.family-us ul li:before {
  content: "";
  background-image: url("../images/CheckCircle.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  position: absolute;
}
.our-mission-left {
  width: 50%;
  margin: 0;
}
.our-mission-left .section-content {
  max-width: 560px;
}
.our-mission .cta {
  margin-top: 20px;
  margin-right: auto;
}
.our-mission-wrap {
  padding: 64px 0 32px;
}
.our-mission .section-quote,
.our-mission .avatar-img,
.our-mission h2 {
  margin-right: auto;
}
.our-mission {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.get-touch-left {
  max-width: 576px;
}
.our-mission-content .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}
.our-mission-content .text {
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}
.lightparrot {
  background-color: #0db29c;
}
.our-mission .our-mission-right {
  max-width: 750px;
}
.our-mission .our-mission-right .row {
  row-gap: 24px;
}
.care-centers-wrap {
  padding: 64px 0;
}
.care-centers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 32px;
  gap: 96px;
}
.care-centers .section-content {
  max-width: 100%;
}
.care-centers .section-content .section-quote,
.care-centers .section-content .h2,
.care-centers .section-content .cta,
.care-centers .section-content ul {
  margin-right: auto;
}
.care-centers .section-content ul {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  width: 100%;
}
.care-centers .section-content ul li {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
  border-radius: 8px;
  background-color: var(--white-color);
}
.care-centers .care-centers-left {
  max-width: 420px;
}
.care-centers-right {
  width: 100%;
}
.care-centers-right iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border-radius: 16px;
}
.care-centers-wrap .listing {
  padding-top: 64px;
  row-gap: 24px;
  justify-content: center;
}
.care-text {
  font-size: 13px;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--primary-color);
  font-weight: 600;
}
.our-mission-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  text-align: center;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
}
.our-mission-content p {
  font-size: 13px;
  letter-spacing: 0;
}
.get-touch-wrap {
  padding: 32px 0;
}
.get-touch {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.get-touch .section-content {
  max-width: 100%;
}
.get-touch-left .row {
  width: 100%;
  margin-right: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.get-touch-left .row a {
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--white-color);
}
.get-touch-left .row p {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--white-color);
  padding-top: 6px;
}
.get-touch-left .row a:hover {
  color: var(--primary-color);
}
.get-touch-left ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 18px;
  padding-top: 8px;
}
.contact-area {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.get-touch-left p {
  color: var(--white-color);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.get-touch-left h3 {
  font-weight: 700;
  line-height: 1.4;
  font-size: 39px;
  color: var(--white-color);
  margin-right: auto;
}
.get-touch-left .section-quote {
  margin-right: auto;
  background-color: rgba(255, 1255, 255, 0.2);
  color: var(--white-color);
}
.get-touch-left ul li {
  width: 50%;
  position: relative;
  padding-left: 32px;
  color: var(--white-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.get-touch-left ul li:before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/CheckCircle.png");
}
.get-touch {
  padding: 32px 32px 32px 48px;
  border-radius: 16px;
  background: linear-gradient(270deg, #199b4a 0%, #0db29c 100%);
}
.get-touch .form-container {
  max-width: 744px;
}
