
/* defaultingstyles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}


html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: Prompt, sans-serif !important;
}


/* most used styles */
:root {
  --body-bg: #033a80;
  --text-color: #000000;
  --secondary-text-color: rgba(0, 0, 0, 0.6);
  --primary-color: #2f89fc;
  --secondary-color: #0c75fb;
  --sub-secondary-color: #61a6fd;
  --text-font: 0.9rem;
  --main-color: #ff8000;
  --white-color: #fff;
}

a{
  color: var(--secondary-text-color);
}


body {
  background-color: var(--white-color);
}

header {
  min-width: 250px;
}

section {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

/*  header special styles*/

header {
  transition: transform 0.5s ease-in-out;
  animation: fadeInDown 0.5s;
}

header.hide {
  transform: translateY(-100%);
  animation: fadeOutUp 0.5s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/* header special styles done */

.first_header {
  background: #fafafa !important;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.second_header {
  background: var(--white-color) !important;
  display: flex;
  align-items: center;
}

.first_header :is(#special, .icon) {
  color: var(--primary-color);
  align-self: center;
}

.first_header .icon {
  background-color: var(--white-color);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  margin-left: 0;
  border-radius: 50%;
}

.first_header :is(.address, .email, .phone) {
  align-items: center;
  font-size: var(--text-font);
}

@media screen and (max-width: 400px) {
  .first_header .essential_container :is(.location, .email) {
    display: none;
  }
}

@media screen and (max-width: 350px) {
  .first_header  .phone {
    display: none !important;
  }
}

header :is(.essential_container, .nav_container) {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

header .essential_container {
  color: var(--secondary-text-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  header .essential_container {
    flex-direction: column;
  }
}

header .essential_container .contacts {
  display: flex;
  width: 80%;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 799px) {
  .first_header .essential_container :is(.location, .email) {
    display: none;
  }

  header .essential_container {
    flex-direction: row;
  }
  header .essential_container .logo {
    width: fit-content;
  }

  header .essential_container .contacts {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
}

header .essential_container :is(.location, .email, .phone, ) {
  display: flex;
  align-items: center;
}

header .essential_container .logo {
  width: fit-content;
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
  .first_header .essential_container :is(.location, .email) {
    flex-direction: row;
  }

  header .essential_container {
    flex-direction: column;
  }
  header .essential_container .logo {
    width: 100%;
  }

  header .essential_container .contacts {
    justify-content: flex-start;
    width: 100%;
  }
}

header .essential_container .doc_logo {
  font-weight: 900;
  font-size: 1.29rem;
    font-family: 'Open Sans';
}

header .essential_container .address {
  line-height: 1.6rem;
}

/* nav style */

header .nav_container,
:is(nav, nav ul, .appointment) {
  display: flex;
}

header .nav_container .appointment {
  width: fit-content;
  width: 100%;
  padding: 5px 0;
  justify-content: flex-end;
}

header .nav_container {
  display: flex;
  justify-content: space-between;
  position: relative;
}

header .nav_container ul li a {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text-color);
  padding: 0.7rem 15px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 1 !important;
  cursor: pointer;
  align-items: center;
}

header .nav_container .phone_hide ul li a:hover {
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s linear;
}

header .nav_container ul a#first {
  padding-left: 0;
}

.nav_container .appointment {
  display: block;
  text-align: right;
  width: 100%;
}

.nav_container .appointment a {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
  padding: 0.2rem 10px;
  align-self: center;
  transition: all 0.3s ease-out;
  text-transform: capitalize;
}

.nav_container .appointment span {
  display: inline-block;
  font-weight: normal;
}

.nav_container .appointment2 a {
  display: block;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
  padding: 0.2rem 10px;
  align-self: center;
  transition: all 0.3s ease-out;
}

@media screen and (max-width: 400px) {
  .nav_container .appointment span {
    display: none;
  }

  .nav_container .appointment a {
    padding: 0.4rem 10px;
  }
}

.nav_container .appointment a:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.nav_container .appointment2 a:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* responsive nav */
/* by default button */

.second_header nav button {
  display: none;
  
}

.second_header nav input {
  display: none;
  width: fit-content;
}

.second_header nav input:checked ~ .phone_hide {
  display: block;
  z-index: 1;
  background-color: var(--white-color);
  position: absolute;
  margin-top: 40px;
  padding: 0 10px;
  transition: all 0.3s ease-in;
}

.second_header nav button {
  border: none;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 2px;
  background-color: var(--white-color);
  text-align: left;
  align-items: center;
}

.second_header nav button .menu2 {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px;
}

.second_header nav button span,
.second_header nav button .fa-solid {
  display: block;
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 900;
  margin-right: 5px;
  color: #f8f8f8;
}

@media screen and (max-width: 1000px) {
  .second_header nav .phone_hide {
    display: none;
    z-index: 1;
    width: 100%;
  }

  .second_header nav button {
    display: block;
  }

  .second_header nav {
    flex-direction: column;
    justify-content: left;
    width: 100%;
  }

  .second_header nav .menu {
    /* position: absolute; */
    top: 0px;
    display: flex;
    align-self: center;
    justify-content: space-between;
    width: 100%;
  }

  .second_header nav ul {
    flex-direction: column;
  }

  header .nav_container ul a {
    padding: 0.3rem 0;
    width: 100%;
    text-align: left;
  }

  .second_header nav .appointment2 {
    display: none;
  }

  header .nav_container ul li a {
    padding: 1rem 0;
  }

  .second_header {
    padding: 0.5rem 0;
  }
}

.second_header nav {
  justify-content: space-between;
  width: 100%;
  align-items: center;
  z-index: 10;
}

/* home */
.home .wrapper_home {
  height: fit-content;
}
@media all and (min-height: 300px) {
  .home .wrapper_home {
    height: 100dvh;
  }
}

section.home {
  background-image: url("../images/background_images2.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

section .wrapper_home {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
}

section .home_contents {
  /* height: 60%; */
  width: 50%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-weight: 900;
  font-family: "Open Sans";
}

@media all and (max-width: 1000px) {
  section .wrapper_home {
    justify-content: center;
  }

  section .home_contents {
    width: 100%;
  }

  section.home {
    background-position: right center;
  }
}

@media all and (max-width: 450px) {
  section.home {
    background-position: center;
  }
}

.home .home_title {
  font-size: 3.6rem;
  color: #2f89fc;
  line-height: 1.2;
  font-weight: 900;
}

.home .subheading {
  font-size: 1.08rem;
  /* font-weight: 450; */
  text-transform: uppercase;
  /* margin: 20px 0; */
  color: rgba(0, 0, 0, 0.8);
}

.home .home_title span {
  display: block;
  color: rgba(0, 0, 0, 0.8);
}

.home .home_view_our_works {
  display: block;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
  width: fit-content;
  padding: 10px;
  border-radius: 20px;
  font-weight: 500;
}

.home .home_view_our_works:hover {
  cursor: pointer;
  transition: all 0.3s linear;
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
}

/* services */

.services,
.about,
.department_section,
.doctors,
.testimonials,
.contact_wrapper,
.pricing,
.blogs,
.footer_wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  margin: 50px auto;

  /* background: #fafafa !important; */
}


section.services {
  margin-top: -50px;
}

@media screen and (max-width: 500px) {
  section.services {
    margin-top: -10px;
  }
}

.services .all_services {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.services .all_services .service {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 35px;

  text-align: center;
}

.services .all_services .service:nth-child(even) {
  background-color: var(--secondary-color);
}

.services .service .icon {
  display: flex;
  font-size: 2.4rem;
  color: var(--white-color);
  height: 75px;
  width: 75px;
  padding: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
}

.services .service .service_name h3 {
  font-weight: 550;
  font-size: 1.4rem;
  color: var(--white-color);
}

.services .service .service_text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8rem;
  font-weight: 450;
}

/* about */

.about .about_container {
  display: grid;
  grid-template-columns: repeat(3, 0.7fr, 1fr);
  grid-template-areas: "image content";
  gap: 50px;
  place-items: center;
}

@media all and (max-width: 1000px) {
  .about .about_container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "image"
      "content";
    gap: 0px;
    width: 100%;
  }
}

.about .about_container :is(.image_about, .about_content) {
  width: 100%;
}

.about .about_container .image_about {
  grid-area: image;
  background: url(../images/about.jpg) top center no-repeat;
  background-size: cover;
  width: 550px;
  aspect-ratio: 1;
  align-self: center;
}

@media all and (max-width: 1000px) {
  .about .about_container .image_about {
    background: url(../images/tablet_about.jpg) top center no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
    display: block;
  }
}

.about .about_container .about_content {
  width: 100%;
  grid-area: content;
  padding-left: 50px;
  padding-top: 40px;
  font-weight: 600;
  font-family: 'Open Sans' !important;
}

@media all and (max-width: 1100px) {
  .about .about_container .about_content {
    padding-left: 0;
  }
}

.about .about_content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.about .heading-section .subheading {
  font-weight: 400;
  font-size: 1rem;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
}

.about .about_content .content_section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about_content .content_section .about_services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 30px;
}

@media all and (max-width: 700px) {
  .about_content .content_section .about_services {
    display: grid;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    gap: 40px;
  }
}

.about .about_services .service {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}

.about .about_services .service .text {
  display: flex;
  flex-direction: column;
}

.about .heading-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.8);
}

