@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

 /*=========================================================
                     css common style 
============================================================*/
body{
	font-family: 'Poppins', sans-serif;
}

p{
  font-size: 16px;
	line-height: 1.5;

}
p.sty {
  font-size: 30px !important;
}

ul{
	list-style: none;
	margin:0;
	padding:0;
}

a{
	text-decoration: none !important;
}
/*==================================================================
                         nav bar
====================================================================*/
.main_logo a .dr_name h4 span {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: rgb(249, 116, 37);
}
.main_logo a {
  display: flex;
}
.main_logo a .logo_img{
  width: 23%;
}

.dr_name {
  margin-top: -6px;
}

.main_logo a .logo_img img{
  width: 100%;
  margin-top: 9px !important;
}
.main_logo a .dr_name{
  width: 88%;
  text-align: left;
  padding-left: 5px;
}
.main_logo a .dr_name h4{
  font-size: 30px;
  color: #003cb7;
  font-family: initial;
  font-weight: 600;
  letter-spacing: .5px;
}
.main_logo a .dr_name h5{
  color: #525252;
    font-size: 15px;
    font-weight: 400;
}
.main_logo a .dr_name p{
  color: #002a89;
}
.header .menu > ul > li > a:hover {
  border-top: 1px solid #f97425;
  border-bottom: 1px solid #f97425;
  padding: 12px 5px;
}

/* = */
.row.v-center {
  display: flex;
}
header.header {
  position: sticky;
  top: 0;
  background: white;	
  box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
}
.header{
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding:5px 0;
}
.header .item-left{
  flex:0 0 30%;
  text-align: center;
}

.header .item-center{
  flex:0 0 70%;
}

.header .item-right{
  flex:0 0 0%;
  justify-content: flex-end;
  text-align: center;
}


.header .menu > ul > li{
display: inline-block;
}
.header .menu > ul > li > a{
  font-weight: 400;
  color: #002268;
  position: relative;
  text-transform: capitalize;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 18px;
  padding: 20px 3px;
  margin: 0 10px;

}

ul.menu-main {
  text-align: right;
  padding: 33px 0;
}

.mobile-menu-head,
.mobile-menu-trigger{
display: none;
}


