@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

@font-face {
  font-family: GilroyUltraLight;
  src: url("../fonts/Gilroy-UltraLight.ttf");
}

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

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

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

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

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

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

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

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

:root {
  --font-300: GilroyLight;
  --font-400: GilroyRegular;
  --font-500: GilroyMedium;
  --font-600: GilroySemiBold;
  --font-700: GilroyBold;
  --font-800: GilroyExtraBold;
  --font-900: GilroyBlack;
  --primary: #0077b6;
  --primary-light: #00b4d8;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--font-400);
}

.offcanvas-header a img {
  width: 130px;
}
/* 
.left-side {
  animation: left-side linear;
  animation-timeline: view(block 95% 0%);
}

.right-side {
  animation: right-side linear;
  animation-timeline: view(block 95% 0%);
}

.fron-left {
  animation: fron-left linear;
  animation-timeline: view(block 95% 0%);
}

.fron-right {
  animation: fron-right linear;
  animation-timeline: view(block 95% 0%);
}

.fade-in {
  animation: fade-in linear;
  animation-timeline: view(block 95% 0%);
}

@keyframes left-side {
  from {
    transform: translateX(-200px);
    opacity: 0.2;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes right-side {
  from {
    transform: translateX(120px);
    opacity: 0.2;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fron-right {
  from {
    transform: translateX(100px);
    opacity: 0.5;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fron-left {
  from {
    transform: translateX(-100px);
    opacity: 1;
  }

  to {
    transform: translateX(0px);
  }
}

@keyframes fade-in {
  from {
    transform: translateY(100px);
    opacity: 0;
    scale: 0.8;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
    scale: 1;
  }
}

.top-to-bottom {
  animation: top-to-bottom linear;
  animation-timeline: view(block 100% 3%);
}

@keyframes top-to-bottom {
  from {
    transform: translateY(200px);
    scale: 0.9;
    opacity: 0.5;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
    scale: 0.9;
  }
}
@media (max-width: 768px) {
  @keyframes left-side {
    from {
      transform: translateX(-100px);
      opacity: 0.2;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes right-side {
    from {
      transform: translateX(80px);
      opacity: 0.2;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

} */

html,
body {
  font-family: var(--font-400);
}

a {
  text-decoration: none;
  transition: 0.3s ease 0s;
  color: var(--bs-black);
}

a:hover {
  color: var(--primary);
}

input,
button,
textarea {
  outline: none;
  border: 0px;
  background: none;
}

