<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Variables **/
:root {
  --primary-color: #eee7e4;
  --secondary-color: #5a66c5;
  --main-font-family: Domine;
}
/* Apply box-sizing to all elements */
* {
  box-sizing: border-box;
}

/* Basic styles for the body element */
body {
  font-family: var(--main-font-family);
  font-size: 14px;
  background-color: #fff;
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}
h4 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}
h5 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
h6 {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

p,
ol,
ul {
  margin: 0;
  padding: 0;
}
ul,
ol {
  margin-left: 20px;
}
a {
  display: inline-block;
  text-decoration: none;
}
p {
  font-size: 14px;
  margin-bottom: 20px;
}
.application {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--primary-color);
}
/* Container styles */
.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
/*section wrap */
.section-wrap {
  padding: 0 20px;
}
.application h1 {
  font-size: 50px;
  line-height: 50px;
  font-weight: 900;
  font-family: Domine;
}
.application h2 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  font-family: Domine;
}
/* ------------------------- Start Styles of Navbar --------------------- */
.header {
  width: 1440px;
  max-width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  z-index: 1000;
  background-color: var(--primary-color);
  min-height: 60px;
  overflow-x: hidden;
}

.header.scrolled {
  background-color: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.header .navigation .navbar .items-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
}

.logo {
  padding: 10px 0;
}
.header .navbar .items-list .item .link {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 10px 40px;
  text-transform: uppercase;
  transition: all 1.2s ease;
  font-weight: 700;
  color: var(--secondary-color);
}

.header .navbar .items-list .active {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
}
.header .navbar .items-list .active .link {
  color: var(--primary-color);
}
.header .navbar .items-list .item:hover {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
}
.header .navbar .items-list .item:hover .link {
  color: var(--primary-color);
}
.menu {
  display: none;
}

.logo img {
  width: 60px;
  height: 60px;
}
.menu i.fa.fa-bars {
  font-size: 30px;
}

.menu i.fa.fa-times {
  font-size: 30px;
}

/* ------------------------- End Styles of Navbar --------------------- */

/* ------------------------- Start styles of welcome section-----------------*/
.first-section {
  position: relative;
  margin-top: 80px;
  margin-bottom: 40px;
}
.first-section .welcome-section {
  width: 100%;
  display: flex;
  align-items: stretch;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  /* height: 100%; */
}

.first-section .welcome-section .welcome-image {
  width: calc((100% / 2) - 50px);
  margin-right: 50px;
  background: linear-gradient(
    to right,
    rgba(90, 102, 197, 0.85),
    rgba(236, 230, 228, 0.85)
  );
  border-top-right-radius: 80% 90%;
}

.first-section .welcome-section .welcome-image img {
  width: 100%;
  border-top-right-radius: 80% 90%;
  height: 100%;
  mix-blend-mode: multiply;
}

.first-shape {
  position: absolute;
  left: 30%;
  top: 50px;
  z-index: 2;
}
.first-shape img {
  width: 50%;
  height: 100%;
}
.third-shape {
  position: absolute;
  bottom: 5px;
  right: 0;
  z-index: 1;
  /* margin-bottom: 20px; */
}
.second-shape img,
.third-shape img {
  width: 70%;
}
.second-shape {
  position: absolute;
  bottom: 10px;
  right: 60px;
  z-index: 2;
  /* margin-bottom: 20px; */
}
.welcome-text {
  width: calc(((100% / 2) - 50px));
  padding: 150px 0;
}
.welcome-text h1 {
  color: #5a66c5;
  font-weight: 700;
  width: 75%;
}
.welcome-text p {
  width: 80%;
  line-height: 16px;
  text-transform: uppercase;

  font-weight: 400;
  font-family: Karla;
  text-align: justify;
}
.btn-shape {
  display: flex;
  justify-content: space-between;
}

