html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
table {
  border-collapse: collapse;
}
caption {
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
}
/*fonts*/
html,body{
  scroll-behavior: smooth;
}
#wrapper{
  min-width: 100%;
  min-height: 100%;
}
.container{
  width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}
body{
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #663300;
}
h1{
  font-size: 50px;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 20px;
}
h2{
  font-size: 50px;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 20px;
}
h3{
  font-size: 30px;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 15px;
}
h4{
  font-size: 20px;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 15px;
}
header .btn{
  min-width: 160px;
}
.btn {
  color: #fff;
  cursor: pointer;
  background: #663300;
  border: none;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 25px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  border-radius: 8px;
  min-width: auto;
  padding: 0 15px;
  position: relative;
}
.btn.active,
.btn:hover{
  background: #660000;
  color: #fff;
}
.btn_secondary{
  color: #330000;
  background: #f5d7cd;
  border:1px solid #cc9966;
}
.btn_secondary:hover{
  border-color: #660000;
}
.btn_2{
  background: #d0ad8f;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.btn_2 img{
  margin: 0 0 0 20px;
  transition: 0.4s all ease-in-out;
}
.btn_2:hover img{
  filter: brightness(0) saturate(100%) invert(98%) sepia(16%) saturate(0%) hue-rotate(15deg) brightness(107%) contrast(101%);
}
a{
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
a:hover,
a:active{
  text-decoration: none;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
ul,ol{
  list-style: none;
}
img{
  display: block;
  max-width: 100%;
}

header{
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 5px 0;
  background: #fff;
  transition: 0.4s all ease-in-out;
}
header.sticky {
  -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  top: 0;
}
.header_in{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo img{
  max-width: 270px;
  transition: 0.4s all ease-in-out;
}
header nav a{
  font-size: 20px;
  line-height: 1;
  color: #cc6600;
  position: relative;
}
.dropdown_btn img{
  filter: brightness(0) saturate(100%) invert(65%) sepia(85%) saturate(6245%) hue-rotate(19deg) brightness(97%) contrast(101%);
}
.dropdown_btn:after {
  content: '';
  width: 13px;
  height: 7px;
  background: url(../images/chevron_down.png) no-repeat center;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.dropdown_btn:hover:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.dropdown_menu{
  position: absolute;
  width: 300px;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.24);
  border:1px solid #cc6666;
  border-radius: 12px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s all ease-in-out;
}
.dropdown_menu ul{
  display: block;
  padding: 10px 0;
}
.dropdown_menu ul li{
  padding: 0 !important;
  margin: 0 !important;
}
.dropdown_menu a{
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 30px;
  display: block;
  color: #d27d2c;
}
.dropdown_menu a.active,
.dropdown_menu a:hover{
  color: #6f2e07;
  background: #ffcb6e;
}
header nav a.active,
header nav a:hover{
  color: #663300;
}
nav ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
nav ul li {
  margin: 0 20px;
  padding: 20px 0;
  position: relative;
}
nav ul li:hover .dropdown_menu{
  visibility: visible;
  opacity: 1;
}
/*menu toggle*/
.menu_toggle {
  position: relative;
  display:  inline-block;
  width: 30px;
  height: 30px;
  margin: 0 0 0 20px;
  display: none;
}
.menu_toggle span {
  margin: 0 auto;
  position: relative;
  top: 15px;
}
.menu_toggle span:before, .menu_toggle span:after {
  position: absolute;
  content: '';
}
.menu_toggle span, .menu_toggle span:before, .menu_toggle span:after {
  width: 100%;
  height: 2px;
  background-color: #663300;
  display: block;
}
.menu_toggle span:before {
  margin-top: 10px;
}
.menu_toggle span:after {
  margin-top: -10px;
}
/* --- btn --- */
.menu_toggle span {
  -webkit-transition-duration: 0s; -o-transition-duration: 0s; transition-duration: 0s;
  -webkit-transition-delay: 0.2s; -o-transition-delay: 0.2s; transition-delay: 0.2s;
}
.menu_toggle.active span {
  background-color: rgba(0,0,0,0.0);
  -webkit-transition-delay: 0.2s; -o-transition-delay: 0.2s; transition-delay: 0.2s;
}
.menu_toggle span:before {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; -o-transition-property: margin, transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; -o-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:before {
  margin-top: 0;
  -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s; -o-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.menu_toggle span:after {
  -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; -o-transition-property: margin, transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s; -o-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active span:after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s; -o-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}

.banner{
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}
/*.banner:before*/
.contact_wraper:before,
.banner_ip:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #330000;
  opacity: 0.4;
}
.banner_cnt{
  min-height: 880px;
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 150px;
}
.banner_cnt h1{
  margin-bottom: 30px;
}
.about_us{
  background: #f7ded7;
  position: relative;
  padding: 70px 0;
}
footer:before,
.me_about:before,
.spw_blk:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/shape.png) no-repeat center top / contain;
}
.about_us .container{
  position: relative;
  z-index: 1;
}
.sec_head{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
  max-width: 72%;
}
.sec_head img{
  margin: 0 0 50px;
}
.sec_head .btn{
  min-width: 170px;
}
.sec_head h2{
  margin-bottom: 20px;
}
.sec_head p{
  margin-bottom: 30px;
}
.abouts_list ul{
  display: flex;
  flex-wrap: wrap;
}
.abouts_list ul li{
  flex:0 0 calc(100% / 3 - 30px);
  max-width: calc(100% / 3 - 30px);
  margin: 0 15px;
  background: #fff;
  border:1px solid #ffcc99;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.abouts_list ul li img{
  margin: 0 20px 0 0;
}
.spirtual_journey{
  display: flex;
}
.sj_rht,
.sj_lft{
  width: 100%;
  min-height: 580px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}
.sj_rht{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.sj_cnt{
  max-width: 720px;
  padding: 70px;
}
.sj_cnt p{
  margin-bottom: 30px;
}
.events{
  padding: 0;
  max-width: 100vw;
  overflow: hidden;
}
.events_list{
  margin: 0 -15px;
  display: flex;
}
.event_card{
  flex:0 0 calc(28% - 10px);
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}
.event_card h3{
  font-size: 20px;
  margin-bottom: 5px;
}
.event_card2{
  flex:0 0 calc(44% - 10px);
}
.event_card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all ease-in-out;
}
.gallery_img:hover  img{
  transform: scale(1.1);
}
.event_cnt{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
/*  background: rgba(0, 0, 0, 0.3);*/
  color: #fff;
  padding: 30px;
}
.event_card:nth-child(2n) .event_cnt{
  justify-content: flex-end;
}
.our_board{
  background: #f7ded7;
}
.tab_nav{
  display: flex;
  margin-bottom: 20px;
}
.tab_nav li{
  margin: 0 20px 0 0;
}
.tab_nav li .btn{
  padding: 0 20px;
  color: rgba(102, 51, 0, 0.6);
}
.tab_nav li .btn.active{
  color: #663300;
  background: #f5d7cd;
  border: 1px solid #cc9966;
}
.tab_nav li .btn:hover{
  color: #fff;
}
.tab_content{
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
  position: relative;
  grid-auto-rows: 370px;
}
.horizontal {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.horizontal1 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 1;
  grid-row: span 1;
}
.img_placeholder img,
.horizontal img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img_card{
  display: flex;
  flex-direction: column;
  position: relative;
}
.img_placeholder{
  height: 100%;
}
.img_cnt {
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 0 0;
  color: #663300;
  background: #f7ded7;
}
.img_cnt h4{
  font-size: 20px;
  line-height: 1;
  margin: 0 0 5px;
}
.our_board{
  padding: 70px 0;
}
.tab_trigger{
  display: none;
}
.tab_trigger:first-child{
  display: block;
}
.gallery_wrapper{
  padding: 70px 0 0;
}
.grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(15%, 1fr));
/*  grid-auto-rows: 340px;*/
  grid-auto-flow: dense;
}
.grid-item {
    overflow: hidden;
}
.horizontal_2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 1;
  grid-row: span 1;
}
.gallery_img{
  display: block;
  overflow: hidden;
}
.gallery_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all ease-in-out;
}
.vertical {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

footer{
  background: #f7ded7;
  position: relative;
  padding: 60px 0 30px;
}
footer h4{
  font-size: 20px;
  line-height: 1;
}
footer a{
  color: #663300;
}
footer p{
  font-size: 14px;
  line-height: 22px;
}
.footer_logo{
  display: inline-block;
  margin-bottom: 30px;
}
.footer_in{
  display: flex;
  justify-content: space-between;
}
.footer_cnt{
  flex:0 0 50%;
  padding: 0 20% 0 0;
}
.sm ul{
  display: flex;
  align-items: center;
}
.sm li {
  margin: 0 0 0 10px;
}
.sm a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: #8c491d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
}
.sm a svg {
  width: 20px;
  height: 20px;
  fill: #ffcccc;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
footer .container{
  position: relative;
  z-index: 1;
}
.sm a:hover{
  background: #660000;
}
.sm a:hover svg{
  fill: #fff;
}
.footer_links li{
  margin-bottom: 10px;
}
footer a:hover{
  color: #ff8000;
}
.poster {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.poster img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video_blk{
  position: relative;
}
.video_blk video, .video_blk iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.play {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
.copy_right {
  max-width: 45%;
  margin-top: -50px;
}
.copy_right p{
  font-size: 16px;
  margin-bottom: 10px;
}
.design{
  color: #993333;
  font-size: 14px;
  margin: 0;
}
.header_rht{
  display: flex;
  align-items: center;
}
.banner_ip{
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 100px 0 50px;
  color: #fff;
  position: relative;
}
.banner_ip:before{
  opacity: 0.2;
}
.banner .container{
  position: relative;
  z-index: 1;
}
.title_tag:before{
  content: '';
  width: 30px;
  height: 30px;
  background: url(../images/favicon.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.title_tag{
  font-size: 20px;
}
.abu_cnt p{
  margin-bottom: 20px;
}
.form_group {
  margin-bottom: 10px;
}
.form_control {
  width: 100%;
  display: block;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  height: 54px;
  padding: 0 20px;
  font-family: 'Arial';
  font-size: 16px;
  line-height: 52px;
  font-weight: 500;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.form_control:focus{
  outline: none;
  border: 1px solid #663300;
}
.form_control.btn{
  min-width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  max-width: 110px;
  border-radius: 0;
  background:#4c6fff;
}
.form_control.btn:hover{
  background:#0ca4e3;
}
form{
  position: relative;
}
.message{
  position: absolute;
  left: 0;
  bottom: -45px;
  padding: 15px 0;
  display: block;
  width: 100%;
  text-align: left;
  color: #000;
}
.output_message {
  color: #000;
}
b,strong{
  font-weight: 600;
}

#form_Submit{
  width: 100%;
  display: block;
  font-size: 18px;
}
.input_group .form_control:focus,
.form_control:focus{
  outline: none;
  border-color: #663300; 
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: 'Arial';
  font-weight: 500;
  color: #777;
}
::-moz-placeholder { /* Firefox 19+ */
  font-family: 'Arial';
  font-weight: 500;
  color: #777;
}
:-ms-input-placeholder { /* IE 10+ */
  font-family: 'Arial';
  font-weight: 500;
  color: #777;
}
:-moz-placeholder { /* Firefox 18- */
  font-family: 'Arial';
  font-weight: 500;
  color: #777;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number]{
    -moz-appearance: textfield;
}
label.error {
    display: none !important;
}
.form_control.error{
  border-color: red !important;
  color: red;
}
label.error{
  display: none !important;
}
.form_control.error::-webkit-input-placeholder{
  color: red;
}
.form_control.error::-moz-placeholder{
  color: red;
}
.form_control.error:-ms-input-placeholder{
  color: red;
}
.form_control.error::-ms-input-placeholder{
  color: red;
}
.form_control.error::placeholder{
  color: red;
}
textarea.form_control{
  height: 162px;
  resize: none;
}
button:disabled{
  opacity: 0.6;
}
.form_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.w_50{
  flex: 0 0 49%
}
.w_100{
  flex: 0 0 100%
}
.form_btn{
  margin-left: auto;
}

.banner2{
  min-height: 590px;
  display: flex;
  align-items: center;
}
.banner2 .container,
.banner2 .banner_cnt{
  height: 100%;
}
.banner2 .banner_cnt{
  min-height: auto !important;
  max-width: 50%;
  padding: 0;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.banner2:before{
  background: #000;
  opacity: 0.3;
}
.sec_head2{
  max-width: 71%;
}
.page_about_cnt{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pabc_img{
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 30px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
}
.pabc_img img{
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.pac_lft,
.pac_rht{
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}
.page_about_cnt p{
  margin-bottom: 30px;
}
.pac_imgs{
  display: flex;
  justify-content: space-between;
  align-content: space-between;
}
.pci{
  flex: 0 0 390px;
  height: 370px;
  overflow: hidden;
  border-radius: 10px;
  background: #663300;
}
.pci img{
  width: 100%;
  border-radius: 10px;
}
.pci:nth-child(2){
  position: relative;
  margin-top: 260px;
  left: -80px;
  z-index: -1;
}
i{
  font-style: italic;
}
.our_features{
  background: #f3d4d1;
  padding: 70px 0;
}
.pac_imgs2 {
  justify-content: space-between;
}
.pac_imgs2 .pci{
  flex: 0 0 345px;
  height: 420px;
}
.pci img{
  min-height: 100%;
}
.pac_imgs2 .pci:nth-child(2){
  position: static;
  margin: 160px 0 0;
}
.page_about_cnt .btn_2 {
  margin-top: 40px;
}
.gw_ah{
  border-top:1px solid #cc9966;
}
.banner .banner_cnt h1{
  margin: 0;
}
.swa_img{
  border:10px solid #fff;
}
.spw_blk{
  background: #fff;
}
.spw_in {
  display: flex;
  justify-content: center;
  max-width: 1260px;
  margin: auto;
}
.spwc_card{
  flex: 0 0 420px;
  max-width: 420px;
  height: 500px;
  transition: 0.4s all ease-in-out;
  position: relative;
  overflow: hidden;
  background: #000;
}
.spwc_card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all linear;
}
.spwc_card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
/*  transform: scale(1.1);*/
}
.spwc_card:hover img{
  transform: scale(1.1);
}
.spwc_card.open{
  z-index: -1;
}
.events_list  > .event_card{
  height: 590px;
}
.event_card .event_card {
  height: 50%;
  display: flex;
  flex: 0 0 auto;
  width: 100%;
}
.spwc_card .event_cnt{
  justify-content: flex-end;
  transition: 0.4s all linear;
  padding: 20px;
}
.events_list .event_card:hover > img{
  transform: scale(1.1);
}
.spwc_card:hover .event_cnt{
/*  background: rgba(0, 0, 0, 0.5);*/
}
.spwc_card .event_cnt h3{
  font-size: 20px;
  font-weight: bold;
  transition: 0.4s all linear;
  margin-bottom: 5px;
}
.spwc_card:hover .event_cnt h3{
  color: #ffff99;
}

.event_card h3 small{
  font-size: 70%;
}
.videe_banner video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videe_banner .banner_cnt{
  padding: 0 !important;
}
.event_card,
.spwc_card{
  position: relative;
}
.event_cnt{
  z-index: 1;
}
.event_card:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40%;
  background: linear-gradient(#000, transparent);
  z-index: 1;
}
.event_card:nth-child(2):before,
.spwc_card:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  height: 40%;
  background: -o-linear-gradient(bottom, #000, transparent);
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
  background: linear-gradient(to top, #000, transparent);
  z-index: 1;
}

.event_card:nth-child(3) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.event_card:nth-child(3):before{
  display: none;
}
.our_board2{
  background: #fff;
}
.our_board2 .img_cnt{
  background: #fff;
}
.img_grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin:30px 0 0;
}
.img_grid img{
  border-radius: 12px;
}
.me_about{
  position: relative;
  background: #fff;
}
.me_about .pac_imgs{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.me_about .page_about_cnt{
  flex-direction: row-reverse;
}
.me_about .pac_imgs .pci{
  position: static;
  margin: 0;
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  border
}
.me_about .pci:nth-child(2){
  position: relative;
  left: 0;
  bottom: -50px;
}
.events2{
  background: #f7ded7;
  padding: 70px 0;
}
.pic2{
  height: auto;
}
.me_about .pac_rht2 .pac_imgs{
  display: block;
}
.pac_rht2 .pci{
  height: auto;
  float: left;
  padding: 10px;
  position: static;
  background: #fff;
}
.me_about h2,
.me_about h3,
.me_about h4{
  color: #bc5f04;
}
.me_about h4 span{
  font-size: 24px;
}
.gw2{
  padding: 100px 0;
}
.contact_wrapper{
  padding: 70px 0;
}
.contact_row h2{
  text-align: center;
  margin-bottom: 20px;
}
.form_Submit .btn{
  width: 200px;
  margin: 30px auto 0;
  display: block;
}
.banner3 .banner_cnt{
  padding: 150px 0 0;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.me_about .page_about_cnt.pac2{
  align-items: center;
  flex-direction: row;
}
.pac2 .pac_lft,
.pac2 .pac_rht{
  flex: 0 0 auto;
  max-width: none;
  gap: 50px;
}
.pac2 .pac_lft{
  max-width: calc(100% - 30%);
}
.ai2{
  background: #fbf4e4;
  padding: 70px 0 0;
  text-align: center;
}
.ai2 h2{
  margin-bottom: 20px;
}
label {
  display: block;
  margin: 0 0 10px;
}
.el_blk{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.events_card{
  flex: 0 0 calc(50% - 40px);
  max-width: calc(50% - 40px);
  margin: 0 20px 20px 20px;
  background: #fff5d9;
  border-radius: 15px;
  color: #000;
  display: flex;
  gap: ;
  padding: 20px;
  border:1px solid #faa21b;
  transition: 0.4s all ease-in-out;
}
.events_card:hover{
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.event_img{
  flex: 0 0 261px;
  max-width: 261px;
  height: 261px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.event_img img{
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.event_title{
  margin-bottom: 40px;
}
.events_card h4{
  line-height: 1.3;
  font-weight: bold;
  color: #000;
  margin: 0 0 10px;
}
.event_title p{
  font-weight: 600;
}
.events_card ul{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.events_card h6{
  font-weight: 600;
  display: block;
}
.event_info {
  width: 100%;
  padding: 0 0 0 20px;
}
.events_wrapper h3{
  color: #581b07;
}
.events_wrapper{
  padding-bottom: 0 !important;
}
.el_blk2{
  margin: 30px 0 0;
}