/* # General
================================ */

body {
  font-family: "Quicksand", sans-serif;
}
a {
  text-decoration: none;
}
/* # Header, Main Menu
================================ */

.navbar {
  opacity: 0.8;
  margin-bottom: 0;
  background-color: #fff;
  transition: all 0.2s ease-out;
}

.navbar-container {
	position: relative;
}

.navbar .navbar-nav li a {
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  transition: all 0.2s ease-out;
  position: relative;
}

.navbar-brand {
  font-size: 25px;
  transition: all 0.2s ease-out;
	color: rgba(200,100,0,0.8);
}

.navbar-scroll {
  opacity: 1;
}

#top-social-menu {
  display: none;
}


@media (min-width: 768px) {
  .navbar {
    height: 85px;
  }

  .navbar-nav>li>a {
    padding: 0;
    margin-top: 0px;
    margin-left: 20px;
    line-height: 70px;
  }

  .navbar-brand {
    padding: 0;
    height: auto;
    line-height: normal;
  }

  #top-social-menu {
    display: initial;
  }

  /* Navbar when scrolled */

  .navbar-scroll {
    height: 70px;
    box-shadow: 0rem 0.1rem 1rem rgb(0 0 0 / 10%);
  }

  .navbar-scroll #top-social-menu {
    display: none;
    transition: all 0.2s ease-out;
  }

  .navbar-scroll .navbar-brand {
    height: 70px;
    line-height: 70px;
  }

  .navbar-scroll .navbar-nav>li>a {
    opacity: 1;
    padding: 0;
    margin-top: 0;
  }
}

/* # Hover Link Effect
================================ */
@media (min-width: 768px) {
  .navbar-nav>li>a::after {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #825434;
    content: '';
    opacity: 0;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transform: translateY(-10px);
  }

  .navbar-nav>li>a:hover::after,
  .navbar-nav>li>a:focus::after {
    height: 2px;
    opacity: 1;
    transform: translateY(0px);
  }
  .nav-link:focus, .nav-link:hover {
    color: #825434 !important;
  }
}

/* # Social menu
================================ */

#top-social-menu {
  position: absolute;
  top: 7px;
  right: 15px;
  font-size: 12px;
  z-index: 101;
  padding-right: 0px;
  list-style: none;
  color: #000000;
  transition: all 0.2s ease-out;
}

#top-social-menu li {
  float: left;
  padding: 10px 15px;
}

#top-social-menu li:last-child {
  padding-right: 0;
}

#top-social-menu li a {
  text-decoration: none;
  color: #000000;
}

#top-social-menu li a:hover {
  text-decoration: none;
  color: #543A1A;
}

#top-social-menu i {
 	font-size: 16px;
  font-family: fontawesome;
  font-style: normal;
  
  transition: all 0.2s ease-in;
}

#top-social-menu i:hover {
  text-decoration: none;
  color: #543A1A;
}

/* # Section Full Width Image
================================ */

.full-width-img {
  background: url('http://i1159.photobucket.com/albums/p625/ivanrdvc/bg-cp-header_zps4ghnoxc7.jpg') no-repeat center center;
  background-size: cover;
  text-align: center;
  padding-top: 100px;
  height: 450px;
  color: #fff;
}

.box {
	background: rgba(0, 0, 0, 0.4);
  border: 3px solid #000;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  padding: 10px 20px;
}

.subheading-text {
  list-style: none;
  font-size: 35px;
  line-height: 50px;
}

@media (min-width: 768px) {

  .full-width-img {
    padding-top: 110px;
    height: 1000px;
  }

  .subheading-text {
    font-size: 50px;
    line-height: 70px;
  }

  .box {
    margin-top: 100px;
    padding: 80px 20px;
  }
}
/* # Section Black, White
================================ */

.section-black,
.section-white {
	padding: 50px 0;
	color: #fff;
	line-height: 1.7;
}

