html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --orange: #f36f21;
  --blue: #213f9a;
  --green: #058743;
  --text1: #0e1e37;
  --text2: #282828;
  --bg-grey: #f3f3f3;
  --bg-foo: #28469a;
  --bg-foo2: #092064;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Navbar */
.navbar {
  background-color: var(--white);
}

.navbar .navbar-brand img {
  width: 200px;
}

.navbar .navbar-nav {
  gap: 17px;
}

.navbar .nav-link {
  color: var(--text1);
  font-weight: bold;
}

.navbar .nav-item.book img {
  width: 20px;
}

.navbar .nav-item.book .nav-link {
  background-color: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 50px;
  padding: 7px 20px;
  transition: all 0.5s ease-in-out;
}

.navbar .nav-item.book .nav-link:hover {
  background-color: var(--blue);
}

/* Navbar */

/* Banner */
.banner {
  background-image: url("../img/5th_anniversary/banner_bg1.png");
  height: calc(100vh - 110.67px);
  position: relative;
  text-align: center;
  padding-top: 50px;
}

.banner .anniversary {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.banner .anniversary::after {
  content: url(../img/5th_anniversary/texture.png);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
  filter: grayscale(1) brightness(10) contrast(10);
}
.aniversary_card {
  /* background-color: #0000000a;
  padding: 10px; */
  margin-bottom: 15px;
}
.banner .anniversary .event p {
  font-weight: 800;
  font-size: 20px;
  margin: 30px 0;
}

.banner .anniversary .dates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.banner .anniversary .dates h2 {
  font-weight: 600;
  font-size: 60px;
}

.banner .anniversary .dates p {
  font-weight: 600;
  font-size: 20px;
  border-top: 2px solid var(--white);
  padding-top: 5px;
  text-transform: uppercase;
}
.annivarsary_head_cont {
  background-color: var(--orange);
  padding: 8px 25px;
  width: fit-content;
  margin: auto;
  margin-top: 26px;
}
.annivarsary_head_cont h3 {
  font-size: 25px;
  color: var(--white);
  font-weight: bold;
  letter-spacing: 2px;
}
/* Banner */

/* Welcome */

.welcome {
  padding: 100px 0;
  position: relative;
}
.welcome::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 100px;
  background-image: url(../img/5th_anniversary/vector3.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 112%;
  height: 600px;
  width: 249px;
}
.welcome .container {
  position: relative;
  padding: 0;
}
.welcome .container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 14px;
  background-color: var(--blue);
  right: 0;
  bottom: 0;
  left: 0;
}

.welcome h1 {
  font-size: 25px;
  font-weight: bold;
  color: var(--text2);
  position: relative;
  line-height: 45px;
}
.welcome h1 span {
  color: var(--orange);
  font-size: 35px;
}
.welcome h3 {
  font-size: 20px;
  color: var(--white);
  font-weight: bold;
  background-color: var(--blue);
  padding: 6px 15px;
  margin-bottom: 20px;
}
.welcome p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text2);
  line-height: 28px;
  text-align: justify;
}

.welcome a {
  background-color: var(--orange);
  color: var(--white);
  border-radius: 0;
  padding: 7px 30px;
  border: 2px solid var(--orange);
  transition: all 0.5s ease-in-out;
  font-weight: bold;
}

.welcome a:hover {
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
}

.welcome .image {
  /* position: absolute;
  right: 0;
  bottom: 0; */
  width: 100%;
}

.welcome .image img {
  width: 100%;
}
.text {
  margin-bottom: 14px;
}

/* Welcome */