.about .about_services h3 {
  font-size: 18px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.about p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8rem;
  font-weight: 500;
}

.about .about_services .icon {
  font-size: 30px;
  color: var(--secondary-color);
  padding: 10px 15px;
  border: 1.5px solid var(--secondary-color);
  width: fit-content;
  margin-right: 15px;
}

/* an aside banner */

aside {
  background: url("../images/aside_image.webp") center/cover no-repeat;
  width: 100%;
  padding: 70px 0;
  position: relative;
  z-index: 1;
  
}

aside::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(12, 117, 251, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

aside .aside_container {
  z-index: 2;
  position: relative;
  display: flex;
  color: #ccc;
  gap: 10px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  
}



aside .aside_container p {
  text-transform: uppercase;
  font-weight: 700;
}

aside .aside_container .left p {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--white-color);
}

aside .aside_container p.were {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-top: 10px;
}

aside .aside_container a {
  display: block;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
  padding: 0.7rem 10px;
  align-self: center;
  transition: all 0.3s ease-out;
  text-transform: capitalize;
  border-radius: 23px;
  font-weight: normal;
}

aside .aside_container .left {
  width: 70%;
}

aside .aside_container .right {
  width: 30%;
  align-self: center;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 10;
}

@media all and (max-width:850px){
  aside .aside_container {
    flex-direction: column;
  }

  aside .aside_container .left {
    width: 100%;
  }

  aside .aside_container .right {
    width: 100%;
  }
  
}