.section-black h3,
.section-white h3 {
	margin-bottom: 60px;
}

.section-black p,
.section-white p {
  margin-bottom: 60px;
}

.section-black {
	background: linear-gradient(#363437, #121112);
}

.section-white {
	background: linear-gradient(#ffffff, #f3f3f3);
  color: #0e0d0e;
}

/*---------------------
 HAMBURGER MENU
 ----------------------*/
 .hamburger-menu {
  position: fixed;
  top: 11px;
  right: 50px;
  padding-top: 20px;
  padding-left: 15px;
  width: auto;
  height: 43px;
  cursor: pointer;
  z-index: 9998;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.hamburger-menu .bar, .hamburger-menu .bar:after, .hamburger-menu .bar:before {
  width: 28px;
  height: 1px;
}
.hamburger-menu .bar {
  position: relative;
  transform: translateY(10px);
  background: black;
  transition: all 0ms 300ms;
}
.hamburger-menu .bar.animate {
  background: rgba(255, 255, 255, 0);
}
.hamburger-menu .bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: black;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: black;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/*---------------------
 Mobiles Menu 
 ----------------------*/
/*---------------------
 Mobiles Menu - Design 
 ----------------------*/
.mobile-menu ul {
  margin: 0;
  padding: 0;
}
.mobile-menu li {
  font-size: 13px;
  line-height: 30px;
  margin: 0;
  overflow: hidden;
  padding: 5px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  padding-left: 15px;
}
.mobile-menu li:first-child {
  margin-top: 55px;
}
.mobile-menu li:hover {
  background: #CCCCCC;
}
.mobile-menu li a {
  text-decoration: none;
  color: black;
  font-size: 13px;
}
/*---------------------
 Mobiles Menu - Slide IN 
 ----------------------*/
.mobile-menu {
  top: 40px;
  max-width: 250px;
  right: -100%;
  width: 100%;
  background: #EBEBEB;
  color: black;
  height: 100%;
  position: fixed;
  z-index: 9997;
  overflow-y: auto;
  -webkit-transform: translate3d(0, 0, 205px);
  -moz-transform: translate3d(0, 0, 205px);
  transform: translate3d(0, 0, 205px);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.mobile-menu.active {
  right: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
/*---------------------
 Mobiles Menu - Dropdown Submenu
 ----------------------*/
.has-children:hover {
  cursor: hand;
}
.children {
  display: none;
}
.mobile-menu .children li:first-child {
  margin-top: 0px;
}
.icon-arrow {
  position: absolute;
  display: block;
  font-size: 0.7em;
  color: black;
  top: 5px;
  right: 10px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
}
.icon-arrow:after {
  content: "\25BC";
}
.icon-arrow.open {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
}
.navbar-scroll .hamburger-menu {
  top: 3px;
}
.carousel-fade .carousel-item img {height: 100%;object-fit: cover;object-position: center;}
.carousel-fade .carousel-item {height: 100%;}
.section_padding {padding: 50px 0px;}
.heading-image img {width: 140px;}
.heading-image {margin-bottom: 20px;}
.image-has-rotate {perspective: 1600px;margin-bottom: 25px;position: relative;}
.image-has-rotate .image-rotate-shadow {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 100px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
  opacity: 0;
  transform: rotateX(95deg) scale(0.45);
  transform-origin: bottom;
}
.image-has-rotate:hover .image-rotate-wrapper, .image-has-rotate:hover .woocommerce-product-image {
  transform: rotateY(40deg) translateY(-5%);
}
.woocommerce-product-image img {
  width: 100%;
  max-height: 315px;
  min-height: 315px;
  display: block;
  margin: 0 0 1em;
  box-shadow: none;
  object-fit: cover;
  object-position: top;
}
.image-has-rotate:hover .image-rotate-shadow {
  opacity: 1;
  bottom: -7%;
  transform: rotateX(102deg) scale(0.45) rotateZ(-45deg);
}
.image-has-rotate .rotate-before-image {
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 36px;
  height: 100%;
  background-size: cover;
  background-position: left;
  transform: rotateY(90deg);
  transform-origin: 0 0;
}
.image-has-rotate .image-rotate-wrapper, .image-has-rotate .woocommerce-product-image {
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s;
}
.book_sec {
  background-image: url(../images/1.png);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px 0px 0px 0px;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 380px auto;
}
.content_sec {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 120px 45px 0px 0px;
}
.elementor-button-wrapper:before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 2px;
  margin-right: 20px;
  background-color: #000;
  vertical-align: middle;
}
.elementor-button {
  border-width: 0 0 2px;
  border-style: solid;
  border-radius: 0;
  padding: 2px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #000;
  font-size: 15px;
  line-height: 29px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0px;
  background: transparent;
  white-space: normal;
  outline: 0;
  transition: .2s;
  border-bottom: 2px solid #825434;
  text-decoration: none;
}
.content_sec h5 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #222222;
}
.content_sec h2 {
  font-family: "Fanwood Text", serif;
  font-size: 42px;
  font-weight: normal;
  color: #222222;
  line-height: 1.5;
}
.content_sec p {
  font-size: 17px;
  color: #626262;
  line-height: 35px;
  margin-top: 40px;
  margin-bottom: 60px;
}
.pr-90 {
  padding-right: 90px;
}
.carousel-control-next, .carousel-control-prev {
  top:20%;
}

.award_content_sec {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 0px 0px 0px 70px;
}
.award_content_sec h2 {
  font-family: "Fanwood Text", serif;
  font-size: 42px;
  font-weight: normal;
  color: #222222;
  line-height: 1.5;
}

.swiper {
  position: relative;
  width: 100%;
  z-index: 2;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  border-radius: 12px;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.4s ease-in;
}
.swiper-slide span {
  display: inline-block;
  background: #9926e1;
  border-radius: 0 50px 50px 0;
  text-transform: capitalize;
  padding: 12px 20px;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: absolute;
  top: 2em;
  left: 0;
  color: #fff;
}
.swiper-slide h3 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  letter-spacing: 0.8px;
  position: relative;
  word-wrap: break-word;
}
@media screen and (min-width: 800px) {
  .swiper-slide h3 {
    font-size: 1.8rem;
  }
}
.swiper-slide p {
  color: #fff;
  line-height: 1.6;
  font-size: 0.8rem;
}
.swiper-slide .slide-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -10px);
  width: 90%;
}
.swiper-slide-active {
  display: grid;
  opacity: 1;
}

