@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1199px) {
  .container {
    padding: 0px 15px;
    max-width: 100%;
  }
}

body {
  font-family: "DM Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #334F70 !important;
}

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

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(165, 163, 163);
}

::-webkit-scrollbar-thumb {
  background: #2D8DFF;
}

input,
select,
button {
  outline: none;
  height: 45px;
  background: none;
  font-size: 15px;
}

input {
  text-indent: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.box-style-form {
  border-radius: 11px;
  background: #FFF;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.16);
  padding: 25px 15px;
}
.box-style-form .input-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.box-style-form .input-holder {
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 525px) {
  .box-style-form .input-holder {
    width: 100%;
    margin-bottom: 16px;
  }
  .box-style-form .input-holder:last-child {
    margin-bottom: 0px;
  }
}
.box-style-form .input-holder label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.box-style-form .input-holder input,
.box-style-form .input-holder select {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  text-indent: 10px;
}
.box-style-form .input-holder input {
  width: 100% !important;
}

.scroll-wrapper {
  position: relative;
  width: 100%;
}
.scroll-wrapper .scroll-left {
  position: absolute;
  background: white;
  left: -24px;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 30;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  cursor: pointer;
}
.scroll-wrapper .scroll-left:hover {
  background: #2D8DFF;
  color: white;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .scroll-wrapper .scroll-left {
    left: 0px;
  }
}
@media (max-width: 525px) {
  .scroll-wrapper .scroll-left {
    width: 40px;
    height: 40px;
    left: -8px;
  }
}
.scroll-wrapper .scroll-right {
  position: absolute;
  background: white;
  right: -24px;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 30;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.scroll-wrapper .scroll-right:hover {
  background: #2D8DFF;
  color: white;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .scroll-wrapper .scroll-right {
    right: 0px;
  }
}
@media (max-width: 525px) {
  .scroll-wrapper .scroll-right {
    width: 40px;
    height: 40px;
    right: -8px;
  }
}

.fullwidth {
  width: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1B4678 !important;
}

h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 56px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 525px) {
  h2 {
    font-size: 30px;
    line-height: 37px;
  }
  h2 br {
    display: none;
  }
}

h4 {
  font-size: 25px;
  font-weight: 700;
}
@media (max-width: 525px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.sub-head {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 525px) {
  .sub-head {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px !important;
  color: #334F70;
}

.read-more-btn {
  font-size: 18px;
  font-weight: 700;
  color: #334F70;
  text-decoration-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

button {
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
}

.filled-btn {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  background: linear-gradient(102deg, #FBAA19 0%, #FF7A00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
}

.save-btn {
  color: #2D8DFF;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
.save-btn ion-icon {
  margin-right: 5px;
}

.outline-btn {
  width: 109px;
  height: 45px;
  border: 1px solid #2D8DFF;
  background: none;
  text-decoration: none;
  color: #2D8DFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.shimmer {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.461);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 290;
  display: none;
}

.gradient-text {
  background-image: linear-gradient(119deg, #2D8DFF 0%, #004699 92.19%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}
.gradient-text .underline {
  position: absolute;
  width: 50%;
  bottom: -22px;
  left: 95px;
}
@media (max-width: 525px) {
  .gradient-text .underline {
    display: none;
  }
}
.gradient-text .underline img {
  width: 100%;
}
.gradient-text .resize-line {
  width: 80%;
  left: 40px;
}
.gradient-text .resize-line2 {
  width: 65%;
  left: 40px;
  bottom: -25px;
}
.gradient-text .resize-line3 {
  width: 100%;
  left: 0px;
  bottom: -12px;
}
.gradient-text .resize-line4 {
  width: 70%;
  left: 40px;
  bottom: -15px;
}

#filter-button {
  width: 182px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  transition: 0.3s;
  background: none;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  color: rgba(0, 0, 0, 0.47);
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 525px) {
  #filter-button {
    justify-content: center;
  }
}
#filter-button .icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#filter-button .icon ion-icon {
  font-size: 20px;
  color: #2D8DFF;
}
#filter-button:hover {
  background: rgb(143, 195, 211);
  transition: 0.3s;
  color: white;
  border: none;
}
#filter-button:hover span {
  color: white;
}
#filter-button:hover .icon ion-icon {
  color: white;
}

.searchbar {
  max-width: 75rem;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  width: 267px;
  height: 45px;
}
@media (max-width: 525px) {
  .searchbar {
    width: 100%;
  }
}
.searchbar input {
  height: 100%;
  width: calc(100% - 30px);
  display: flex;
  outline: none;
  border: none;
  padding: 0px;
}
.searchbar input[type=text]::-moz-placeholder {
  font-size: 13px;
}
.searchbar input[type=text]::placeholder {
  font-size: 13px;
}
.searchbar button {
  border: none;
  background: none;
  width: 33px;
  height: 33px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.searchbar button ion-icon {
  color: #2D8DFF;
  text-align: center;
  font-size: 20px;
  margin-right: 0px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
}
.preloader .loader-icon {
  width: 150px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.preloader .loader-icon .front {
  overflow: hidden;
  width: 150px;
  position: relative;
  z-index: 5;
  animation: wipe 1.5s forwards linear;
  overflow-x: hidden;
}
.preloader .loader-icon .front img {
  width: 150px;
  filter: grayscale(100%);
}
.preloader .loader-icon .back img {
  width: 150px;
}

@keyframes wipe {
  from {
    width: 150px;
  }
  to {
    width: 0px;
  }
}
.card-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card-wrapper:after {
  content: "";
  width: calc(33.3333333333% - 20px);
}

.card {
  width: calc(33.3333333333% - 20px);
  text-decoration: none;
  color: #334F70;
}

.contact-button-sticky-desktop {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 300;
}
@media (max-width: 768px) {
  .contact-button-sticky-desktop {
    bottom: 40px;
  }
}
.contact-button-sticky-desktop .options {
  width: 300px;
  height: 300px;
  position: absolute;
  top: -320px;
  right: 0;
  border-radius: 10px;
  padding: 20px;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: white;
}
.contact-button-sticky-desktop .options .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 25px;
  color: .contact-button-sticky-desktop .options .close #334F70;
}
.contact-button-sticky-desktop .options .close ion-icon {
  width: 22px;
  height: 22px;
  color: #334F70;
  border-radius: 100%;
}
.contact-button-sticky-desktop .options .head {
  display: flex;
  align-items: center;
  color: #334F70;
}
.contact-button-sticky-desktop .options .head .icon {
  width: 52px;
  border-radius: 100%;
}
.contact-button-sticky-desktop .options .head .icon img {
  width: 100%;
}
.contact-button-sticky-desktop .options .head .info .title {
  margin-left: 10px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0px;
}
.contact-button-sticky-desktop .options .head .info .position {
  font-size: 14px;
  margin-left: 10px;
  opacity: 0.7;
}
.contact-button-sticky-desktop .options .content {
  margin-top: 20px;
  font-weight: 400;
  line-height: 25px;
  color: #334F70;
}
.contact-button-sticky-desktop .options .button {
  margin-top: 10px;
}
.contact-button-sticky-desktop .options .button a {
  text-decoration: none;
  font-size: 15px;
  display: block;
  background: black;
  color: white;
  padding: 13px 20px;
  text-align: center;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact-button-sticky-desktop .options .button a .desk-show,
.contact-button-sticky-desktop .options .button a .mob-show {
  display: none;
}
@media (min-width: 768px) {
  .contact-button-sticky-desktop .options .button a .desk-show {
    display: block;
  }
}
@media (max-width: 768px) {
  .contact-button-sticky-desktop .options .button a .mob-show {
    display: block;
  }
}
.contact-button-sticky-desktop .options .button a ion-icon {
  margin-right: 10px;
  font-size: 20px;
}
.contact-button-sticky-desktop .options .button a:nth-child(1) {
  background: #eee;
  color: #334F70;
}
.contact-button-sticky-desktop .options .button a:nth-child(2) {
  background: #075e54;
  color: white;
}
.contact-button-sticky-desktop button {
  width: 150px;
  height: 50px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  border: none;
  color: white;
  border-radius: 10px;
  animation: borderPulse 2000ms infinite ease-out;
  display: none;
}

.contact-button-sticky-desktop-active .options {
  transition: 0.3s;
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

@keyframes borderPulse {
  0%, 45% {
    box-shadow: 0px 0px 0px 0px rgba(120, 119, 142, 0.7);
  }
  100% {
    box-shadow: 0px 0px 0px 15px rgba(242, 242, 242, 0.01);
  }
}
.sidemenu {
  width: 80%;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 300;
  background: white;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: 0.2s;
}
@media (max-width: 525px) {
  .sidemenu {
    width: 100%;
  }
}
.sidemenu .close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
  padding-right: 5px;
}
.sidemenu .close .icon {
  background: #F5F5F5;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 5px;
  float: right;
}
.sidemenu .close .icon ion-icon {
  font-size: 24px;
  font-weight: 500;
}
.sidemenu ul {
  width: 100%;
  margin-top: 20px;
  height: calc(100% - 100px);
  overflow-y: scroll;
  padding: 0px 10px;
}
.sidemenu ul li {
  list-style: none;
  position: relative;
}
.sidemenu ul li .call-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.sidemenu ul li .call-btn:after {
  display: none;
}
.sidemenu ul li .call-btn .icon {
  width: 30px;
  margin-right: 10px;
}
.sidemenu ul li .call-btn .icon img {
  width: 100%;
}
.sidemenu ul li .call-btn span {
  font-weight: 700;
}
.sidemenu ul li .book-service-btn {
  padding: 10px 10px;
  color: white;
  background: #FBAA19;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.sidemenu ul li .book-service-btn:after {
  display: none;
}
.sidemenu ul li .book-service-btn span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidemenu ul li .drop-down {
  padding-left: 20px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: none;
}
.sidemenu ul li .drop-down ul {
  display: flex;
  flex-direction: column;
}
.sidemenu ul li .drop-down ul li {
  width: 100%;
}
.sidemenu ul li .drop-down ul li a {
  border-bottom: 1px solid rgba(54, 54, 54, 0.1764705882);
  padding: 0px;
  display: block;
  padding: 15px;
  font-size: 16px;
  position: relative;
}
.sidemenu ul li .drop-down ul li a b {
  color: #2D8DFF;
  font-size: 11px;
  animation: blink 1s linear infinite;
}
.sidemenu ul li .drop-down ul li a b ion-icon {
  margin-left: 5px;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.sidemenu ul li .drop-down ul li:last-child a {
  border: none;
}
.sidemenu ul li .active-drop {
  display: block;
}
.sidemenu ul li a {
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  color: #334F70;
}
.sidemenu ul li a::after {
  content: ">";
  font-size: 20px;
  position: absolute;
  top: 25%;
  right: 10px;
}
.sidemenu ul li a ion-icon {
  margin-left: 10px;
}
.sidemenu ul li:last-child a {
  border: none;
}
.sidemenu ul li .active {
  color: #2D8DFF;
}

.sidemenu-active {
  right: 0;
  opacity: 1;
  transition: 0.3s;
}

header {
  width: 100%;
  height: 100px;
  background: white;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 250;
}
header .header-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-wrap .logo {
  width: 165px;
}
header .header-wrap .logo a {
  width: 100%;
}
header .header-wrap .logo a img {
  width: 100%;
}
header .header-wrap nav {
  width: 70%;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  header .header-wrap nav {
    display: none;
  }
}
header .header-wrap nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header-wrap nav ul li {
  margin-right: 40px;
  list-style: none;
  position: relative;
}
@media (max-width: 1150px) {
  header .header-wrap nav ul li {
    margin-right: 20px;
  }
}
header .header-wrap nav ul li:last-child {
  margin-right: 0px;
}
header .header-wrap nav ul li .call-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .header-wrap nav ul li .call-btn .icon {
  width: 30px;
  margin-right: 10px;
}
header .header-wrap nav ul li .call-btn .icon img {
  width: 100%;
}
header .header-wrap nav ul li .call-btn span {
  font-weight: 700;
}
header .header-wrap nav ul li .book-service-btn {
  padding: 10px 10px;
  color: white;
  background: #FBAA19;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .header-wrap nav ul li .book-service-btn span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-wrap nav ul li a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 17px;
  text-decoration: none;
  color: #334F70;
}
header .header-wrap nav ul li a ion-icon {
  position: relative;
  top: 4px;
}
header .header-wrap nav ul .active {
  color: #2D8DFF;
}
header .header-wrap nav ul .drop-down {
  position: absolute;
  left: 0;
  top: 60px;
  width: 250px;
  max-height: 520px;
  background: white;
  padding: 5px;
  padding-top: 6px;
  display: none;
  box-shadow: 0px 1px 16px rgba(207, 200, 200, 0.5215686275);
}
header .header-wrap nav ul .drop-down ul {
  display: flex;
  flex-direction: column;
}
header .header-wrap nav ul .drop-down ul li {
  width: 100%;
  margin-right: 0px;
}
header .header-wrap nav ul .drop-down ul li:last-child a {
  border-bottom: none;
}
header .header-wrap nav ul .drop-down ul li a {
  border-bottom: 1px solid rgba(54, 54, 54, 0.1764705882);
  display: block;
  padding: 8px 8px;
  font-size: 13px;
  font-weight: 500;
  color: black !important;
}
header .header-wrap nav ul .drop-down ul li a:hover {
  background: #2D8DFF;
  color: white !important;
}
header .header-wrap nav ul .drop-down ul li .active {
  background: #2D8DFF;
  color: white !important;
}
header .header-wrap nav ul .drop-down ul li .active-drop {
  background: #2D8DFF;
  color: white !important;
}
header .header-wrap nav ul .drop-down ul li:last-child a {
  border: none;
}
header .header-wrap nav ul .drop-down ul .active {
  color: #2D8DFF;
}
header .header-wrap nav ul .drop-down ul .active:before {
  display: none;
}
header .header-wrap nav ul .drop-down ul .active:after {
  display: none;
}
header .header-wrap nav ul .drop-down-active {
  display: block;
}
header .header-wrap .hamburger {
  width: 31px;
  display: none;
}
@media (max-width: 1000px) {
  header .header-wrap .hamburger {
    display: block;
  }
}
header .header-wrap .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: black;
  margin-bottom: 6px;
  border-radius: 10px;
}
header .header-wrap .hamburger span:last-child {
  margin: 0;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .banner {
    margin-top: 60px;
  }
}
.banner:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
}
.banner .container {
  height: 100%;
}
.banner .container .banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .banner .container .banner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.banner .container .banner-content .left {
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .banner .container .banner-content .left {
    width: 100%;
    display: none;
  }
}
.banner .container .banner-content .left .bg-image {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  display: none;
}
.banner .container .banner-content .left .bg-image img {
  width: 100%;
}
.banner .container .banner-content .left .image {
  width: 600px;
  height: 88%;
}
@media (max-width: 525px) {
  .banner .container .banner-content .left .image {
    width: 100%;
  }
}
.banner .container .banner-content .left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: -5px;
}
.banner .container .banner-content .right {
  width: 59%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .banner .container .banner-content .right {
    width: 100%;
    padding-top: 0px;
    padding-left: 0px;
  }
}
.banner .container .banner-content .right h1 {
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .banner .container .banner-content .right h1 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .banner .container .banner-content .right h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
  }
}
.banner .container .banner-content .right h1 span {
  color: linear-gradient(119deg, #2D8DFF 0%, #004699 92.19%) !important;
}
.banner .container .banner-content .right .book-service {
  width: 100%;
}
.banner .container .banner-content .right .book-service p {
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px 8px 0px 0px;
  background: #D7FFD8;
  width: 327px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  margin-bottom: -10px;
}
@media (max-width: 425px) {
  .banner .container .banner-content .right .book-service p {
    font-size: 15px;
    width: 100%;
  }
}

#home-banner {
  background: url(../assets/images/banner/relithealthcare-banner-image1.png);
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  #home-banner {
    flex-direction: column;
    margin-top: 100px;
    padding: 70px 0px;
    padding-top: 150px;
    min-height: 100vh;
    height: 100%;
    background: #2D8DFF;
    background: url(../assets/images/banner/relithealthcare-res-banner-image.png);
    background-position: center;
    background-size: cover;
    background-position-y: -2%;
  }
}
@media (max-width: 525px) {
  #home-banner .banner-content {
    margin-top: 110px;
  }
}
@media (max-width: 425px) {
  #home-banner .banner-content {
    margin-top: 118px;
  }
}
#home-banner .left {
  width: 57%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #home-banner .left {
    width: 100%;
  }
}
#home-banner .left .sub-head-wrap {
  position: relative;
}
@media (max-width: 500px) {
  #home-banner .left .sub-head-wrap {
    text-align: center;
    width: 100%;
  }
}
#home-banner .left .sub-head-wrap .sub-head {
  margin-bottom: 10px;
  color: #FFFFFF;
  margin-top: 20px;
}
#home-banner .left .sub-head-wrap .brand-icon {
  width: 130px;
  position: absolute;
  top: -185px;
  left: -50px;
}
@media (max-width: 768px) {
  #home-banner .left .sub-head-wrap .brand-icon {
    width: 80px;
    top: -108px;
    left: -16px;
  }
}
@media (max-width: 525px) {
  #home-banner .left .sub-head-wrap .brand-icon {
    width: 80px;
    top: -108px;
    left: 172px;
  }
}
@media (max-width: 425px) {
  #home-banner .left .sub-head-wrap .brand-icon {
    width: 80px;
    top: -108px;
    left: 145px;
  }
}
#home-banner .left .sub-head-wrap .brand-icon img {
  width: 100%;
}
#home-banner .left h1 {
  font-size: 52px;
  color: #FFFFFF !important;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 768px) {
  #home-banner .left h1 {
    font-size: 45px;
  }
}
@media (max-width: 500px) {
  #home-banner .left h1 {
    font-size: 34px;
    text-align: center;
  }
}
#home-banner .left .button-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 525px) {
  #home-banner .left .button-wrap {
    flex-direction: column;
    width: 100%;
  }
}
#home-banner .left .button-wrap .filled-btn {
  width: 182px;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 600;
}
@media (max-width: 525px) {
  #home-banner .left .button-wrap .filled-btn {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0px;
  }
}
#home-banner .left .button-wrap .outline-btn {
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  color: #FFFFFF;
  width: 182px;
  font-weight: 600;
}
@media (max-width: 500px) {
  #home-banner .left .button-wrap .outline-btn {
    width: 100%;
    background: #e8e8e8;
    color: black;
    border: none !important;
  }
}
#home-banner .left .res-image {
  display: none;
}
@media (max-width: 525px) {
  #home-banner .left .res-image {
    display: flex;
    width: 100%;
    height: 300px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
  }
  #home-banner .left .res-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#home-banner .right {
  width: 38%;
  padding-top: 70px;
}
@media (max-width: 768px) {
  #home-banner .right {
    width: 100%;
  }
}
@media (max-width: 525px) {
  #home-banner .right {
    padding-top: 40px;
  }
}
#home-banner .right .box-style-form {
  padding: 20px;
}
@media (max-width: 425px) {
  #home-banner .right .box-style-form {
    padding: 15px;
  }
}
#home-banner .right .box-style-form h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width: 425px) {
  #home-banner .right .box-style-form h5 {
    font-size: 22px;
  }
}
@media (max-width: 375px) {
  #home-banner .right .box-style-form h5 {
    font-size: 20px;
  }
}
#home-banner .right .box-style-form p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #707070;
  width: 100%;
  background: none;
  justify-content: flex-start;
  padding: 0px;
  margin-bottom: 15px;
}
#home-banner .right .box-style-form .input-wrap {
  display: flex;
  flex-direction: column;
}
#home-banner .right .box-style-form .input-wrap .input-holder {
  width: 100%;
  margin-bottom: 15px;
}
#home-banner .right .box-style-form .input-wrap .input-holder:last-child {
  margin-bottom: 0px;
}