@media(max-width: 991px){

.header .item-center{
  order:3;
  flex:0 0 100%;
}
.header .item-left,
.header .item-right{
  flex:0 0 auto;
}
.v-center{
  justify-content: space-between;
}
.header .mobile-menu-trigger{
  display: flex;
  height: 30px;
  width: 30px;
  margin-left: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.header .mobile-menu-trigger span{
  display: block;
  height: 2px;
  background-color: #333333;
  width: 24px;
  position: relative;
}
.header .mobile-menu-trigger span:before,
.header .mobile-menu-trigger span:after{
  content: '';
  position: absolute;
  left:0;
  width: 100%;
  height: 100%;
  background-color: #333333;
}
.header .mobile-menu-trigger span:before{
  top:-6px;
}
.header .mobile-menu-trigger span:after{
  top:6px;
}
.header .item-right{
  align-items: center;
}

.header .menu{
  position: fixed;
  width: 320px;
  background-color:#ffffff;
  left:0;
  top:0;
  height: 100%;
  overflow: hidden;
  transform: translate(-100%);
  transition: all 0.5s ease;
  z-index: 1099;
}
.header .menu.active{
   transform: translate(0%);	
}
.header .menu > ul > li{
  line-height: 1;
  margin:0;
  display: block;
}
.header .menu > ul > li > a{
  line-height: 50px;
  height: 50px;
  padding:0 50px 0 15px;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-transform: uppercase;
  font-size: 14px;

}
.header .menu > ul > li > a i{
  position: absolute;
  height: 50px;
  width: 50px;
  top:0;
  right: 0;
  text-align: center;
  transform: rotate(-90deg);
}

.header .menu .mobile-menu-head{
  display: flex;
  height: 50px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 501;
  position: sticky;
  background-color: #ffffff;
  top:0;
}

.header .menu .mobile-menu-head .go-back{
  height: 50px;
  width: 50px;
  cursor: pointer;
  text-align: center;
  color:#000000;
  font-size: 16px;
  display: none;
}
.header .menu .mobile-menu-head.active .go-back{
  display: block;
}
.header .menu .mobile-menu-head .current-menu-title{
  font-size: 15px;
  font-weight: 500;
  color:#000000;
}
.header .menu .mobile-menu-head .mobile-menu-close{
  height: 50px;
  width: 50px;
  cursor: pointer;
  line-height: 50px;
  text-align: center;
  color:#000000;	
  font-size: 25px;
}
.header .menu .menu-main{
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-overlay{
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  z-index: 1098;
  visibility: hidden;
  opacity:0;
  transition: all 0.5s ease;
}
.menu-overlay.active{
  visibility: visible;
  opacity:1;	
}
}


/* ==============================================================
                        about section
 =============================================================== */
 section.about_new {
  clear: both;
  padding: 70px 0;
  background-color:#E9E9E2 ;
}
.row.about_new {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
}
section.about_new h2 {
  font-size: 30px;
  font-weight: 600;
  color: #002268;
  margin: 15px 0 10px;

}

.left_content {
  padding: 30px;
}
 .button.button.read {
  padding: 5px 15px;
  border: none;
  color: #000;
  padding: 8px 15px;
  border-radius: 30px;
  margin-top: 5px;
  border: 1px solid #002268 ;
  background: none;
  font-size: 16px;
  transition: .5s ease;
  font-weight: 400;
}
.button.button.read:hover{
  background: #002268;
  color: #fff;
  transition: 1s ease;
}
.row.about_new .col-md-4 {
  padding: 0;
}
.col-md-4.relative img {
  width: 100%;
  height: 100%;
  border-radius: 50px 0 0 50px;
}
section.about_new p {
  line-height: 1.6;
  color: #000;
  font-weight: 300;
  text-align: justify;
}

/******************************************************
                    parallax
*******************************************************/
.parallax_sec{
  background-image: url(../images/parallax.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.parallax_tint{
  background-color: #000000cc;
  padding: 70px 0;
}

.parallax_sec h3 {
  font-size: 30px;
  margin: 20px 0;
  text-transform: uppercase;
  font-weight: 600;
}

.parallax_sec p{
  font-weight: 300;
  color: black;
}

.cont_main {
  padding: 30px;
  background: #fffffff5;
  border-radius: 20px;
}

.options_logosbtn h4 {
  color: black;
  font-size: 20px;
  margin-top: 30px;
}


/*=========================================================
                     my_specialties
===========================================================*/
.my_specialties{
  background: url(../images/special_bg.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.my_special_bg_color{
  background: #efebeb;
  padding: 70px 0;
}

.my_special_content h1 {
  font-size: 30px;
  font-weight: 600;
  color: #002268;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 15px;
  margin-top: 0;
}

.my_special_content p{
  font-weight: 300;
  color: #000;
  margin-bottom: 15px;
}
.my_specialties .button.button.read:hover{
  background-color: #002268;
  color: #fff;
}
.my_specialties .button.button.read{
  border-color: #002268;
  color: #002268;
}
.my_specialties_box1 img{
    padding: 15px;
    border: 1px solid #002268;

}
.my_special_content {
  padding: 90px 0;
}
.my_specialties_box1 {
  background:#fff;
  text-align: center;
  padding: 15px;
  box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
  width: 90%;
  float: right;
  transition: 1s ease;
}
.my_specialties_box1:hover{
  transform: translateY(-10px);
  transition: 1s ease;
}
.my_specialties_box1 h4 {
  font-size: 20px;
  color: #002268;
  margin-top: 20px;
  text-transform: uppercase;
}
.my_specialties_box1 p {
  font-weight: 300;
}




h4.slidh4cls {
  margin: 7px 0px;
  font-size: 22px;
  color: #f97a2e;
}


.book_details > h4 {
  margin: 11px -3px 30px;
  color: #003cb7;
  font-size: 26px;
  /* font-family: 'Alegreya Sans'; */
  font-weight: 400;
  letter-spacing: 1px;
}
.options_logos > a > h4 {
  line-height: 30px;
  color: #353c4a;
  margin-left: 30px;
}

ul.social_logos > a > li {
  float: left;
  margin: 15px 8px 30px 28px;
  list-style-type: none;
}
button.btnstyle {
  padding: 6px 50px;
  background: #fa8742;
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
  border:none;
}

.slckbtn button {
  padding: 10px 30px;
  background: white;
  border:none;
}
.selcok {
  margin-top: 35px;
}
img.imgclsnew {
  width: 100%;
}

p.nstyle_parl_p {
  color: white;
  font-size: 26px;
}

/* ==========================================================
                     footer
============================================================ */
footer{
  background-color: rgb(249, 116, 37);
  color: #fff;
  padding: 15px 0;
  font-weight: 300;
}
footer h4{
  font-weight: 300;
}
.footer_left{
  float: left;

}
.footer_right{
  float: right;
}


/* ================================================
                  inner page
=================================================== */
section.inner{
  padding: 65px 0 45px
}
section.inner ul li{
  line-height: 2;
}
section.inner ul{
  clear: both;
}
.inner_header h2{
  border-bottom:1px solid #ddd;
  display: inline;
  text-transform: uppercase;
  color: #002268;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}
.inner_header h2:after{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: orange;
  width: 100px;
  content: "";
  height: 3px;
}
ul.module-title-ul>li>a {
  background: #002268;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 17px;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  display: block;
  transition: 0.5s ease-in-out;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  text-transform: capitalize;
}
.news-events-sec-a-one {
  background: rgb(249, 116, 37);
}
ul.module-title-ul {
  padding-left: 15px;
}

ul.inner_ul li {
  font-weight: 400;
  font-size: 20px;
  padding-bottom: 20px;
}
.inner_header {
  margin-bottom: 40px;
}
ul.inner_ul {
  list-style: disc;
  padding-left: 35px;
}
ul.inner_sub_ul {
  list-style: square;
  padding-left: 20px;
}
ul.inner_sub_ul li{
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 0;
}
ul.inner_ul li span{
  color: rgb(249, 116, 37);
}

span {
  color: rgb(249, 116, 37);
}
span.inner_ul_sub_header {
  color: #000 !important;
  font-weight: 400;
}

/* ========================================================
                         Bg banner
=========================================================== */
.bg_banner{
  background: url(../images/main_bg1.png);
  background-size: cover;
  padding: 95px 0;
  background-repeat: no-repeat;
  background-position: top;
}
.doctor_info_img img {
  border-radius: 50%;
  width: 40%;
}
.doctor_info_img>.img1 {
  margin-right: 12%;
}
.doctor_info {
  color: #fff;
  padding: 30px 0;
}
.doctor_info h2{
  font-size: 40px;
}
.doctor_info h2 {
  font-size: 58px;
  font-weight: 600;
  margin-top: 0;
  letter-spacing: 2px;
}
.doctor_info h4{
  font-size: 28px;
  font-weight: 300;
  margin: 20px 0 30px;
}
.doctor_info_img {
  text-align: right;
}
.doctor_info button{
  background:none;
  font-size: 18px;
  border-radius: 30px;
  color: #fff;
  padding: 10px 25px;
  border: 1px solid rgb(249, 116, 37);
  transition: 1s ease;
}
.doctor_info button:hover{
  background-color:rgb(249, 116, 37) ;
  transition: 1s ease;

}


.doctor_info{
  animation: doctor_info 1s linear;
  position: relative;

}
@keyframes doctor_info {
  from{
    bottom: -100px;
    opacity: 0;
  }
  to{
    bottom: 0;
    opacity: 1;
  }
  
}
.doctor_img{
  animation: doctor_photo 1.5s linear;
  position: relative;

}
@keyframes doctor_photo {
  from{
    right: -200px;
    opacity: 0;
  }
  to{
    right: 0;
    opacity: 1;
  }
  
}

/*============================================================
                     contact page
==============================================================*/
.contact-form{
  width: 70%;
  margin: auto;
  padding-top: 50px;
}
ul.contact-form-ul li {
  margin-bottom: 20px;
}
.contact-form .section_header {
  float: left;
  margin-bottom: 15px;
}
.contact-form .section_header h2{
  font-size: 25px;
  margin-top: 0;
  position: relative;
  color: #002268;
}
.contact-form .section_header h2::after{
  left: 0;
  position: absolute;
  bottom: -10px;
  width: 60px;
  height: 2px;
  background-color: rgb(249, 116, 37);
  content: "";
  display: block;
}
.contact-form .form-control{
  height: 40px;
  
}
p.con-icon strong {
  font-weight: 600;
}
section.contact_page {
  padding: 70px 0;
}
.contact-form textarea{
  height: 100px !important;
}
.contact-submit input#contactsubmit {
  background: #f97425;
  color: #fff;
  border: none;
  outline: none;
}
.contact_us .section_header+ h4{
  color: #005797;
  font-size: 23px;
  margin: 30px 0 20px;
}
.contact_us {
  width: 65%;
  margin: auto;
  text-align: center;
  border: 1px solid #ddd;
  margin: 90px auto 0;
  padding: 50px 35px;
  border-radius: 30px;
}
p.con-icon {
  font-size: 18px;
  line-height: 1.6;
  margin: 20px 0;
  color: #000;
}
p.con-icon i {
  color: rgb(249, 116, 37);
}
p.con-icon a{
  color: #000;

}
.contact_us .section_header h2{
  margin-top: 0;
  font-size: 25px;
  position: relative;
  display: inline;
  color:#002268 ;
}
.contact_us .section_header h2::after{
  right: 0;
  margin: auto;
  left: 0;
  position: absolute;
  bottom: -5px;
  width: 60px;
  height: 2px;
  background-color: rgb(249, 116, 37);
  content: "";
  display: block;
}
.contact_us .section_header{
  margin-bottom: 15px;
}
/* = */
section.contact_page .inner_header {
  text-align: center;
  margin-bottom: 10px;
}
.contact_us .section_header+ h4 span {
  font-size: 14px;
  color: #726a6a;
}


ul.inner_ul li p {
  font-weight: 300;
}

button#submit-btn {
  background: #f97425;
  color: #fff;
  border: none;
  outline: none;
}

/* ====achivements pagee */
.administrative_sectab h3 {
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

ul.acdemic_detsecul li {
  list-style: inside;
  line-height: 1.8 !important;
  font-size: 16px;
}
img.academic_img {
  width: 50%;
  float: right;
  padding: 30px;
}
img.academic_img1 {
  width: 100%;
}

.section_1cls_nw {
text-align: center;
border-radius: 5px 5px 5px 5px;
box-shadow: 0px 0px 5px 4px #fcb489;
padding: 1px;
margin-bottom: 15px;
}
.sectiacad_n2 {
padding: 30px;
background: #f4faff;
margin-bottom: 33px;
}

.sectiacad_n2txt p {
  line-height: 1.8;
}

ul.nav.nav-tabs.nstylee li {
width: 50%;
text-align: center;
}
.panel-default>.panel-heading {
color: #333;
background-color: #9E9E9E;
border-color: #ddd;
}
.administrative_sectab p {
font-weight: 300;
}

.section_1cls_nw1 {
  text-align: center;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 0px 5px 4px #89a5de;
  padding: 4px;
  margin-bottom: 35px;
}

/* ===== surgical page===== */
.ul_header h3 {
  border-bottom: 2px solid;
}

.vedio_style h4 {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid;
color: #f97425;
}
ul.inner_ul1 li {
  list-style: disc;
}
li.cls_mnili {
  color: #003cb7;
}

/* ===================== */
img.glry_secimg1 {
  width: 100%;
border-radius: 5px;
}
button.btn.nstyle {
  background: no-repeat;
  border-radius: 13px;
  box-shadow: 1px 1px 1px 0px gray;
  margin-bottom: 30px;
}
.modal-header .close {
  margin-top: -16px;
}
button.close span {
  color: black !important;
}