@import url(../css/ie7.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Sniglet&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;400;500;600;700;800;900&display=swap');

/* font-family: 'DM Sans', sans-serif;
font-family: 'Sniglet', cursive; */
.headerSec h1 {
  font-size: 20px;
}

/****************************************************************************************
@
@	Global Style and Reset
@
****************************************************************************************/
/* Global Styles */
::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
}

p {
  line-height: 24px;
}

ul {
  list-style: none;
  padding-left: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a img {
  border: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px #efdb00;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4c4c4c;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.darkHeader {
  background: url(../images/banner-bg.jpg);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12);
  padding-top: 0px !important;
  padding-bottom: 0px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  position: fixed !important;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 9;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* 
  ---------------------------------------------
  preloader
  --------------------------------------------- 
  */
#preloader {
  overflow: hidden;
  background-image: linear-gradient(127deg, #cfa438 0%, #fff 91%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper>div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper>div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper>div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  5% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes dyinglight {
  15% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }

  50% {
    -webkit-transform: rotate(-89deg);
    transform: rotate(-89deg);
  }

  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@keyframes dyinglight {
  15% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }

  50% {
    -webkit-transform: rotate(-89deg);
    transform: rotate(-89deg);
  }

  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.dl {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
}

.dl__square {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
}

.dl__container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -webkit-animation: dyinglight 1s ease infinite;
  animation: dyinglight 1s ease infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dl__corner--top:before,
.dl__corner--top:after,
.dl__corner--bottom:before,
.dl__corner--bottom:after {
  position: absolute;
  width: 17px;
  height: 17px;
  color: #fff;
  content: "";
}

.dl__corner--top:before {
  border-left: 1px solid;
  border-top: 1px solid;
  top: -6px;
  left: -6px;
}

.dl__corner--top:after {
  border-right: 1px solid;
  border-top: 1px solid;
  top: -6px;
  right: -6px;
}

.dl__corner--bottom:before {
  border-left: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  left: -6px;
}

.dl__corner--bottom:after {
  border-right: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  right: -6px;
}

button:focus {
  outline: 0px dotted !important;
  outline: 0px auto -webkit-focus-ring-color !important;
}

#back2Top {
  position: fixed;
  bottom: 2px;
  right: 2px;
  z-index: 999;
}

/*----------------------*/
.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
}

/*==================================css reset==================================*/
/****************************************************************************************
@
@	Styles
@
****************************************************************************************/
.headerSec {
  position: relative;
}

.headerNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 10px;
}

.headerNav a {
  color: #fff;
}

.headerNav ul {
  display: flex;
  margin-bottom: 0;
}

.headerNav ul li a {
  padding: 10px 33px;
}

.headerNav ul li a:hover,
.headerNav .active a {
  background-color: #cfa438;
}

.headerSec .dropdown-submenu {
  position: relative;
}

.headerSec .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.headerSec .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

/*####################### MENU ########################*/
#cssmenu>ul>li:hover>a,
#cssmenu>ul>li.active>a {
  color: red;
  border-bottom: none !important;
}

#cssmenu>ul>li:hover>a::before,
#cssmenu>ul>li.active>a::before {
  opacity: 1;
}

#cssmenu>ul>li>a {
  padding: 11px 20px;
  text-transform: none;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  margin: 0 10px 0 0;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  box-shadow: 1px 0 12px rgba(0, 0, 0, 0.22);
}

#cssmenu ul ul li a {
  padding: 10px 15px;
  width: 200px;
  font-size: 14px;
  background: #02aef1;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  border-bottom: 1px solid #e64850;
}

#cssmenu>ul>li.has-sub>a::after {
  display: none;
}

#cssmenu>ul>li.has-sub>a {
  padding-right: 6px;
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li a:hover {
  color: #222;
}

/*####################### ENd MENU ########################*/

/*# sourceMappingURL=main.css.map */

.headerBanner {
  background: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 691px;
  color: #fff;
}

.bannerSlider {
  position: relative;
}

/*.bannerSlider:after {
  content: '';
  position: absolute;
  background: url(../images/yellow-shadow.png);
  bottom: 0;
  width: 100%;
  height: 60%;
}*/

.bannerShadow img {
  width: 100%;
}

/* .bannerSlider:after {
  content: '';
  position: absolute;
  background: url(../images/banner-shadow.png);
  bottom: -142px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  height: 142px;
  background-repeat: no-repeat;
} */
.bannerSec {
  position: relative;
}