#healthcare-banner {
  background: url(../assets/images/banner/relithealthcare-banner-healthcare1.png);
  background-position: center;
  background-size: cover;
  margin-top: 80px;
}
#healthcare-banner::after {
  display: none;
}
#healthcare-banner .banner-content .left .image {
  height: auto;
  display: none;
}
#healthcare-banner .banner-content .right {
  padding-top: 40px;
}

#healthcare-banner .banner-content .left {
  width: 39%;
}
#healthcare-banner .banner-content .right {
  width: 61%;
}
#healthcare-banner .banner-content .right h1 {
  font-size: 48px;
}
#healthcare-banner .banner-content .right .res-image {
  display: none;
}
#healthcare-banner .banner-content .right .box-style-form {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #healthcare-banner {
    background: url(../assets/images/banner/relithealthcare-res-banner-image-for-healthcare.png);
    background-position: center;
    background-size: cover;
    margin-top: 100px;
    padding-top: 30px;
    height: auto;
    position: relative;
    background-position-y: 11%;
  }
  #healthcare-banner:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
    display: block;
  }
  #healthcare-banner .banner-content .right {
    width: 100%;
  }
  #healthcare-banner .banner-content .right h1 {
    margin-bottom: 0px;
    color: white !important;
    text-align: center;
  }
  #healthcare-banner .banner-content .right .res-image {
    display: block;
    width: 100%;
    margin-bottom: -45px;
  }
  #healthcare-banner .banner-content .right .res-image img {
    width: 100%;
  }
}
@media (max-width: 525px) {
  #healthcare-banner .banner-content .right {
    width: 100%;
    margin-top: 30px;
  }
  #healthcare-banner .banner-content .right h1 {
    font-size: 33px;
  }
  #healthcare-banner .banner-content .right .box-style-form .input-wrap {
    flex-direction: column;
  }
  #healthcare-banner .banner-content .right .box-style-form .input-wrap .input-holder {
    width: 100%;
  }
}
.features {
  width: 100%;
  margin-top: 60px;
  display: none;
}
.features .card-wrapper .card {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #EBF4FF;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .features .card-wrapper .card {
    padding: 15px 10px;
    width: calc(33.3333333333% - 10px);
  }
}
@media (max-width: 525px) {
  .features .card-wrapper .card {
    width: 100%;
    margin-bottom: 20px;
  }
  .features .card-wrapper .card:last-child {
    margin-bottom: 0px;
  }
}
.features .card-wrapper .card .icon {
  width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 100%;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .features .card-wrapper .card .icon {
    width: 65px;
    height: 65px;
  }
}
.features .card-wrapper .card .icon img {
  width: 53px;
}
@media (max-width: 768px) {
  .features .card-wrapper .card .icon img {
    width: 44px;
  }
}
.features .card-wrapper .card h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .features .card-wrapper .card h5 {
    font-size: 20px;
  }
}
@media (max-width: 525px) {
  .features .card-wrapper .card h5 {
    margin-bottom: 6px;
  }
}
.features .card-wrapper .card p {
  text-align: center;
}
#rental-products {
  min-height: 80vh;
}