/* journey section */
.journey_main {
  padding: 50px 0;
}
.journey_main .container {
  padding-right: 0;
  max-width: inherit;
  margin-left: calc((100% - 1320px) / 2);
  width: auto;
  min-width: auto;
  overflow: hidden;
}
.journey_sec {
  height: 100%;
  background: linear-gradient(133deg, #f36f21, #213f9a);
  padding: 80px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.journey_sec2 h3,
.journey_sec h3 {
  font-size: 25px;
  color: var(--white);
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: solid 1px var(--white);
  padding-bottom: 8px;
}
.journey_sec2 p,
.journey_sec p {
  font-size: 16px;
  color: var(--white);
}
.journey_sec p {
  font-size: 22px;
}
.journey_sec2 h4 {
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
}
.journey_list_sec {
  margin-top: 15px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}
.journey_list_sec img {
  width: 20px;
  padding-top: 10px;
  position: relative;
  top: 4px;
}
.journey_list_sec p {
  font-size: 16px;
  color: var(--white);
  text-align: justify;
}
.journey_list_sec p b {
  color: var(--orange);
}
.journal_para_head p b {
  color: var(--blue);
}
.journey_sec .path {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  background: var(--white);
  border-top-left-radius: 10px;
}
.journey_sec .path::before {
  position: absolute;
  left: -15px;
  bottom: 0;
  content: "";
  height: 15px;
  width: 15px;
  background: url(../img/5th_anniversary/border_style.svg);
  transform: rotate(180deg);
}
.journey_sec .path::after {
  position: absolute;
  right: 0;
  top: -15px;
  content: "";
  height: 15px;
  width: 15px;
  background: url(../img/5th_anniversary/border_style2.svg);
  transform: rotate(180deg);
}
.journey_sec2 {
  padding: 80px 40px 80px 50px;
  background: linear-gradient(326deg, #f36f21, #213f9a 80%);
  height: 100%;
  align-items: center;
  border-radius: 15px 0 0 15px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journey_list_main {
  width: 700px;
}
.journey_sec2 .path {
  position: absolute;
  left: -1px;
  top: -1px;
  height: 50px;
  width: 50px;
  background: var(--white);
  border-bottom-right-radius: 10px;
}
.journey_sec2 .path::before {
  position: absolute;
  left: 0;
  bottom: -15px;
  content: "";
  height: 15px;
  width: 15px;
  background: url(../img/5th_anniversary/border_style3.svg);
}
.journey_sec2 .path::after {
  position: absolute;
  right: -15px;
  top: 0;
  content: "";
  height: 15px;
  width: 15px;
  background: url(../img/5th_anniversary/border_style4.svg);
}
.journey_sec2 h3,
.journey_sec2 h4,
.journey_sec2 p {
  width: 700px;
}
/* journey section */

/* director message  */
.director_message_main {
  padding: 50px 0;
  padding-top: 100px;
  background-image: linear-gradient(to right, #ededed 64.3%, #1e4585 40%);
}
.fondr_inn_sec {
  margin-top: -50px;
}
.fondr_inn_sec h2 {
  font-size: 30px;
  font-weight: bold;
  color: var(--orange);
}
.fondr_inn_sec hr {
  border: solid 1px #000;
  background-color: #000;
  opacity: 0.5;
  width: 100%;
}
.fondr_inn_sec p {
  font-size: 18px;
  padding-bottom: 10px;
  color: #444;
  text-align: justify;
}
.abt_v_m_img {
  position: relative;
}
.message_abt_in_name {
  margin: 0;
  background-color: var(--orange);
  padding: 20px 20px;
  width: 59%;
  margin-left: auto;
}
.message_abt_in_name h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
}
.message_abt_in_name p {
  color: var(--white);
}
/* director message  */

/* Footer */
footer {
  padding: 50px 0;
  background-color: var(--bg-foo);
  position: relative;
}

footer .foo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--white);
  padding-top: 30px;
}

footer .foo .address {
  flex: 1 0 18%;
  color: var(--white);
}

footer .foo .address a {
  color: var(--white);
}

footer .foo .address h3 {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  margin-bottom: 30px;
}

footer .foo .address h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--orange);
  bottom: -10px;
  left: 0;
}

footer .foo .address ul {
  line-height: 26px;
}

footer .foo .address.add1 {
  padding-left: 30px;
}

