@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
body {
  font-family: "Poppins", sans-serif;
}
section {
  padding: 60px 0px;
}
.ml-auto {
  margin-left: auto;
}
:root {
  --primary-color: #007568;
  --heading-color: #1d3657;
  --para-color: #6f8095;
}
input:-internal-autofill-selected {
  background-color: red;
}
.primary-btn {
  border-radius: 100px;
  background-color: var(--primary-color);
  padding: 13px 38px 15px 38px;
  text-decoration: none;
  border: none;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0,0.3);
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.6 ease-in-out all;
}
.primary-btn::after {
  content: "";
  background: url("../../assets/images/right-arrow.png") no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  opacity: 0;  
  top: 14px;
  z-index: 99999;
  right: -12px;
  transition: 0.5s;
  background-size: contain;
}
.primary-btn:hover {
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(6, 65, 11, 0.4);
}
.primary-btn:hover::after {
  opacity: 1;
  right: 10px;
}
.primary-btn-outlined {
  background-color: transparent;
  padding: 10px 32px 10px 32px !important;
  border: 1px solid var(--primary-color);
  font-weight: 600;
  transition: 0.6 ease-in-out all;
  color: var(--primary-color);
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.primary-btn-outlined::after {
  content: "";
  background: url("../../assets/images/right-arrow-green.png") no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  opacity: 0;  
  top: 14px;
  z-index: 99999;
  right: -12px;
  transition: 0.5s;
  background-size: contain;
}
.primary-btn-outlined:hover {
  color: #fff;
  padding-right: 14px;
  padding-left: 8px;
  box-shadow: 0 10px 20px -8px rgba(6, 65, 11, 0.4);
}
.primary-btn-outlined:hover::after {
  opacity: 1;
  right: 10px;
}
.theme-link {
  color: var(--primary-color);
  text-decoration: none;
}
.theme-link:hover {
  color: unset;
}
.black-color {
  color: #000;
}
.mt-6 {
  margin-top: 6rem !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}
h1,
h2 {
  font-size: 3rem;
  font-weight: 800;
}
h3 {
  font-weight: 700;
}
h4 {
  font-size: 24px;
  font-weight: 700;
}
h5 {
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
p {
  color: var(--para-color);
  font-size: 1.125rem;
}
li {
  color: var(--para-color);
  font-size: 1.125rem;
}
.error {
  color: rgb(219, 15, 15);
}
.h2-home {
  font-size: 43px;
  color: #000;
  text-align: center;
  font-weight: 700;
  margin-bottom: 6rem;
  line-height: 1.46;
}
.h2-home span{
  color: #008375;
}
.home-para {
  color: #363636;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 5rem;
}

/* animation */
.animate__fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 13%, 0);
    transform: translate3d(0, 13%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* open dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: -17px; 
}
/* animation */
.animation-section .animated-card {
  opacity: 0;
  transform: translateY(170px);
  transition: opacity 1s, transform 1s;
}
.animation-section.animateFadeUp .animated-card  {
  opacity: 1;
  transform: translateY(0);
}

/* header */
.active {
  background-color: #007568;
}
.header {
  background-color: white;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
}
.header .bg-light {
  background-color: white !important;
  /* box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1); */
}
.header .bg-light .nav-item {
  padding: 0px 24px;
}
.header .bg-light .nav-item .primary-btn {
  margin-left: 24px;
}
.header .bg-light .nav-item:last-child {
  padding: 0;
}
.header .bg-light .nav-link {
  color: var(--heading-color);
  font-weight: 600;
}
.header .navbar-nav .dropdown-menu {
  width: 760px;
  top: 130%;
  left: -100%;
  border: none;
  box-shadow: 0px 0px 23px rgba(0, 0, 0, 0.1);
  padding: 28px 18px 18px 18px;
}
.header .navbar-nav .dropdown-menu .list-unstyled li {
  margin-bottom: 16px;
}
.header .navbar-nav .dropdown-menu .list-unstyled li a {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
}
.header .navbar-nav .dropdown-menu .list-unstyled img {
  margin-right: 14px;
  color: var(--heading-color);
}

/* footer */
.footer {
  background-color: rgba(8, 107, 96, 1);
  padding: 80px 0px;
}
.footer .footer-txt {
  margin: 15px 0px 23px 0px;
  max-width: 86%;
  color: #e5e5e5;
}
.footer .contact {
  margin-left: 10%;
}
.footer h5 {
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-size: 17px;
}
.footer p {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 28px;
  color: #e5e5e5;
}
.footer .footer-menu {
  display: flex;
  justify-content: space-between;
}
.footer .footer-menu .box {
  width: 38%;
}
.footer .footer-menu .box2 {
  width: 62%;
}
.footer .copy {
  font-size: 17px;
  margin-bottom: 0;
  padding-top: 20px;
  color: #fff;
}
.footer .subs-input {
  display: flex;
}
.footer .subs-input input {
  background-color: #fff;
  padding: 12px;
  border: 2px solid #fff;
  border-right: 0px;
  border-radius: 4px 0px 0px 4px;
  width: 74%;
}
.footer .subs-input input:focus {
  box-shadow: none;
  outline: none;
}
.footer .subs-input button {
  background-color: var(--primary-color);
  border: none;
  margin-right: 10px;
  color: #fff;
  font-weight: 700;
  padding: 0px 40px;
  font-size: 15px;
  border-radius: 0px 4px 4px 0px;
}
.footer ul {
  padding-inline-start: 0;
}
.footer ul li {
  list-style: none;
  margin-bottom: 10px;
}
.footer ul li .link {
  text-decoration: none;
  color: #e5e5e5;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 15px;
  word-break: break-all;
}
.footer ul li .email {
  text-transform: none;
  color: #e5e5e5;
  font-weight: 400;
  font-size: 15px;
}
.footer ul li .link:hover {
  color: #fff;
  transition: 0.5s ease-in-out;
}
.footer .social-media {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.footer .social-media li {
  margin: 0px 4px;
  background-color: #000000;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 100px; 
  margin-bottom: 16px;
}
.footer .social-media li a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .social-media li .fa {
  color: white;
  display: inline-block;
}
.footer .social-media li a img {
  width: 17px;
}
.footer .address li {
  display: flex;
  align-items: flex-start;
  line-height: 29px;
  font-size: 15px;
  color: #e5e5e5;
  text-align: left;
}
.footer .address li .icon {
  width: 25px;
  margin-right: 10px;
  margin-top: 7px;
}
.footer .address li .phone, .email {
  margin-top: 4px;
}
.main-banner {
  padding: 60px 0px 60px 0px;
}
.main-banner .image {
  display: flex;
  justify-content: center;
}
.main-banner .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  flex-direction: column;
}
.main-banner .content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.35;
  color: #000;
}
.main-banner .content h1 span {
  color: #008375;
}
.main-banner .content p {
  margin: 18px 0px 32px 0px;
  padding-right: 5%;
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: #363636;
}
.main-banner .content .trusted-cust {
  margin-top: 38px;
}
.main-banner .content .trusted-cust img {
  width: 90px;
  margin-right: 26px;
}
.awards {
  /* background-color: #F2F2F2; */
}
.awards .heading {
  margin-bottom: 4rem !important;
}
.awards .h2-home {
  margin-bottom: 1rem;
}
.awards .award-col {
  padding: 0;
  flex: 0 0 18%;
  max-width: 18%;
  display: flex;
  justify-content: center;
}
.awards .award-col a {
  text-decoration: none;
}
.awards .circle {
  cursor: pointer;
    background-color: #fff;
    border-radius: 22px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 26px;
    border-radius: 35px;
    height: 190px;
    width: 190px;
    border: 1px solid #1b3844;
}
.awards .circle .desc {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  padding: 0px 20px;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 21px;
}
.awards .circle .strip {
  /* background-color: #1b3844;  */
  /* margin: 17px 0px 14px 0px; */
  width: 112%;
  padding: 6px 0 10px;
  z-index: 1;
  position: relative;
}
/* .awards .circle .strip::before {
  position: absolute;
  left: 1.1px;
  top: 97%;
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid #22404e;
  border-left: 12px solid transparent;
  transform: rotate(351deg);
}
.awards .circle .strip::after {
  position: absolute;
  right: 0px;
  top: 97%;
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid #22404e;
  border-left: 13px solid transparent;
  transform: rotate(277deg);
} */
.awards .circle .strip .icon {
  margin: 0px 5px;
  display: inline-block;
  width: 18px;
}
.awards .circle .logo {
  width: 160px;
  margin: 0 auto;
  height: 30px;
  object-fit: contain;
  margin-top: 15px;
}
.three-card-left .h2-home {
  margin-bottom: 16px;
}
.three-card-left .h2-home.heading {
  margin-bottom: 4rem;
  padding: 0px 20%;
}
.three-card-left .card-col {
  margin-bottom: 24px;
}
.three-card-left .card {
  text-align: left;
  align-items: flex-start;
  /* background-color: #e7f2f1; */
  padding: 60px 26px;
  border: none;
  border-radius: 19px;
  height: 92%;
}
.three-card-left .card img {
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.three-card-left .card .heading {
  color: #000;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.three-card-left .card .para {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-bottom: 0;
}
.colored-cards {
  background-color: #EFEFEF;
}
.colored-cards .h2-home {
  margin-bottom: 12px;
  text-align: left;
}
.colored-cards .h2-home.heading {
  margin-bottom: 4.4rem;
  padding: 0px 14%;
}
.colored-cards .home-para {
  max-width: 55%;
  margin: 0 auto;
  margin-bottom: 5rem;
  text-align: left;
    margin-left: 0;
}
.colored-cards .exp-col {
  margin-bottom: 24px;
}
.colored-cards .card {
  background-color: transparent;
  /* padding: 48px 32px 20px 32px; */
  border: none;
  height: 100%;
  border-radius: 0;
  margin-bottom: 24px;
  /* border-right: 3px solid #69A0E1; */
}
.colored-cards .card.card2 {
  background-color: transparent;
}
.colored-cards .card.card3 {
  background-color: transparent;
}
.colored-cards .card.card4 {
  background-color: transparent;
}
.colored-cards .card .card-flex {
  /* display: flex;
  align-items: flex-start; */
}
.colored-cards .card .card-flex .image {
  width: 20%;
  margin-right: 16px;
}
.colored-cards .card .card-flex .content {
  width: 80%;
}
.colored-cards .card .card-flex .content h3 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.colored-cards .card .card-flex .content p {
  font-size: 17px;
  color: #000;
  font-weight: 400;
  line-height: 32px;
  /* padding-right: 14%; */
  margin-bottom: 0;
}
/* color column left align */
.colored-cards-left .h2-home.heading {
  padding: 0px 15%;
}
.colored-cards-left .color-col {
  margin-bottom: 24px;
}
.colored-cards-left .card h3 span{
  color: #008375;
}
.colored-cards-left .card {
  border-radius: 19px;
  padding: 48px 32px 20px 32px;
  border: none;
  height: 100%;
}
.colored-cards-left .card.card1 {
  background-color: #E6E5FF;
}
.colored-cards-left .card.card2 {
  background-color: #E6F3E9;
}
.colored-cards-left .card.card3 {
  background-color: #FFE2F8;
}
.colored-cards-left .card.card4 {
  background-color: #FFEDE5;
}
.colored-cards-left .card.card5 {
  background-color: #E6EAF3;
}
.colored-cards-left .card.card6 {
  background-color: #E2F7FF;
}
.colored-cards-left .card .image {
  display: flex;
  align-items: center;
  margin-bottom: 23px;
}
.colored-cards-left .card .title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
}
.colored-cards-left .card .desc {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}
.service-offer {
  background-color: #F2F2F2;
  padding: 80px 0px;
}
.service-offer .card {
  border: none;
  background: none;
  /* margin-right: 10%; */
  text-align: center;
  padding: 0px 14px;
}
.service-offer .border-end{
  border-color: rgba(0, 131, 117, 1) !important;
}
.service-offer .card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  /* margin-bottom: 20px; */
  line-height: 1.67;
  height: 70px;
}
.service-offer .card p {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}
.landing-faq {
  background-color: #E6F3F2;
  padding: 100px 0px;
}
.landing-faq .faq-img {
  display: flex;
  align-items: center;
  height: 100%;
}
.landing-faq .accordion {
  width: 92%;
}
.landing-faq .card {
  background-color: transparent;
  border: none;
}
.landing-faq .card .card-header {
  border-bottom: none;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-top: 1px solid rgb(203, 203, 203);
  border-radius: 0px;
  padding: 24px 0px;
}
.landing-faq .card .card-header.first {
  border: none;
}
.landing-faq .card .card-header .icon-box {
  width: 27px;
  height: 27px;
  background-color: #007568;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-faq .card .que {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  width: 92%;
}
.landing-faq .card .ans {
  color: #000;
  font-size: 15px;
  line-height: 1.7;
}
.landing-faq .card-body {
  width: 90%;
  padding: 0;
}
.rounded-cards{
  background: linear-gradient(128deg, #EFEFEF, #EBFEFF);
}
.rounded-cards .home-para {
  max-width: 62%;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.rounded-cards .round-col {
  margin-bottom: 24px;
}
.rounded-cards .card {
  background-color: #EBF4F3;
  padding: 20px 20px 29px 20px;
  border-radius: 19px;
  border: none;
  height: 100%;
}
.rounded-cards .card .card-title {
  font-weight: 700;
  font-size: 22px;
  color: #000;
  padding: 23px 0px 10px 0px;
}
.rounded-cards .card .card-text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
}

.nft-main {
  padding: 9rem 0px 60px 0px;
}

/* three card */
.three-card .title {
  margin-bottom: 1rem;
  font-weight: 800;
}
.three-card .desc {
  margin-bottom: 4rem;
}
.three-card .card {
  border: none;
  text-align: left;
}

.three-card .card .card-flex {
  display: flex;
  align-items: flex-start;
}
.three-card .card .card-flex .image-div {
  margin-right: 20px;
  border-radius: 100px;
  border: 1px solid #e5e5e5;
}
.three-card .card .card-flex .image-div > div {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.three-card .card .card-flex img {
  width: 30px;
}
.three-card .card .content {
  margin-top: 8px;
  margin-bottom: 34px;
}
.three-card .card .content h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.three-card .card .content p {
  line-height: 33px;
}

.left-right-one h2 {
  color: #000;
}
.left-right-one h5 {
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
}
.left-right-one h4 {
  margin-bottom: 2.8rem;
  color: #008375;
}
.left-right-one p {
  margin: 22px 0px;
  line-height: 32px;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 0.8s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.contact-modal .modal-content {
  border: none;
}
.contact-modal .modal-dialog {
  max-width: 1000px;
  border: none;
}
.contact-modal .modal-header {
  border-bottom: none;
  margin-bottom: 14px;
}
.contact-modal .modal-title {
  font-weight: 700;
  margin: 14px 0px;
  font-size: 28px;
  text-transform: none;
}
.contact-modal input,
textarea {
  padding: 11px;
  width: 100%;
  border-radius: 8px;
  resize: none;
  border: 2px solid #ddd;
  font-weight: 600;
}
.contact-modal input:focus,
textarea:focus {
  box-shadow: none;
  outline: none;
}
.contact-modal .send-btn {
  margin-bottom: 20px;
}
.contact-modal .modal-body {
  padding: 0px 40px;
}
.contact-modal .modal-body p {
  margin-bottom: 2rem;
}
#success-msg {
  display: none;
  color: rgb(20, 147, 20);
  font-weight: 600;
  font-size: 18px;
}
.call-to-action-bg{ 
  background-image: url('/assets/images/home/call-to-action-bg.png');
  background-repeat: no-repeat;
}
.call-to-action {
  padding: 20px;
  /* background-color: var(--primary-color); */
  border-radius: 25px;
  text-align: center;
  position: relative;
}
.call-to-action img {
  display: block;
  margin: 15px auto;
}

.call-to-action .circle-big {
  position: absolute;
  right: 58px;
  top: 63px;
  max-width: 22%;
}
.call-to-action .circle-small {
  position: absolute;
  left: 6%;
  top: 60%;
  max-width: 22%;
}
.call-to-action .h2-home {
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  font-size: 40px;
}
.call-to-action .h2-home span {
color: rgba(0, 131, 117, 1);
}

.call-to-action .home-para {
  color: #fff;
  font-size: 19px;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 40px;
}
.call-to-action .connect {
  background-color: white;
  /* color: var(--primary-color); */
  font-weight: 700;
  margin: 0 auto;
  padding: 16px 52px 17px 52px;
  border-radius: 8px;
  background: linear-gradient(245deg, rgba(0, 131, 117, 1), rgba(4, 78, 71, 1));
  color: white;
}
.call-to-action .connect:hover {
  color: var(--primary-color);
}

.thank-you {
  padding: 14rem 0px 6rem 0px;
  overflow-x: hidden;
}
.thank-you .text {
  font-size: 28px;
  line-height: 1.55;
  font-weight: 500;
  margin: 60px 0px 30px 0px;
  max-width: 41%;
}
.thank-you .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0px 30px;
  flex-direction: column;
}
.thank-you .content .img {
  object-fit: cover;
  max-width: 100%;
}
.fix-cta {
  position: fixed;
  top: 38%;
  left: 0;
  z-index: 9999;
  background-color: #007568;
  box-shadow: 0 0.375rem 1.5rem rgba(0,0,0,0.2);
  padding: 18px 10px;
  border-radius: 0px 12px 12px 0px;
  cursor: pointer;
}
.fix-cta a {
  text-decoration: none;
}
.fix-cta img {
  width: 20px;
  margin-bottom: 14px;
  animation-timing-function: ease-in-out;
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
.fix-cta .text {
  font-size: 14px;
  writing-mode: vertical-lr;
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.3, 1.3, 1.3);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .main-banner .content h1 {
    font-size: 2.5rem;
  }
  .awards .circle {
    width: 170px;
    height: 170px;
  }
  .awards .circle .strip {
    margin: 15px 0px 10px 0px;
  }
  .awards .circle .desc {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
  }
  .footer ul li .link {
    font-size: 14px;
  }
  .footer .footer-txt {
    font-size: 14px;
  }
  .footer .address li {
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .main-banner .content h1 {
    font-size: 2rem;
  }
  .trusted-partner .trusted-partner-flex .box {
    flex: 0 0 33%;
    max-width: 33%;
    margin-bottom: 3rem;
  }
  .awards .award-col {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .tech-stack .tech-content-wrapper {
    max-width: 90%;
  }
  .tech-stack .tech-content-wrapper .tech-flex .box {
    flex: 0 0 28%;
    max-width: 28%;
  }
}
@media (max-width: 992px) {
  .thank-you .text {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.45;
  }
  .call-to-action {
    padding: 55px 1.5rem;
  }
  .awards .award-col {
    flex: 0 0 33%;
    max-width: 33%;
  }
  .main-banner .content {
    justify-content: center;
    align-items: center;
  }
  .main-banner .image {
    margin-top: 5rem;
  }
}
.testimonials .h2-home {
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.testimonials .img {
  width: 100%;
}
.testimonials .feedback {
  background-color: #E6E5FF;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  border-radius: 19px;
  padding: 30px 60px;
}
.testimonials .feedback.feedback2 {
  background-color: #FCDDCC;
}
.testimonials .feedback.feedback3 {
  background-color: #E6F3E9;
}
.testimonials .feedback .name {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin-bottom: 6px;
}
.testimonials .feedback .quote {
  margin-bottom: 22px;
}
.testimonials .feedback .profile {
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
  color: #000;
}
.testimonials .feedback .desc {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 1.7;
}
.testimonials .row-1, .row-2, .row-3 {
  margin-bottom: 28px;
}
.blog-card {
  padding: 11rem 0px 60px 0px;
}
.blog-card .my-col {
  margin-bottom: 28px;
}
.blog-card .card {
  border-radius: 8px;
  width: 97%;
  height: 100%;
}
.blog-card a {
  text-decoration: none;
}
.blog-card .card .date {
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
}
.blog-card .card img {
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.blog-card .card .arrow {
  width: auto;
  height: 16px;
  margin-left: 8px;
}
.blog-card .card-body {
  background-color: #f5f9fb;
  border-radius: 0px 0px 8px 8px;
  border: 2px solid #eaeaea;
  border-top: none;
  padding: 20px 20px 32px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card .card-body > a > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card .card-body .calendar {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.blog-card .card-body .clock {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.blog-card .card-body .read-more {
  font-weight: 700;
  color: var(--primary-color);
}
.blog-card .card-body .read-more .fa {
  margin-left: 7px;
  font-size: 20px;
  margin-top: 16px;
  display: inline-block;
}
.blog-card .card-body h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin: 10px 0px;
}
.blog-card .card-body p {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 18px;
}
.contact-us-new {
  padding: 11rem 0px 100px 0px;
  background-color: rgba(239, 239, 239, 1);
}
.contact-us-new.home {
  padding: 60px;
}
.contact-us-new .form-bg {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 8px;
}
.contact-us-new .content {
  padding: 40px 28px 50px 28px;
  background-color: #007568;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-us-new .content .contact-img {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 50px;
}

.contact-us-new .content ul {
  list-style: none;
  padding-inline-start: 0;
}
.contact-us-new .content ul li {
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  font-weight: 300;
  line-height: 32px;
  align-items: flex-start;
}
.contact-us-new .content ul li img {
  margin-right: 14px;
  width: 22px;
  margin-top: 7px;
}
.contact-us-new .content ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  word-break: break-all;
}
.contact-us-new h2 {
  color: #000000;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 900;
}
.contact-us-new p {
  color: #181818;
  font-size: 14px;
  font-weight: 300;
  margin: 12px 0px 50px 0px;
}
.contact-us-new #contact-form {
  padding: 26px 30px 32px 20px;
  text-align: center;
}

input[type="file"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.custom-file-label {
  display: inline-block;
  background-color: transparent;
  color: #6c757d;
  padding: 20px 0px;
  font-size: 15px;
  font-weight:600;
  border-radius: 8px;
  cursor: pointer;
 
  transition: background-color 0.3s ease;
  border:2px solid #ddd;
  width: 100%;
}
.custom-file-label i {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #6c757d;
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.consent-label {
  font-weight: 400;
  cursor: pointer;
}

.submit-help {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  margin-top: 10px;
}
.submit-help span{
  font-weight: 700;
  font-style: italic;
}

.email-link {
  color: #007568;
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}


.contact-us-new input {
  border: 1px solid transparent;
  padding: 14px 10px;
  width: 100%;
  border-radius: 6px;
  color: #858585;
  box-shadow: 0 4px 15px 0 rgb(0 0 0 / 3%);
  border-radius: 24px;
  /* border: navajowhite; */
  /* height: 60px; */
  color: black;
}
.contact-us-new input:focus {
  outline: none;
}
.contact-us-new textarea {
  border: 1px solid transparent;
  padding: 14px 10px;
  width: 100%;
  border-radius: 6px;
  resize: none;
  font-weight: 400;
  box-shadow: 0 4px 15px 0 rgb(0 0 0 / 3%);
  border-radius: 24px;
}
/* .contact-us-new .send-btn {
  border-radius: 12px;
} */

@media (max-width: 768px) {
  h1,
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem !important;
  }
  .header #main_nav {
    position: absolute;
    top: 96px;
    right: 0;
    z-index: 9999;
    width: 100%;
    padding: 8px 8px 30px 8px;
    left: 0;
    background: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  }
  .navbar-light .navbar-toggler {
    border-color: white;
  }
  .header .bg-light .nav-item:last-child {
    margin-top: 28px;
  }
  .header .navbar-nav .dropdown-menu {
    width: 100%;
    padding: 22px 10px;
  }
  .header .navbar-nav .dropdown-menu .list-unstyled img {
    margin-right: 8px;
  }
  .header .navbar-nav .dropdown-menu .list-unstyled li a {
    font-size: 14px;
  }
  .footer {
    padding: 70px 0px 30px 0px;
  }
  .footer .subs-input {
    margin-bottom: 50px;
  }
  .footer ul li:last-child {
    margin-bottom: 50px;
  }
  .footer .copy {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .footer .footer-txt {
    margin-bottom: 50px;
    max-width: 100%;
  }
  .footer .footer-menu .box {
    width: 40%;
  }
  .footer .footer-menu .box2 {
    width: 60%;
  }
  .service-offer .card {
    margin-bottom: 2rem;
  }
  .testimonials .feedback {
    padding: 30px 24px;
  }
  .footer .social-media {
    justify-content: flex-start !important;
  }
  .footer .contact {
    margin-left: 0;
  }
  .main-banner .content h1 {
    font-size: 2rem;
  }
  .main-banner .content p {
    padding-right: 0;
  }
  .call-to-action .circle-big, .call-to-action .circle-small {
    display: none;
  }
  .call-to-action .h2-home {
    font-size: 28px;
  }
  /* .area-of-expertise .image{
    width: 45% !important;
    margin: 0 auto !important;
    margin-bottom: 30px !important;
    height: 110px;
} */
  .colored-cards .home-para {
    max-width: 100%;
  }
  .colored-cards .card .card-flex .content p {
    padding: 0;
  }
  .colored-cards-left .h2-home.heading {
    padding: 0;
  }
  .contact-us-new .content .contact-img {
    max-width: 100%;
  }
  .contact-us-new.home {
    padding: 0;
  }
  .awards .award-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .landing-faq .title {
    margin-bottom: 1.2rem;
  }
  .landing-faq {
    padding: 44px 0px 55px 0px;
  }
  .landing-faq .card .que {
    width: 87%;
    font-size: 18px;
  }
  .landing-faq .faq-img {
    justify-content: center;
  }
  .landing-faq .faq-img img {
    margin-bottom: 3rem;
  }
  .rounded-cards .home-para {
    max-width: 100%;
    font-size: 18px;
  }
  .fix-cta {
    bottom: 0;
    width: 100%;
    top: unset;
    padding: 8px 0px;
    border-radius: 12px 12px 0px 0px;
  }
  .fix-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fix-cta img {
    margin-right: 16px;
    margin-bottom: 0;
  }
  .fix-cta .text {
    writing-mode: unset;
    margin-bottom: 0;
    font-size: 12px;
  }
  .blog-card .card {
    width: 100%;
  }
  .three-card-left .h2-home.heading {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .main-banner .content .trusted-cust img {
    margin-bottom: 28px;
  }
  .left-right-one h5{
    padding-top: 30px;
  }
  /* .left-right-one {
    padding: 0px 0px 60px 0px;
  } */
  /* .left-right-one img {
    margin-top: 3rem;
  } */
  .h2-home {
    font-size: 32px;
  }
  .awards .award-col {
    flex: 0 0 100%;
    max-width: 100%;
  } 
  .contact-us-new .content ul li img.icon-email {
    margin-top: 11px;
  }
  .contact-us-new h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .contact-us-new #contact-form {
    padding: 26px 10px 32px 10px;
  }
}

.service-contact-form {
  background: url("/assets/images/contact/banner-bg-img.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100%;
  padding: 0px;
  font-family: "Rubik", sans-serif;
}
.service-contact-form .contact-form-overlay {
  width: 100%;
  background-color: black;
  opacity: 0.8;
  position: absolute;
  height: 100%;
}
.service-contact-form .form-card {
  position: relative;
  margin: 88px 0px;
  background-color: #fff;
  padding: 34px 33px 44px 33px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .service-contact-form .form-card {
    padding: 22px 18px 28px 18px;
 }
}
.service-contact-form .form-card .heading {
  position: relative;
  font-size: 24px;
  color: rgba(0, 131, 117, 1);
  font-weight: 600;
  text-align: left;
  margin-bottom: 3rem;
  padding-bottom: 10px;
}
.service-contact-form .form-card .heading::after {
  content: "";
  position: absolute;
  left: 43%;
  bottom: 0;
  width: 14%;
  height: 2px;
  background-color: rgba(0, 131, 117, 1);
}
@media (max-width: 768px) {
  .service-contact-form .form-card .heading::after {
    width: 26%;
    left: 37%;
 }
}
.service-contact-form .form-card h3 {
  color: #0f001a;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
}
.service-contact-form .form-card .form-control {
  border: 1px solid #b4bec8;
  padding: 22px 12px;
}
.service-contact-form .form-card .form-control::placeholder {
  color: #878787;
}
.service-contact-form .form-card .form-control:focus {
  outline: none;
  box-shadow: none;
}
.service-contact-form .form-card textarea {
  width: 100%;
  resize: none;
  padding: 12px;
  border: 1px solid #b4bec8;
}
.service-contact-form .form-card .send-btn {
  background-color: rgba(0, 131, 117, 1);
  font-weight: 700;
  color: #fff;
  padding: 12px 0px;
  width: 100%;
  border: none;
  border-radius: 4px;
}
.service-contact-form .form-card .send-btn:disabled {
  background-color: rgba(0, 131, 117, 1);
  opacity: 0.5;
  cursor: not-allowed;
}
.service-contact-form .form-card .contact-details {
  padding-inline-start: 0px;
}
.service-contact-form .form-card .contact-details li {
  margin-bottom: 25px;
  color: #0f001a;
  list-style: none;
  display: flex;
  align-items: flex-start;
}
.service-contact-form .form-card .contact-details li a {
  color: #0f001a;
}
.service-contact-form .form-card .contact-details li > img {
  margin-top: 4px;
  margin-right: 18px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.our-process .process-row-2, .our-process .process-row-3{
  align-items: flex-start !important;
} 