.rental-features {
  display: none;
}
@media (max-width: 525px) {
  .rental-features {
    margin-top: 20px;
  }
}

#healthcare-services {
  margin-top: 0px;
}

.services {
  width: 100%;
  margin-top: 60px;
  padding: 60px 0px;
  padding-bottom: 0px;
}
.services .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
.services .box .card-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .services .box .card-wrapper {
    flex-direction: column;
  }
}
.services .box .card-wrapper .card {
  width: calc(33.3333333333% - 20px);
  height: 770px;
  background: #527088;
  position: relative;
  padding: 20px;
  padding-top: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .services .box .card-wrapper .card {
    width: calc(50% - 20px);
    margin-bottom: 50px;
  }
  .services .box .card-wrapper .card:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .services .box .card-wrapper .card {
    width: 100%;
  }
}
.services .box .card-wrapper .card .title {
  padding: 10px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 30px;
  background: #EBF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -60px;
  margin-bottom: 20px;
  border: 1px solid orange !important;
}
.services .box .card-wrapper .card .image {
  width: 100%;
  height: 197px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.services .box .card-wrapper .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .box .card-wrapper .card .rate-wrap {
  width: 100%;
  height: calc(100% - 245px);
}
.services .box .card-wrapper .card .rates {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.services .box .card-wrapper .card .rates p {
  font-size: 21px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 7px;
  width: 100%;
  text-align: center;
}
@media (max-width: 375px) {
  .services .box .card-wrapper .card .rates p {
    font-size: 16px !important;
  }
}
.services .box .card-wrapper .card .rates p span {
  font-size: 15px !important;
  color: #FFF;
  text-align: center;
  width: 100%;
}
@media (max-width: 375px) {
  .services .box .card-wrapper .card .rates p span {
    font-size: 13px !important;
  }
}
.services .box .card-wrapper .card .rates p .rupee {
  font-family: "Times New Roman", Times, serif !important;
  font-size: 18px !important;
  margin-right: 5px;
}
.services .box .card-wrapper .card .rates p .rate {
  font-size: 21px !important;
  font-weight: 700 !important;
  color: #FFF !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 375px) {
  .services .box .card-wrapper .card .rates p .rate {
    font-size: 18px !important;
  }
}
.services .box .card-wrapper .card .rates p .rate span {
  display: flex;
  justify-content: flex-end;
}
.services .box .card-wrapper .card .rates .justify-fs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.services .box .card-wrapper .card .rates .justify-sb {
  display: flex;
  justify-content: space-between !important;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 10px;
}
.services .box .card-wrapper .card .rates .justify-sb .rate span {
  font-size: 21px !important;
}
.services .box .card-wrapper .card .rates .ta-center {
  font-size: 15px !important;
  color: #FFF !important;
  text-align: center;
  width: 100%;
  display: block;
  margin-top: -5px;
  margin-bottom: 10px;
}
.services .box .card-wrapper .card .includes {
  width: 100%;
}
.services .box .card-wrapper .card .includes ul {
  width: 100%;
  padding-left: 20px;
  margin-bottom: 20px;
}
.services .box .card-wrapper .card .includes ul li {
  color: white;
  padding: 6px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  list-style: disc;
  position: relative;
}
@media (max-width: 375px) {
  .services .box .card-wrapper .card .includes ul li {
    font-size: 13px !important;
  }
}
.services .box .card-wrapper .card .includes ul li:last-child {
  border-bottom: 0px;
}
.services .box .card-wrapper .card .includes ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  top: 14px;
  left: -20px;
  border-radius: 100%;
}
.services .box .card-wrapper .card .includes ul li .rate {
  font-size: 21px !important;
  font-weight: 700 !important;
}
@media (max-width: 375px) {
  .services .box .card-wrapper .card .includes ul li .rate {
    font-size: 18px !important;
  }
}
.services .box .card-wrapper .card .includes ul li .rate .rupee {
  font-family: "Times New Roman", Times, serif !important;
  font-size: 18px !important;
  margin-right: 5px;
}
.services .box .card-wrapper .card .talk-to-us {
  width: 100%;
  height: 45px;
}
.services .box .card-wrapper .card .talk-to-us a {
  width: 100%;
  text-decoration: none;
  font-weight: 600;
}

.about {
  width: 100%;
  margin-top: 60px;
}
.about .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about .box {
    flex-direction: column;
  }
}
.about .box .left {
  width: 48%;
}
@media (max-width: 768px) {
  .about .box .left {
    width: 100%;
    order: 2;
  }
}
.about .box .left h5 {
  margin-bottom: 10px;
}
.about .box .left ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about .box .left ul li {
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 525px) {
  .about .box .left ul li {
    width: 100%;
  }
}
.about .box .left ul li .icon {
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.about .box .left ul li .icon img {
  width: 100%;
}
.about .box .right {
  width: 51%;
}
@media (max-width: 768px) {
  .about .box .right {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
}
.about .box .right p {
  margin-bottom: 20px;
  line-height: 30px !important;
}

#why-choose-us {
  width: 100%;
  border-radius: 19px;
  background: #E5F1FF;
  padding: 40px 30px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  #why-choose-us {
    padding: 40px 10px;
  }
}
#why-choose-us .title {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #why-choose-us .title {
    flex-direction: column;
  }
}
#why-choose-us .title h2 {
  width: 55%;
  font-size: 42px;
}
@media (max-width: 768px) {
  #why-choose-us .title h2 {
    width: 100%;
    margin-bottom: 10px;
    line-height: 46px;
  }
}
#why-choose-us .title p {
  width: 44%;
}
@media (max-width: 768px) {
  #why-choose-us .title p {
    width: 100%;
  }
}
#why-choose-us .card-wrapper {
  justify-content: flex-start;
}
#why-choose-us .card-wrapper .card {
  width: calc(25% - 20px);
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  #why-choose-us .card-wrapper .card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 525px) {
  #why-choose-us .card-wrapper .card {
    width: 100%;
  }
}
#why-choose-us .card-wrapper .card h5 {
  font-size: 19px;
  background: linear-gradient(90deg, #2D8DFF -28.54%, #01489C 47.94%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#home-about {
  display: none;
}