.swiper-pagination {
  position: relative;
  bottom: -0.313rem;
  text-align: center;
  margin-top: 35px;
  width: auto;
}
.swiper-pagination-bullet {
  border-radius: 0;
  width: 1.5rem;
  height: 0.25rem;
  background: #fff;
}
.swiper-pagination-bullet-active {
  background: #fff;
}
footer {background: #e5e5e5;padding: 30px 0px 0px;}
.border-bottom {border-bottom: var(--bs-border-width) var(--bs-border-style) #c9c9c9 !important;}
.footer_div_2 {padding: 20px 20px 0px 50px;}
.footer_div_2 ul{padding-left: 0px;list-style: none;line-height: 35px;display: flex ; justify-content: center;}
.footer_div_2 ul li a{text-decoration: none;color: #222222;font-size: 15px;}
.footer_div_2 ul li a:hover {color:#825434;}
.footer_div_2 h4 {font-weight: 600; padding: 5px 0px; position: relative; font-size: 20px; color: #222222;}
.footer_div_2 h4:before {position: absolute;content: '';background: #825434;width: 50px;height: 2px;bottom: 0;}
.footer_div_2 ul li {padding-left: 60px;}
.copyright-sec {background-color: rgb(209 209 209); font-size: 13px; display: flex ; justify-content: space-between; color: black; font-weight: 500;}
.copyright-sec span img {width: 25px;}

/*=========================== inner-pages css start ================================*/

.page-bg {
  background: url(../images/page-bg.jpg) repeat center;
  padding: 30px 0;
  background-size: contain;
}
.shadow_page {
  padding: 30px 50px;
  background-color: white;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
span.entry-icon img {
  width: auto;
  height: 40px;
}
.sub-heading {
  color: #222222;
  font-size: 30px;
  margin-left: -10px;
}
.content {
  clear: both;
  margin-top: 5px;
  border-top: 2px solid #825434;
  padding: 20px 0 0 0;
  font-size: 14px;
}
.content p {
  margin-bottom: 20px !important;
  color: #626262;
  line-height: 28px;
  text-align: justify;
}
.content b {
  color: #222222;
}
.inner ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.inner li {
  padding-left: 20px;
  font-size: 14px;
  color: #626262;
  line-height: 21px;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 15px;
}
.inner li:before {
  content: "\f0a4";
  font-family: 'Font Awesome 5 Pro';
  display: inline-block;
  margin-left: -1.3em;
  width: 22px;
  font-size: 16px;
  color: #825434;
}
.innh {
  margin-bottom: 10px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #825434;
}
.card-flyer {
  border-radius: 5px;
}
.card-flyer .image-box{
  background: #ffffff;
  overflow: hidden;
  border-radius: 5px 5px 0px 0px;
}
.card-flyer .image-box img{
  -webkit-transition:all .9s ease; 
  -moz-transition:all .9s ease; 
  -o-transition:all .9s ease;
  -ms-transition:all .9s ease; 
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-flyer:hover .image-box img{
  opacity: 0.7;
  -webkit-transform:scale(1.15);
  -moz-transform:scale(1.15);
  -ms-transform:scale(1.15);
  -o-transform:scale(1.15);
  transform:scale(1.15);
}
.card-flyer .text-box{
  text-align: center;
}
.card-flyer .text-box .text-container{
  padding: 8px;
}
.card-flyer{
  background: #FFFFFF;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.40);
  height: 100%;
}
.card-flyer:hover{
  background: #fff;
  /* box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.50); */
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.card-flyer .text-box p{
  margin-top: 0px;
  margin-bottom: 0px !important;
  padding-bottom: 0px;
  font-size: 14px;
  color: #222222;
  line-height: 26px;
}
.card-flyer .text-box h6{
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #825434;
}
.fg-caption {
  left: 0;
  bottom: 0;
  transition-timing-function: ease;
  transition-duration: .3s;
  transition-property: visibility, opacity;
  visibility: visible;
  opacity: 1;
  text-align: left;
  position: absolute;
  background-color: #82543461;
  width: 100%;
  color: white;
  padding: 0px 5px;
}
.fg-caption-title {
  box-sizing: content-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin: .4em;
  height: 1.3em;
  min-height: 1.3em;
  line-height: 1.3em;
}
.image-has-rotate:hover figcaption.fg-caption {
  transform: rotateY(40deg) translateY(-35%);
}
.sub-inner {
  padding-left: 2rem !important;
  list-style: disc !important;
}
ul.sub-inner li:before {display: none;}
ul.sub-inner li {
  padding-left: 0px;
}
.innh-1 {
  color: #222222 !important;
  margin-bottom: 20px;
}
.card-flyer.details .image-box {border-radius: 5px;}

/* =================================== Contact Us Page Css =================================== */

.left-side{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.left-side::before{
  content: '';
  position: absolute;
  height: 90%;
  width: 1px;
  right: -40px;
  top: 55%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details{
  margin: 14px 0px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color: #825434;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #626262;
  font-weight: 500;
}
.right-side{
  margin-left: 50px;
}
.right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  color: #825434;
  margin-bottom: 20px;
}
.swiper-slide img {
  width: 100%;
}