@media screen and (max-width: 400px) {
  aside .aside_container {
    flex-direction: column;
  }
  aside .aside_container .left {
    width: 100%;
  }

  aside .aside_container .right {
    width: 100%;
  }
}

/* deaprtmanet section */

.department_section .content-section {
  display: none;
}

.department_section .active {
  display: block;
}

.department_section .content-section {
  transform: translateX(-0%);
  animation: fadeOutUps 0.3s ease-out;
}

@keyframes fadeOutUps {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(-0%);
  }
}

.department_section nav {
  margin-bottom: 20px;
}

.department_section nav a.active {
  background-color: var(--primary-color) !important;
  color: var(--white-color);
  position: relative;
}

.department_section nav a.active::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 45%;
  height: 15px;
  width: 15px;
  background-color: var(--primary-color);
  transform: rotate(45deg);
}

.department_section nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
}

.department_section nav li {
  width: 100%;
}

.department_section nav li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.7rem 0px !important;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  background: rgba(0, 0, 0, 0.08) !important;
}

.department_section nav li a:hover {
  background-color: var(--primary-color) !important;
  color: var(--white-color);
}

.department_section .content-section h2 {
  margin-bottom: 10px;
}

/* deps */

.department_section .sub_title {
  align-self: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
  position: relative;
}

.department_section .ti {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 0 5px;
  margin-bottom: 40px;
}