#about-inner .left,
#home-about .left {
  width: 55%;
}
@media (max-width: 768px) {
  #about-inner .left,
  #home-about .left {
    width: 100%;
  }
}
#about-inner .left p,
#home-about .left p {
  margin-bottom: 30px;
}
#about-inner .right,
#home-about .right {
  width: 39%;
}
@media (max-width: 768px) {
  #about-inner .right,
  #home-about .right {
    width: 100%;
  }
}
#about-inner .right .image,
#home-about .right .image {
  width: 100%;
}
#about-inner .right .image img,
#home-about .right .image img {
  width: 100%;
}

#healthcare-about .box .left {
  order: 1;
}
#healthcare-about .box .right {
  order: 2;
}

#testimonials {
  margin-top: 80px;
  width: 100%;
  margin-bottom: 100px;
  position: relative;
}
#testimonials .sub-head,
#testimonials h2 {
  display: block;
  text-align: center;
}
@media (max-width: 525px) {
  #testimonials .sub-head br,
  #testimonials h2 br {
    display: none;
  }
}
#testimonials .card-wrapper {
  margin-top: 50px;
}
#testimonials .card-wrapper .card {
  border-radius: 18px;
  padding: 20px 25px;
  margin-bottom: 20px;
}
#testimonials .card-wrapper .card:nth-child(odd) {
  background: #EBF4FF;
}
#testimonials .card-wrapper .card:nth-child(odd) .avatar {
  border: 1px solid rgb(184, 228, 245);
}
#testimonials .card-wrapper .card:nth-child(even) {
  background: #FFF7EA;
}
#testimonials .card-wrapper .card:nth-child(even) .avatar {
  border: 1px solid rgb(240, 154, 154);
}
@media (max-width: 768px) {
  #testimonials .card-wrapper .card {
    width: calc(50% - 10px);
  }
}
@media (max-width: 525px) {
  #testimonials .card-wrapper .card {
    width: 100%;
    padding: 20px;
  }
}
#testimonials .card-wrapper .card .avatar {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#testimonials .card-wrapper .card .avatar img {
  width: 40px;
}
#testimonials .card-wrapper .card p {
  margin-bottom: 15px;
}
#testimonials .card-wrapper .card .name {
  font-size: 18px;
  font-weight: 500;
}
#testimonials .read-more-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 250 !important;
  text-align: center;
  color: #2D8DFF;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