.webkit {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.webkit_1 {
  -webkit-line-clamp: 1;
}

.webkit_2 {
  -webkit-line-clamp: 2;
}

.webkit_3 {
  -webkit-line-clamp: 3;
}

.webkit_4 {
  -webkit-line-clamp: 4;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.img-box {
  margin: 0px;
}

.img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.img-box-content img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

li.nav-item.dropdown.navdesktop ul {
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 10px;
  flex-direction: column;
  width: 750px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
}

.offcanvas-body .navbar-nav .dropdown-menu {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offcanvas-body .navbar-nav .dropdown-menu li a.active {
  background: white !important;

  color: black !important;
}

.offcanvas-body .navbar-nav .dropdown-menu li a {
  color: white !important;
  padding: 0;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
  padding: 10px 12px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #fff;
  line-height: 1.5;
  color: #6a7382;
  font-weight: 300;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  color: #000001;
  margin-top: 0;
  line-height: 1.5;
}

p {
  margin-bottom: 15px;
  color: #6a7382;
}

/* Navbar */

.navbar-nav li {
  bottom: 0;
}

.navbar-nav > li > a {
  font-size: 1rem;

  font-weight: 400;

  color: #ffffff;

  display: inline-block;

  position: relative;
}

.navbar-nav li a:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

/* Frame 1261154647 */

.header.sticky li a {
  /* color: white !important; */
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler {
  background: var(--primary);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white !important;
}

.offcanvas-header .btn-close {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
}

.offcanvas-body .navbar-nav li a:hover {
  color: black !important;
}

.navbar-nav .nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--primary-light);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li:hover,
.dropdown-menu li:hover a {
  background: white;
  color: #000001 !important;
}

ul.dropdown-menu {
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

.menu-width {
  width: 790px;
}

.dropdown-menu {
  background-color: var(--white);
  border-radius: 0px;
}

.service-menu-main {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  box-shadow: 5px 0 25px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e6e6e6;
  max-height: 500px;
  overflow: auto;
}

.service-menu {
  display: flex;
  text-decoration: none;
  flex-direction: column;
  gap: 9px;
  padding: 20px 25px;
  flex: 1;
}

.service-menu p {
  margin: 0;
  font-size: 13px;
}

.service-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.service-name > .icon {
  height: 30px;
  flex: 0 0 30px;
  overflow: hidden;
  /* border-radius: 50%; */
}

.service-name > .icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-menu:hover,
.service-menu.active {
  background: #e5f0fa;
  border-radius: 6px;
}

.service-menu h6 {
  font-size: 17px;
  font-family: var(--font-600);
  margin: 0;
}

.service-menu-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #0002;
}

.service-menu-list:nth-child(4) {
  border: 0;
}

.menu-width {
  width: 790px;
}

.navbar-brand img {
  width: 170px;
  transition: 0.6s;
}

.navbar-nav > li > a {
  font-size: 1rem;
  font-weight: 400;
  color: #000001 !important;
}

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

  color: white !important;
}

.offcanvas {
  background-color: white;
}

.offcanvas .navbar-nav .dropdown-menu {
  margin-top: 10px;
  border-radius: 8px;
  padding: 20px;
}

.offcanvas .navbar-nav .dropdown-menu li {
  width: 100%;
}

.offcanvas .navbar-nav .dropdown-menu li:hover,
.offcanvas .navbar-nav .dropdown-menu li:hover a {
  border-radius: 8px;
}

.offcanvas .btn-close svg {
  fill: white;
}

.offcanvas-header > img {
  width: 15rem;
}

.dropdown-menu {
  background-color: var(--primary-light);
  border-radius: 0px;
}

.dropdown-item {
  background: none !important;
}

.dropdown-menu li a {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 40px;
}

/* section */

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* header */
.header {
  padding: 15px 0 15px 0;
  background: #ffff;
  z-index: 999;
  transition: 0.6s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

header.sticky {
  padding: 0px 0px;
  position: fixed;
  width: 100%;
  z-index: 999;
  /* background: #000001; */
}

header.sticky #navbarNav {
  border-bottom: 0px !important;
}

header.sticky img {
  width: 150px;
  transition: all 0.5s ease-in-out;
}

/* top banner */
.top-banner {
  background: url("../images/top-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.top-banner .right-col h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
  color: white;
}

.top-banner .right-col p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 0;
}

/* End */

/* partner */
.client {
  padding-top: 25px;
  padding-bottom: 24px;
  margin-top: -98px;
  background: white;
  backdrop-filter: blur(50px);
}

.client img {
  margin: auto;
}

/* end */

/* contact us */

.contact-us {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* end */

/* form */
/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control {
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #1e1e1e42 !important;
  color: #1e1e1e !important;
  background-color: transparent !important;
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--primary-light);
  box-shadow: none !important;
  outline: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1e1e1e !important;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
  font-weight: 400;
}

/* end */

/* Button */

.btn-theme {
  border: 2px solid var(--primary-light);
  padding: 10px 35px;
  display: inline-block;
  font-weight: 500;
  background: var(--primary-light);
  color: #212121;
  transition: all ease-in-out 0.3s;
  font-size: 1rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.btn-theme:hover {
  border: 2px solid var(--primary);
  color: #ffffff;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn-theme:before {
  content: "";
  position: absolute;
  right: 0;
  background: var(--primary-light);
  height: 100%;
  width: 100%;
  top: 0;
}

.btn-theme > span {
  z-index: 5;
  position: relative;
  color: white;
}

.btn-theme:after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background: var(--primary);
  right: 0;
  top: 0;
  transition: 0.3s;
  border-radius: 50px 0px 0 50px;
}

.btn-theme:hover:after {
  width: 100%;
  border-radius: 0;
}

/* end */

/* footer */
.footer {
  padding: 70px 0;
  background: #001d23;
  padding-bottom: 20px;
  position: relative;
}

.footer-logo p {
  color: white;
  margin-top: 20px;
  font-size: 1rem;
}

.footer-links > h6 {
  color: var(--primary-light);
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-links > p {
  color: white;
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-links > ul {
  padding-left: 18px;
}

.footer-links > ul > li {
  padding: 20px 0px 0 0px;
  list-style-type: disclosure-closed;
  color: white;
  transition: all ease-in-out 0.3s;
}

.footer-links > ul > li:hover {
  color: var(--primary-light);
}

.footer-links > ul > li > a {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

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

.social > p > span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.social > p > a {
  color: var(--primary-light);
  margin: 0 5px;
  font-size: 1.2rem;
  transition: all ease-in-out 0.3s;
  background: white;
  padding: 10px 16px;
  border-radius: 30px;
}

.social > p > a:hover {
  color: #ffffff;
  background: var(--primary-light);
}

.footer-bootom-links > span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
}

/* end */

.animate-up {
  animation: up 3s ease-in-out infinite;
}

@keyframes up {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0);
  }
}

.animate-zoom {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
}

.footer-logo .trust-img {
  width: 10rem;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 0;
  padding-bottom: 4px;
}

ul.navbar-nav {
  gap: 22px;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

/* Hero-section */
.hero-section {
  background: #90e0ef;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background-image: url(../images/hero-bg.png);
  position: relative;
  z-index: 2;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
}

.hero-section-content h1 {
  font-size: 60px;
  font-family: var(--font-700);
  line-height: 1.2;
  text-transform: capitalize;
}

.hero-section-content > span {
  color: #00b4d8;
  font-family: var(--font-700);
}

.hero-section-content p {
  font-size: 17px;
  color: #3c3c3c;
}

.hero-section:after {
  content: "";
  position: absolute;
  right: -340px;
  width: 100%;
  height: 500px;
  bottom: 0;
  rotate: 310deg;
  background: linear-gradient(180deg, #0077b6 0%, #00b4d8 96.59%);
  animation: slide 0.5s ease-in-out forwards;
}

.hero-img {
  position: absolute;
  z-index: 2;
  /* bottom: 0; */
  z-index: 55;
  bottom: 0;
  height: 550px;
}

.hero-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #caf0f8;
  height: 140px;
  z-index: 4;
}

.hero-section-count-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 22px 37px;
  margin-top: 40px;
  margin-bottom: 20px;
  z-index: 5;
  position: relative;
  gap: 15px;
}

.hero-section-count {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}

.hero-section-count h4 {
  font-size: 18px;
  color: var(--primary);
  font-family: var(--font-700);
  margin: 0;
}

.hero-section-count span {
  color: #3b3b3b;
  font-size: 14px;
  font-family: var(--font-600);
}

@keyframes slide {
  from {
    rotate: 0deg;
    width: 100%;
    height: 100px;
  }

  to {
    height: 500px;
    right: -340px;
    rotate: -40deg;
  }
}

.main-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.main-heading > * {
  margin: 0;
}

.about-us-section-content .main-heading {
  align-items: center;
  text-align: center;
}
.about-us-section-img img {
  width: 100%;
  height: 100%; /* object-fit: cover; */
}
.main-heading h2 {
  font-size: 42px;
  font-family: var(--font-700);
  text-transform: capitalize;
  line-height: 1.2;
}

.main-sub-heading {
  position: relative;
}

.main-sub-heading span {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #00b4d8;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  font-family: var(--font-600);
  text-align: center;
}

.about-us-section-content .main-heading p {
  margin-bottom: 15px;
}

.about-us-section-content {
  padding: 0 30px;
}

/* Hero-end */

/* Service-start */
.service-section .main-heading {
  /* max-width: 630px; */
  /* align-items: center; */
  /* text-align: center; */
  /* margin: 0 auto; */
  margin-bottom: 20px;
  gap: 10px;
}

.main-heading {
  /* margin-bottom: 40px; */
}

.service-section-cards-main {
  padding: 40px;
  overflow-x: auto;
}

.service-section-card {
  flex: 0 0 340px;
  padding: 40px 30px;
  background: white;
  filter: drop-shadow(-10px 0px 16px rgba(0, 0, 0, 0.03));
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  animation-timeline: view(inline 90% 2%);
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  border: 2px solid var(--primary);
}

.service-section-card h4 {
  font-size: 17px;
  color: var(--primary);
  font-family: var(--font-600);
}

.service-section-card p {
  font-size: 16px;
  color: #767676;
}

.service-section-card a {
  color: var(--primary);
  font-family: var(--font-600) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-section-card:nth-child(2) {
  left: -200px;
}

.service-section-card:nth-child(3) {
  left: -400px;
}

.service-section-card:nth-child(4) {
  left: -600px;
}

.service-section-card:nth-child(5) {
  left: -800px;
}

.service-section-card:nth-child(6) {
  left: -1000px;
}

.service-section-card:nth-child(7) {
  left: -1200px;
}

.service-section-card:nth-child(8) {
  left: -1400px;
}

.service-section-card:nth-child(9) {
  left: -1600px;
}

.service-section-card:nth-child(10) {
  left: -1800px;
}

.service-section-card:hover {
  margin-right: 170px;
  transform: rotate(8.28deg);
  transition: 0.3s;
  position: relative;
  filter: drop-shadow(-10px 0px 16px rgba(0, 0, 0, 0.03));
  transform: rotate(6.57deg);
  transform: translate(-0.5rem, -1rem) rotate(3deg);
  background: #caf0f8;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.services-card-container {
  display: flex;
  /* flex-wrap: wrap; */
  position: relative;
  transform: translateZ(0px);
  width: 1535px;
}

.service-section-card a .icon {
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  font-size: 13px;
}

.service-section-card a:hover .icon {
  background: var(--primary);
  color: white;
}

.service-section-cards-main::-webkit-scrollbar {
  width: 4px;
  height: 15px;
  background-color: #ffffff79;
  border-radius: 50px;
}

section.service-section:after {
  content: "";
  position: absolute;
  /* left: 0; */
  bottom: 0;
  background: #90e0ef;
  height: 100%;
  width: 100%;
  z-index: 2;
  height: 500px;
  clip-path: polygon(0 46%, 100% 0, 100% 100%, 0 100%);
}

section.service-section {
  position: relative;
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%); */
  padding-bottom: 20px;
}

.service-section-cards-main::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 50px;
}

.service-section-main {
  position: relative;
  z-index: 55;
}

/* Service-end */

/* Why-choose-us */
.why-choose-us {
  background-color: #001d23;
  clip-path: polygon(0 0, 100% 6%, 100% 90%, 0 100%);
  margin-top: -113px;
  z-index: 5;
  position: relative;
  padding: 120px 0;
  padding-bottom: 150px;
  padding-bottom: 290px;
}

.center-heading {
  max-width: 660px;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

.white-text h2 {
  color: white;
}
.white-text p {
  color: #fff;
}
.why-choose-us-content {
  /* margin-top: 50px; */
}

.why-choose-us-card > * {
  margin: 0;
}

.why-choose-us-card {
  flex-direction: column;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.why-choose-us-card .num {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  border-radius: 50%;
  background: linear-gradient(180deg, #0077b6 0%, #00b4d8 96.59%);
  color: white;
  font-size: 20px;
  font-family: var(--font-700);
}

.why-choose-us-card h4 {
  font-size: 20px;
  color: white;
  font-family: var(--font-600);
}

.why-choose-us .center-heading {
  margin-bottom: 50px;
}

.why-choose-us-img {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.why-choose-us-card p {
  color: #dcdcdc;
  font-size: 15px;
}

section.faq .center-heading {
  margin-bottom: 50px;
}

.accordion-flush .accordion-item {
  margin-bottom: 16px;
  border-radius: 0;
  overflow: hidden;
  /* box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05); */
  border: 0;
  border-radius: 10px;

  background: #caf0f8;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
  box-shadow: none;
  /* Rectangle 29 */

  /* Gradient */
  background: linear-gradient(180deg, #0077b6 0%, #00b4d8 96.59%);
  border-radius: 10px;
}

.faq .accordion-button::after {
  content: "+";
  background: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  color: white;
}

.faq .about-us-section-heading {
  margin-bottom: 21px;
}

.faq_heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.accordion-flush .accordion-item .accordion-button {
  align-items: flex-start;
  font-weight: 700;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  /* color: var(--primary); */
}

.accordion-button {
  background: #caf0f8;
}

.faq-img {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

.accordion-button.collapsed {
  color: var(--primary);
}

.accordion-body p {
  color: #767676;
  font-size: 16px;
}

.footer-topcontent h4 {
  font-size: 32px;
  font-family: var(--font-600);
  text-transform: capitalize;
}

.footer-content {
  flex-direction: column;
  display: flex;
  gap: 80px;
}

.footer-service-link {
  flex-direction: column;
  display: flex;
}

.footer-service-link h6 {
  font-size: 23px;
  color: white;
  font-family: var(--font-500);
}

.footer-service-link ul {
  /*flex-direction: column;*/
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-service-link ul li a,
.footer-service-link ul li {
  font-size: 18px;
  color: #dcdcdc;
  display: flex;
  flex: 1 1 210px;
}

.footer-service-link ul li a:hover {
  transform: translateX(5px);
  color: var(--primary);
}

.footer-content .row {
  justify-content: space-between;
  z-index: 5;
  position: relative;
}

.footer-service-link > a {
  font-size: 30px;
  color: white;
  font-family: var(--font-600);
}

.footer-service-link > a:hover {
  color: var(--primary);
}

.footer-bottom-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-links ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.social-media-main {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-media-main a {
  font-size: 22px;
  color: #f2f5f7;
}

.footer-bottom-links ul a {
  color: #dcdcdc;
  font-size: 17px;
}

.footer-bottom {
  margin-top: 40px;
}

.footer-bottom-lower {
  margin-top: 30px;
  text-align: center;
  padding-top: 30px;
  border-top: 3px solid #ffffff6b;
}

.footer-bottom-links ul a:hover {
  color: var(--primary);
}

.footer-bottom-lower p {
  margin: 0;
  color: #dcdcdc !important;
  font-size: 18px !important;
}

form.needs-validation {
  padding: 40px;
  background: #caf0f8;
  border-radius: 10px;
  z-index: 5;
  position: relative;
}

footer .needs-validation .form-control {
  background: white;
  border: 0;
  padding: 21px 25px;
}

.footer > .container > .row {
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  position: relative;
}

.footer p {
  font-size: 17px;
  color: #484848;
  font-size: 18px;
  font-family: var(--font-600);
}

form.needs-validation h4 {
  font-size: 32px;
  color: #484848;
  font-family: var(--font-600);
}

.social-media-main a:hover {
  transform: translateY(-5px);
  color: var(--primary);
}

footer.footer > .row {
  position: relative;
  z-index: 5;
}

.footer:after {
  content: "";
  position: absolute;
  top: 0;
  background: #90e0ef;
  height: 100%;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 15%, 0 28%);
}

.footer-bottom-upper .navbar-brand {
  margin: 0;
  padding: 0;
}

/* Why-choose-us-end */

/* About-us */

.about-us-hero {
  background-image: url(../images/about-us-hero.png);
}

.billing-section .main-heading {
  align-items: flex-start;
  text-align: left;
}

section.sec-1 {
  padding-bottom: 150px;
  background: #90e0ef;
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
  padding-top: 90px;
}

section.sec-1 .center-heading {
  margin-bottom: 40px;
}

.sec-1-card {
  padding: 50px;
  background: #001d231f;
  border-radius: 20px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  filter: drop-shadow(-10px 0px 16px rgba(0, 0, 0, 0.03));
  /* box-shadow: -10px 0px 16px rgb(0 0 0 / 3%); */
  /* box-shadow: -10px 0px 16px rgb(0 0 0 / 18%); */
}

.sec-1-card .icon {
  height: 70px;
  width: 70px;
  background: RED;
  border-radius: 100%;
  /* Ellipse 4 */

  background: linear-gradient(180deg, #0077b6 0%, #00b4d8 96.59%);
}

.sec-1-card > * {
  margin: 0;
  position: relative;
  z-index: 2;
}

.sec-1-card h6 {
  font-size: 23px;
  font-family: var(--font-600);
  text-transform: capitalize;
  color: #001d23;
}

.sec-1-card p {
  color: #3c3c3c;
}

.sec-1-card:after {
  content: "";
  position: absolute;
  background: white;
  height: 100%;
  top: 0;
  width: 100%;
  left: 0;
  height: 0;
  transition: 0.3s;
}

.sec-1-card:hover:after {
  height: 100%;
}

.sec-1-card:hover {
  transform: translateY(-1.1rem) rotate(-3deg);
  filter: drop-shadow(-10px 0px 16px rgba(0, 0, 0, 0.03));
  box-shadow: -10px 0px 16px rgb(0 0 0 / 18%);
}

.col-lg-4:nth-child(2) .sec-1-card:hover {
  transform: translateY(-1.1rem);
}

.col-lg-4:nth-child(3) .sec-1-card:hover {
  transform: translateY(-1.1rem) rotate(3deg);
}

section.sec-1 .row {
  padding: 20px 0;
}

.our-mission-content h4 {
  font-size: 33px;
  color: black;
  font-family: var(--font-700);
}

.our-mission-list {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.our-mission-card .icon {
  height: 70px;
  width: 70px;
  flex: 0 0 70px;
  background: #caf0f8;
  border-radius: 50%;
}

.our-mission-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.our-mission-card-content h6 {
  font-size: 22px;
  font-family: var(--font-600);
  margin-bottom: 0;
}

.our-mission-card {
  background: #f8fbfb;
  padding: 25px;
  width: 100%;
}

.contact-us-body .footer:after {
  background: white;
}

/* About-us */

/* ASC billing */

.asc-billing {
  background-image: url(../images/asc-billing-hero.png);
}

section.hero-section form.needs-validation {
  background: white;
}

section.sec-1.secvice-sec-1 {
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
}

section.sec-1.secvice-sec-1 .main-heading ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.sec-1.secvice-sec-1 .main-heading ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

section.sec-1.secvice-sec-1 .main-heading ul li .icon {
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0077b6;
  border-radius: 50%;
  color: white;
  flex: 0 0 25px;
}

section.sec-1.secvice-sec-1 .main-heading p {
  margin-bottom: 15px;
  color: #3c3c3c;
}

section.sec-1.secvice-sec-1 h2 {
  margin-bottom: 25px;
}

section.sec-1.secvice-sec-1 .row {
  align-items: center;
}

section.sec-1.secvice-sec-1 .main-heading ul li span {
  color: #3c3c3c;
}

.secvice-sec-1-img.img-box-content {
  height: 640px;
}

.secvice-sec-1-img.img-box-content img {
  object-fit: cover;
}

/* ASC billing */

/* Ambulance Billing */

.ambulance-billing {
  background-image: url(../images/ambulance-billing-hero.png);
}

/* Ambulance Billing */

/* Chiropractic Billing */

.chiropractic-billing {
  background-image: url(../images/chiropractic-billing-hero.png);
}

/* Chiropractic Billing */

/* DME Billing */

.dme-billing {
  background-image: url(../images/dme-billing-hero.png);
}

/* DME Billing */

/* Hospital Billing */

.hospital-billing {
  background-image: url(../images/hospital-billing-hero.png);
}

/* Hospital Billing */

/* Internal Medicine Billing */
.internal-medicine-billing {
  background-image: url(../images/internal-medicine-billing-hero.png);
}

/* Internal Medicine Billing */

/* physician-orders */

.physician-orders {
  background-image: url(../images/physician-orders-hero.png);
}

/* physician-orders */

/* urgent care billing  */

.urgent-care-billing {
  background-image: url(../images/urgent-care-billing-hero.png);
}

/* urgent care billing  */

/* Modal  */
button.btn-close.position-absolute.top-0.end-0.p-2 {
  position: absolute;
  top: 10px !important;

  z-index: 555;
  right: 10px !important;
}

.modal-body {
  padding: 0;
  border-radius: 10px;
}

.modal-body form.needs-validation {
  padding: 30px;
  background: white;
}

.modal-content {
  background: transparent;
}

.modal-body form.needs-validation h4 {
  text-align: center;
  animation: bounce 2s infinite;
  color: var(--primary);
}

button.btn-close {
  position: absolute;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary) !important;
  z-index: 6;
  color: white !important;
  right: 10px;
  top: 10px;
}

.thank-you .top-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(226, 250, 255);
  background: linear-gradient(
    90deg,
    rgba(226, 250, 255, 1) 0%,
    rgba(145, 191, 246, 1) 100%
  );
}

h1.title,
h1 span {
  font-size: 50px;
  color: black;
  font-family: var(--font-600);
}

h1 span {
  color: var(--primary);
}

button.btn-close:after {
  content: none;
}
.billing-section .main-heading ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.billing-section .main-heading ul li .icon {
  height: 25px;
  flex: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00b4d8;
  border-radius: 50%;
  color: white;
}

.billing-section .main-heading ul {
  margin-top: 20px;
}

.billing-section .main-heading strong {
  color: black;
  font-size: 20px;
  font-family: var(--font-600);
}
.main-sub-heading.right-side strong {
  font-size: 20px;
}

.main-heading strong {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: var(--font-500);
  color: black;
}
.did-know {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.about-us-section-img {
  height: 100%;
}
.about-us-section-img img {
  object-fit: contain;
}
.did-know-list li span {
  color: var(--primary);
  margin-right: 5px;
}

.did-know-list li {
  font-size: 17px;
  margin-bottom: 10px;
  color: black;
}

.did-know-list li::marker {
  color: var(--primary);
}
ul.did-know-list {
  margin: 0;
}

.did-know strong {
  color: var(--primary);
  font-size: 19px;
  text-align: center;
}
.service-section > * {
  position: relative;
  z-index: 5;
}
.card-ser {
  background: white;
  padding: 15px 20px;
  display: flex;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 41.1407px 47.0179px rgba(32, 46, 72, 0.08);
  border-radius: 7.95876px;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.card-ser-content > * {
  margin: 0;
}

.card-ser-content > h3 {
  font-size: 18px;
  font-family: var(--font-600);
}
.card-ser-main {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.why-choose-us-fix > span {
  color: #dcdcdc;
  font-size: 24px;
}

.why-choose-us-fix h3 {
  font-size: 40px;
  color: white;
  font-family: var(--font-600);
}

.why-choose-us-fix {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}

.why-choose-us-fix ul.did-know-list li::marker {
  color: #90e0ef;
}

.why-choose-us-fix ul.did-know-list li {
  color: #ffffff96;
}

.why-choose-us-fix > strong {
  color: #ffffff82;
  font-size: 24px;
  display: block;
  margin: 20px 0;
  font-family: var(--font-600);
}

.billing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  flex-direction: column;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.billing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  min-width: 600px;
}

.billing-table thead tr {
  background-color: #90e0ef; /* Header background */
  color: #ffffff;
}

.billing-table th,
.billing-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #ddd;
  text-align: center;
}

.billing-table tbody tr:nth-child(even) {
  background-color: #dbf9ff; /* Even row background */
}

@media (max-width: 768px) {
  .billing-table th,
  .billing-table td {
    font-size: 14px;
    padding: 10px 12px;
  }
}
table.billing-table thead tr th {
  padding: 22px 12px;
  color: black;
  border-right: 1px solid black;
}

.billing-table tbody tr {
  background: white;
}

.billing-table tbody tr td {
  padding: 21px 26px;
  text-align: left;
  font-family: var(--font-600);
  color: black;
  text-align: center;
}
.billing-table-wrapper-main details summary {
  color: #0553c9;
  text-decoration: underline;
  font-size: 18px;
  font-family: var(--font-600);
}
.billing-table-wrapper-main details summary::marker {
  content: none;
}

.billing-table-wrapper-main details[open] summary i {
  rotate: 180deg;
  transition: 0.3s;
  display: inline-block;
}
.billing-table-wrapper-main details summary i {
  rotate: 180deg;
}
.fix-table {
  margin-top: -240px;
  z-index: 55;
  position: relative;
  margin-bottom: 370px;
}
.billing-table-wrapper details {
  flex-direction: column;
  display: inline-flex;
  align-items: flex-start;
}
.main-heading.dbbbs-heading.center-heading.fade-in {
  margin-bottom: 30px;
}
.dbbbs {
  background-image: url(../images/dbbbs-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 130px;
  background-size: cover;
}
.dbbbs-card {
  padding: 26px 24px;
  background: white;
  background: #feffff;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  filter: drop-shadow(-10px 0px 16px rgba(0, 0, 0, 0.03));
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
}

.dbbbs-card {
}

.dbbbs-card > span {
  font-size: 22px;
  font-family: var(--font-700);
  color: var(--primary);
  width: 100%;
  text-align: center;
}

.dbbbs-card ul {
  flex-direction: column;
  display: flex;
  gap: 6px;
}
.dbbbs-card ul li span {
  color: black;
  margin-right: 6px;
}
.calender-main {
  padding: 50px 70px;
  background: #90e0ef;
}
.calender-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.calender-content h4 {
  color: black;
  font-family: var(--font-700);
  font-size: 28px;
}
.calender-content-list {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 18px;
  color: black;
}

.calender-content-list-main {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
}

.calender-content-list .icon {
  color: #0185be;
}

.calender-content-list span {
  font-family: var(--font-500);
}
.calender-main {
  max-width: 1200px;
  margin: 0 auto;
}
.calender-content > span,
.calender-content > span strong {
  background: white;
  padding: 19px 29px;
  color: #161616;
  font-family: var(--font-700);
  font-size: 17px;
}

.calender-content > span strong {
  padding: 0;
  color: #0185be;
}

/* calender */

.calendar {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 450px;
}

.calendar h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 10px;
  margin-bottom: 16px;
}

.weekdays div {
  font-weight: 500;
  color: #666;
  font-size: 14px;
}

.days div {
  font-size: 15px;
  color: #222;
  padding: 6px;
  font-family: var(--font-500);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.days .inactive {
  color: #ccc;
}

.days div:not(.inactive):hover,
.days div:not(.inactive).selected {
  background: var(--primary);
  color: white;
}

/* .weekdays > div:hover,
.weekdays > div.active {
  background: var(--primary);
  color: white;
} */
.inactive {
  cursor: no-drop !important ;
}
.next-prev-button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.next-prev-button > div {
  color: var(--primary);
  font-size: 25px;
  font-family: var(--font-700);
  cursor: pointer;
}

.calender-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.calender-content > span {
  margin-bottom: 20px;
}

.custom-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 100%;
  width: 550px;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

#calendar-form label {
  font-weight: 500;
  color: #555;
}

#calendar-form input {
  font-size: 16px;
  padding: 10px;
}

#calendar-form button {
  font-size: 16px;
  padding: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

#calendar-form button:hover {
  background: #333;
}

.mdoal-btn-cl {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-modal form#calendar-form .btn {
  background: var(--primary) !important;
  width: unset !important;
  padding: 9px 25px;
}

.custom-modal form#calendar-form .btn:hover {
  color: white;
  background: var(--primary-light) !important;
}
.is-invalid {
  border-color: red !important;
  box-shadow: 0 0 5px red;
}
.dbbbs-content .main-heading {
  margin-top: -340px;
  margin-bottom: 60px !important;
}
.did-know > span {
  padding: 11px 20px;
  background: var(--primary);
  color: white;
  font-size: 21px;
}
.col-lg-6:has(.calendar) {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid white;
  border-left: 5px solid #ffffff;
}
.form-group.mb-3.text-center lable {
  color: red;
}

.form-group.mb-3.text-center label {
  color: var(--primary);
  font-size: 18px;
  font-family: var(--font-600);
}
.hero-section-content h2 {
  font-size: 30px;
  font-family: var(--font-600);
}
.about-us-section-content .main-heading > span {
  font-size: 20px;
  color: gray;
  font-family: var(--font-600);
  color: var(--primary);
  display: block;
  margin: 10px 0;
}
.root-cause {
  margin-top: 20px;
}

.root-cause strong {
  font-size: 20px;
  color: black;
  font-family: var(--font-600);
}

.root-cause p {
  color: black;
  font-size: 16px;
}
section#calender-sec {
  margin-bottom: 140px;
}
.dbbbs-card ul {
  list-style-position: inside;
  padding: 0;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.dbbbs-card ul li::marker {
  color: var(--primary);
}

.dbbbs-card ul li span {
  font-size: 17px;
  font-family: var(--font-600);
}

.table-m {
  padding-bottom: 40px;
}
.table-m {
  margin: 0;
}
.table-m .fix-table.fade-in {
  margin: 0;
}
section.fix-table.p-0.table-m {
  padding: 50px !important;
}