.btn {
  font-size: 21px;
  font-weight: 400;
  font-family: Karla;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 50px;
  text-align: center;
  /* width: 50%;
  height: 50px;
  line-height: 50px; */
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transform: skewX(35deg);
  z-index: -1;
  transition: 1s;
}
.btn:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
.btn:hover::before {
  width: 100%;
}
/* ------------------------- End styles of welcome section-----------------*/

/* ------------------------- Start styles of services section-----------------*/
.first-services-section {
  margin-top: 80px;
  margin-bottom: 40px;
  position: relative;

  background: linear-gradient(
      to right,
      rgba(90, 102, 197, 0.85),
      rgba(236, 230, 228, 0.85)
    ),
    url("https://i.imgur.com/bKOtAjH.png");
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 600px;
}
.second-section {
  margin-bottom: 40px;
  position: relative;
  min-height: 600px;
  background: linear-gradient(
      to right,
      rgba(90, 102, 197, 0.85),
      rgba(236, 230, 228, 0.85)
    ),
    url("https://i.imgur.com/E2B5zyk.png");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.service {
  width: 60%;
  margin: 0 auto;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-radius: 11px;
  text-align: center;
}
.service-one {
  background-color: var(--secondary-color);
}

.service h2 {
  text-align: center;
}
.service p {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: Karla;
  text-align: center;
}
.service a {
  font-size: 18px;
  line-height: 18px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: Domine serif;
  text-decoration: none;
}
.chevron {
  position: absolute;
  bottom: 10px;
  left: 50%;
  font-size: 24px;
  cursor: pointer;
}
/* ------------------------- End styles of services section-----------------*/

/* ------------------------- Start styles of services section two-----------------*/
.third-section {
  margin-bottom: 40px;
}

.third-section .services-section-two {
  width: 100%;
  position: relative;
  background: linear-gradient(
      to right,
      rgba(90, 102, 197, 0.85),
      rgba(236, 230, 228, 0.85)
    ),
    url("https://i.imgur.com/9wdimjl.png");
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 600px;
}
.service-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(237, 227, 231, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-two h2 {
  width: 50%;
  text-align: left;
}

.service-two p {
  width: 50%;
  line-height: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Karla";
  text-align: left;
}

/* ------------------------- End styles of services section two-----------------*/

/* ------------------------- Start styles of services section three-----------------*/
.fourth-section {
  margin-bottom: 40px;
}
.services-section-three {
  position: relative;

  background: linear-gradient(
      to right,
      rgba(90, 102, 197, 0.85),
      rgba(236, 230, 228, 0.85)
    ),
    url("https://i.imgur.com/bKOtAjH.png");
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 600px;
}

.service-three {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(237, 227, 231, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.service-three h2 {
  width: 30%;
}

/* ------------------------- End styles of services section three-----------------*/

/*-----------------------Start styles of awards section----------------- */

.awards-section {
  width: 100%;
  background-color: var(--secondary-color);
  /* margin-bottom: 40px; */
}
.awards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-wrap: wrap;
  color: var(--primary-color);
}

.award {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 30px 30px;
  width: calc((100% / 3) - 20px);
  margin-right: 20px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.award img {
  width: 30%;
  margin: 0 auto;
}

.award-title {
  margin-bottom: 20px;
}

.award h3 {
  letter-spacing: -1.5px;
  font-weight: 400;
  font-family: Domine serif;
  text-align: center;
  margin: 0;
}

.award p {
  width: 80%;
  margin: 0 auto;
  font-weight: 400;
  font-family: Karla;
  text-align: center;
}

/*-----------------------End styles of award section----------------- */

/*-----------------------Start styles of mission section----------------- */

.mission-section {
  position: relative;
  /* margin-bottom: 40px; */
  overflow: hidden;
}

.mission-section .shape {
  position: absolute;
  z-index: 1;
  opacity: 0.2;
  top: 50%;
  transform: translateY(-50%);
}

.mission-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.mission-title {
  margin-top: 20px;
  width: 60%;
  padding-left: 200px;
}
.mission-title h2 {
  letter-spacing: -3px;
  width: 50%;
}
.mission-description {
  width: 40%;
  margin-top: 20px;
}
.mission-description p {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-family: Karla;
  text-align: justify;
}
/*-----------------------End styles of mission section----------------- */

/*-----------------------Start styles of team section----------------- */

.team {
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  margin-bottom: 40px;
}
.dentists-team {
  padding: 20px 0;
}
.dentists-team h2 {
  letter-spacing: -3px;
  text-align: center;
}
.dentists-items.owl-carousel .owl-stage-outer {
  z-index: 1;
  padding: 10px 0;
}
.dentists-items {
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.dentist-item {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: relative;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.dentist-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 125, 0.2);
  background-color: var(--primary-color-lighter);
  cursor: pointer;
}

.dentist-item img,
.dentist-item h4,
.dentist-item h5 {
  transition: transform 0.3s ease-in-out;
}

.dentist-item:hover img,
.dentist-item:hover h4,
.dentist-item h5 {
  transform: scale(1.01);
}

.dentist-item h4 {
  text-align: center;
  font-family: Karla;
}
.dentist-item h5 {
  text-align: center;
  font-family: Karla;
  letter-spacing: -1px;
}

.owl-carousel .owl-stage-outer {
  z-index: 1;
}
.owl-carousel .owl-nav {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.owl-carousel .owl-nav button {
  /* background: var(--primary-color) !important; */
  height: 100%;
  color: var(--primary-color) !important;
  font-size: 70px !important;

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.owl-carousel .owl-nav button:hover {
  opacity: 1;
}

.owl-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.owl-carousel button.owl-dot {
  margin: 0 10px;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
}

.owl-carousel button.owl-dot:not(.active) {
  background-color: var(--primary-color) !important;
}

.owl-carousel button.owl-dot.active {
  background-color: white !important;
  width: 20px !important;
  height: 20px !important;
}

/*-----------------------End styles of team section----------------- */

/*-----------------------Start styles of experience section----------------- */

.experience-section {
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}
.experience-first-shape {
  position: absolute;
  left: -25px;
}

.experience-content {
  padding: 120px 50px;
}
.experience-content h2 {
  margin: 0 auto;
  width: 15%;
  letter-spacing: -5px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 50px;
}
.experience-content h3 {
  font-size: 60px;
  letter-spacing: -4px;
  font-weight: 500;
  font-family: Domine;
}
.experience-content .experience-items {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
}
.experience-content .experience-items div {
  width: calc(100% / 3);
}
.experience-content .experience-items p {
  letter-spacing: -1px;
  font-weight: 400;
  font-family: Karla;
  text-transform: uppercase;
}
.experience-content .experience-items div:last-child p {
  margin-bottom: 0;
}
.experience-second-shape {
  position: absolute;
  right: -25px;
  bottom: 0;
}

/*-----------------------End styles of experience section----------------- */

/*-----------------------Start styles of contact section----------------- */
.contact-section {
  /* margin-bottom: 40px; */
  position: relative;
  background: linear-gradient(
      to right,
      rgba(90, 102, 197, 0.85),
      rgba(236, 230, 228, 0.85)
    ),
    url("https://i.imgur.com/1u6n10e.png");
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 700px;
}

.contact-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-content h2 {
  letter-spacing: -1px;
  font-family: Domine serif;
  text-align: center;
  -webkit-text-stroke: 1px white;
  width: 70%;
}
.contact-content a {
  font-weight: 400;
  font-family: Karla;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-content a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transform: skewX(35deg);
  z-index: -1;
  transition: 1s;
}
.contact-content a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
.contact-content a:hover::before {
  width: 100%;
}
/*-----------------------End styles of contact section----------------- */

/*-----------------------Start styles of footer----------------- */

.footer {
  width: 100%;
  background-color: var(--secondary-color);
}
.footer-wrap {
  padding: 0 20px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--primary-color);
  font-family: Domine, sans-serif;
}

.footer-left {
  width: calc((100% / 2) - 60px);
  margin-right: 60px;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
}
.footer-left div {
  width: calc(100% / 2);
}

.footer h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: sans-serif;
}
.footer .link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-bottom: 5px;
}
.footer .link:hover {
  text-decoration: underline;
}
ul {
  margin-left: 0 !important;
}
.footer-right {
  width: 50%;
}
.footer-right h2 {
  text-align: right;
}
.footer-right h2 span {
  display: block;
}
.footer-right p {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: Karla;
  text-transform: uppercase;
  text-align: right;
}

/* /////////////////////////////////// Start About Page //////////////////////// */
.first-about-section {
  margin-top: 80px;
  margin-bottom: 40px;
  width: 100%;

  background: linear-gradient(
      to right,
      rgba(90, 102, 197, 0.85),
      rgba(236, 230, 228, 0.85)
    ),
    url("https://i.imgur.com/gqjoOe4.jpeg");
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  position: relative;
}

.first-about-section .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  margin: 0 auto;
  background-color: rgba(237, 227, 231, 0.8);
  text-align: center;
  padding: 50px 0;
}

.first-about-section .content p {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.first-about-section .content .btn-shape {
  align-items: center;
  justify-content: center;
}
.general-about-section {
  margin-bottom: 40px;
  width: 100%;
}
.general-about-section .content {
  width: 80%;
  margin: 0 auto;
}
.general-about-section .content h2 {
  text-align: center;
}
.second-about-section {
  margin-bottom: 40px;
  width: 100%;
}
.second-about-section .content .office {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.second-about-section .content .office .office-img {
  width: 50%;
  height: 300px;
  background: linear-gradient(
    to right,
    rgba(90, 102, 197, 0.85),
    rgba(236, 230, 228, 0.85)
  );
}
.second-about-section .content .office .office-img img {
  width: 100%;
  mix-blend-mode: multiply;
  height: 100%;
}
.second-about-section .content .office .description {
  width: 50%;
  padding: 0 20px;
}
.third-about-section {
  margin-bottom: 40px;
}
.third-about-section .doctor {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.third-about-section .doctor .team-img {
  height: 400px;
  width: 30%;
  margin-right: 50px;
}
.third-about-section .doctor .team-img img {
  width: 100%;
  height: 100%;
}
.third-about-section .doctor .information {
  width: calc(70% - 50px);
  border-top: 2px solid var(--secondary-color);
}

.third-about-section .doctor .information img {
  padding: 10px 0;
  width: 10%;
}

.third-about-section .doctor .information h3 {
  padding: 10px 0;
  font-size: 30px;
  font-weight: 500;
}
.third-about-section .doctor .information h4 {
  padding: 5px;
  font-size: 20px;
  font-weight: 500;
}

.third-about-section .doctor .information p {
  padding: 0 5px;
  width: 80%;
  text-align: justify;
}

/* /////////////////////////////////// End About Page //////////////////////// */

/* /////////////////////////////////// Start Contact Page //////////////////////// */
.contact-page {
  margin-top: 80px;
}
.contact-page .section-content {
  padding-top: 50px;
}
.contact-page .section-content .description {
  width: 90%;
}
.contact-page .content .notes {
  padding-left: 20px;
}
.contact-page .content .notes p {
  font-size: 12px;
  margin-bottom: 10px;
}
.contact-page .content .notes ul {
  padding: 5px 20px;
  list-style-type: disc;
}
.contact-page .content .notes ul li {
  margin-bottom: 5px;
  font-size: 12px;
}
.contact-page .section-content .phone,
.contact-page .section-content .address {
  padding: 0 20px 10px 0;
}
.contact-page .section-content .fa {
  font-size: 20px;
  margin-right: 20px;
}
.contact-page .content {
  margin-top: 20px;
  width: 90%;
  margin: 50px auto;
  border: 2px solid var(--secondary-color);
}
.contact-page h2 {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid var(--secondary-color);
}
.contact-page .form-appointment .group {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.contact-page .form-appointment .group .form-group {
  width: calc((100% / 2) - 50px);
  margin-right: 50px;
}
.contact-page .form-appointment .group .appointment {
  width: calc((100% / 2) - 50px);
  /* margin-right: 50px; */
}
.contact-page .form-appointment .group .form-group .form-control,
.contact-page .form-appointment .group .appointment .appointment-field {
  margin-bottom: 30px;
}
.contact-page .form-appointment .group .form-group .form-control input {
  width: 100%;
  height: 30px;
  border: 1px solid var(--secondary-color);
  background-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08) inset;
  padding: 16px;
}
.contact-page .form-appointment .group .form-group .form-control textarea {
  width: 100%;
  border: 1px solid var(--secondary-color);
  background-color: var(--primary-color);
  resize: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08) inset;
  padding: 16px;
}
.contact-page .form-appointment .group .form-group .form-control input:focus,
.contact-page
  .form-appointment
  .group
  .form-group
  .form-control
  textarea:focus {
  outline: none;
  box-shadow: 0 0 6px var(--secondary-color);
}

.contact-page .form-appointment .group .appointment .appointment-field label,
.contact-page .form-appointment .group .appointment .appointment-field legend {
  display: block;
  margin-bottom: 10px;
}
.contact-page .form-appointment .group .appointment .appointment-field legend {
  font-weight: bold;
}
.contact-page .form-appointment .submit-appointment {
  text-align: center;
  border-top: 1px solid var(--secondary-color);
  padding: 20px;
}

.contact-page .form-appointment .submit-appointment input {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 16px;
  padding: 10px 18px;
}

.contact-page .form-appointment .submit-appointment input:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
/* /////////////////////////////////// End Contact Page //////////////////////// */

/* /////////////////////////////////// Start Blog Page //////////////////////// */
.blog-section {
  margin-top: 80px;
  margin-bottom: 50px;
}
.blog-section .content {
  padding-top: 50px;
}
.blog-section .blog-content .category-menu {
  width: 80%;
  margin: 0 auto;
}
.blog-section .blog-content .category-menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.blog-section .blog-content .category-menu ul li {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 10px 0;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100% / 3) - 20px);
  text-align: center;
}
.blog-section .blog-content .category-menu ul li a {
  color: var(--primary-color);
  font-family: Karla;
  font-size: 18px;
  font-weight: 400;
}

.blog-section .blog-content .category-menu ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 0;
  height: 100%;
  background: #fff;
  transform: skewX(35deg);
  z-index: -1;
  transition: 1s;
}
.blog-section .blog-content .category-menu ul li:hover a {
  color: var(--secondary-color);
  text-decoration: none;
}
.blog-section .blog-content .category-menu ul li:hover::before {
  width: 100%;
}
.blog-section .blog-content .category-menu ul .activeButton {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-section .blog-content .category-menu ul .activeButton a {
  color: var(--secondary-color);
}

.blog-section .loading-indicator {
  font-size: 40px;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
}
.blog-section .loading-indicator::after {
  content: ".";
  display: inline-block;
  animation: loading-animation 1.2s infinite;
}
@keyframes loading-animation {
  0% {
    content: ".";
  }
  20% {
    content: "..";
  }
  50% {
    content: "...";
  }
}
.blog-section .group {
  display: none;
}
.blog-section .group h3 {
  font-size: 25px;
  text-align: center;
  text-decoration: underline;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-section .group p {
  text-align: center;
}
.blog-section .group .btn-load {
  cursor: pointer;
}
.blog-section .group .more-less {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.blog-section .group .btn-load.load-less-button {
  display: none;
}

.blog-section .group .btn-load .btn-d span {
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 500;
  font-family: Karla;
  padding: 13px 16px;
  text-transform: uppercase;
  z-index: 2;
}
.blog-section .group .btn-load .btn-d {
  position: relative;
}

.blog-section .group .btn-load .btn-d:before,
.blog-section .group .btn-load .btn-d:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  transition: all 0.4s ease;
  background-color: var(--secondary-color);
  z-index: 0;
}
.blog-section .group .btn-load .btn-d:before {
  left: 0;
}
.blog-section .group .btn-load .btn-d:after {
  right: 0;
}

.blog-section .group .btn-load .btn-d:hover:before,
.blog-section .group .btn-load .btn-d:hover:after {
  width: 51%;
}
.blog-section .group .btn-load .btn-d:hover span {
  position: relative;
  color: var(--primary-color);
  z-index: 2;
}
.blog-section .blog-posts {
  width: 90%;
  margin: 0 auto;
}
.blog-section .posts {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 50px;
}
.blog-section .posts article {
  display: none;
  position: relative;
  width: calc((100% / 3) - 30px);
  margin: 0 15px;
  margin-bottom: 30px;
  border: 1px solid var(--secondary-color);
}
.blog-section .posts article h4 {
  padding-left: 20px;
  padding-top: 10px;
}
.blog-section .posts article h5 {
  padding-left: 30px;
}
.blog-section .posts article img {
  width: 100%;
  height: 200px;
  transform: scale(0.9);
}
.blog-section .posts article .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.blog-section .posts article .btn-read {
  width: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #fff;
  text-align: center;
}
.blog-section .posts article .read-more {
  color: white;
  padding: 15px 0;
}
.blog-section .posts article .btn-read:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.blog-section .posts article:hover .overlay {
  display: block;
}
.blog-section .posts article:hover img {
  /* width: 100%; */
  transform: scale(1);
}
.blog-section .posts article:hover .btn-read {
  animation: slideFromBottom 0.3s ease-in-out forwards;
}
@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.blog-section .posts article .text {
  display: none;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  width: 70%;
  border-radius: 5px;
  height: 300px;
  overflow-y: auto;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.article-details {
  text-align: justify;
}
.lightbox .article-details h6 {
  display: none;
}
.article-details {
  width: 60%;
}
/* /////////////////////////////////// End Blog Page //////////////////////// */

/* /////////////////////////////////// Start Services Page //////////////////////// */

.services-section {
  margin-bottom: 40px;
}
.all-services-section {
  margin-bottom: 40px;
}
.all-services .services-header {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.all-services .services-header h2 {
  padding: 20px;
}
.all-services .services-header p {
  width: 70%;
  margin: 0 auto;
  text-align: justify;
  padding-bottom: 20px;
}

.all-services .services-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  align-items: stretch;
}
.all-services .services-content .service-card {
  width: calc((100% / 3) - 30px);
  margin-right: 15px;
  margin-left: 15px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}

.all-services .services-content img {
  width: 90%;
  margin: 0 auto;
  height: 200px;
  border-radius: 20px;
  margin-top: 10px;
  display: block;
}
.all-services .services-content .description {
  padding: 10px;
  margin-top: 10px;
}
.all-services .services-content .description h3 {
  font-weight: bold;
  font-style: italic;
}
.all-services .services-content .description ul {
  padding-left: 30px;
  list-style: disc;
  font-size: 12px;
  margin-bottom: 80px;
}
.all-services .services-content .description a.read-more {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 10px 20px;
  border: 1px solid var(--secondary-color);
}
.all-services .services-content .description a.read-more:hover {
  border: 1px solid var(--secondary-color);
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.all-services .services-content .description .less {
  margin-bottom: 20px;
}
/* /////////////////////////////////// End Services Page //////////////////////// */

/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/*----------------------------------------------------- RESPONSIVE STYLES ---------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .section-wrap {
    padding: 0 10px;
  }
}
@media (max-width: 1024px) {
  .application h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .application h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .header .navbar .items-list .item .link {
    padding: 20px;
  }
  /* ------------------------- Start styles of welcome section-----------------*/

  .welcome-text {
    width: calc(((100% / 2) - 50px));
    padding: 100px 0;
  }

  .first-shape {
    left: 25%;
  }

  .third-shape {
    bottom: 0;
  }
  .second-shape img,
  .third-shape img {
    width: 40%;
  }

  .welcome-text p {
    width: 100%;
  }
  .btn {
    font-size: 18px;
    padding: 5px 20px;
  }

  /* ------------------------- End styles of welcome section-----------------*/
  .award img {
    width: 25%;
  }
  .award h3 {
    letter-spacing: -1px;
  }
  .award p {
    width: 80%;
    font-weight: 400;
    font-family: Karla;
    text-align: center;
  }

  .experience-content h3 {
    font-size: 30px;
    letter-spacing: -2px;
  }

  .contact-content {
    width: 90%;
  }

  .footer-left {
    width: calc((100% / 2) - 20px);
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .header .navbar {
    width: 70%;
  }
  .header .navbar .items-list .item .link {
    padding: 20px 10px;
  }
  .logo {
    width: 20%;
  }
  .welcome-text {
    padding: 40px 0;
  }

  .first-shape,
  .second-shape,
  .third-shape {
    display: none;
  }
  .service p {
    width: 100%;
    padding: 0 10px;
  }

  .service-two h2 {
    width: 100%;
    text-align: center;
  }
  .service-two p {
    width: 100%;
    padding: 0 10px;
  }

  .mission-title {
    padding-left: 0;
  }

  .award {
    width: 90%;
    margin: 0 auto;
  }

  .experience-first-shape,
  .experience-second-shape {
    display: none;
  }

  .experience-content h2 {
    width: 55%;
    letter-spacing: -3px;
  }
  .experience-content .experience-items p {
    font-size: 14px;
  }

  .contact {
    min-height: 500px;
    background-size: contain;
  }
  .contact-content h2 {
    letter-spacing: -2;
  }
  .contact-content a {
    font-size: 14px;
  }
  .footer {
    min-height: 50vh;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right p {
    font-size: 14px;
  }
  /* /////////////////////////////////// Services Page ///////////////////// */
  .all-services .services-header {
    width: 80%;
  }
  .all-services .services-content .service-card {
    width: calc((100% / 2) - 50px);
    margin-right: 50px;
  }
  /* /////////////////////////////////// About Page ///////////////////// */

  .third-about-section .doctor .information {
    width: calc(50% - 50px);
    border-top: 2px solid var(--secondary-color);
  }
  .third-about-section .doctor .information p {
    width: 100%;
  }
  /* /////////////////////////////////// Start Blog Page //////////////////////// */
  .blog-section .blog-content .category-menu ul li {
    width: calc((100% / 2) - 20px);
  }
  .blog-section .posts article {
    width: calc((100% / 2) - 30px);
  }
}

@media (max-width: 600px) {
  .header {
    background-color: var(--primary-color);
  }
  .mission-section .shape {
    display: none;
  }

  .menu {
    display: block;
    order: 2;
    cursor: pointer;
  }
  .logo {
    order: 1;
    justify-content: flex-start;
  }
  .header .navbar {
    display: none;
  }
  .nav-mobile {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(0);
  }
  .nav-mobile.scrolled {
    background-color: var(--primary-color);
  }
  .nav-mobile .menu {
    order: 2;
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  .nav-mobile .logo {
    order: 1;
    width: 50%;
  }
  .nav-mobile .navbar {
    display: block;
    order: 3;
    width: 100%;
    margin-top: 20px;
  }
  .header .navigation {
    flex-wrap: wrap;
  }
  .nav-mobile .navbar .items-list {
    display: block !important;
    width: 50% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  .overflow-hidden {
    overflow: hidden;
  }

  .first-section .welcome-section .welcome-image {
    width: 100%;
    height: 50%;
    margin-right: 0;
    order: 2;
    margin-top: 20px;
    border-radius: 0;
  }
  .first-section .welcome-section .welcome-image img {
    border-radius: 0;
  }
  .service {
    width: 90%;
    margin: 0 auto;
  }
  .third-section .services-section-two,
  .services-section-three,
  .second-section,
  .first-about-section,
  .first-services-section {
    min-height: 400px;
  }

  /* .first-about-section .content {
    height: 70%;
  } */
  .service-two,
  .service-three {
    background-color: rgba(237, 227, 231, 0.8);
    width: 100%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    border-radius: 0;
    padding: 0;
  }

  .chevron {
    top: 90%;
  }
  .service-three div h2 {
    width: 100%;
  }
  .welcome-text {
    width: 100%;
    order: 1;
  }
  .first-shape {
    display: none;
  }
  .owl-dots {
    display: none !important;
  }

  .mission-title,
  .mission-description {
    width: 100%;
  }
  .mission-title h2 {
    width: 70%;
  }
  .mission-description p {
    width: 100%;
  }
  .experience-content {
    padding: 10px 0;
  }

  .experience-content .experience-items div {
    width: 100%;
  }
  .contact-section {
    min-height: 500px;
  }
  .footer h3 {
    font-size: 20px;
  }
  /* /////////////////////////////////// Start About Page //////////////////////// */

  .second-about-section {
    margin-top: 80px;
  }
  .second-about-section .content .office {
    flex-wrap: wrap;
  }

  .second-about-section .content .office .office-img {
    width: 80%;
    order: 2;
    margin: 0 auto;
    height: 250px;
  }
  .second-about-section .content .office .description {
    width: 100%;
    padding: 0;
    order: 1;
  }
  .third-about-section {
    margin-top: 80px;
  }
  .third-about-section .doctor .team-img {
    width: 50%;
    height: 300px;
    margin-bottom: 10px;
  }
  .third-about-section .doctor .information {
    width: 100%;
    border-top: 2px solid var(--secondary-color);
  }

  /* /////////////////////////////////// Start Contact Page //////////////////////// */
  .contact-page .form-appointment .group .form-group {
    width: 100%;
    margin-right: 0;
  }
  .contact-page .form-appointment .group .appointment {
    width: 100%;
  }
  /* /////////////////////////////////// Services Page ///////////////////// */
  .all-services .services-header {
    width: 100%;
  }
  .all-services .services-content .service-card {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 450px) {
  .blog-section .blog-content .category-menu ul li {
    width: 100%;
    margin-right: 0;
  }
  .blog-section .posts article {
    width: 100%;
    margin-right: 0;
  }

  .first-about-section .content {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
  }
  .first-about-section .content p {
    width: 100%;
  }

  .third-section .services-section-two,
  .services-section-three,
  .second-section,
  .first-about-section,
  .first-services-section {
    min-height: 250px;
  }
  .service-two,
  .service-three {
    height: 100%;
  }
  .service {
    padding: 10px 0;
  }
  .second-about-section .content .office .office-img {
    width: 100%;

    height: 200px;
  }
  .third-about-section .doctor .team-img {
    width: 60%;
  }
  .blog-section .group .more-less {
    width: 100%;
    display: block;
    text-align: center;
  }
  .blog-section .group .btn-load.load-more-button {
    margin-bottom: 20px;
  }
}

@media (max-width: 300px) {
  .btn {
    font-size: 14px;
  }
  .application h1 {
    font-size: 30px;
    line-height: 30px;
  }
  .application h2 {
    font-size: 24px;
    line-height: 24px;
  }
  .application h3 {
    font-size: 20px;
  }
  .application h4 {
    font-size: 18px;
  }
  .application h5 {
    font-size: 16px;
  }

  .footer-left {
    width: 100%;
  }
  .footer-left div {
    width: 80%;
    margin: 0 auto;
  }
  .third-about-section .doctor .team-img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 200px;
  }
  .lightbox-content {
    width: 90%;
  }
}</pre></body></html>