#testimonials .fade-content {
  position: absolute;
  content: "";
  width: 100%;
  height: 500px;
  bottom: 0px;
  left: 0px;
  z-index: 200;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #FFF 100%, #FFF 100%);
}

#rental-banner {
  height: 93vh;
  display: none;
}
@media (max-width: 525px) {
  #rental-banner {
    height: 78vh;
  }
}
#rental-banner .banner-content .left {
  width: 42%;
}
@media (max-width: 768px) {
  #rental-banner .banner-content .left {
    display: none;
  }
}
#rental-banner .banner-content .right {
  width: 57%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #rental-banner .banner-content .right {
    width: 100%;
  }
}
#rental-banner .banner-content .right p {
  margin-bottom: 20px;
}
#rental-banner .banner-content .right .filled-btn {
  width: 192px;
  text-decoration: none;
}

.all-products {
  width: 100%;
  margin-top: 150px;
}
.all-products .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 525px) {
  .all-products .title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.all-products .title h4 {
  margin-bottom: 0px;
  font-size: 27px;
}
@media (max-width: 525px) {
  .all-products .title h4 {
    margin-bottom: 10px;
  }
}
.all-products .title .toolbar {
  width: 39%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .all-products .title .toolbar #filter-button {
    width: 50px;
  }
  .all-products .title .toolbar #filter-button span {
    display: none;
  }
  .all-products .title .toolbar .searchbar {
    width: calc(100% - 60px);
  }
}
@media (max-width: 525px) {
  .all-products .title .toolbar {
    width: 100%;
  }
  .all-products .title .toolbar .searchbar {
    width: 100%;
  }
}
.all-products .card {
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 5.0209202766px 15.0627613068px 12.5523004532px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .all-products .card {
    width: calc(50% - 12px);
    margin-bottom: 22px;
  }
}
@media (max-width: 525px) {
  .all-products .card {
    width: 100%;
  }
}
.all-products .card:hover {
  opacity: 0.7;
}
.all-products .card:hover .thumbnail {
  transform: scale(1.02);
}
.all-products .card:hover .view-btn {
  background: #2D8DFF;
  color: #FFFFFF;
}
.all-products .card .thumbnail {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  transform: scale(1);
}
.all-products .card .thumbnail img {
  width: 100%;
}
.all-products .card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 21px;
}
.all-products .card p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.all-products .card .price {
  display: flex;
  align-items: center;
}
.all-products .card .price .amount {
  font-size: 15px;
  font-weight: 600;
}
.all-products .card .price span {
  font-size: 14px;
}
.all-products .card .view-btn {
  width: 100%;
  height: 45px;
  margin-top: 10px;
  border-radius: 6px;
  background: #F5F5F5;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #334F70;
}

#product-details {
  width: 100%;
  margin-top: 150px;
}
#product-details .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #product-details .box {
    flex-direction: column;
  }
}
#product-details .box .left {
  width: 43%;
  height: 400px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #product-details .box .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 525px) {
  #product-details .box .left {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