.bannerTxt {
  position: absolute;
  bottom: 147px;
  z-index: 3;
  text-align: center;
  padding-bottom: 70px;
  /*font-family: 'Sniglet', cursive;*/
}

.bannerTxt h1 {
  font-size: 75px;
}

.bannerTxt p {
  width: 70%;
  margin: 0 auto;
}

.bannerTxt h1 {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.readMore {
  display: inline-flex;
  height: 62px;
  width: 230px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 18px;
}

.loardKrishna {
  /*font-family: 'Sniglet', cursive;*/
  padding-bottom: 80px;
}

.loardKrishna h6 {
  font-size: 40px;
  color: #2a0428;
}

.loardKrishna h5 {
  font-size: 35px;
  color: #cfa438;
  margin-left: 100px;
  position: relative;
}

.loardKrishna h5::after {
  content: '';
  position: absolute;
  left: -100%;
  height: 2px;
  width: 93px;
  border-bottom: 1px solid #212121;
}

.loardKrishna h5::after {
  content: '';
  position: absolute;
  left: -23%;
  top: 50%;
  height: 2px;
  width: 93px;
  border-bottom: 1px solid #212121;
}

.knowMore {
  display: inline-flex;
  min-width: 223px;
  min-height: 63px;
  justify-content: center;
  align-items: center;
  background-color: #cfa438;
  color: #fff;
  font-size: 20px;
}

.aboutSec {
  background-color: #f7f7f7;
  padding: 35px 0;
}

.aboutSec h2 {
  /*font-family: 'Sniglet', cursive;*/
  font-size: 60px;
}

.aboutSec p {
  color: #343434;
  line-height: 34px;
}

.aboutImg {
  position: relative;
}

.aboutImg:after {
  content: '';
  position: absolute;
  background: url(../images/border.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 80%;
}

.aboutImg img {
  border-radius: 40px;
}

.mahoraskam {
  background: url(../images/bg2.jpg);
  background-size: cover;
  min-height: 272px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mahoraskam h2 {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  max-width: 497px;
  color: #fff;
  font-size: 31px;
}

.upcomingEvnt {
  position: relative;
}

.upcomingEvnt:after {
  content: '';
  position: absolute;
  background: url(../images/after1.png);
  top: 0;
  left: 0;
  width: 383px;
  height: 451px;
  z-index: 0;
}

.upcomingEvnt:before {
  content: '';
  position: absolute;
  background: url(../images/after2.png);
  bottom: 0;
  right: 0;
  width: 383px;
  height: 451px;
  z-index: 0;
}

.upcomingEvnt h2 {
  font-size: 60px;
}

.eventBx {
  display: flex;
  justify-content: space-between;
  border-radius: 15px;
  overflow: hidden;
  align-items: center;
  position: relative;
  z-index: 2;
}

.evntTxt {
  padding: 20px;
}

.evntImg {
  padding: 10px;
}

.evntDate {
  background: #f1f1f1;
  margin-right: 45px;
  width: 200px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
  font-size: 14px;
}

.evntDate p {
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 25px;
}

.evntDate .time {
  background-color: #cfa438;
  color: #fff;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.evntDate h4,
.evntDate h3 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.evntDate i {
  margin-right: 5px;
}

.eventBx {
  background-color: #fff;
}

.eventBx h5 {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #131313;
  margin-bottom: 5px;
}

.upcomingEvnt {
  background-color: #f7f7f7;
  padding-bottom: 50px;
}

.upcomingEvnt h2 {
  /*font-family: 'Sniglet', cursive;*/
  text-align: center;
  padding-top: 75px;
  padding-bottom: 35px;
}

.viwall {
  display: inline-flex;
  width: 147px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border: 1px solid #fa234d;
  margin-top: 15px;
  font-size: 17px;
}

.gallery {
  position: relative;
  overflow: hidden;
}

.gallery h2 {
  /*font-family: 'Sniglet', cursive;*/
  font-size: 60px;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 35px;
}

.footerSec {
  background-color: #280226;
  text-align: center;
  padding-top: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.foterNav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 49px;
  padding-bottom: 45px;
  margin-bottom: 0;
}

.foterNav a {
  color: #fff;
  padding: 0 20px;
}

.foterNav a:hover {
  color: #bf8b30;
}

.portfolio-icon {
  position: absolute;
  bottom: -100%;
  -webkit-transition: all 0.7s cubic-bezier(0.49, 2.13, 0.36, 0.34) 0s;
  transition: all 0.7s cubic-bezier(0.49, 2.13, 0.36, 0.34) 0s;
  width: 100%;
  height: 100%;
  text-align: center;
}

.portfolio-icon a i {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 45px;
  border-radius: 0;
  margin: 0 5px;
  -webkit-transition: all .5s ease-in-out 0s;
  transition: all .5s ease-in-out 0s;
}

.portfolio-icon a i:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
}

.element-item:hover .portfolio-icon {
  bottom: -38%;
}

.element-item {
  float: left;
  overflow: hidden;
  padding: 2px;
  width: 100%;
  margin-bottom: 0;
  height: 265px;
  position: relative;
}

.element-item img {
  -webkit-transition: .5s;
  transition: .5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.element-item-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transform: scale(0);
  transform: scale(0);
  background: rgba(178, 108, 1, 0.5);
}

.element-item:hover .element-item-overlay {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.copyRight {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #b290b0;
  color: #7c517a;
}

.innerBanner {
  min-height: 300px;
  margin-bottom: 30px;
}

.innerBanner .bannerTxt {
  width: 100%;
  padding-bottom: 0;
  bottom: 65px;
}

.innerBanner .bannerTxt h1 {
  font-size: 65px;
}

**Contact**/ .contact .form-group {
  margin-bottom: 5px;
}

.contact .form-control {
  border-radius: 0px;
  color: #6b6c6d;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  height: 52px;
  padding: 0px;
  line-height: 1.42857143;
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  border-bottom: 1px solid #cbcfce;
  background-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 10px;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}

.contact .form-control:focus {
  color: #34b2a4 !important;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom-color: #34b2a4;
  font-size: 12px;
}

.contact .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.contact input[type=checkbox],
.contact input[type=radio] {
  margin: 8px 0 0;
  margin-top: 12px;
  line-height: normal;
}

.contact input::-webkit-input-placeholder {
  color: #6b6c6d !important;
}

.contact input:focus::-webkit-input-placeholder {
  color: #34b2a4 !important;
  bottom: 20px;
  position: relative;
}

.contact textarea::-webkit-input-placeholder {
  color: #6b6c6d !important;
}

.contact textarea:focus::-webkit-input-placeholder {
  color: #34b2a4 !important;
  bottom: 20px;
  position: relative;
  font-size: 12px;
}

.contact .input-group-addon {
  background-color: transparent;
  border: 1px solid #34b2a4;
  border-radius: 0px;
}

.contact .focus {
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  border-bottom: 1px solid #cbcfce;
  background-color: #fff;
}

.contact .focus:focus {
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  border-bottom: 1px solid #cbcfce;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact .has-success .form-control {
  border-color: #3c763d;
  background-color: #fff;
  box-shadow: none;
}

.contact .has-success .form-control:focus {
  border-color: #3c763d;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact .has-error .form-control {
  border-color: #a94442;
  background-color: #fff;
  box-shadow: none;
}

.contact .has-error .form-control:focus {
  border-color: #34b2a4;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact .input-group-addon:last-child {
  border-left: 0;
  border-right: transparent;
  border-top: transparent;
}

.contact .input-group-addon i {
  color: #34b2a4;
}

.contact option {
  color: #6b6c6d;
}

.contact hr {
  border-top: 1px solid #e4e9e8;
  margin-bottom: 40px;
  margin-top: 40px;
}

.contact .mb60 {
  margin-bottom: 30px;
}

.contact .btn {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 11px 30px;
  border-radius: 6px;
  line-height: 1.8;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  word-wrap: break-word;
  white-space: normal !important;
}

.contact iframe {
  width: 100%;
  height: 403px;
}

.contact .btn-primary {
  background-color: #CC9933;
  color: #fff;
  border: 1px solid #CC9933;
}

.contact .btn-primary:hover {
  background-color: #032B2A;
  color: #fff;
  border: 1px solid #032B2A;
}

.contact.btn-primary.focus,
.contact.btn-primary:focus {
  background-color: #CC9933;
  color: #fff;
  border: 1px solid #CC9933;
}

.contact .space-medium {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact .pdt20 {
  padding-top: 20px;
}

.contact .contact-pageheader {
  position: relative;
  margin-bottom: 70px;
}

.contact .contact-caption {
  position: relative;
  top: 180px;
}

.contact .contact-title {
  font-family: 'PT Serif', serif;
  font-size: 50px;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 80px;
  color: #c93;
}

.contact .contact-caption-text {
  font-size: 23px;
  color: #272d2c;
}

.contact #contact-map {
  height: 450px;
  width: 100%;
  position: relative;
}

.contact .contact-form {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  position: relative;
  bottom: 0px;
  top: 100px;
  -webkit-box-shadow: 1px 2px 14px 0px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 1px 2px 14px 0px rgba(0, 0, 0, 0.29);
  box-shadow: 1px 2px 14px 0px rgba(0, 0, 0, 0.29);
}

.contact .contact-section {
  margin-bottom: 10px;
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CC9933;
}

.contact .contact-section .contact-icon {
  float: left;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 25px;
  color: #CC9933;
  padding-right: 20px;
  position: initial;
}

.contact .contact-section .contact-info {
  font-weight: 700;
}

.contact .contact-caption p {
  color: #fff;
}

.navbar {
  display: none;
}

.tribe-events-view {
  background-color: #fff !important;
}

.tribe-events .tribe-events-c-search__button {
  background-color: #cfa438 !important;
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within,
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within,
.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
  background-color: #cfa438 !important;
}


.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border {
  border: 1px solid #cfa438 !important;
}

.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border {
  color: #111111 !important;
}

.tribe-events .datepicker .day.active,
.tribe-events .datepicker .day.active.focused,
.tribe-events .datepicker .day.active:focus,
.tribe-events .datepicker .day.active:hover,
.tribe-events .datepicker .month.active,
.tribe-events .datepicker .month.active.focused,
.tribe-events .datepicker .month.active:focus,
.tribe-events .datepicker .month.active:hover,
.tribe-events .datepicker .year.active,
.tribe-events .datepicker .year.active.focused,
.tribe-events .datepicker .year.active:focus,
.tribe-events .datepicker .year.active:hover {
  background: #cfa438 !important;
}

.tribe-events .tribe-events-calendar-month__day-cell--selected,
.tribe-events .tribe-events-calendar-month__day-cell--selected:focus,
.tribe-events .tribe-events-calendar-month__day-cell--selected:hover {
  background-color: #cfa438 !important;
}

ul#menu-quicklink {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.tribe-events-calendar-latest-past {
  padding: 30px !important;
  background: rgb(207 164 56 / 50%);
}

.tribe-common .tribe-common-h5,
.tribe-common .tribe-common-h6 {
  color: #310b2d;
}

.tribe-events-calendar-latest-past {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  padding-left: 15px;

}

h2.tribe-events-calendar-latest-past__heading.tribe-common-h5.tribe-common-h3--min-medium {
  font-size: 30px;
  border-left: 2px solid #fff;
  padding-left: 15px;
}

.tribe-events-pg-template {
  padding: 30px !important;
  background: rgb(207 164 56 / 100%) !important;
}

#tribe-events-pg-template h1.tribe-events-single-event-title {
  color: #ffe196;
}

.tribe-events-content {
  color: #ffffff;
}

.tribe-events-schedule h2 {
  color: #cfa438;
}

.tribe-events-single .tribe-events-back {
  color: #fff;
}

.tribe-events-single .tribe-events-back a {
  color: #fff !important;
}

.tribe-events-event-image {
  background: #542a54;
  padding: 15px;
}

.tribe-events-event-image img {
  margin: 0 auto;
}

.upcomingEvnt .evntImg img {
  max-width: 169px;
}

.upcomingEvnt .evntTxt p {
  font-size: 16px;
}

.upcomingEvnt .evntTxt {
  width: 80%;
}

/**/
.footer-social-media{
  position: relative;
  width: 100%;
}
.footer-social-media ul{
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0px;
}
.footer-social-media ul li{
  position: relative;
  margin-right: 15px;
}
.footer-social-media ul li a{
    color: #cfa438;
    width: 42px;
    height: 42px;
    font-size: 20px;
    border: 2px solid #cfa438;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.footer-social-media ul li a:hover{
  background-color: #cfa438;
  border: 2px solid #cfa438;
  color: #ffffff;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  
}


/*visitor count*/
.visitors-count-wrap {
  position: fixed;
  right: 0;
  top: 1%;
  z-index: 9;
}
.visitors-count-wrap .tvcp-container{
  margin: 0px;
  display: inline-flex;
  align-items: center;
  max-width: unset !important;
}
.visitors-count-wrap h3.tvcp-size-of span {
  background-color: transparent !important;
  background: transparent;
  padding: 0px 10px;
  font-size: 18px;
  line-height: normal;
  height: auto;
}

.visitors-count-wrap .tvcp-container h2.tvcp-title {
  font-size: 12px;
  white-space: nowrap;
}
.visitors-count-wrap .tvcp-container h3.tvcp-size-of span:after{
  display: none;
}
/*visitor count*/


/**/