.ti{
  font-weight: 600;
  font-family: 'Open Sans' !important;
}

.department_section h1 {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
}
/* about */

.department_section .about_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr, 0.5fr);
  grid-template-areas: "content image ";
  gap: 50px;
  place-items: center;
}

@media all and (max-width: 1000px) {
  .department_section .about_container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "image"
      "content";
    gap: 0px;
    width: 100%;
  }
}

.department_section .about_container :is(.image_about, .about_content) {
  width: 100%;
}

.department_section .about_container .image_about {
  grid-area: image;
  height: 450px;
  aspect-ratio: 1;
  align-self: center;
  transition: all .3s ease-in-out;
}

.department_section .about_container .neurological {
  background: url(../images/dept-1.jpg) center no-repeat;
  background-size: cover !important;
}

.department_section .about_container .image_about:hover {
  transform: scale(1.05);
}

.department_section .about_container .surgical {
  background: url(../images/dept-2.jpg) center no-repeat;
  background-size: cover !important;
}

.department_section .about_container .dental {
  background: url(../images/dept-3.jpg) center no-repeat;
  background-size: cover !important;
}

.department_section .about_container .ophthalmology {
  background: url(../images/dept-4.jpg) center no-repeat;
  background-size: cover !important;
}

.department_section .about_container .cardiology {
  background: url(../images/dept-5.jpg) center no-repeat;
  background-size: cover !important;
}

@media all and (max-width: 1000px) {
  .department_section .about_container .image_about {
    background-position: top center;
    width: 100%;
    height: 300px;
    display: block;
  }
}

.department_section .about_container .about_content {
  width: 100%;
  grid-area: content;
}

@media all and (max-width: 1100px) {
  .department_section .about_container .about_content {
    padding-left: 0;
  }
}

.department_section .about_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.adepartment_section .about_content .content_section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about_content .content_section .about_services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 30px;
}

@media all and (max-width: 700px) {
  .about_content .content_section .about_services {
    display: grid;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    gap: 40px;
  }
}

.department_section .about_services .service {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}

.department_section .about_services .service .text {
  display: flex;
  flex-direction: column;
}

.department_section .heading-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.8);
}

.department_section .about_services h3 {
  font-size: 18px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.department_section p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8rem;
  font-weight: 500;
}

.department_section .para {
  margin-bottom: 30px;
}
.department_section .about_services .icon {
  font-size: 30px;
  color: var(--secondary-color);
  padding: 10px 15px;
  border: 1.5px solid var(--secondary-color);
  width: fit-content;
  margin-right: 15px;
}

@media screen and (max-width: 600px) {
  .department_section nav ul {
    flex-direction: column;
  }

  .department_section nav li a {
    padding: 0.6rem 0px !important;
    margin: 1px 0;
    font-size: 0.9rem;
  }

  .department_section nav a.active::before {
    left: 47%;
  }
}

/* doctors */

.doctors .sub_title {
  align-self: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
  position: relative;
}

.doctors .ti {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 80px 5px;
  margin-bottom: 40px;
}

.ti p {
  width: 60%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.6);
}

@media all and (max-width: 900px) {
  .ti p {
    width: 90%;
  }
}

.doctors h1 {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
}

@media screen and (max-width: 500px) {
  .doctors.services {
    margin-top: -10px;
  }
}

.doctors .all_services {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.doctors .all_services .service {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  position: relative;
}

.doctors .service .first {
  background: url(../images/doc-1.jpg);
}

.doctors .service .second {
  background: url(../images/doc-2.jpg);
}

.doctors .service .third {
  background: url(../images/doc-3.jpg);
}

.doctors .service .fourth {
  background: url(../images/doc-4.jpg);
}

.doctors .service .icon {
  width: 100%;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: cover;

  background-position: top center;
  transition: all 0.3s ease;
}

.doctors .service_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 10px;
}

.doctors .service_text .socials {
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: -50px;
  height: 0px;
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
  align-items: center;
  width: 100%;
  opacity: 0;
}

.doctors .service_text .socials .fa-brands {
  color: var(--main-color);
}