#product-details .box .left .thumbnail {
  width: 76%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 525px) {
  #product-details .box .left .thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 7px;
  }
}
#product-details .box .left .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product-details .box .left .more-images {
  width: 22%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 525px) {
  #product-details .box .left .more-images {
    width: 100%;
    flex-direction: row;
  }
}
#product-details .box .left .more-images .image-div {
  width: 100%;
  height: calc(33.3333333333% - 7px);
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 525px) {
  #product-details .box .left .more-images .image-div {
    width: calc(33.3333333333% - 7px);
    height: auto;
  }
}
#product-details .box .left .more-images .image-div:hover {
  opacity: 0.7;
}
#product-details .box .left .more-images .image-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product-details .box .left .more-images .selected {
  border: 5px solid #2D8DFF;
}
#product-details .box .right {
  width: 50%;
}
@media (max-width: 768px) {
  #product-details .box .right {
    width: 100%;
  }
}
#product-details .box .right h1 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}
#product-details .box .right p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}
#product-details .box .right .row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
#product-details .box .right .row .price-wrap {
  width: 67%;
  height: 45px;
  padding: 5px 5px 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 525px) {
  #product-details .box .right .row .price-wrap {
    width: 61%;
  }
}
#product-details .box .right .row .price-wrap span {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 525px) {
  #product-details .box .right .row .price-wrap span {
    font-size: 16px;
  }
}
#product-details .box .right .row .price-wrap select {
  font-size: 15px;
  height: 33px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #E2E2E2;
  background: #FFF7EA;
}
#product-details .box .right .row .count {
  width: 31%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 525px) {
  #product-details .box .right .row .count {
    width: 38%;
  }
}
#product-details .box .right .row .count button {
  width: calc(33.3333333333% - 8px);
  height: 45px;
  font-size: 26px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: #FFF7EA;
  border-radius: 6px;
}
@media (max-width: 525px) {
  #product-details .box .right .row .count button {
    width: calc(33.3333333333% - 2px);
  }
}
#product-details .box .right .row .count input {
  width: calc(33.3333333333% - 8px);
  height: 45px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  text-indent: 0px;
}
@media (max-width: 525px) {
  #product-details .box .right .row .count input {
    width: calc(33.3333333333% - 4px);
  }
}
#product-details .box .right .row .date-picker {
  width: calc(50% - 6px);
  height: 45px;
  position: relative;
}
@media (max-width: 525px) {
  #product-details .box .right .row .date-picker {
    width: calc(50% - 2px);
  }
}
#product-details .box .right .row .date-picker .rentalDate {
  width: 100%;
  height: 100%;
  text-indent: 5px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  font-size: 15px;
  font-weight: 500;
  font-family: DM Sans;
  outline: none;
}
#product-details .box .right .row .date-picker input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
#product-details .box .right .row .date-picker .icon {
  position: absolute;
  width: 40px;
  height: 38px;
  top: 0px;
  right: 5px;
  background: #FFF7EA;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
#product-details .box .right .row .date-picker .icon img {
  width: 20px;
}
#product-details .box .right .filled-btn {
  background: #2D8DFF;
  color: #FFFFFF;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
#product-details .box .right .make-call {
  text-decoration: none;
  background: #EBF4FF;
  color: #334F70;
}

#products {
  margin-top: 60px;
}
#products .card-wrapper {
  padding-top: 35px;
}
#products .card-wrapper .card {
  display: block;
  width: 100%;
}

.sidebar {
  width: 370px;
  height: 100vh;
  background: white;
  padding: 0px 5px 12px 15px;
  padding-top: 0px;
  position: fixed;
  top: 0px;
  right: -100%;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}
@media (max-width: 525px) {
  .sidebar {
    width: 100%;
    padding: 0px 20px;
  }
}
.sidebar form {
  height: 100%;
}
.sidebar .title {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar .title h3 {
  font-size: 25px;
  font-weight: 700;
}
.sidebar .title .close {
  background: #F5F5F5;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 5px;
}
.sidebar .title .close ion-icon {
  font-size: 24px;
  font-weight: 500;
}
.sidebar .box {
  width: 100%;
  height: calc(100% - 200px);
  overflow-y: hidden;
  padding-right: 10px;
}
.sidebar .box .input-holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}
.sidebar .box .input-holder label {
  font-size: 16px;
  font-weight: 400;
  font-family: DM Sans;
  display: block;
  margin-bottom: 6px;
}
.sidebar .box .input-holder input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.13);
}
.sidebar .box .input-holder .to-indent-text {
  text-indent: 54px;
}
.sidebar .box .input-holder .country-code {
  width: 40px;
  height: 33px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 33px;
  left: 6px;
}
.sidebar .button-holder {
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar .button-holder button {
  width: 100%;
  background: #2D8DFF;
}
.sidebar .button-holder a {
  display: block;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  color: #2D8DFF;
  margin-top: 8px;
  text-decoration: none;
}

.sidebar-active {
  right: 0%;
  transition: 0.3s;
}

#enquiry-sidebar .box {
  height: calc(100% - 90px);
  overflow-y: hidden;
  padding-right: 0px;
}
#enquiry-sidebar .box .checkbox-holder {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#enquiry-sidebar .box .checkbox-holder input {
  margin-right: 6px;
}
#enquiry-sidebar .box .checkbox-holder a {
  color: #2D8DFF;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
#enquiry-sidebar .box .filled-btn {
  background: #2D8DFF;
}

#contact-banner {
  height: 80vh;
  background: url(../assets/images/banner/relithealthcare-banner-contact-bg.png);
  background-position: center;
  background-size: cover;
  z-index: -1;
  margin-top: 80px;
}
@media (max-width: 525px) {
  #contact-banner {
    height: 45vh;
  }
}
#contact-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#contact-banner .banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 525px) {
  #contact-banner .banner-content h1 {
    font-size: 34px;
  }
}

#contact-details {
  width: 100%;
  margin-top: -130px;
  padding: 60px 30px;
  z-index: 200;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
  margin-bottom: 100px;
}
@media (max-width: 525px) {
  #contact-details {
    margin-top: -80px;
    padding: 40px 10px;
  }
}
#contact-details .contact-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #contact-details .contact-wrap {
    flex-direction: column;
  }
}
#contact-details .contact-wrap .left {
  width: 30%;
}
@media (max-width: 768px) {
  #contact-details .contact-wrap .left {
    width: 100%;
  }
}
#contact-details .contact-wrap .left .box {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 0px;
}
#contact-details .contact-wrap .left .box:last-child {
  border-bottom: none;
}
#contact-details .contact-wrap .left .box h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
#contact-details .contact-wrap .left .box a {
  color: #334F70;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
#contact-details .contact-wrap .left .box .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 525px) {
  #contact-details .contact-wrap .left .box .row {
    flex-direction: column;
  }
}
#contact-details .contact-wrap .left .box .row .contact-number {
  width: 100%;
  display: flex;
}
@media (max-width: 525px) {
  #contact-details .contact-wrap .left .box .row .contact-number {
    margin-bottom: 15px;
  }
}
#contact-details .contact-wrap .left .box .row .contact-number .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.09);
  border-radius: 100%;
  margin-right: 13px;
}
#contact-details .contact-wrap .left .box .row .contact-number .icon img {
  width: 20px;
}
#contact-details .contact-wrap .left .box .row .contact-number .icon .phone {
  width: 15px;
}
#contact-details .contact-wrap .left .box .row .contact-number .number {
  width: calc(100% - 52px);
}
#contact-details .contact-wrap .left .box .row .contact-number .number a {
  color: #334F70;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
