

.section-content ol, .section-content ul{
  padding: 0% 3%;
}
.section-content ol li, .section-content ul li{
  padding: 5px 0px;
}


/* Header CSS Starts */

nav{
  width: 100%;
  
  background: #f5f5f5;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #333333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #4b2a72;
  color: #fff;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #f2f2f2;
  width: 250px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  z-index: 2;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
  font-size: 14px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #333;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #eee;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    z-index: 2;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 0px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    /*padding-left: 20px;*/
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    margin: 0;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  #showDrop1:checked ~ .drop-menu,
  #showMega1:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 14px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

/* Header CSS Ends */

/* Banner CSS Starts */

.banner{
  position: relative;
}

.carousel-caption{
  position: absolute;
  bottom: 30%;
  left: 15%;
  /*background: #000000b2;*/
  padding: 0;
}

.carousel-caption h2{
  font-size: 72px;
  text-transform: uppercase;
  color: #4b2a72;
  margin-bottom: 10px;
  padding: 0px 20px;
  background: #ffffffc2;
  width: fit-content;
}

.carousel-caption h5{
  font-size: 22px;
  color: #4b2a72;
  margin-bottom: 30px;
  padding: 10px 20px;
  background: #ffffffc2;
  width: fit-content;
}

/* Banner CSS Ends */

/* Inner Banner CSS Starts */

.inner-header{
	background-size: 100% 100%;
	background-image: url("../images/inner-banner.jpg");
	background-position: 50% 14px;
}

/* Inner Banner CSS Starts */


/* Trusty CSS Starts */

.trusty_info{
	padding: 5px 5px;
}

.trusty_info h4{
	text-align: center;
	font-size: 18px;
}

/* Trusty CSS Ends */

/* Content Box CSS Starts */

.content_box h4{
  font-size: 18px;
  color: #4b2a72;
}

.content_box ul{
  padding: 0px 20px;
}

.content_box ul li{
  list-style: none;
  padding: 5px 0px;
  font-weight: bold;
}

.content_box ul.list_style li{
  list-style: disc;
}

.content_box ol.list_style li{
  list-style: decimal;
}

.content_box ul.no_list li{
  list-style: none
}

.content_box ul li i{
  color: #4b2a72;
}

/* Content Box CSS Ends */

/*---------- Blog Css Ends -----------*/

.blog{
  padding: 3% 0%;
}

.blog_wrap{
  background-color: #fff;
  border-radius: 5px;
  /*box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.11);*/
  margin: 5% 0%;
}

.blog_image{
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  position: relative;
}

.blog_image img{
  width: 100%;
  border-radius: 10px 10px 0 0;
  transition: 0.7s;
}

.blog_wrap:hover .blog_image img{
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.blog_wrap .blog_info {
  position: relative;
  padding: 35px 5px;
  text-align: center;
}

.blog_wrap .blog_info .blog_date {
  position: absolute;
  top: -22px;
  right: 25px;
  font-size: 15px;
  background-color: #943131;
  padding: 8px 15px;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_wrap .blog_info h5 a{
  font-size: 16px;
  color: #333;
}

/*---------- Blog Css Ends -----------*/


/* ----------- Blog Detail Css Starts -------------
-----------------------------------------------*/

.blog-detail-box h2{
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 1%;
  font-weight: 700;
}

.blog-detail-box .blog-img{
  padding-bottom: 1%;
}

.blog-detail-box .blog-img img{
  width: 100%;
}

.blog-detail-box ul.blog_date{
  margin: 2% 0%;
  padding: 0;
}

.blog-detail-box ul.blog_date li{
  display: inline-block;
}

/* ----------- Blog Detail Css Ends -------------
-----------------------------------------------*/


/* ----------- Sidebar Css Starts -------------
-----------------------------------------------*/

.sidebar{
  border: 1px solid #eee;
  padding: 0% 5%;
}

.sidebar-title{
  background-color: #943131;
  padding: 5px 5px;
  margin: 5% 0%;
}

.sidebar-title h2{
  text-align: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 0;

}

.sidebar ul{
  margin: 0;
  padding: 0;
}

.sidebar ul li{
  /*display: block;*/
  list-style: none;
}

.sidebar .blog_list{
  padding-bottom: 5%;
}

.sidebar .blog_list img{
  width: 70px;
  height: 70px;
  margin-right: 10px;
  float: left;
}

.sidebar .blog_list p a{
  text-decoration: none;
  color: #2D3954;
}

.sidebar .blog_list p {
  line-height: 18px;
  font-size: 13px;
  margin-bottom: 0px;
}

.sidebar .blog_list p a:hover{
  color: rgb(24, 97, 182);
}

.sidebar ul.blog_date li{
  display: inline-block;
}


/* ----------- Sidebar Css Ends -------------
-----------------------------------------------*/


/* ----------- Gallery CSS Starts ----------- */

.gallery_carousel img{
  width: 100%;
  height: 250px;
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  background-color: #efefef;
  border: 1px solid #bbb;
}

.img-wrapper img {
  width: 100%;
  height: 250px;
}

.placement_box .img-wrapper img {
  width: 100%;
  height: auto;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  object-fit: contain;
  padding: 5%;
}

@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}

#nextButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}

#prevButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}

#exitButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 3em;
  }
}

.video_info{
  text-align: center;
}

.video_info h5{
  font-size: 14px;
}

/* ----------- Gallery CSS Ends ----------- */