.doctors .service_text .socials .fa-brands:hover {
  color: var(--secondary-color);
}

.doctors .all_services .service:hover .socials {
  height: 41px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  transform: scale(1.03);
}

.doctors .all_services .service:hover .icon {
  transition: all 0.3s ease-in-out;
  transform: scale(1.03);
}

.doctors .service_text h3 {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.doctors .all_services .service:hover :is(h3) {
  color: var(--primary-color);
}

.doctors .service_text h4 {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.doctors .service .service_text p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8rem;
  font-weight: 450;
}

/* testmonials */

.testimonials .sub_title {
  align-self: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
  position: relative;
}

.testimonials .ti {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 80px 5px;
  margin-bottom: 40px;
}

.testimonials h1 {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
}

.testimonials .all_testimonials {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

.all_testimonials .testimonial_para p {
  margin: 20px auto;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
}

.all_testimonials .quote {
  font-size: 44px;
  color: var(--primary-color);
  top: 0px;
  left: 0;
  z-index: 10;
}

.testimonials .all_testimonials .testify {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
  width: 100%;
}

.all_testimonials .testify .ones {
  background: url(../images/person_1.jpg);
}

.all_testimonials .testify .twos {
  background: url(../images/person_1.jpg);
}

.all_testimonials .testify .thirds {
  background: url(../images/person_1.jpg);
}

.all_testimonials .testify .fours {
  background: url(../images/person_1.jpg);
}

.all_testimonials .testify .image {
  width: 170px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
}


.testimonials .all_testimonials .testify {
  gap: 20px;
  margin: 20px 0;
}

.testify .writer {
  line-height: 2rem;
}
.testify .writer h4 {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #000000;
}
.testify .writer p {
  font-size: 1rem;
  color: var(--primary-color);
}

.testimonials nav {
  margin: 0 auto;
}

.testimonials nav ul {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}

.testimonials nav ul li a {
  display: block;
  height: 11px;
  width: 11px;
  border-radius: 50%;
  margin: 0 3px;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.3);
}

.testimonials nav ul li a:hover {
  background-color: var(--secondary-color);
}

.testimonials nav ul li a.actives {
  background-color: var(--secondary-color);
}

.testimonials .all_testimonials .testify {
  display: none;
}

.testimonials .all_testimonials .actives {
  display: flex !important;
}

.testimonials .all_testimonials .actives {
  transform: translateX(0%);
  animation: fadesOutUp 0.3s ease-in-out;
}

@keyframes fadesOutUp {
  from {
    transform: translateX(50%);
  }

  to {
    transform: translateX(20%);
  }
  to {
    transform: translateX(0%);
  }
}




.contact_wrapper:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  
  z-index: -1;
}

/* .contact_wrapper::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: -1;
} */


.contacts {
  width: 100%;
  position: relative;
  padding: 0 10px;
}

.contacts .sub_title {
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.contacts .ti {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3rem;
  gap: 10px;
}

.contacts .ti h1 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}
.contacts .ti p {
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
}

.contacts .contact_wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas: "contact content facts";
}



.contacts .contact_wrapper .first {
  grid-area: contact;
  grid-column: 1/7;
  padding: 40px 0;
  background-color: var(--primary-color);
}

.contacts .contact_wrapper .second {
  grid-area: content;
  grid-column: 7/12;
  padding: 40px 0;
}

.contacts .contact_wrapper .facts {
  grid-area: facts;
  grid-column: 12/13;
  padding: 40px 0;
}


@media all and (max-width:800px){

  .contacts {
    padding: 0 !important;
  }

  .contacts .contact_wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: "contact content facts";
  }

  .contacts .contact_wrapper .first {
    grid-area: contact;
    grid-row: 1;
    grid-column: 1/13;
    padding: 40px 0;
    background-color: var(--primary-color);
  }
  
  .contacts .contact_wrapper .second {
    grid-area: content;
    grid-column: 1/12;
    grid-row: 2;
    padding: 40px 0;
  }
  
  .contacts .contact_wrapper .facts {
    grid-area: facts;
    grid-row: 2;
    grid-column: 12/13;
  }

  .contact_wrapper::after{
    width: 100%;
    background-color: transparent;
  }


  .contacts .contact_wrapper .first .form {
    flex-direction: row;
  }

  .contact_wrapper .first .form .left {
    width: 50% !important;
  }
  
  .contact_wrapper .first .form .right {
    width: 50% !important;
    

  }
}