#contact-details .contact-wrap .left .box .wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#contact-details .contact-wrap .left .box .wrapper .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.09);
  border-radius: 100%;
  margin-right: 13px;
  color: #334F70;
}
#contact-details .contact-wrap .left .box .wrapper .icon img {
  width: 22px;
}
#contact-details .contact-wrap .left .box .wrapper h6 {
  margin-bottom: 0px;
}
#contact-details .contact-wrap .right {
  width: 50%;
}
@media (max-width: 768px) {
  #contact-details .contact-wrap .right {
    width: 100%;
  }
}
#contact-details .contact-wrap .right .box-style-form {
  box-shadow: none;
}
@media (max-width: 525px) {
  #contact-details .contact-wrap .right .box-style-form {
    padding: 25px 0px;
  }
}
#contact-details .contact-wrap .right .box-style-form .input-wrap {
  margin-bottom: 0px;
}
#contact-details .contact-wrap .right .box-style-form .input-wrap .input-holder {
  margin-bottom: 30px;
  width: calc(50% - 20px);
}
@media (max-width: 525px) {
  #contact-details .contact-wrap .right .box-style-form .input-wrap .input-holder {
    width: 100%;
  }
}
#contact-details .contact-wrap .right .box-style-form textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  outline: none;
}
#contact-details .contact-wrap .right .box-style-form .filled-btn {
  width: 133px;
  background: #2D8DFF;
  margin-top: 30px;
}
@media (max-width: 525px) {
  #contact-details .contact-wrap .right .box-style-form .filled-btn {
    width: 100%;
  }
}

#about-inner {
  background: #EBF4FF;
  padding: 60px 0px;
  margin-top: 100px;
}
#about-inner .left h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 525px) {
  #about-inner .left h1 {
    font-size: 32px;
  }
}

#vision-mission {
  width: 100%;
  background: #2D8DFF;
  padding: 40px 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #vision-mission {
    padding: 10px 10px;
  }
}
#vision-mission .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
#vision-mission .box:last-child {
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  #vision-mission .box {
    flex-direction: column;
  }
}
#vision-mission .box .content {
  width: 40%;
}
@media (max-width: 768px) {
  #vision-mission .box .content {
    width: 100%;
    margin-bottom: 20px;
  }
  #vision-mission .box .content:last-child {
    margin-bottom: 0px;
  }
}
#vision-mission .box .content h3 {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white !important;
}
@media (max-width: 768px) {
  #vision-mission .box .content h3 {
    width: 100%;
    text-align: center;
  }
}
#vision-mission .box .content p {
  line-height: 29px !important;
  color: white;
}
@media (max-width: 768px) {
  #vision-mission .box .content p {
    width: 100%;
    text-align: center;
  }
}
#vision-mission .box .res-image {
  width: 100%;
  display: none;
}
@media (max-width: 768px) {
  #vision-mission .box .res-image {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
#vision-mission .box .res-image img {
  width: 100%;
}
#vision-mission .image {
  width: 100%;
}
@media (max-width: 500px) {
  #vision-mission .image {
    display: none;
  }
}
#vision-mission .image img {
  width: 100%;
}

.jobs {
  width: 100%;
  min-height: 80vh;
  padding-top: 150px;
  background: #EBF4FF;
}
.jobs h1 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 20px;
}
.jobs .card-wrapper .card {
  width: calc(50% - 15px);
  border-radius: 21px;
  background: #FFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .jobs .card-wrapper .card {
    width: 100%;
  }
}
.jobs .card-wrapper .card h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 28px;
}
.jobs .card-wrapper .card .job-desc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .job-desc {
    flex-direction: column;
    align-items: flex-start;
  }
}
.jobs .card-wrapper .card .job-desc .desc {
  display: flex;
  align-items: center;
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  border-right: 1px solid #D9D9D9;
  padding-right: 10px;
  margin-right: 8px;
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .job-desc .desc {
    border-right: none;
    padding-right: 0px;
    margin-right: 0px;
  }
}
.jobs .card-wrapper .card .job-desc .desc:last-child {
  border-right: none;
  padding-right: 0px;
  margin-right: 0px;
}
.jobs .card-wrapper .card .job-desc .desc .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jobs .card-wrapper .card p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.jobs .card-wrapper .card .button-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .button-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.jobs .card-wrapper .card .button-wrap .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .button-wrap .left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.jobs .card-wrapper .card .button-wrap .left .outline-btn {
  margin-right: 15px;
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .button-wrap .left .outline-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
.jobs .card-wrapper .card .button-wrap .left .filled-btn {
  width: 132px;
  color: white;
  background: #2D8DFF;
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .button-wrap .left .filled-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .button-wrap .right {
    width: 100%;
  }
}
@media (max-width: 525px) {
  .jobs .card-wrapper .card .button-wrap .right .save-btn {
    width: 100%;
  }
}

#job-details {
  width: 100%;
}
#job-details .card {
  width: 100%;
}
#job-details .card .title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 525px) {
  #job-details .card .title {
    flex-direction: column;
  }
}
#job-details .card .title h1 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 0px;
}
@media (max-width: 525px) {
  #job-details .card .title h1 {
    margin-bottom: 10px;
  }
}
#job-details .card .title .filled-btn {
  width: 153px;
  background: #2D8DFF;
  color: #FFFFFF;
}
@media (max-width: 525px) {
  #job-details .card .title .filled-btn {
    width: 100%;
  }
}
#job-details .card .job-desc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #job-details .card .job-desc {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  #job-details .card .job-desc:last-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 525px) {
  #job-details .card .job-desc {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0px;
  }
}
#job-details .card .job-desc .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 20px;
  margin-right: 20px;
}
@media (max-width: 525px) {
  #job-details .card .job-desc .desc {
    margin-bottom: 20 px;
  }
}
#job-details .card .job-desc .desc .icon {
  margin-bottom: 6px;
}
#job-details .card .job-desc .desc .icon ion-icon {
  margin-right: 10px;
}
#job-details .card .job-desc .desc span {
  color: #334F70;
  font-size: 16px;
}
#job-details .card hr {
  display: block;
  width: 100%;
  border: 1px solid #DBDBDB;
  margin-bottom: 20px;
}
#job-details .card h5 {
  font-size: 20px;
  font-weight: 500;
  color: #334F70;
  margin-bottom: 20px;
}
#job-details .card p {
  font-size: 16px;
  line-height: 22px;
}

.owl-item {
  padding: 10px;
  border-radius: 15px;
}

