@import "drkhan2.css";
* {
  margin: 0;
  padding: 0;
}
.blog-ads {
  border: 1px solid red;
  border-radius: 15px;
  padding: 8px;
}
.blog-ads button {
  padding: 6px;
  color: white;
  background-color: rebeccapurple;
  cursor: pointer;
}
.fbl {
  color: blue;
}
.fred {
  color: red;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/home-bg.jpg);
  background-position: center;
  position: relative;
  background-size: cover;
}
nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 150px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.4s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 90%;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  font-size: 14px;
  margin: 10px 0 40px;
}
.home-button {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  border-radius: 10px;
  padding: 12px 34px;
  font-size: 16px;
  background: transparent;
  background: #20C997;
  position: relative;
  cursor: pointer;
}
.home-button:hover {
  border: 1px solid red;
  background: red;
  transition: 1s;
}

/* dynamic text displays */

.subtitle-container {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: yellowgreen;
}
/* navbar styling */
nav .fa {
  display: none;
}
@media (max-width: 700px) {
  .text-box h1 {
    font-size: 20px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: fixed;
    background: #f44336;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa {
    display: block;
    color: white;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
}

/*--------INTRO------*/

.intro {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.intro h1 {
  font-size: 36px;
  font-weight: 600;
}
.intro p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-align: justify;
}

/*-------------DISEASE----------*/
.disease-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/disease-bg.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.disease-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.disease-col {
  flex-basis: 31%;
  background: #fff3f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}
.disease-col h6 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.disease-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
.disease-col a {
  text-decoration: none;
}
@media (max-width: 700px) {
  .disease-row {
    flex-direction: column;
  }
}

/*-------------FACILITIES----------*/
.clinic-facilities {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.facilities-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.facilities {
  flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  /*text-align: left;*/
}
.facilities img {
  /*width: 100%;*/
  width: 115px;
  border-radius: 10px;
  transition: 00.5s;
}
.facilities img:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
.facilities h3 {
  margin-top: 16px;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 700px) {
  .facilities-row {
    flex-direction: column;
  }
}

/*-------------TESTIMONIALS------------*/

.slideshow-container {
  position: relative;
  /*background: #f1f1f1f1;*/
  background-image: linear-gradient(rgba(4, 9, 30, 1.7), rgba(4, 9, 30, 0.7)),
    url(img\testimonial-bg.jpg);
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
  background: #ddd;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active,
.dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {
  font-style: italic;
  color: #fff;
}

/* Add a blue color to the author */
.author {
  color: cornflowerblue;
}

/*---------CONTACT US---------*/
.cta {
  margin: 100px auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(img/contact-us1.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 100px 0;
  border-radius: 10px;
}
.cta h1 {
  color: white;
  margin-bottom: 40px;
  padding: 0;
}
@media (max-width: 700px) {
  .cta h1 {
    font-size: 24px;
  }
}

/*------------footer----------*/

.footer {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.footer h4 {
  margin-bottom: 25px;
  margin-top: 29px;
  font-weight: 600;
}
.icons .fa {
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}

/*----------ABOUT US PAGE -----------*/

.sub-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/homoeopathy.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header h1 {
  margin-top: 100px;
}
.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}
.abt-row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.abt-col {
  flex-wrap: wrap;
  flex-basis: 48%;
  padding: 30px 2px;
}
.abt-col h1 {
  padding-top: 0;
}
.abt-col img {
  width: 300px;
}
.abt-col .director {
  padding: 15px 0 25px;
}
.abt-col .dir-name {
  color: grey;
  align-items: center;
}
.abt-btn {
  border: 1px solid #f44336;
  background: transparent;
  color: #f44336;
}
.abt-btn:hover {
  color: white;
}
.gallery-row h1 {
  text-align: center;
  align-items: center;
  margin-left: 20px;
}
.gallery-col {
  padding: 40px;
  margin-top: 10px;
  flex-direction: row;
}
.gallery-col img {
  height: 300px;
  width: 350px;
}
@media (max-width: 700px) {
  .abt-row {
    flex-direction: column;
  }
  .gallery-col img {
    width: 45vh;
    height: auto;
  }
}

/*-----------blog page content--------*/
.blog-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/blog2.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.max-width-1 {
  max-width: 80vw;
}
.max-width-2 {
  max-width: 60vw;
}
.m-auto {
  margin: auto;
}

/*----------contact us page-----------*/
.contactus-header {
  height: 75vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/contact-us1.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe {
  width: 100%;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.contact-us {
  width: 80%;
  margin: auto;
}
.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}
.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-col div .fa {
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}
.contact-col div p {
  padding: 0;
  color: #555;
}
.contact-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}
.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

/*------------courses----------*/
.study-header {
  height: 75vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/organon-easy-bg.jpeg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.courses {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 15px;
}
h1 {
  font-size: 36px;
  font-weight: 600;
}
p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}
.course-col {
  flex-basis: 31%;
  background: #fff3f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
}
h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.blog-heading {
  font-size: large;
}
.profile_col div {
  display: flex;
  align-items: center;
  /*---- margin-bottom: 40px;----*/
}
.profile_col div .fa {
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 10px;
}
.profile_col img {
  width: 170px;
  border-radius: 50%;
}
.teaching-intro {
  text-align: justify;
  width: 450px;
}
.study-video {
  /* background-color: #f44336;*/
  float: right;
  padding: 35px;
  margin: 40px;
  color: #475c84;
  font-weight: 600;
  box-shadow: 5px 10px 18px #888888;
}
.study-video iframe {
  width: auto;
}
.study-video-heading {
  justify-content: center;
  text-align: center;
  font-size: 18px;
  margin: 30px 0;
}
.studt-testim {
  width: 400px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .teaching-intro {
    width: auto;
  }
  .course-col iframe {
    width: 260px;
  }
  .study-video {
    display: none;
  }
  p {
    font-size: 13px;
  }
  .studt-testim {
    width: auto;
    margin: 0;
  }
}

/*------------BLOG --------*/
.home-articles {
  /* height: 455px; */
  padding: 18px;
  background-color: rgb(245, 195, 195, 0.5);
  margin-top: 23px;
  position: relative;
}
.home-article {
  display: flex;
  margin: 25px;
}
.home-article img {
  width: 300px;
}
.home-article-content {
  align-self: center;
  padding: 25px;
}
.home-article-content a {
  text-decoration: none;
  color: black;
}
.my-2 {
  margin-bottom: 32px;
  margin-top: 32px;
}
/*-------------blopost----*/
.post-img {
  overflow: hidden;
  margin-top: 14px;
}
.post-img img {
  /*width: 80vw;*/
  height: 60vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.blog-content {
  padding-top: 10px;
}
.blog-content h1,
h3 {
  text-align: center;
}
.blog-content p {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 700px) {
  .blog-content p {
    font-size: 18px;
    line-height: 28px;
  }
  .post-img img {
    width: 80vw;
    height: auto;
  }
}
.blogpost-header {
  /*  height: 75vh;*/
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/blogpost-header.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.blogpost-col {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blogpost-meta {
  display: flex;
  /*background-color: #f44336;*/
  justify-content: space-between;
}
.author-info {
  margin: 12px 0;
}
.author-info div {
  padding: 4px 0;
  color: gray;
}
.social .fa {
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .home-article {
    flex-direction: column;
  }
  .home-article img {
    text-align: center;
    width: 70vw;
  }
  .home-article-content {
    font-size: 13px;
  }
  .post-img {
    height: auto;
  }
  .row {
    flex-direction: column;
  }
}

/*-----------DISEASE PAGE------*/
.disease-header {
  height: 75vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img/disease-bg.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.disease-content {
  padding: 35px;
}
.disease-content ul {
  padding-left: 40px;
  font-size: 18px;
  color: #212529;
}
.disease-content {
  font-size: 1.5rem;
  font-weight: 500;
}
.disease-content p {
  font-size: 18px;
  color: #64707b;
}
.disease-content img {
  height: 30vh;
  padding: 10px;
}
.disease-content .row {
  justify-content: left;
}
@media (max-width: 700px) {
  .disease-content p {
    font-size: 14px;
  }
  .disease-content ul {
    font-size: 14px;
  }
}
/*@media (max-width:1200px) {
    .disease-content .row{
        flex-direction: row;
    }
}*/
.vitiligo img {
  height: 100px;
}
.blog-img img {
  height: 50vh;
  padding: 10px;
  width: 50vh;
}
@media (max-width: 700px) {
  .blog-img {
    height: auto;
  }
}
.case-study-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(img2/case-report.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