.contacts .contact_wrapper .first {
  margin: 0;
  width: 100%;
}

.contacts .contact_wrapper .first .form {
  display: flex;
  gap: 10px;
  width: 100%;
  
  margin: 0;
}

@media all and (max-width:1100px){
  .contacts .contact_wrapper .first .form {
    flex-direction: column;
  }
}

.contact_wrapper .first .form .left {
  display: flex;
  flex-direction: column;
  width: 50% !important;
}

.contact_wrapper .first .form .right {
  display: flex;
  flex-direction: column;
  width: 50% !important;
}
@media all and (max-width:1100px){
  .contacts .contact_wrapper .first .form {
    flex-direction: column;
  }

  .contact_wrapper .first .form .left {
    width: 100% !important;
  }

  .contact_wrapper .first .form .left #firstname {
    order: 1;
  }

  .contact_wrapper .first .form .right #lastname {
    order: 0;
  }
  
  .contact_wrapper .first .form .right {
    width: 100% !important;
  }
}


.contacts .contact_wrapper :is(input, textarea, select) {
  border: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  height: 70px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1rem !important;
  box-shadow: none !important;
  font-weight: 500 !important;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  padding-left: 3px;
  outline: none;
  width: 100%;
}

.contacts .contact_wrapper :is(#time, #services) {
  background-color: var(--primary-color) !important;
}

.contacts .contact_wrapper textarea {
  overflow: auto;
  resize: vertical;
  padding-left: 5px;
  
}


/* Target autofilled input fields */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--primary-color) inset !important; /* Adjust the color as needed */
}

/* Target autofilled textareas */
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--primary-color) inset !important; /* Adjust the color as needed */
}

/* Target autofilled select elements */
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--primary-color) inset !important; /* Adjust the color as needed */
}

/* You can also style other properties like background-color or color if needed */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: var(--primary-color) !important; /* Adjust the color as needed */
  color: black !important; /* Adjust the color as needed */
}

input:focus{
  background-color: red;
}


.contact_wrapper .right .appoint {
  background: #ff8000 !important;
  border: 1px solid #ff8000 !important;
  color: #fff;
  width: fit-content;
  /* margin-top: 20px; */
  border-radius: 30px;
  margin-left: 10px !important;
  font-size: 1rem;
  cursor: pointer;
  justify-content: center;
  padding: 10px 25px;
  align-self: center;
  /* height: 70px; */
}

.contacts :is(.radio, input){
  height: 70px;
}

.contacts .right .radio{
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap:5px;
  margin-top: 5px;
}

@media screen and (max-width:1100px){
  .contacts .right .radio{
    gap: 10px;
    flex-direction: row;
  }
}

@media screen and (max-width:350px){
  .contacts .right .radio{
    margin-top: 15px;
    flex-direction: column;
  }
}


.contacts .right .radios{
  display: inline-block;
  height: 15px !important;
  width: 15px !important;  
}


.contacts .right .radio .fa-whatsapp{
  color: green;
}


.contacts .right .radio .fa-envelope{
  color: rgb(185, 11, 11);
}


input:focus,
textarea:focus {
  outline: none;
}

.contact_wrapper .first .form .right {
  display: flex;
  flex-direction: column;
}

.contact_wrapper .first .form #message{
  height: 70px !important;
  overflow-y: hidden;
  resize: none;
  color: #fff;
  /* font-size: 1.1rem; */
  font-weight: 500 !important;
  font-family: Prompt, sans-serif !important;
}

.contact_wrapper .first #dob{
/* font-size: 1.1rem; */
font-weight: 500 !important;
font-family: Prompt, sans-serif !important;
}



.contacts .contact_wrapper .second .all_divs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 10px;
  place-items: center;
  height: 100%;
}