.carousel-shadow {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

#home-services {
  width: 100%;
  margin-top: 60px;
  background: none;
  padding: 0px;
}
#home-services h2 {
  text-align: center;
  line-height: 61px;
}
#home-services h2 .underline {
  bottom: -14px;
}
@media (max-width: 525px) {
  #home-services h2 {
    margin-bottom: 20px;
    line-height: 39px;
  }
}
#home-services .card-wrapper {
  margin-top: 80px;
}
@media (max-width: 768px) {
  #home-services .card-wrapper {
    margin-top: 60px;
  }
}
#home-services .card-wrapper .card {
  width: calc(33.3333333333% - 30px);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 13.429px;
}
#home-services .card-wrapper .card:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  #home-services .card-wrapper .card {
    width: calc(50% - 20px);
    margin-bottom: 50px;
    padding: 20px 10px;
  }
  #home-services .card-wrapper .card:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 525px) {
  #home-services .card-wrapper .card {
    width: 100%;
  }
}
#home-services .card-wrapper .card .image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 13.429px;
  overflow: hidden;
}
#home-services .card-wrapper .card .image img {
  width: 100%;
}
#home-services .card-wrapper .card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 24px;
}
#home-services .card-wrapper .card:nth-child(1) {
  background: #EBF4FF;
}
#home-services .card-wrapper .card:nth-child(2) {
  background: #EBFFF7;
}
#home-services .card-wrapper .card:nth-child(3) {
  background: #FFF7EA;
}
#home-services .card-wrapper .card p {
  text-align: center;
  margin-bottom: 20px;
}
#home-services .card-wrapper .card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 45px;
  background: white;
  color: #334F70;
  text-decoration: none;
  border-radius: 6px;
}

.filter-popup {
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  box-shadow: 0px 5.0209202766px 15.0627613068px 12.5523004532px rgba(0, 0, 0, 0.03);
  background: white;
  padding: 20px;
  display: none;
}
.filter-popup .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-popup .close ion-icon {
  font-size: 25px;
}

.activate-filter-popup {
  display: block;
}

footer {
  width: 100%;
  padding: 60px 0px;
  background: #071F3C;
}
footer .box-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer .box-wrap .box {
    margin-bottom: 40px;
  }
  footer .box-wrap .box:last-child {
    margin-bottom: 0px;
  }
}
footer .box-wrap .box .logo {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  line-height: 24px;
  color: #FFFFFF;
}
@media (max-width: 525px) {
  footer .box-wrap .box .logo {
    width: 100%;
    font-size: 18px;
  }
}
footer .box-wrap .box .logo img {
  width: 100%;
}
@media (max-width: 525px) {
  footer .box-wrap .box .logo img {
    width: 115px;
  }
}
footer .box-wrap .box p {
  line-height: 30px;
  color: #FFFFFF;
  color: rgb(241, 238, 238);
}
footer .box-wrap .box p br {
  display: none;
}
footer .box-wrap .box h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  color: #FFFFFF !important;
  position: relative;
}
footer .box-wrap .box h5::after {
  position: absolute;
  display: flex;
  width: 10px;
  bottom: 0px;
  left: 0px;
  height: 5px;
  border: 5px solid #2D8DFF;
  background: #2D8DFF;
}
footer .box-wrap .box a {
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  color: #FFFFFF;
  color: rgb(241, 238, 238);
}
footer .box-wrap .box ul li {
  margin-bottom: 10px;
  list-style: none;
}
@media (max-width: 768px) {
  footer .box-wrap .box ul li {
    display: flex;
    flex-direction: column;
  }
}
footer .box-wrap .box ul li a {
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  color: #FFFFFF;
  color: rgb(241, 238, 238);
}
footer .box-wrap .box .flex-ul {
  display: flex;
}
footer .box-wrap .box .flex-ul li {
  margin-right: 20px;
}
@media (max-width: 525px) {
  footer .box-wrap .box .flex-ul {
    justify-content: flex-start;
  }
}
footer .box-wrap .b1 {
  width: 35%;
}
@media (max-width: 768px) {
  footer .box-wrap .b1 {
    width: 100%;
    margin-bottom: 30px;
  }
}
footer .box-wrap .b2 {
  width: 20%;
}
@media (max-width: 768px) {
  footer .box-wrap .b2 {
    width: 23%;
  }
}
@media (max-width: 525px) {
  footer .box-wrap .b2 {
    width: 100%;
  }
}
footer .box-wrap .b3 {
  width: 20%;
}
@media (max-width: 768px) {
  footer .box-wrap .b3 {
    width: 42%;
  }
}
@media (max-width: 525px) {
  footer .box-wrap .b3 {
    width: 100%;
  }
}
footer .box-wrap .b4 {
  width: 15%;
}
@media (max-width: 768px) {
  footer .box-wrap .b4 {
    width: 23%;
  }
}
@media (max-width: 525px) {
  footer .box-wrap .b4 {
    width: 100%;
  }
}
footer .copyright {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 768px) {
  footer .copyright {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}
footer .copyright p {
  color: white;
}
footer .copyright p a {
  color: white;
  text-decoration: none;
}
footer .copyright hr {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.363);
  width: 45%;
}
@media (max-width: 768px) {
  footer .copyright hr {
    display: none;
  }
}

.image-bg {
  margin-top: 60px;
  width: 100%;
  height: 500px;
  background: url(../assets/images/healthcare/relit-healthcare-bg-image.png);
  background-position: center;
  background-size: cover;
}
@media (max-width: 525px) {
  .image-bg {
    height: 210px;
    margin-top: 0px;
  }
}

:root {
  --radius: 50;
  --PI: 3.14159265358979;
  --circumference: calc(var(--PI) * var(--radius) * 2px) ;
}

.spin_loader {
  width: 100%;
  height: 100%;
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.spin_loader .circle-svg {
  background: #fff;
  transform: scale(0.4);
}
.spin_loader .circle-svg circle {
  stroke: red;
  stroke-width: 10;
  fill: transparent;
  transform-origin: center;
  stroke-dasharray: var(--circumference);
  animation: spinner 2s ease-out infinite;
}
@keyframes spinner {
  from {
    stroke-dashoffset: var(--circumference);
    stroke: #2D8DFF;
    transform: rotateZ(0deg);
  }
  to {
    stroke-dashoffset: calc(var(--circumference) * -1);
    stroke: #FBAA19;
    transform: rotateZ(720deg);
  }
}

#terms_and_conditions {
  margin-top: 100px;
  margin-bottom: 60px;
}
#terms_and_conditions h1 {
  font-size: 36px;
  margin-bottom: 15px;
}
#terms_and_conditions h2 {
  font-size: 30px;
  margin-bottom: 0px;
}
#terms_and_conditions p {
  font-size: 15px;
}
#terms_and_conditions ul {
  padding-left: 30px;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 45px !important;
  border: 1px solid rgba(0, 0, 0, 0.11) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 45px;
  line-height: 43px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 87%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

.select2-search--dropdown .select2-search__field {
  display: none;
}

.select2-search--dropdown {
  padding: 0px;
}

#thankyou {
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#thankyou .icon {
  width: 70px;
}
#thankyou .icon img {
  width: 100%;
}
#thankyou h1 {
  font-size: 35px;
}/*# sourceMappingURL=style.css.map */