footer .foo .address.social ul {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

footer .foo .address.social ul a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

footer .foo .address.social ul li:nth-child(1) a i {
  background-color: #4367b1;
}

footer .foo .address.social ul li:nth-child(2) a i {
  background-color: #459dd7;
}

footer .foo .address.social ul li:nth-child(3) a i {
  background-image: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

footer .foo .address.social ul li:nth-child(4) a i {
  background-color: #eb222b;
}

footer .foo .address.social ul li:nth-child(5) a i {
  background-color: #25d366;
}

footer .foo .address.hours {
  margin-top: 20px;
}

/* Footer */

/* Copyright */
.copyright {
  background-color: var(--bg-foo2);
  color: var(--white);
  padding: 10px 0;
}

.copyright .texts {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Copyright */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--orange);
  color: var(--white);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

#myBtn:hover {
  background-color: var(--green);
}

/* inner pages styles */
.banner_inn {
  background: linear-gradient(336deg, #28469af2, #c15312ed),
    url(../images/anniversary/ajara_building1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  padding: 200px 0px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_text {
  text-align: center;
  width: 100%;
}
.banner_text h3 {
  font-size: 40px;
  color: var(--white);
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.banner_text ul {
  display: inline-block;
}
.banner_text ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--white);
  gap: 10px;
}
.banner_text ul li a {
  color: var(--black);
}
.banner_text ul li a i {
  font-size: 22px;
  color: var(--text2);
}

.doctor_details_main {
  padding: 50px 0;
}
.webinar_head_text h2 {
  font-size: 30px;
  color: var(--orange);
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: solid 2px var(--blue);
  padding-bottom: 5px;
  text-transform: uppercase;
}
.conference_topic_sec,
.doctor_details_main .card {
  padding: 30px;
  border: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 20px;
}
.doctor_details_main .card .timings {
  display: flex;
  gap: 10px;
}
.doctor_details_main .card .timings .time p {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 0;
  width: 100%;
  padding: 5px 20px;
  font-size: 16px;
}
.doctor_details_main .card .timings .time p span {
  font-weight: 400;
}
.doctor_details_main .card .card-text {
  margin-top: 30px;
  width: 100%;
}
.doctor_details_main .card .card-text h3 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text1);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 35px;
  font-size: 28px;
}
.doctor_details_main .card .card-text p {
  font-size: 18px;
  margin-bottom: 30px;
  width: 100%;
  color: var(--text1);
  text-align: justify;
}
.doctor_details_main .card .card-text a {
  background-color: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 7px 30px;
  border: 2px solid var(--orange);
  transition: all 0.5s ease-in-out;
  font-weight: bold;
}
.doctor_details_main .card .card-text a:hover {
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
}
.doctor_details_main .card .dr-image {
  text-align: center;
}
.doctor_details_main .card .dr-name h4 {
  font-weight: bold;
  color: var(--text1);
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 34px;
}
.doctor_details_main .card .dr-name p {
  color: var(--text1);
  font-size: 18px;
  width: 100%;
  margin-bottom: 0;
  text-align: unset;
}

/* conference section */
.conference_topic_sec1 {
  padding: 0;
  width: 100%;
  background-color: #ffffff;
}
.conference_topic_sec1 .row {
  justify-content: center;
  align-items: center;
  position: relative;
}
.conference_topic_sec1 .row .col-lg-6 {
  padding: 0;
}
.after_eccect_sec .dr-image {
  border-right: solid 3px var(--bg-foo2);
}
.conference_topic_sec1 .dr-image {
  padding: 50px 90px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
}
.conference_topic_sec1 .dr-image h4 {
  font-weight: 600;
  font-size:20px;
  margin-bottom:5px;
}
.conference_topic_sec1 .dr-image h6,
.conference_topic_sec1 .dr-image p {
  font-size: 18px;
  margin-bottom: 5px;
}
.conference_topic_sec1 .dr-image h6 {
  color: var(--text2);
}
.conference_topic_sec1 .dr-image span {
  font-weight: bold;
}
.conference_topic_sec1 .dr-name h5{
  color:var(--black);
  background-color: darkgray;
  padding:8px 15px;
  margin-top:10px;
  width:fit-content;
  font-size:17px; 
}
.conference_topic_sec1 .topic_head {
  text-align: center;
  background-color: #162654;
  padding: 10px;
  width: 98%;
}
.conference_topic_sec1 .topic_head h3 {
  font-size: 25px;
  color: var(--white);
  font-weight: 500;
}
.arrow_sec {
  position: absolute;
  left: 47.5%;
  top: 48%;
  width: fit-content;
}
.arrow_sec i {
  font-size: 18px;
  color: var(--white);
  background-color: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.time_sec{
  display: flex;
}
.time_sec h3{
  background-color: #058743;
  padding: 8px 15px;
  text-align: center;
  width: fit-content;
  font-size: 17px;
  color: var(--white);
  font-weight: bold;
}
.time_center {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.time_sec a{
  font-size:17px;
  color:var(--white);
  background-color: #eb222b;
  padding:4px 15px;
  border:solid 2px #eb222b;
  transition:0.5s all;
}
.time_sec a:hover{
  color:#eb222b;
  background-color:transparent;
}
/* inner pages styles */

/*conference styles*/
#enquiry-form-section {
    margin-top: 100px;
    margin-bottom: 20px;
}
.vission-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.vission-head {
    margin-top: 54px;
}
.vission-head h2 {
    margin: 0;
    border-bottom: solid 1px #f36f21;
    padding-bottom: 3px;
}

.vission-head h2 {
    font-size: 25px;
    color: #213f9a;
    margin-top: 0;
    font-weight: 700;
}
.enquiry-form label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.678);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.enquiry-form input {
    width: 100%;
    color: #000;
    padding: 6px 10px;
    border: none;
    margin-right: 3%;
    margin-bottom: 15px;
    outline: none;
    font-style: normal;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 15px;
}
.contact-button input {
    padding: 15px;
    border: solid 1px #ccc;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}
.cap-sec {
    margin-top: 10px;
    text-align: end;
    width: 100%;
    background: #ebebeb;
    border: solid 1px #ccc;
}
#captcha {
    font-size: 22px;
    letter-spacing: 3px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    padding: 0px 10px;
}
.cap-sec button {
    background-color: var(--black);
    border: solid 1px transparent;
    color: var(--white);
    padding: 14px 20px;
    text-align: end !important;
}
.cap-sec i {
    font-size: 20px;
    color: var(--white);
}
.enquiry-form .sbmt-btn {
    margin-bottom: 20px;
    margin-top: 10px;
}
.enquiry-form .sbmt-btn button {
    /* display: inline-block; */
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: var(--l_orange);
    border: 1px solid transparent;
    padding: 0.375rem 2.5rem;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: color .15s ease-in-out, .15s ease-in-out, .15s ease-in-out, .15s ease-in-out;
}
.enquiry-form .sbmt-btn button:hover {
    box-shadow: inset -3.5em 0 0 0 #177731, inset 3.5em 0 0 0 #177731;
    border-color: #177731;
    color: #fff;
    transition: 0.5s;
    --hover: #177731;
    background-color: #177731;
}





.conference_row{
  row-gap:20px;
}
.conference_topic_sec1 {
  padding: 15px 10px;
  box-shadow: none;
  margin-bottom: 0;
  border: solid 1px #000;
  width: fit-content;
  height: 400px;
}
.conference_topic_sec1 .dr-image {
  padding: 5px;
  padding-top: 15px;
}
.conference_topic_sec1 .dr-image img {
  width: 120px;
}
.conference_topic_sec1 .dr-image h4 {
  font-size: 17px;
}
.conference_topic_sec1 .dr-image h6,
.conference_topic_sec1 .dr-image p {
  font-size: 15px;
}
.conference_topic_sec1 .dr-image .heavy_content {
  height: 60px;
  overflow-y: scroll;
}
.conference_topic_sec1 .dr-image .heavy_content::-webkit-scrollbar {
  width: 2px;
  background-color: var(--orange);
}
.conference_topic_sec1 .dr-image .heavy_content::-webkit-scrollbar {
  width: 2px;
  background-color: var(--orange);
}
.conference_topic_sec1 .dr-image .heavy_content::-webkit-scrollbar-thumb {
  background-color: #000;
}
.conference_topic_sec1 .dr-image h6 b {
  margin-bottom: 5px;
  display: block;
}
.topic_head h3 {
  font-size: 17px;
}
.topic_head {
  text-align: left;
  width: fit-content;
  background-color: #162654;
  padding: 10px;
  color: #fff;
}
.after_eccect_sec .dr-image {
  border: none;
}
.time_sec h3 {
  background-color: transparent;
  padding: 8px 45px;
  font-size: 18px;
  color: #000000;
}
.conference_topic_sec1 .dr-name h5 {
  color: #f37022;
  background-color: transparent;
  padding: 0;
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
}
.conference_btn_sec{
  background-color:#d3d3d3ba;
  border-bottom:solid 5px var(--orange);
  padding:20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height:100%;
}
.conference_btn_sec h4{
  font-size:25px;
  color:#000;
  margin-top:15px;
  margin-bottom: 10px;
}
.conference_btn_sec h3{
  font-size:25px;
  color:#000;
  font-weight:bold;
  margin-bottom: 10px;
}
.conference_btn_sec a{
  color:var(--white);
  font-weight:bold;
  background-color:var(--blue);
  padding:8px 15px;
  border-radius:20px;
  font-size:18px;
}



/*conference styles*/

@media (max-width: 1680px) {
  .aniversary_card::after {
    top: -30px;
    transform: scale(0.9);
  }
}

@media (max-width: 1600px) {
  .aniversary_card::after {
    transform: scale(0.8);
  }

  .welcome .wc {
    margin-bottom: 200px;
  }
}

@media (max-width: 1536px) {
  .navbar .navbar-nav {
    gap: 20px;
  }

  .banner .anniversary .event p,
  .banner .anniversary .dates p,
  .schedule .nav-pills .nav-link,
  .card-text h5 {
    font-size: 18px;
  }

  .aniversary_card::after {
    top: -50px;
  }

  .banner .anniversary .dates h2 {
    font-size: 50px;
  }

  .welcome h6,
  .schedule .tab-content .card .dr-name h4 {
    font-size: 22px;
  }

  .welcome h1,
  .welcome h2 {
    font-size: 32px;
  }

  .schedule .tab-content .card .card-text h3 {
    font-size: 25px;
  }

  .coming_soon {
    font-size: 40px;
  }
}

@media (max-width: 1366px) {
  .welcome .wc {
    margin-bottom: 90px;
  }

  footer .foo .address {
    flex: 1 0 17%;
  }
}

@media screen and (max-width: 1280px) {
  .welcome .wc {
    margin-bottom: 120px;
  }

  footer .foo .address {
    flex: 1 0 17%;
  }

  .aniversary_card::after {
    top: -80px;
    transform: scale(0.7);
  }

  .op_free_invest p {
    padding: 10px 15px;
  }
}

@media (max-width: 1199px) {
  .navbar .navbar-nav {
    gap: 10px;
  }

  .banner .anniversary .event p,
  .banner .anniversary .dates p,
  .schedule .nav-pills .nav-link,
  .card-text h5 {
    font-size: 16px;
  }

  .banner .anniversary .dates h2 {
    font-size: 40px;
  }

  .welcome h6,
  .schedule .tab-content .card .dr-name h4 {
    font-size: 20px;
  }

  .welcome h1,
  .welcome h2 {
    font-size: 30px;
    line-height: 50px;
  }

  .welcome p {
    font-size: 16px;
    line-height: 26px;
  }

  .schedule .tab-content .card .time p {
    font-size: 14px;
  }

  .schedule .tab-content .card .card-text h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .schedule .tab-content .card .dr-name p {
    font-size: 16px;
  }

  .schedule .tab-content .card .dr-name h4 {
    line-height: 30px;
  }

  footer .foo .address {
    flex: 1 0 14%;
  }

  footer .foo .address.add1 {
    padding-left: 10px;
  }

  footer .foo .address h3 {
    font-size: 17px;
  }

  .navbar .navbar-brand img {
    width: 170px;
  }

  .price_offer p {
    font-size: 20px !important;
  }
}

@media (max-width: 1152px) {
  .schedule .tab-content .card .dr-name h4 {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .aniversary_card::after {
    transform: scale(0.6);
  }
}

@media (max-width: 991px) {
  .welcome {
    height: auto;
    padding: 50px 0;
  }

  .welcome .wc {
    margin-bottom: 0;
    flex-direction: column;
  }

  .welcome .image {
    position: static;
    width: 100%;
  }

  .welcome p {
    width: 100%;
  }

  .schedule ul {
    gap: 10px;
  }

  .schedule .nav-pills .nav-link {
    padding: 10px 35px;
  }

  .only-tabs {
    padding-bottom: 0;
  }

  .only-tab-content {
    padding-top: 0;
  }

  .schedule .tab-content .card .row {
    flex-direction: column-reverse;
  }

  .offer_none .op_card_new:nth-child(1) .row,
  .offer_none .op_card_new:nth-child(3) .row {
    flex-direction: column;
  }

  .offer_none .op_card_new:nth-child(2) .row,
  .offer_none .op_card_new:nth-child(4) .row {
    flex-direction: column-reverse;
  }

  .schedule .tab-content .card .dr-image {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
  }

  .schedule .tab-content .card .dr-name h4,
  footer .foo .address h3 {
    font-size: 22px;
  }

  .schedule .tab-content .card .dr-name p {
    font-size: 18px;
  }

  .schedule .tab-content .card .dr-name {
    margin-top: 0;
    margin-bottom: 20px;
  }

  /*.schedule .tab-content .all-cards {*/
  /*    height: 1270px;*/
  /*}*/
  .schedule .tab-content .card .time p {
    font-size: 15px;
    padding: 5px 12px;
  }

  footer .foo .address {
    flex: 1 0 30%;
  }

  footer .foo .address.add1.vh {
    padding-left: 40px;
  }

  footer .foo .address.add1.pn {
    padding-left: 0;
  }

  footer .foo .address.social {
    margin-right: 140px;
  }

  footer .foo .address.social img {
    width: 90%;
  }

  footer {
    margin-top: 0;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0;
  }

  .navbar {
    z-index: 2;
    position: fixed;
    width: 100%;
    top: 0;
  }

  body {
    padding-top: 110.67px;
  }
  .offcanvas-collapse {
    top: 111px;
    width: 40%;
    height: fit-content;
    padding: 0;
  }

  .navbar .navbar-nav {
    background-color: var(--blue);
    padding: 20px 0;
    margin: 0 !important;
  }

  .navbar .nav-link {
    color: var(--white);
    padding: 10px;
  }

  .navbar .nav-item.book .nav-link {
    margin: 0 10px;
  }

  .only-tabs {
    top: 112px;
  }

  .schedule .nav-pills .nav-link {
    padding: 10px 13px;
  }

  .schedule .tab-content .card .dr-image {
    margin-bottom: 0;
  }

  .navbar .navbar-brand img {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: auto;
    padding: 50px 0;
  }

  .banner .anniversary {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }

  .aniversary_card::after {
    transform: scale(0.8);
  }
}

@media (max-width: 767px) {
  .aniversary_card::after {
    transform: scale(0.6);
  }

  .schedule .nav-pills .nav-link {
    padding: 10px 14px;
    font-size: 14px;
  }

  .welcome h1,
  .welcome h2 {
    font-size: 26px;
    line-height: 45px;
  }

  .schedule .tab-content .card .time p {
    font-size: 16px;
    padding: 5px 20px;
  }

  .schedule .tab-content .card .timings {
    flex-direction: column;
  }

  .schedule .tab-content .card .dr-name h4,
  footer .foo .address h3 {
    font-size: 20px;
  }

  .schedule .tab-content .card .card-text h3 {
    font-size: 20px;
    line-height: 30px;
  }

  footer .foo .address.add1.pn {
    padding-left: 40px;
  }

  footer .foo .address.social img {
    width: 65%;
  }

  .copyright {
    font-size: 14px;
  }

  .coming_soon {
    font-size: 30px;
  }
  .price_offer {
    align-items: baseline;
    gap: 15px;
    flex-direction: column;
  }

  .schedule .nav-pills .nav-link {
    padding: 10px 5px;
    font-size: 12px;
  }

  .op_row2 {
    row-gap: 25px;
  }
}

@media (max-width: 576px) {
  .schedule .tab-content .card .card-text h3 br {
    display: none;
  }
}

@media (max-width: 575px) {
  .schedule {
    padding-top: 0;
  }

  .only-tabs {
    top: 109px;
  }

  .footer {
    z-index: 2;
  }

  .offcanvas-collapse {
    top: 111px;
  }

  footer .foo .address.social img {
    width: 57%;
  }
}

@media (max-width: 540px) {
  .Consultant_op .table,
  .Consultant_op .table thead,
  .Consultant_op .table th,
  .Consultant_op .table td {
    white-space: nowrap;
  }

  .op_free_tabs {
    background-color: #fff;
    position: sticky;
    top: 107px;
    z-index: 1;
    padding-bottom: 0;
  }

  .footer {
    position: relative;
  }

  footer .foo .address.social img {
    width: 62%;
  }
}

@media (max-width: 492px) {
  .schedule .nav-pills .nav-link {
    padding: 10px 3px;
  }

  .schedule .tab-content .card {
    padding: 18px;
  }

  .aniversary_card::after {
    left: -30px;
  }

  .offcanvas-collapse {
    width: 50%;
  }

  .schedule ul {
    gap: 5px;
  }

  footer .foo .address.social img {
    width: 72%;
  }

  .copyright .texts {
    flex-direction: column;
  }
}

@media (max-width: 482px) {
  .aniversary_card::after {
    left: -40px;
  }
}

@media (max-width: 472px) {
  .banner .anniversary .dates {
    gap: 40px;
  }

  .schedule .tab-content .card .card-text h3 {
    font-size: 18px;
  }

  .schedule .nav-pills .nav-link br {
    display: block;
  }

  .schedule .nav-pills .nav-link {
    padding: 10px 20px;
  }
}

@media (max-width: 452px) {
  .banner .anniversary .dates {
    gap: 30px;
  }

  .aniversary_card::after {
    left: -60px;
  }
}

@media (max-width: 442px) {
  .schedule .nav-pills .nav-link {
    padding: 10px;
  }
}

@media (max-width: 432px) {
  .schedule .tab-content .card .dr-image {
    flex-direction: column;
    align-items: baseline;
  }

  .Consultant_op .table td {
    font-size: 14px;
  }

  footer .foo .address.social img {
    width: 87%;
  }
}

@media (max-width: 425px) {
  .offcanvas-collapse {
    width: 60%;
  }
  .aniversary_card::after {
    left: -70px;
  }

  .schedule .nav-pills .nav-link {
    padding: 10px 14px;
  }

  .schedule .tab-content .card .time p {
    padding: 5px 15px;
  }

  .schedule .tab-content .card .dr-image {
    margin-bottom: 0;
  }
}

@media (max-width: 414px) {
  .banner .anniversary .dates {
    gap: 20px;
  }

  .schedule .tab-content .card .time p {
    font-size: 14px;
    text-align: center;
  }

  .welcome h1,
  .welcome h2 {
    font-size: 24px;
  }

  .schedule .tab-content {
    padding: 10px;
  }

  footer .foo .address.social img {
    width: 60%;
  }

  footer .foo {
    flex-direction: column;
    border-top: none;
    padding-top: 0;
  }

  footer .foo .address {
    flex: unset;
  }

  .address img {
    width: 65%;
  }

  footer {
    padding: 30px 0;
  }

  footer .foo .address.add1.pn,
  footer .foo .address.add1.vh {
    padding-left: 0;
  }

  footer .foo .address.hours {
    margin-top: 0;
  }

  footer .foo .address.hours {
    margin-top: 0;
  }

  footer .foo .address.social {
    margin-right: 0;
  }
}

@media (max-width: 395px) {
  .welcome p {
    font-size: 13px;
    line-height: 20px;
  }

  .banner .anniversary .dates p,
  .card-text h5 {
    font-size: 14px;
  }

  .banner .anniversary .dates h2 {
    font-size: 35px;
  }

  .banner .anniversary .dates {
    gap: 30px;
  }

  .aniversary_card::after {
    left: -80px;
  }

  .banner .anniversary .event p {
    font-size: 18px;
  }

  .schedule .nav-pills .nav-link {
    padding: 10px;
  }

  .schedule .nav-pills .nav-link {
    font-size: 12px;
  }

  footer .foo .address.social img {
    width: 62%;
  }
}

@media (max-width: 383px) {
  .banner .anniversary .dates {
    gap: 20px;
  }

  .aniversary_card::after {
    left: -60px;
    transform: scale(0.5);
    top: -100px;
  }

  .welcome h1,
  .welcome h2 {
    font-size: 22px;
    line-height: 35px;
  }

  .schedule .tab-content .card .time p {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  footer .foo .address.social img {
    width: 65%;
  }
}

@media (max-width: 360px) {
  .aniversary_card::after {
    top: -100px;
    left: -70px;
  }

  .schedule .tab-content .card .time p {
    padding: 5px 20px;
    display: flex;
    flex-direction: column;
  }

  .schedule .nav-pills .nav-link {
    padding: 8px;
  }
}

@media (max-width: 350px) {
  .welcome h1,
  .welcome h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .offcanvas-collapse {
    width: 100%;
  }

  .banner .anniversary .dates p,
  .schedule .nav-pills .nav-link,
  .card-text h5 {
    font-size: 13px;
  }

  .banner .anniversary .dates h2 {
    font-size: 30px;
  }

  .banner .anniversary .event p {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .banner .anniversary .dates p,
  .schedule .nav-pills .nav-link,
  .card-text h5 {
    font-size: 12px;
  }

  .aniversary_card::after {
    top: -90px;
    left: -60px;
    transform: scale(0.4);
  }

  .welcome h1,
  .welcome h2 {
    font-size: 19px;
    line-height: 28px;
  }

  .schedule .nav-pills .nav-link {
    padding: 4px;
  }

  footer .foo .address.social img {
    width: 80%;
  }
}