.contacts .contact_wrapper .second .all_divs .brah {
  background-color: #fafafa;
  height: 200px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .contact_wrapper .second .brah{
  background-color: red !important;
} */



.form ::placeholder {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  font-weight: 500 !important;
}

.form #message{
  font-weight: bolder;
  
}



.second .all_divs div .numberz {
  font-size: 2.8rem;
  color: var(--primary-color);
  font-weight: 900;
  font-family: "Open Sans";
}

.second .all_divs div .pa {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8);
}


 /* Add your styles here */
 #datepicker-container {
  position: relative;
  display: inline-block;
}

#datepicker {
  display: none;
  position: absolute;
  z-index: 1;
}

/* styling facts */

.contacts .contact_wrapper .facts {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contacts .contact_wrapper .facts p {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  text-orientation: sideways;
  text-align: center;
  text-orientation: sideways;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 16px;
  background-color: #fafafa !important;
}




/* pricing */

.pricing .sub_title {
  align-self: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
  position: relative;
  text-align: center;
}

.pricing .ti {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 0 5px;
  margin-bottom: 40px;
}

.pricing h1 {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 900;
}




.pricing .all_services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.pricing .all_services .service {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 35px 5px;
  margin: 15px 0;
  text-align: center;
  border: 2px solid var(--primary-color);
}

.pricing .all_services .service:hover{
  border-color: var(--main-color);
}

.pricing .all_services .service:hover h3 span{
  color: var(--primary-color);
}

.pricing .all_services .service:hover a{
  background-color: var(--main-color);
}


.pricing .service .category h2{
  font-size: 28px;
  font-size: 1.7rem;
  font-weight: 600;
}

.pricing .service .price h3 {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.pricing .all_services .service:hover h3{
  color: var(--main-color);
}


.pricing .service .price h3 span{
  font-size: .8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  
}

.pricing .service .services_offered ul{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pricing .service .services_offered ul li{
  list-style: none;
  padding: 10px 5px;  
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
}

.pricing .service {
  position: relative;
}

.pricing .service .get_offer{
  position: absolute;
  display: block;
  bottom:-25px;
}

.pricing .service .get_offer{
    border-radius: 30px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
}

/* blogs */


.blogs .sub_title {
  align-self: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
  position: relative;
}

.blogs .ti {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 80px 5px;
  margin-bottom: 40px;
}

.ti p {
  width: 60%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.6);
}

@media all and (max-width: 900px) {
  .ti p {
    width: 90%;
  }
}

.blogs h1 {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
}

@media screen and (max-width: 500px) {
  .blogs.services {
    margin-top: -10px;
  }
}



.blogs .all_blogs {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blogs .all_blogs .blog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  position: relative;
}

.blogs .all_blogs .blog:hover .icon{
  transform: scale(1.02);
  
}

.blogs .blog .first {
  background: url(../images/image_1.jpg);
}

.blogs .blog .second {
  background: url(../images/image_2.jpg);
}

.blogs .blog .third {
  background: url(../images/image_3.jpg);
}


.blogs .blog .icon {
  width: 100%;
  aspect-ratio: 1;
  height: 270px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transition: all 0.3s ease;
}

.blogs .blog .orther_buttons{
  width: 100%;
  display: flex;
  justify-content: space-between;
}


.blogs .blog .orther_buttons a:first-child:hover{
  color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  background-color: transparent;
  border-color: var(--main-color);
}

.blogs .blog .orther_buttons a:first-child:hover i{
  color: rgba(0, 0, 0, 0.7);
}

.blogs .blog .orther_buttons a:first-child i{
  color: #fff;
}


.blogs .blog .orther_buttons a:first-child{
  padding: 7px 17px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
}

.blogs .blog .orther_buttons a:first-child i{
  color: #fff;
}

.blogs .blog .orther_buttons a{
  display: flex;
  align-items: center;
}
.blogs .blog .orther_buttons a  :is(i){
  color: rgba(0, 0, 0, 0.7);
  padding-left: 10px;
}

.blogs .blog .orther_buttons a  :is(sub){
  display: block;
  padding-left: 4px;
}


.blogs .blog .orther_buttons a:nth-of-type(even){
  color: var(--primary-color);
}

.blogs .blog .orther_buttons a:nth-of-type(even):hover {
  color: var(--main-color);
}

.blogs .blog .orther_buttons a:nth-of-type(even):hover :is(sub,i){
  color: var(--main-color);
}

.blogs .service_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 10px;
}



.blogs .service_text h3 {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left
}

.blogs .all_blogs .blog:hover :is(h3) {
  color: var(--primary-color);
}


.blogs .blog .service_text p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8rem;
  font-weight: 450;
  text-align: left;
}


