@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Outfit:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Karla", sans-serif;
}

.side-social-media {
  background-color: transparent;
  position: fixed;
  bottom: 60px;
  left: 0;
  z-index: 1000;
  width: 45px;
}

.form-close {
  background-color: #008375;
  height: 30px;
  width: 30px;
  padding: 6px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  border-radius: 7px;
}
.social-media-icons a {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 6px;
  background-color: var(--bg-theme);
  border-radius: 7px;
}

.social-media-icons i {
  font-size: 22px;
  color: #fff;
}

/* Sidebar styles */

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background-color: #333;
  color: white;
  padding: 20px;
}

#sidebar button {
  background-color: #4caf50;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

#sidebar button:hover {
  background-color: #45a049;
}

/* Form container */
#formContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /* transform: translate(-50%, -50%); */
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  height: 100%;
  width: 100%;
}

.con {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-2 {
  max-width: 550px;
  position: relative;
  /* margin: auto auto; */
}

/* Hidden class to hide the form */
.form-hidden {
  display: none;
}

/* video banner */

.banner-video {
  min-height: 79vh;
  overflow: hidden;
  position: relative;
}

.banner-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.2) 13%,
    rgba(0, 0, 0, 0.5) 69%
  );
  z-index: -1;
}

.banner-form-heading {
  margin-bottom: 50px;
}

.banner-form-heading span {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.banner-form-heading h1 {
  font-size: 64px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.banner-form-heading p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

.banner-form-heading a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background-color: var(--bg-theme);
  padding: 13px 45px 15px;
  margin-bottom: 20px;
  border-radius: 7px;
  border: 1px solid var(--bg-theme);
}

.banner-form-heading a:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid var(--bg-theme);
}

#myVideo {
  min-width: 100%;
  /* height: 100%; */
  position: absolute;
  z-index: -100;
  top: 0;
  left: 0;
  /* height: 85vh; */
}

@media (max-width: 768px) {
  #myVideo {
    min-width: 100%;
    height: 100%;
    /* height: 85vh; */
  }

  .banner-form-heading h1 {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
  }
}
.bg-trans {
  background-color: transparent;
}

/* about doctor */

.about-section {
  /* background-image: url(../images/about-bg.jpg); */
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  /* overflow: hidden; */
  padding: 30px 0 0;
  /* height: 713.237px; */
  /* transform: scale(1.1); */
}

.about-section2 {
  /* background-image: url(../images/about-bg.jpg); */
  background-color: var(--bg-theme);
  padding: 0 0 80px;
}

.bg-gr {
  background-image: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 13%,
    #ffffff 69%
  );
  /* padding: 65px 0 0; */
  height: 100%;
}

.doc-about-head span {
  font-size: 20px;
  color: var(--bg-theme);
}

.doc-about-head h2 {
  font-size: 42px;
  letter-spacing: -0.5px;
  line-height: 35px;
  color: var(--bs-heading);
  margin-bottom: 20px;
}

.doc-about-para p {
  font-size: 19px;
  color: var(--bs-gray-800);
  /* text-align: justify; */
}

.doc-about-more {
  display: flex;
  align-items: center;
}

.doc-about-more a {
  font-size: 21px;
  font-weight: 400;
  color: var(--bg-theme);
  transition: transform 0.4s;

  &:hover {
    transform: translateX(10px);
  }
}

.doc-about-more a::before {
  content: "\2192";
  color: var(--bg-theme);
  margin-right: 15px;
}

.doc-about-more2 a::before {
  content: "\2192";
  color: #fff;
  margin-right: 15px;
}