/* footer */

footer{
  background: #141313;
  color: rgba(255, 255, 255, 0.8);
  padding: 20px 10px;
  font-size: .9rem;
}

footer .all_rights{
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width:800px){
  footer .all_rights{
    flex-direction: row;
  }
}

@media screen and (max-width:600px){
  footer .all_rights{
    flex-direction: column;
  }
  
}


.footer_wrapper{
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  gap: 30px;
  margin: 40px auto;
}


/* first styles */
.footer_wrapper .first{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_wrapper .first .have_questions{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_wrapper h3{
  color: var(--main-color);
  font-size: 1.3rem;
  letter-spacing: 1.3px;
}

.first .have_questions ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.first .have_questions ul li{
  padding: 0 10px;
  color: #fff;
}
.first .have_questions ul i{
  color: #fff;
  align-items: center;
  display: inline-block;
  padding: 0 0px;
  margin-right: 15px;
}

/* first then icons */

.footer_wrapper .first .icons{
  display: flex;
  align-items: center; 
}


.footer_wrapper .first .icons a{
  display: block;
  margin-right:15px;
  font-size: 1.2rem;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  height: 35px;
  width: 35px;
  text-align: center;
  background: #665e5e;
}

.footer_wrapper .first .icons a i{
  color: #fff;
  display: block;
  line-height: 35px;
}



.footer_wrapper .first .logo p{
  margin: 10px 0;
}

.footer_wrapper .doc_logo {
  font-family: 'Open Sans';
  font-weight: 900 !important;
  font-size: 1.29rem;
  color: var(--main-color);
  margin-bottom: 20px;
}

.footer_wrapper :is(#special, .icon) {
  color: var(--primary-color);
  align-self: center;
}

/* second styles */

.footer_wrapper .second{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_wrapper .second .links{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.footer_wrapper  .second .links ul{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_wrapper li a{
  cursor: pointer;
  color: #fff;
}
.footer_wrapper .second .links ul li{
  list-style: none;
}

.footer_wrapper .second .fa-solid{
  margin-right: 7px;
  font-size: .6rem;
}

/* third styles */

.footer_wrapper .third .our_recent_blog{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_wrapper .third .our_recent_blog p{
  margin-top: -5px;
}

.third .our_recent_blog :is(.first_recent_blog, .second_recent_blog){
display: flex;
gap: 17px;
}


.third .our_recent_blog .image{
  height: 90px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.third .our_recent_blog .one{
  background-image: url(../images/bg_1.jpg.webp);
}

.third .our_recent_blog .two{
  background-image: url(../images/bg_2.jpg.webp);
}
.third .our_recent_blog .links{
  font-size: .75rem;
  margin-top: 8px !important;
}
.third .our_recent_blog i{
  display: inline-block;
  color: gray;
  margin:0 5px;
}

.third .our_recent_blog .content{
  font-size: 1rem;
}

/* fourth */

.footer_wrapper .fourth{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_wrapper .fourth .oppening_hours{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.fourth .oppening_hours p{
  font-size: 1rem;
  margin-left: 15px;
}
.fourth .oppening_hours p i{
  margin-right: 6px;
  color: gray;
}
.footer_wrapper .fourth .subscribe form{
  display: flex;
  flex-direction: column;
}

.fourth .subscribe form :is(input, button){
  height: 45px;
  border: none !important;
  margin: 8px 0;
  font-size: 1rem;
  border-radius: 12px;
}

.fourth .subscribe form input{
  -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none;
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center;
}

.fourth .subscribe form button{
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
}