.about-bg-img {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-bg-img img {
  /* position: absolute; */
  /* top: 0;
  right: 30px; */
  border-radius: 1000px 1000px 0 0;
}

.about-bg-img2 {
  display: flex;
  justify-content: center;
  img {
    border-radius: 0 0 1000px 1000px;
  }
}

@media (min-width: 768px) {
  .about-bg-img2 img,
  .about-bg-img img {
    max-width: 550px;
  }
}

/* our leadership skill  */

.our-leadership-section {
  padding: 0 0 40px;
}

.padding35px {
  padding: 35px;
}

.h280 {
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-heading h2 {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  line-height: 30px;
  text-align: center;
}

.mission {
  transition: all 0.4s;
}

.mission h3 {
  font-size: 28px;
  color: #fff;
  line-height: 28px;
  text-transform: capitalize;
  text-align: center;
}

.mission p {
  font-size: 18px;
  color: #fff;
  line-height: 25px;
  text-transform: capitalize;
  text-align: center;
}

.p-relative {
  position: relative;
  /* z-index:-1; */
}

@keyframes visible {
  from {
    visibility: hidden;
  }

  to {
    visibility: visible;
  }
}

.card-link {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  height: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.25s, top 0.25s, z-index 1s;
  background-color: #fff;
}

.mission:hover .card-link {
  z-index: 1;
  top: 50%;
  height: 280px;
  /* opacity:1; */
  transition: height 0.25s, top 0.25s, z-index 0.4s;
}

.card-link a {
  padding: 10px 20px;
  border: 2px solid #fff;
  font-size: 18px;
  color: #fff;
  border-radius: 7px;
}

/* services section  */

.global-services {
  padding-bottom: 60px;
}

.paddingcont {
  padding: 60px 30px;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .paddingcont {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .paddingcont {
    padding: 40px 20px;
  }
}

.services-heading span {
  font-size: 20px;
  color: var(--bg-theme);
}

.services-heading h3 {
  font-size: 38px;
  /* line-height: 1.1; */
  letter-spacing: -0.07em;
  word-spacing: 0.07em;
  color: var(--bs-heading);
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .services-heading h3 {
    font-size: 30px;
  }
}

.service-card-cont {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.service-card {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  /* height: 100%; */
  overflow: hidden;
  transition: all 0.25s;
}

.service-card h3 {
  font-size: 24px;
  text-align: center;
}

.card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img img {
  transition: transform 0.3s;
}

.service-card:hover .card-img img {
  transform: rotate(360deg);
}

/* form section */

.contact-form-ref {
  padding: 40px 0 60px;
  /* border-bottom: 2px solid #f1f1f1; */
}

.contact-left {
  background: var(--bg-theme);
  padding: 41px 36px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-left1 {
  /* background: var(--bg-theme); */
  padding: 41px 36px 20px;
  /* border-radius: 5px; */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 600px) {
  .contact-left {
    padding: 30px 20px;
    /* margin: 40px 0 20px; */
  }
}

.form-group {
  margin-bottom: 15px;
}

.form-group:nth-last-child(1) {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .form-group:nth-last-child(1) {
    margin-bottom: 15px;
  }
}

.form-group:nth-last-child(2) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .form-group label {
    font-size: 12px;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.form-group button {
  width: 173px;
  height: 48px;
  background: var(--bg-theme);
  /* box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07); */
  border-radius: 4px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.011em;
  color: #fff;
  border: 1px solid #fff;
  margin-top: 15px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer !important;
}

.form-group button:hover {
  background-color: #fff;
  color: var(--bg-theme);
}

.inline-group {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .inline-group {
    display: block;
  }
}

.inline-group .form-group {
  flex: 1;
}

.jt-1 input {
  width: 50%;
  margin-left: 15px;
}

/* form ateration  */

.form-input input,
.form-input textarea {
  background-color: transparent;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #fff;
}

.form-btn {
  display: flex;
  justify-content: start !important;
  margin-bottom: 15px;
}

.form-btn button {
  width: 170px;
  height: 50px;
  background: var(--bg-theme);
  /* box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07); */
  border-radius: 4px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  /* text-align: center; */
  letter-spacing: -0.011em;
  color: #fff;
  border: 2px solid var(--bg-theme);
  margin-top: 15px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer !important;

  &:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--bg-theme);
  }
}

/* our commitments */

.clients-commitments {
  padding: 50px 0;
}

.working-process h2 {
  font-size: 36px;
  color: var(--bs-black);
  font-weight: 600;
  margin: 0;
}


.working-process p {
  font-size: 18px;
  color: var(--bs-black);
  font-weight: 400;
  text-align: justify;
  margin: 0;
}

.commitment-img h3 {
  font-size: 32px;
  color: var(--bs-black);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}


@media(max-width:768px){
  .working-process h2 {
    font-size: 23px;
  }
  .commitment-img h3 {
    font-size: 28px;
  }
}


/* slider  */

.customer-feedback {
  /* background: #eff7f9; */
  padding: 45px 0 60px;
}

.testi-head h1 {
  color: var(--bg-theme);
  font-size: 40px;
  letter-spacing: -2px;
  word-spacing: 2px;
  font-weight: 500;
  position: relative;
  line-height: 60px;
}

.testi-head h1::before {
  content: "";
  height: 3px;
  width: 60px;
  background-color: var(--bg-theme);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 1000px;
}

.wrapper1 {
  width: 100%;
  position: relative;
}

.wrapper1 i {
  bottom: -80px;
  height: 40px;
  width: 40px;
  font-size: 70px;
  color: #479d2c;
  cursor: pointer;
  font-size: 1rem;
  position: absolute;
  text-align: center;
  line-height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #f4c56c;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.wrapper1 i:first-child {
  left: 20px;
}

.wrapper1 i:last-child {
  left: 80px;
}

.wrapper1 ul {
  margin-top: 30px;
}

@media (max-width: 992px) {
  .wrapper1 ul {
    margin-top: 35px;
  }
}

.wrapper1 #carouse {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 5) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#carouse::-webkit-scrollbar {
  display: none;
}

#carouse.no-transition {
  scroll-behavior: auto;
}

#carouse.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

#carouse.dragging .cards {
  cursor: grab;
  -webkit-user-select: none;
}

#carouse :where(.img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

#carouse .cards {
  scroll-snap-align: start;
  list-style: none;
  cursor: pointer;
  flex-direction: column;
  border-radius: 8px;
  /* border: 1px solid #fcddec; */
  /* background: #fff; */
  /* padding: 25px 20px; */
  overflow: hidden;
  /* padding-bottom: 80px; */
  display: flex;
  align-items: center;
  justify-content: center;

  .img img {
    max-width: 150px;
  }
}

.cards .test-start {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

@media screen and (max-width: 992px) {
  /* .customer-feedback h1 {
        font-size: 35px;
    } */

  .wrapper1 #carouse,
  .media-card-div {
    grid-auto-columns: calc((100% / 4) - 9px);
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .wrapper1 #carouse,
  .media-card-div {
    grid-auto-columns: 100%;
  }
}

.certificate-img img {
  width: 100%;
}

.know-more-btn {
  margin-top: 25px;
  a {
    font-size: 18px;
    font-weight: 400;
    color: var(--bg-theme);
    background-color: transparent;
    padding: 13px 45px 15px;
    margin-bottom: 20px;
    border-radius: 7px;
    border: 2px solid var(--bg-theme);
    transition: 0.3s;
    margin-left: 25px;

    &:hover {
      background-color: var(--bg-theme);
      color: #fff;
    }
  }
}
