@font-face {
    font-family: 'Cambria';
    src: url('../fonts/Cambria.woff2') format('woff2'),
        url('../fonts/Cambria.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --msa-font-body: "Montserrat", sans-serif;
  --msa-font-heading: 'Cambria';
  --msa-primary-color: #CF7F43;
  --msa-primary-color-h: #995d2e;
  --msa-secondary-color: #FFB515;
  --msa-white-color: #ffffff;
  --msa-black-color: #000000;
  --msa-heading-color: #2C2F47;
  --msa-text-color: #120700;
  
}

body {
  	margin: 0px;
	padding: 0px;
  	font-family: var(--msa-font-body);  
}

a {
	text-decoration: none;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

a:hover {
	text-decoration: none;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	cursor: pointer
}

a:focus, a:hover {
	text-decoration: none
}

button:focus:not(:focus-visible) {
	outline: 0px;
	box-shadow: none;
}
.form-control:focus {
	box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--msa-font-heading);
	margin: 0;
	padding: 0;
}

p {
	font-family: var(--msa-font-body);
	font-weight: 400;
	margin: 0;
	padding: 0;
}

/* Header Navigation Style */

.navbar {
	padding: 1rem 2rem;
}


.navbar .nav-item {
	padding: 7px 22px;
}

.navbar-brand img {
	width: 115px;
}

.navbar .nav-item .nav-link {
	color: var(--msa-white-color);
  position: relative;
  padding: 0;
  font-size: 18px;
}

.navbar .nav-item .nav-link::after {
  height: 2px;
  width: 0;
  position: absolute;
  left: 0px;
  bottom: -8px;
  content: "";
  background-color: var(--msa-primary-color);
  -moz-transition: all .6s ease-in-out;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  border: 0px;
}

.navbar .nav-item .nav-link:hover::after, .navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
	color: var(--msa-primary-color);
}

.navbar .nav-item .nav-link i {
  font-size: 14px;
  padding-left: 4px;
}


.profile_circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px 0 15px;
}

.profile_circle svg {
  stroke: var(--msa-primary-color);
}

.profile_circle:hover {
  background: var(--msa-primary-color);
}

.profile_circle:hover svg {
  stroke: var(--msa-white-color);
}


.navbar .join_btn {
	font-family: var(--msa-font-heading);
	font-weight: 400;
	font-size: 22px;
	background-color: var(--msa-primary-color);
  border: 2px solid var(--msa-primary-color);
	color: var(--msa-white-color);
	padding: 0.4rem 1.75rem;
}

.navbar .join_btn:hover {
	background-color: transparent;  
  border: 2px solid var(--msa-white-color);
}


.header_sticky .navbar {
	background-color: #000000 !important;
	z-index:999;	
	-webkit-box-shadow:0px 5px 6px 0px rgba(0,0,0,0.2);
	-moz-box-shadow:0px 5px 6px 0px rgba(0,0,0,0.2);
	box-shadow:0px 5px 6px 0px rgba(0,0,0,0.2);
	-moz-transition:all .6s ease-in-out;
	-webkit-transition:all .6s ease-in-out;
	transition:all .6s ease-in-out;
	padding: 0.5rem 1.5rem;
}

.header_sticky .navbar-brand img {
  width: 90px;
}


.dropdown .dropdown-menu {
	border-radius: 0;
	background-color: rgba(207, 127, 67, 0.6);
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
  margin-top: 8px;
  min-width: 13rem;
}

.dropdown .dropdown-menu .nav-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 12px;
}

.dropdown .dropdown-menu .nav-item:last-child {
	border-bottom: none;
}

.dropdown .dropdown-menu .nav-link {
	color: var(--msa-white-color);
}

.dropdown .dropdown-menu .nav-link::after {
  display: none;
}

.dropdown .dropdown-menu .nav-link:hover, .dropdown .dropdown-menu .nav-link.active {
	color: var(--msa-black-color);
  font-weight: 700;
}

.dropdown:hover .dropdown-menu {
	display: block;	
}

.mobile_menu {
	max-width: 300px;
}

.mobile_menu .offcanvas-header {	
	padding: 0.75rem;
  background-color: var(--msa-primary-color);
}

.mobile_menu .navbar-brand img {
	width: 120px;
}

.mobile_menu .offcanvas-body {
	padding: 0.75rem;
}

.mobile_menu .nav-item {
	border-bottom: 1px solid #7700151f;	
}

.mobile_menu .nav-item .nav-link {
	padding: 0.75rem 0;
}


.mobile_menu .dropdown:hover .dropdown-menu {
	display: none;	
}

.mobile_menu .dropdown.active .dropdown-menu {
  display: block;
  background-color: var(--msa-white-color);
  border: none;
  border: none;
  padding: 0 15px;
  margin: 0;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.mobile_menu .dropdown.active .dropdown-menu .nav-link {
  color: var(--msa-black-color);
}

.mobile_menu .dropdown.active .dropdown-menu .nav-link:hover, .mobile_menu .dropdown.active .dropdown-menu .nav-link.active {
  color: var(--msa-primary-color);
}

.mobile_menu .dropdown.active .dropdown-menu .nav-item {
  border-bottom: 1px solid #7700151f;
}

.mobile_menu .dropdown.active .dropdown-menu .nav-item:last-child {
  border-bottom: 0;
}

.mobile_menu .dropdown.active i {
  transform: rotate(180deg);
  top: 5px;
  position: relative;
}

/* .mobile_menu .dropdown-menu.show {	
	display: block !important;
	padding: 0rem 1rem;
} */

.mobile_menu .join_btn {
	font-family: var(--msa-font-heading);
	font-weight: 400;
	font-size: 22px;
	background-color: var(--msa-primary-color);
  border: 2px solid var(--msa-primary-color);
	color: var(--msa-white-color);
	padding: 0.4rem 1.75rem;
}

.mobile_menu .join_btn:hover {
	background-color: var(--msa-primary-color-h);  
  border: 2px solid var(--msa-primary-color-h);
}

.mobile_menu .profile_circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--msa-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px 0 15px;
  position: relative;
  top: 7px;
}

.mobile_menu .profile_circle svg {
  stroke: #fff;
}

.mobile_menu .profile_circle:hover {
  background: var(--msa-primary-color-h);
}


/* Hero Banner CSS */

.banner_wrap {
	width: 100%;
	height: 100vh;
}

.banner_wrap .image_box {
	overflow: hidden;
	position: relative;
}

.banner_wrap .image_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.banner_wrap .image_box::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--msa-text-color);
  background: -webkit-linear-gradient(101deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(101deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(101deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#120700", endColorstr="#00000000", GradientType=0);
}

.banner_content {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column wrap;
	z-index: 2;
	color: var(--msa-white-color);
}

.banner_content .inner_content {
  padding-left: 20%;
  padding-top: 25%;
}

.banner_content .hero_kicker {
  color: var(--msa-white-color);
  font-family: var(--msa-font-heading);
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 10px;
}

.banner_content .hero_script {  
  font-family: "Corinthia", cursive;
  font-weight: 400;
  color: var(--msa-secondary-color);
  font-size: 175px;
  line-height: 0.8;
  margin: -7px 0;
}

.banner_content .hero_title {
  color: var(--msa-white-color);
  font-family: var(--msa-font-heading);
  font-weight: normal;
  font-size: 78px;
  line-height: 0.92;
}

.banner_content .hero_copy {
  max-width: 700px;
  color: var(--msa-white-color);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.6;
  margin: 30px 0 70px;
}

.banner_content .banner_btn {
	font-family: var(--msa-font-heading);
	font-weight: 400;
	font-size: 22px;
	background-color: transparent;
  border: 2px solid var(--msa-white-color);
	color: var(--msa-white-color);
	padding: 0.75rem 1rem;
  width: 266px;
  margin-right: 20px;
}

.banner_content .banner_btn:hover {
	background-color: var(--msa-primary-color);  
  border: 2px solid var(--msa-primary-color);
}

.banner_wrap .swiper-button-next, .banner_wrap .swiper-button-prev {
	width: 37px;
	height: 37px;
	background-color: transparent;
	border-radius: 50%;
  border: 1px solid var(--msa-white-color);	
	color: var(--msa-primary-color);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
  top: unset;
  bottom: 135px;
}

.banner_wrap .swiper-button-prev::after {
  content: '\f060';
  font-family: "Font Awesome 6 Pro";
}

.banner_wrap .swiper-button-next::after {
  content: '\f061';
  font-family: "Font Awesome 6 Pro";
}

.banner_wrap .swiper-button-prev {
  left: auto;
  right: 235px;
}

.banner_wrap .swiper-button-next {
  right: 175px;
}

.banner_wrap .swiper-button-next:hover, .banner_wrap .swiper-button-prev:hover {
	background-color: var(--msa-primary-color);
	color: var(--msa-white-color);
  border: 1px solid var(--msa-primary-color);	
}

.banner_wrap .swiper-button-next::after, .banner_wrap .swiper-button-prev::after {
	font-size: 15px;
}

.custom_container {
  max-width: 1440px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section_space {
  padding: 6rem 0;
}

.section_intro {  
  position: relative;
}

.section_tagline {
  position: absolute;
  top: -1.75rem;
  left: 0;  
  width: 100%;
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-size: 295px;
  line-height: 1;
  color: rgba(181, 181, 181, 0.10);
  pointer-events: none;
}

.section_title {
  font-family: var(--msa-font-heading);
  font-weight: normal;
  font-size: 42px;
  line-height: 2;
  margin-bottom: 1rem;
  color: var(--msa-black-color);
}

.section_copy {
  font-size: 22px;
  line-height: 1.6;
  color: var(--msa-text-color);
  max-width: 850px;
  margin: 0 auto;
}


.event_card .image_box {
  width: 100%;
  height: 330px;
  overflow: hidden;
  position: relative;
}


.event_card .image_box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.event_caption {
  position: absolute;
  bottom: 0px;
  background: #1C1612;
  padding: 0.7rem 1.4rem;
  width: 100%;
}

.event_caption h3 {
  margin: 0;
  font-family: var(--msa-font-heading);
  color: #F2C44E;
  font-size: 22px;
}

.event_caption h3 span {
  font-size: 16px;
  color: #D5864B;
}

.event_body {
  padding: 1.5rem 0 0;
}

.event_body p {
  font-size: 16px;
  line-height: 1.3;
  color: #000000;
}

.meta_row {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 1.5rem;  
}

.meta_row span {
  font-family: var(--msa-font-heading);
  font-weight: normal;
  font-size: 16px;
  line-height: 1.2;
  color: var(--msa-black-color);
  position: relative;
}

.meta_row span img {
  margin-right: 5px;
}

.meta_row span::after {
  position: absolute;
  content: '';
  top: 1px;
  right: -9px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #A3A3A3;  
}

.meta_row span:last-child::after {
  display: none;
}

.msa_cta_btn {
	font-family: var(--msa-font-heading);
	font-weight: 400;
	font-size: 20px;
	background-color: transparent;
  border: 1px solid var(--msa-primary-color);
	color: var(--msa-primary-color);
	padding: 0.55rem 1.2rem; 
  margin: 20px 0 0; 
}

.msa_cta_btn:hover {
	background-color: var(--msa-primary-color);
  color: var(--msa-white-color);
}

.msa_cta_btn i {
  padding-left: 15px;
}

.middle_event_card {
  display: flex;
  flex-direction: column;
}

.middle_event_card a {
  order: 1;
  margin-top: 50px;  
}

.middle_event_card a .image_box {
  height: 360px;
}

.middle_event_card .event_body {
 padding: 0; 
}

.middle_event_card .meta_row {
  margin-top: 5px;
}

.event_card a:hover .image_box img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.about_section {
  background: #F5F3ED;
}

.about_copy_side {
  background: #F5F3ED;
}

.about_panel {
  position: relative;
  max-width: 720px;
  min-height: 100%;
  margin-left: auto;
  padding: 0rem 4rem 0rem 2rem;
  display: flex;
  align-items: center;
}

.about_panel .section_title {
  font-size: 36px;
}

.decor_outline {
  position: absolute;
  right: -10px;
  bottom: 0;  
}

.sub_copy {
  max-width: 500px;
  font-family: var(--msa-font-body);
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
  color: var(--msa-text-color);
}

.about_panel p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--msa-black-color);
}

.about_panel .msa_cta_btn {
  margin-top: 50px;
}

.shop_section {
  background: #fff;
}

.shop_fade_bg {
  position: absolute;
  inset: 0;  
  background-image: 
    linear-gradient(-90deg, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0.2) 99%),
    var(--shop-bg-image);
  background-position: left 0 top 55%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  background-attachment: fixed;  
}

.shop_space {
  margin-top: 75px;
}

.main_shop_image {
  width: 100%;
  max-width: 780px;
  display: block;
}

.shop_copy {
  max-width: 550px;
  padding-left: 30px;
}

.shop_copy p {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--msa-text-color);
  margin-bottom: 45px;
}

.shop_copy .msa_cta_btn {
  margin-top: 80px;
}

.signature_section {
  background-image: var(--signature-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10rem 0;
  background-attachment: fixed;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: #0A0400;
  background: -webkit-linear-gradient(90deg, rgba(10, 4, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -moz-linear-gradient(90deg, rgba(10, 4, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(90deg, rgba(10, 4, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0A0400", endColorstr="#000000", GradientType=1);
}

.signature_copy {
  position: relative;
  max-width: 560px;
  min-height: 100%;
  margin-left: auto;
  padding: 0rem 4rem 0rem 2rem;
  display: flex;
  align-items: center;
  z-index: 9;
}

.signature_copy .section_title {
  color: var(--msa-secondary-color);
}

.signature_copy p {
  font-size: 22px;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 75px;
}

.signature_wrap {
  margin-right: 45px;
  padding-left: 45px;
  padding-top: 0;
  padding-bottom: 50px;
}

.signature_card {
  background: rgba(0, 0, 0, 0.5);
  width: 465px;
  height: 575px;
  overflow: hidden;
  position: relative;
}

.signature_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signature_card_body {
  position: absolute;
  bottom: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  background: #000508;
  background: -webkit-linear-gradient(90deg, rgba(0, 5, 8, 1) 28%, rgba(0, 0, 0, 0.01) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 5, 8, 1) 28%, rgba(0, 0, 0, 0.01) 100%);
  background: linear-gradient(90deg, rgba(0, 5, 8, 1) 28%, rgba(0, 0, 0, 0.01) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000508", endColorstr="#000000", GradientType=1);
}

.signature_card_body h3 {
  font-family: var(--msa-font-heading);
  font-weight: normal;
  font-size: 32px;
  color: #fff;
  margin-bottom: 0.75rem;
}

.signature_card_body p {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.45;  
}


.msa_cta_btn_white {
	font-family: var(--msa-font-heading);
	font-weight: 400;
	font-size: 20px;
	background-color: transparent;
  border: 1px solid var(--msa-white-color);
	color: var(--msa-white-color);
	padding: 0.55rem 1.2rem; 
  margin: 20px 0 0; 
}

.msa_cta_btn_white:hover {
	background-color: var(--msa-primary-color);  
  border: 1px solid var(--msa-primary-color);
  color: var(--msa-white-color);
}

.msa_cta_btn_white i {
  padding-left: 15px;
}

.signature_wrap .swiper-button-next, .signature_wrap .swiper-button-prev {
	width: 37px;
	height: 37px;
	background-color: transparent;
	border-radius: 50%;
  border: 1px solid var(--msa-white-color);	
  top: unset;
  bottom: 0;
	color: var(--msa-primary-color);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;  
}

.signature_wrap .swiper-button-prev::after {
  content: '\f060';
  font-family: "Font Awesome 6 Pro";
}

.signature_wrap .swiper-button-next::after {
  content: '\f061';
  font-family: "Font Awesome 6 Pro";
}

.signature_wrap .swiper-button-prev {
  left: auto;  
  right: 100px;
}

.signature_wrap .swiper-button-next {
  right: 40px;
}

.signature_wrap .swiper-button-next:hover, .signature_wrap .swiper-button-prev:hover {
	background-color: var(--msa-primary-color);
	color: var(--msa-white-color);
  border: 1px solid var(--msa-primary-color);	
}

.signature_wrap .swiper-button-next::after, .signature_wrap .swiper-button-prev::after {
	font-size: 15px;
}

.member_section .section_tagline {
  font-size: 375px;
  text-align: center;
  top: 3rem;
}

.member_space {
  margin-top: 75px;
}

.member_photo_wrap {
  text-align: center;  
}

.member_photo {
  width: 100%;
  max-width: 520px;
}

.member_copy {
  max-width: 530px;
}

.testimonial_text {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--msa-text-color);
}

.member_name {
  font-size: 20px;
  font-weight: 700;
  color: var(--msa-text-color);
  margin-top: 2.2rem;
}


.member_name span {
  font-size: 18px;
  color: #868584;
}

.testimonial_wrap {
  padding: 50px 0;
}

.testimonial_wrap .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #D9D9D9;	
	opacity: 1;
}

.testimonial_wrap .swiper-pagination {
	bottom: 0rem;
  text-align: left;
}

.testimonial_wrap .swiper-pagination-bullet-active {
	background-color: #9B5122;	
}

.articles_section {
  background-image: linear-gradient(90deg,rgba(10, 4, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%),
    var(--articles-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.articles_section.section_space {
  padding: 4rem 0 6rem;
}

.articles_section .section_title {
  color: var(--msa-secondary-color);
}

.article_card .image_box {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  display: block;  
}

.article_card .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.article_card:hover .image_box img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.article_card_body {
  background: #d48745;
  padding: 1.4rem 1.6rem 1.6rem;
}

.article_card_body h3 {
  font-family: var(--msa-font-heading);
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #fff;
}


.article_card_body p {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.article_card_body h3 a, .article_card_body p a {
  color: var(--msa-white-color);
}

.article_card_body .meta_row span {
  color: var(--msa-white-color);
}

.article_card_body .meta_row span:first-child::after {
  background-color: var(--msa-white-color);
}


.gallery_section {
  position: relative;
}

.gallery_section .experience_gallery {
	margin: 50px 0 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}





.gallery_section .experience_gallery .image_box {
	width: 100%;
	height: 330px;
	overflow: hidden;
	position: relative;		
}

.experience_gallery > a.gallery_box:nth-child(3n + 1) {
  grid-row: span 2;
}

.experience_gallery > a.gallery_box:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

.experience_gallery > a.gallery_box:nth-child(3n + 1) .image_box{
  height: 694px;
}

.gallery_section .experience_gallery .image_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gallery_section .experience_gallery .image_box .overlay_img {
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	height: 100%;
	width: 100%;
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	-o-transition: all .6s ease 0s;
	transition: all .3s ease 0s;
	opacity: 0;
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span {
	width: 70px;
	height: 70px;
	border: 1px solid var(--msa-white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	-o-transition: all .6s ease 0s;
	transition: all .3s ease 0s;
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span:hover {
	border-color: var(--msa-primary-color);
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span svg {
	width: 22px;
	fill: var(--msa-white-color);
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span:hover svg {
	fill: var(--msa-primary-color);
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span span.play_icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.8);	
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	-o-transition: all .6s ease 0s;
	transition: all .3s ease 0s;
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span span.play_icon svg {
	fill: #595757;
	width: 22px;
	position: relative;
	left: 2px;
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span:hover span.play_icon {
	background-color: var(--msa-primary-color);
	border: 1px solid var(--msa-primary-color);
}

.gallery_section .experience_gallery .image_box .overlay_img .icon_box span:hover span.play_icon svg {
	fill: var(--msa-white-color);
}

.gallery_section .experience_gallery a:hover .image_box .overlay_img {
	opacity: 1;
}

.gallery_wrap {
  padding: 0px 0 70px;
  margin: 0 30px;
}

.gallery_wrap .swiper-pagination-progressbar {
  height: 2px;
  background: #D9D9D9;
  bottom: 0px;
  top: unset;
  width: 85%;
}

.gallery_wrap .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #7C7C7C;
}

.gallery_section .msa_cta_btn {
  position: absolute;
  right: 75px;
  bottom: 75px;  
}

.lg-outer .lg-thumb-outer, .lg-toolbar {
	visibility: hidden;
}

.lg-object.lg-image {
	border-radius: 0px;
}

.lg-backdrop {
	background-color: rgba(0, 0, 0, 0.8);
}

.lg-next, .lg-prev {
	top: unset;
	bottom: -80px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 37px;
	height: 37px;
	border-radius: 50%;
	background-color: transparent;
  border: 1px solid var(--msa-primary-color);
	display: flex;
	align-items: center;
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	-o-transition: all .6s ease 0s;
	transition: all .3s ease 0s;
}

.lg-next:hover, .lg-prev:hover {
	background-color: var(--msa-primary-color);
}

.lg-prev {
	right: 50px;
}

.lg-next {
	left: 50px;
}

.lg-next::before {
	content: '\f061';  
  font-family: "Font Awesome 6 Pro";	
	display: block;
	font-size: 15px;
	position: relative;
  left: 0;
}

.lg-prev::after {
	content: '\f060';
  font-family: "Font Awesome 6 Pro";	
	display: block;
	font-size: 15px;
	position: relative;
  left: 0;
}

.mailing_section {
  padding: 7rem 0 0;
  background: #fff;
}

.mailing_box {
  position: relative;
  background: #F5F3ED;
  padding: 6rem 3rem;
  bottom: 100px;
}

.mailing_box .section_title {
  margin-bottom: 0;
}

.mailing_box .section_copy {
  max-width: 900px;
}

.mailing_form {
  max-width: 980px;
  margin: 0 auto;
}

.mailing_form .form-control {
  min-height: 86px;
  border: 1px solid #A3A3A3;
  font-size: 22px;
  padding-left: 1.8rem;
}

.mailing_form .form-control:focus {
  border-color: var(--msa-primary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 135, 69, 0.15);
}


.mailing_form .signup_btn {
	font-family: var(--msa-font-heading);
	font-weight: 400;
	font-size: 20px;
	background-color: var(--msa-primary-color);
  border: 1px solid var(--msa-primary-color);
	color: var(--msa-white-color);
	padding: 0.55rem 1.2rem; 
  margin: 0; 
  min-height: 86px;
}

.mailing_form .signup_btn:hover {
	background-color: var(--msa-primary-color);  
  border: 1px solid var(--msa-primary-color);
}

.mailing_side_glass {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: auto;
  z-index: 99;
}

.mailing_side_man {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: auto;
  z-index: 99;
}

.site_footer {
  background: #000;
}

.footer_main {
  padding: 4rem 2rem;
}

.footer_logo {
  width: 164px;
}

.footer_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer_links li {
  margin-bottom: 0.8rem;
}

.footer_links a {
  color: var(--msa-white-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.footer_links a:hover,
.footer-bottom a:hover {
  color: var(--msa-primary-color);
}

.footer_bottom {
  background: #303030;
  padding: 1.3rem 0;
}

.footer_bottom p,
.footer_bottom a {
  color: var(--msa-white-color);
  text-decoration: none;
  font-size: 14px;
}

.social_links .icon_box {
  width: 19px;
  height: 19px;
  display: inline-block;
  border-radius: 50%;
  background: var(--msa-white-color);
  color: var(--msa-black-color);
  vertical-align: middle;
  text-align: center;
  margin-right: 5px;
}

.social_links .icon_box i {
  font-size: 14px;
  position: relative;
  top: -1px;
}

.social_links .icon_box:nth-of-type(2) i {
  top: 0;
}

/* Inner Page CSS Start */

.innerbanner_sec .innerbanner_wrap {
	height: 650px;
	position: relative;
}

.innerbanner_sec .innerbanner_wrap .image_box {  
  position: relative;
}

.innerbanner_sec .innerbanner_wrap .image_box img {
	object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.innerbanner_sec .banner_content .inner_content {
  padding-left: 15%;
  padding-top: 10%;
}

.innerbanner_sec .hero_title {
  line-height: 1.1;
}

.innerbanner_wrap .image_box::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--msa-text-color);
  background: -webkit-linear-gradient(99deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(99deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(99deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#120700", endColorstr="#000000", GradientType=0);
}

.innerbanner_wrap .image_box.gradient_change::before {	
	background: var(--msa-text-color);
  background: -webkit-linear-gradient(99deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(99deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(99deg, rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#120700", endColorstr="#000000", GradientType=0);
}

.elevating_sec.section_space {
  padding-top: 10rem;
}

.elevating_sec .shop_fade_bg {
  background-image: 
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 32%),
    var(--shop-bg-image);
  background-position: right;  
  background-size: 35%;
}

.elevating_sec .section_tagline {
  font-size: 360px;
  text-align: left;
  top: -9rem;
}
.elevating_sec .section_copy {
  max-width: 800px;
}

.elevating_sec .img_box {
  width: 625px;
  height: 720px;
  overflow: hidden;
}

.elevating_sec .main_shop_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.elevating_sec .shop_copy {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 40px;
}

.elevating_sec .shop_copy p {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 40px;
}



.story_section p {  
  font-size: 16px;
  line-height: 1.8;
  color: var(--msa-white-color);
  max-width: 615px;
  margin-top: 40px;
}

.vision_section .shop_fade_bg {
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0.2) 99%), var(--shop-bg-image);
  filter: grayscale(100%);
}

.vision_section .section_tagline {
  text-align: center;
  top: 10px;
  font-size: 240px;
}

.vision_section .section_title {
  margin-bottom: 0;
}

.vision_section .shop_copy {
  max-width: 700px;
  padding-left: 0;
  display: grid;
  height: 100%;
  align-content: center;
}

.vision_section .shop_copy p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--msa-text-color);
  font-weight: 400;
  margin: 0;
}

.vision_section .box_wrap {
  display: flex;
  align-items: center;
  margin: 50px 0;
}

.vision_section .box_wrap .icon_box {
  background-color: var(--msa-primary-color);
  width: 163px;
  height: 163px;
  display: grid;
  place-content: center;
}

.vision_section .box_wrap .box_content {
  max-width: 475px;
  padding-left: 50px;
} 

.vision_section .box_wrap .box_content h3 {
  font-size: 36px;
  font-weight: 500;
  color: var(--msa-text-color);
  margin-bottom: 10px;
}

.vision_section .image_box {
  width: 625px;
  height: 720px;
  overflow: hidden;
  margin-left: auto;
}

.vision_section .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;  
}

.why_section {
  background-color: #f4f2ec;
}

.why_section .section_title {
  margin-bottom: 0;
}

.why_section .section_tagline {
  top: 2rem;
  font-size: 350px;
}

.why_section .member_space {
  margin-top: 60px;
}

.why_section .why_photo_wrap {
  width: 625px;
  height: 720px;
  overflow: hidden; 
  margin: 0 auto;
}

.why_section .why_photo_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;  
}

.why_section .member_space p {
  font-size: 22px;
  line-height: 1.9;
  font-weight: 400;
  color: var(--msa-text-color);
  margin: 15px 0;
}

.stat_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat_wrap .stat_item {
  text-align: center;
  margin-top: 40px;
}

.stat_wrap .stat_item .number_record span {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--msa-font-heading);
  color: var(--msa-black-color);
}

.stat_wrap .stat_item .number_record span.counter_up{
  font-size: 50px;  
  font-weight: 400;  
}

.stat_wrap .stat_item .stat_info {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--msa-font-heading);
  color: var(--msa-black-color);
}

.stat_wrap .stat_item .stat_content {
  font-size: 16px;
}

.community_section {
  background-image: linear-gradient(55deg,rgba(18, 7, 0, 1) 0%, rgba(0, 0, 0, 0.01) 90%),
    var(--community-bg-image);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  margin-bottom: 100px;
}

.community_section .top_text {
  font-family: var(--msa-font-heading);
  font-size: 50px;
  line-height: 1.1;
  text-align: center;
  color: var(--msa-white-color);
  margin-bottom: -25px;
  position: relative;
  left: 50px;
}

.community_section .middle_text {
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-size: 210px;
  line-height: 0.8;
  color: var(--msa-secondary-color);
  text-align: center;
}

.community_section .bottom_text {
  font-family: var(--msa-font-heading);
  font-size: 40px;
  line-height: 1.1;
  text-align: right;
  color: var(--msa-white-color);
  margin-top: -30px;
}

.community_section .msa_cta_btn_white {
  margin-top: 100px;
  padding: 0.8rem 2.3rem;
  font-size: 22px;
}

.elevating_sec .section_tagline_alt {
  text-align: center;
  top: -11rem;
}

.hightlight_section {
  background-image: linear-gradient(100deg,rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 0.5) 100%), var(--articles-bg-image);
  /* background-attachment: unset; */
}

.hightlight_section .section_title {
  font-size: 36px;
}

.hightlight_section .sub_copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hightlight_section .highlights_info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  margin: 75px 0;
}

.hightlight_section .access_info {
  grid-template-columns: repeat(3, 1fr);
}

.hightlight_section .highlights_info .highlight_item {
  text-align: center;
}

.hightlight_section .highlights_info .highlight_item img {
  height: 115px;
  width: auto;
}

.hightlight_section .highlights_info .highlight_item h4 {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--msa-white-color);
  font-family: var(--msa-font-body);
  text-transform: uppercase;
  margin: 20px 0 10px;
}

.hightlight_section .highlights_info .highlight_item p {
  margin: 0 auto;
  font-size: 16px;
  max-width: 275px;
}

.hightlight_section .access_info .highlight_item p {
  margin: 35px auto 0;  
  max-width: 250px;
}

.hightlight_section .msa_cta_btn_white {  
  padding: 0.8rem 2.3rem;
  font-size: 22px;  
}

.experience_section {
  padding-top: 9rem;
}

.experience_section .section_tagline {
  font-size: 360px;
  left: 13%;
  top: -2rem;
  text-align: left;
}

.experience_points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 75px 0 0;
  gap: 15px;
}

.experience_points .point_item {
  font-size: 22px;
  font-weight: 500;
  color: var(--msa-text-color);
  position: relative;
  padding-left: 25px;
}

.experience_points .point_item::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--msa-primary-color);
  left: 0;
  top: 8px;
}

.experience_section p {
  margin: 10px 0 0 !important;
}

.team_section {
  padding-top: 11rem;
}

.team_section .section_tagline {
  top: 1rem;
}

.team_section .section_copy {
  max-width: 900px;
}

.team_wrap {
  padding: 100px 0 75px;
  padding-left: 8%;
}

.team_section .team_card {
  width: 450px;
  background: var(--msa-black-color);
  position: relative;
}

.team_section .team_card .image_box {
  width: 100%;
  height: 345px;
  overflow: hidden;
  position: relative;
}

.team_section .team_card .image_box img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team_section .team_card .team_card_body {  
  background: #000000;
  background: -webkit-linear-gradient(100deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0.01) 72%);
  background: -moz-linear-gradient(100deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0.01) 72%);
  background: linear-gradient(100deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0.01) 72%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  padding: 1.2rem;
  position: relative;
  z-index: 99;
  /* margin-top: -20px; */
  min-height: 200px;
}

.team_section .team_card .team_card_body .team_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--msa-white-color);
}

.team_section .team_card .team_card_body .team_info h3 {
  font-family: var(--msa-font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--msa-white-color);
}


.team_section .team_card .team_card_body .team_info .team_designation {
  font-size: 12px;
  font-weight: 500;
  color: var(--msa-white-color);
  margin-bottom: 5px;
}

.team_section .team_card .team_card_body .team_social a {
  padding-left: 5px;
}


.team_section .team_card .team_card_body p {
  color: var(--msa-white-color);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 500;
  margin-top: 10px;
}

.team_section .team_card .team_card_body p a {
  color: var(--msa-primary-color);
  font-weight: 700;
}


.team_wrap .swiper-button-next, .team_wrap .swiper-button-prev {
	width: 37px;
	height: 37px;
	background-color: transparent;
	border-radius: 50%;
  border: 1px solid var(--msa-primary-color);	
  top: unset;
  bottom: 0;
	color: var(--msa-black-color);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;  
}

.team_wrap .swiper-button-prev::after {
  content: '\f060';
  font-family: "Font Awesome 6 Pro";
}

.team_wrap .swiper-button-next::after {
  content: '\f061';
  font-family: "Font Awesome 6 Pro";
}

.team_wrap .swiper-button-prev {
  left: auto;  
  right: 150px;
}

.team_wrap .swiper-button-next {
  right: 90px;
}

.team_wrap .swiper-button-next:hover, .team_wrap .swiper-button-prev:hover {
	background-color: var(--msa-primary-color);
	color: var(--msa-white-color);
  border: 1px solid var(--msa-primary-color);	
}

.team_wrap .swiper-button-next::after, .team_wrap .swiper-button-prev::after {
	font-size: 15px;
}

.community_section.btn_space {
  padding: 10rem 0;
}

.community_section.btn_space .msa_cta_btn_white {
  margin-top: 30px;
}

.common_sec {
  padding: 6rem 0 8rem;
}

.events_list .section_tagline, .common_sec .section_tagline{
  font-size: 350px;
  top: -7rem;
}

.events_list .section_title,  .common_sec .section_title {
  margin: 0;
}

.search_form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.search_form .form-control {
  min-height: 53px;
  border: 1px solid #A3A3A3;
  font-size: 20px;
  font-weight: 400;
  padding-left: 1.2rem;
  color: #000000;
}

.search_form .form-control:focus {
  border-color: var(--msa-primary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 135, 69, 0.15);
}


.search_form .search_btn {
	font-family: var(--msa-font-heading);
	font-weight: 400;
	font-size: 20px;
	background-color: var(--msa-primary-color);
  border: 1px solid var(--msa-primary-color);
	color: var(--msa-white-color);
	padding: 0.55rem 1.2rem; 
  margin: 0; 
  min-height: 53px;
  position: relative;
  left: -5px;
}

.search_form .search_btn:hover {
	background-color: var(--msa-primary-color);  
  border: 1px solid var(--msa-primary-color);
}

.events_list .nav-pills {
  justify-content: center;
  margin: 65px 0 40px;
}

.events_list .nav-pills .nav-item {
  position: relative;
  padding: 0 40px;
}

.events_list .nav-pills .nav-item::after {
  position: absolute;
  content: '/';
  right: 0;
  top: 1px;
  font-size: 24px;
}

.events_list .nav-pills .nav-item:last-child:after {
  display: none;
}

.events_list .nav-pills .nav-link {
  padding: 0;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--msa-text-color);
}

.events_list .nav-pills .nav-link.active{
  background: transparent;
  color: var(--msa-primary-color);  
}

.events_list .event_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.events_list .event_wrap .event_body {
  background-color: #F3F2F0;
  padding: 1.5rem 1.5rem 2rem;
}

.event_top_bg {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;  
}

.event_top_bg::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;  
  background: #FFFFFF;
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.9) 100%);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.9) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);  
}

.event_bottom_bg {
  position: absolute;
  bottom: -25%;
  right: 0;
  opacity: 0.2;
  width: 100%;
}

.event_bottom_bg::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0.9) 57%, rgba(255, 255, 255, 0.7) 99%);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0.9) 57%, rgba(255, 255, 255, 0.7) 99%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 57%, rgba(255, 255, 255, 0.7) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
  top: -40%;
}

.events_details_wrap .image_box {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.events_details_wrap .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.events_details_wrap .swiper-pagination {
  text-align: right;
  right: 30px;
  left: unset;
  bottom: 15px;
}


.events_details_wrap .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D9D9D9;
}

.events_details_wrap .swiper-pagination-bullet-active {
  background-color: var(--msa-primary-color);
}

.events_information.elevating_sec {
  padding-top: 7rem;
}

.events_information .event_info {
  padding-left: 30px;
}

.events_information .event_info h3 {
  margin: 0;
  font-family: var(--msa-font-heading);
  color: #000000;
  font-size: 23px;
}

.events_information .event_info h3 span {
  font-size: 16px;
  color: #423F3C;
}

.events_information .event_info p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--msa-black-color);
  margin-top: 10px;
}

.events_information .event_info .meta_row {
  margin-top: 150px;
}

.events_information .event_form {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.events_information .event_form .form_btn {
  background: #D9D9D9;
  color: var(--msa-black-color);
  font-size: 14px;
  font-family: var(--msa-font-heading);
  width: 32%;  
  text-align: left;
}

.events_information .event_form .form_btn img {
  position: relative;
  top: -2px;
  margin-right: 5px;
}

.events_information .event_form .form_btn.registration_btn {
  margin-left: 20px;
}

.events_information .event_form .form-control {
  width: 90px;
  background-color: #A3A3A3;  
  font-size: 12px;
  padding: .45rem .75rem;
}

.events_information .event_form .form-control::placeholder {
  color: var(--msa-white-color);
}

.events_information .event_form .go_btn {  
  font-weight: 500;
  font-size: 12px;
  background-color: #F2C44E;  
  color: var(--msa-black-color);
  margin-left: 5px;  
}

.event_info .share_sec {
  display: flex;
  align-items: center;
}

.event_info .share_sec span {
  font-size: 20px;
  font-weight: 500;
  color: var(--msa-black-color);
  margin-right: 15px;
}

.event_info .share_sec a {
  margin-right: 15px;
}

.events_details {
  background: #F5F3ED;
}

.events_details p {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #222222;
  margin: 0 0 30px;
}

.events_details .heading_sec {
  font-size: 22px;
  line-height: 2;
  font-weight: 500;
  color: #000;
  margin: 0 0 20px;
}

.events_details .box_content {
  background: var(--msa-white-color);
  border-radius: 30px;
  padding: 50px;
}


.inner_gallery_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 7rem 2rem 0;
  gap: 30px;
}

.inner_video_wrap {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
  padding: 7rem 0 0;
}

.inner_gallery_wrap .image_wrap {
  width: 435px;
  height: 453px;
  position: relative;
  overflow: hidden;
}

.inner_video_wrap .image_wrap {
  width: 450px;
  height: 450px;
}

.inner_gallery_wrap .image_wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inner_gallery_wrap .row_span {
  grid-row: span 2;  
}

.inner_gallery_wrap .row_span .image_wrap {
  height: 100%;
}

.inner_gallery_wrap .column_span {
  grid-column: span 2;  
}

.inner_gallery_wrap .column_span .image_wrap {
  width: 100%;
}

.inner_gallery_wrap .image_wrap .overlay_img {
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	height: 100%;
	width: 100%;
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	-o-transition: all .6s ease 0s;
	transition: all .3s ease 0s;
	opacity: 0;
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span {
	width: 50px;
	height: 50px;
	border: 1px solid var(--msa-white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	-o-transition: all .6s ease 0s;
	transition: all .3s ease 0s;
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span:hover {
	border-color: var(--msa-primary-color);
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span svg {
	width: 22px;
	fill: var(--msa-white-color);
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span:hover svg {
	fill: var(--msa-primary-color);
}

.inner_gallery_wrap a:hover .image_wrap .overlay_img {
	opacity: 1;
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span span.play_icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.8);	
	-webkit-transition: all .6s ease 0s;
	-moz-transition: all .6s ease 0s;
	-o-transition: all .6s ease 0s;
	transition: all .3s ease 0s;
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span span.play_icon svg {
	fill: #595757;
	width: 22px;
	position: relative;
	left: 2px;
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span:hover span.play_icon {
	background-color: var(--msa-primary-color);
	border: 1px solid var(--msa-primary-color);
}

.inner_gallery_wrap .image_wrap .overlay_img .icon_box span:hover span.play_icon svg {
	fill: var(--msa-white-color);
}

.common_sec .shop_fade_bg {
  background-image: 
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 32%),
    var(--shop-bg-image);
  background-position: right;  
  background-size: 35%;
}

.contact_wrap {
  margin: 6rem 0 0;
}

.contact_wrap .form_sec p {
  font-size: 16px;
  color: var(--msa-black-color);
  margin: 0 0 2rem;
}

.form_sec {
  -webkit-box-shadow: 0px 4px 10px 6px rgba(0,0,0,0.1); 
  box-shadow: 0px 4px 10px 6px rgba(0,0,0,0.1);
  padding: 4rem;
  background-color: var(--msa-white-color);
}

.form_sec .form-control {
  height: 50px;
  border: 1px solid #D7D7D7;
}

.form_sec .form-select {
  height: 58px;
  border: 1px solid #D7D7D7;
  color: #868383;
}

.form_sec .form-select:focus {
  box-shadow: none;
}

.form_sec p.text_heading {
  margin: 0 0 10px;
  font-weight: 600;
}

.form_sec textarea.form-control {
  height: 165px;
}

.form_sec .form-floating > label {
  color: #868383;
  font-size: 15px;
}

.form_sec .msa_cta_btn {
  padding: 0.9rem 3rem;
}

.apply_form {
  padding: 1rem;
}

.apply_form form {
  border: 1px solid #E5E5E5;
  padding: 0;
}

.apply_form form .basic_wrap {
  padding: 1rem;
}
.apply_form form .professional_wrap {
  background-color: #F9F9F9;
  padding: 1rem;
}

.form_sec p.extra_text {
  font-size: 15px;
  margin: 0 0 15px;
  color: var(--msa-text-color);
}

.form_sec .form-check-input {
  border: 1px solid var(--msa-black-color);
  margin-right: 15px;
}

.form_sec .form-check-input:focus {
  box-shadow: none;
}

.form_sec .form-check-input {
  accent-color: var(--msa-white-color);   
}

.form_sec .form-check-input:checked {
  background-color: var(--msa-black-color);
}

.login_box {
  padding: 6rem 6rem 2rem;
}
.form_sec .signup_link {
  margin: 4rem 0 0;
  font-size: 22px;
  font-weight: 400;
}

.form_sec .signup_link a {
  color: var(--msa-primary-color);
  text-decoration: underline;
}

.form_sec .signup_link p.login_para {
  font-size: 22px;
}

.contact_info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-left: 2rem;
}

.contact_info .info_item {
  border: 1px solid #CACACA;
  border-radius: 22px;
  padding: 1rem;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact_info .info_item .icon_box {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.contact_info .info_item p.heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--msa-black-color);
}

.contact_info .info_item p, .contact_info .info_item a {
  font-size: 15px;
  font-weight: 400;
  color: #868383;
}

.contact_info .info_item ul {
  display: flex;
  padding: 0;  
  margin: 7px 0 0;
}

.contact_info .info_item ul li {
  list-style: none;
}

.contact_info .info_item ul li a{
  width: 20px;
  height: 20px;
  background-color: var(--msa-primary-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--msa-white-color);
  margin-right: 12px;
  font-size: 11px;
}

.contact_info .info_item ul li a:hover {
  background-color: var(--msa-primary-color-h);
}

.map_sec.section_space {
  padding: 0rem 0 6rem;
}

.join_section {
  padding-top: 7rem !important;
}

.join_section .section_tagline_alt {
  top: -13rem !important;
}

.join_section p {
  margin-bottom: 55px !important;
}

.join_section .join_Text {
  font-size: 36px !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
}

.about_member_section .section_title {
  font-size: 42px;
  color: var(--msa-white-color);
  margin-bottom: 0;
}

.about_member_section .sub_copy {
  max-width: 850px;
  color: #F2C44E;
}

.about_member_section .about_points {
  margin: 4rem 0 0;
}

.about_member_section .about_points p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--msa-white-color);
  max-width: 85%;
  margin-bottom: 30px;
  text-indent: -30px;
  margin-left: 30px;
}

.about_member_section .about_points p img {
  padding-right: 10px;
}

.access_section.section_space {
  padding: 4rem 0 16rem;
}

.registration_section {  
  margin-top: -35%;
}

.registration_section .article_card_body {
  background-color: #F3F2F0;
  min-height: 175px;
}

.registration_section .article_card_body p {
  color: #000000;
}


.king_section .shop_copy {
  max-width: 100%;
}

.faq_section {
  background-color: #F5F3ED;
}

.faq_section .decor_outline {
  right: 0;
  bottom: 22%;
}

.faq_section #accordionFAQ {
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
}

.faq_section .accordion-header {
  border-bottom: 1px solid #D5D5D5;
}

.faq_section .accordion-button, .faq_section .accordion-item {
  
  background-color: transparent;
}

.faq_section .accordion-button {
  padding: 1.5rem 0.5rem 1.5rem 4rem;
}

.faq_section .accordion-button::after {
  background-image: none;
  transform: none;
}

.faq_section .accordion-button:focus {
  box-shadow: none;
}

.faq_section .accordion-button::after {
  content: "\2b";  
  position: absolute;  
  font-family: "Font Awesome 6 Pro";
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #9A9A9A;
  left: 20px;  
  color: var(--msa-white-color);
  font-size: 10px;
  display: grid;
  place-content: center;  
}

.faq_section .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.faq_section .accordion-button h5 {
  font-family: var(--msa-font-body);
  color: var(--msa-text-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;  
}
.faq_section .accordion-body {
  background-color: var(--msa-white-color);
  padding: 1.5rem 0.5rem 1.5rem 4rem;
  font-family: var(--msa-font-body);
  color: var(--msa-text-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}

.elevating_sec.section_space.about_experience {
  padding-top: 7rem;
}

.elevating_sec.about_experience .shop_fade_bg {
  background-size: 50%;
}

.articles_section.section_space.explore_section {
  padding: 6rem 0 16rem;
}

.experience_page_section .custom_container {
  margin-top: -150px;
}

.experience_page_section .custom_container .row {
  margin-bottom: 6rem;
}

.vision_section.experience_page_section .image_box {
  height: 745px;
}

.experience_page_section .custom_container .row:nth-child(even) .col-lg-6:first-child{
  order: 1;
}

.experience_page_section .custom_container .row:nth-child(even) .image_box {
  margin-left: unset;
}

.experience_page_section .custom_container .row:nth-child(even) .shop_copy {
  padding-left: 30px;
}

.experience_page_section .custom_container p {
  margin-bottom: 20px;
}


.experience_top_bg {
  position: absolute;
  top: 150px;
  right: 0;
  opacity: 0.1;
  width: 100%;
  filter: grayscale(100%);
}

.experience_top_bg::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;  
  background: #FFFFFF;
  background: -webkit-linear-gradient(310deg, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0) 90%);
  background: -moz-linear-gradient(310deg, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0) 90%);
  background: linear-gradient(310deg, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
}

.experience_bottom_bg {
  position: absolute;
  bottom: -5%;
  right: 0;
  opacity: 0.2;
  width: 60%;
}

.experience_bottom_bg::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  background: -webkit-linear-gradient(305deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
  background: -moz-linear-gradient(305deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
  background: linear-gradient(305deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
}


.shop_join .bottom_text {
  padding-left: 15px;
  font-size: 50px;
}

.shop_join .msa_cta_btn_white {
  margin-left: 15px;
}

.shop_page_section .section_tagline {
  top: -3rem;
  font-size: 385px;
}

.product_result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6rem 0 0;
}

.product_result .search_form {
  margin: 0;
}

.product_result .result_wrap {
  color: #868383;
  font-size: 16px;
  font-weight: 500;
}

.product_result .result_wrap span {
  font-weight: 700;
}

.product_section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 15px;
  margin: 4rem 0 0;
}

.product_section .product_item {
  cursor: pointer;
}

.product_section .product_item .image_box {
  width: 332px;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.product_section .product_item .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product_section .product_item .image_box:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.product_section .product_item .product_name {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.25rem 1rem;
  background-color: #1C1612;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  font-family: var(--msa-font-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_section .product_item .product_name a {
  color: #F2C44E;  
}

.product_section .product_item .product_name .form-check-input {
  background-color: #cf7f43;
  accent-color: #000;
  display: none;  
}

.product_section .product_item .product_name .form-check-input:checked {
  border-color: #cf7f43;
}

.product_section .product_item .product_name .form-check-input:focus {
  box-shadow: none;
  border-color: #cf7f43;
}

.product_section .product_item .product_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: scale(0.95);
}

.product_section .product_item:hover .product_hover {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.product_section .product_item:hover .product_name a {
  opacity: 0;
}

.product_section .product_item .product_hover h3 {
  font-size: 22px;
  color: #F2C44E;
}

.product_section .product_item .product_hover .price_wrap {
  text-align: center;  
}

.product_section .product_item .product_hover .price_wrap p {
  font-size: 16px;
  color: var(--msa-white-color);
  font-family: var(--msa-font-heading);
}

.add_cart_btn {
  background-color: var(--msa-primary-color);
  font-size: 14px;
  color: var(--msa-white-color);
  font-family: var(--msa-font-heading);
  padding: 0.6rem 1.55rem;
  margin: 10px 0 0;
}

.add_cart_btn img {
  padding-right: 5px;
}

.add_cart_btn:hover {
  background-color: var(--msa-primary-color-h);
  color: var(--msa-white-color);
}

.shop_cart_sec h4 {
  color: #000000;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}

.shop_cart_sec .cart_box {
  border: 1px solid #D5864B;
  padding: 1rem 1.25rem 1.5rem;
  position: relative;
  margin: 2.3rem 0 3rem 1.25rem;
}

.shop_cart_sec .cart_box .close_icon {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #868383;
  cursor: pointer;
}

.shop_cart_sec .cart_box .close_icon:hover {
  color: var(--msa-primary-color);
}

.shop_cart_sec .cart_box .cart_sec {
  display: flex;  
}

.shop_cart_sec .cart_box .cart_sec .item_img {
  width: 70px;
  height: 80px;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}

.shop_cart_sec .cart_box .cart_sec .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop_cart_sec .cart_box .cart_sec .product_info {
  margin: 5px 0 0;
}

.shop_cart_sec .cart_box .cart_sec .product_info .item_name {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
  color: #868383;
}

.shop_cart_sec .cart_box .cart_sec .product_info .item_info {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
  color: #868383;
}

.shop_cart_sec .cart_box .total_sec {
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  margin: 25px 0 10px;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.shop_cart_sec .cart_box .total_sec span {
  font-size: 14px;
  color: #868383;
  font-weight: 500;
}

.shop_cart_sec .cart_box .cta_btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop_cart_sec .range_wrapper {
  position: relative;  
  height: 40px;
  margin-left: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 3rem;
}


.shop_cart_sec .slider-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  width: 100%;
  background: #e6c3a3;
  border-radius: 10px;
  z-index: 1;
}


.shop_cart_sec .slider-range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  background: #c7783d;
  border-radius: 10px;
  z-index: 2;
}


.shop_cart_sec .range {
  position: absolute;
  width: 100%;
  height: 40px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
}


.shop_cart_sec .range::-webkit-slider-runnable-track {
  background: transparent;
}


.shop_cart_sec .range::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  background: #c7783d;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.shop_cart_sec .range::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  background: #c7783d;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.shop_cart_sec .categories_box {
  border: 1px solid #D5864B;
  padding: 1rem 1.25rem 1.5rem;
  margin: 2.3rem 0 0rem 1.25rem;
}

.shop_cart_sec .categories_box ul {
  padding: 0;
  list-style: none;
}

.shop_cart_sec .categories_box ul li {
  border-bottom: 1px solid #D9D9D9;  
  padding: 1rem;
}

.shop_cart_sec .categories_box ul li a {
  display: block;
  color: #868383;
  font-size: 14px;
  font-weight: 400;
}

.shop_cart_sec .categories_box ul li a:hover {
  color: var(--msa-primary-color);
}

.product_page_section {
  background-color: #F5F5F5;
}

.product_page_section .product_image .image_box {
  width: 890px;
  height: 588px;
  overflow: hidden;
  position: relative;
}

.product_page_section .product_image .image_box img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product_page_section .product_image .share_icon {
  cursor: pointer;
  background-color: var(--msa-white-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;  
  display: grid;
  place-content: center;
  position: absolute;
  right: 50px;
  top: 30px;
}

.product_page_section .product_content {
  margin-top: 2rem;
}

.product_page_section .product_content .section_title {
  margin-bottom: 0;
}

.product_page_section .product_content .product_price {
  color: var(--msa-primary-color);
  font-size: 31px;
  font-family: var(--msa-font-heading);
  font-weight: 400;
}

.product_page_section .product_content p {
  margin: 4rem 0 0;
  font-size: 22px;
  line-height: 1.7;
  color: var(--msa-text-color);
}

.product_page_section .add_cart_form {
  display: flex;
  align-items: center;
  margin: 15px 0 0;
}

.product_page_section .add_cart_form input[type="number"] {
  width: 100px;
  height: 45px;
  background-color: transparent;
  border: 1px solid #D7D7D7;
}

.product_page_section .add_cart_btn {
  margin: 0;
  height: 45px;
  width: 215px;
  margin-left: 15px;
  font-size: 18px;
  padding: 0;
}

.product_details {
  padding-bottom: 6rem;
}

.product_details .custom_container {
  position: relative;
  margin-top: -50px;
  z-index: 99;
}

.product_details #productTab {
  border-bottom: none;
}

.product_details #productTab li .nav-link{
  border-radius: 0;
  border: none;
  color: var(--msa-text-color);
  font-size: 20px;
  font-family: var(--msa-font-heading);
  padding: 0.75rem 1rem;
}

.product_details .event_top_bg {
  top: 3.1rem;
}

.product_details .product_section {
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product_details .section_title {
  margin: 4rem 0 1rem;
}

.product_information {
  margin: 4rem 0 0;
}

.product_information h3 {
  color: var(--msa-primary-color);
  font-size: 28px;
  margin: 0 0 1rem;
}

.product_information p {
  font-size: 18px;
  line-height: 1.75;
}

.loader_wrap {
  display: grid;
  place-content: center;
  margin: 50px 0 0;
}

.dot-spinner {
  --dot-size: 5rem;
  --dot-speed: .9s;
  --dot-color: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--dot-size);
  width: var(--dot-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: '';
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--dot-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--dot-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--dot-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--dot-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--dot-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--dot-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--dot-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--dot-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--dot-speed) * -0.125);
}

@keyframes pulse0112 {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Inner Page CSS End */

/* Dashboard Page CSS Start */



.admin_header .navbar {
  background-color: var(--msa-text-color);
  padding: 0.5rem 3rem;
}

.admin_header .navbar .nav-item .nav-link::after {
  display: none;
}

.admin_header .left_section {
  margin-left: 4.5rem;
}

.admin_header .left_section h1 {
  color: var(--msa-white-color);
  font-family: var(--msa-font-body);
  font-size: 32px;
  font-weight: 500;
}

.admin_header .left_section .breadcrumb {
  margin: 10px 0 0;
}

.admin_header .left_section .breadcrumb-item, .admin_header .breadcrumb-item + .breadcrumb-item::before {
  color: #B2AFAF;
  font-size: 15px;
  font-weight: 500;  
}

.admin_header .left_section .breadcrumb-item a {
  color: var(--msa-primary-color);
}


.admin_header .dropdown-menu {
	border-radius: 0;
	background-color: rgba(207, 127, 67, 1);
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
  margin-top: 8px;
  min-width: 13rem;
}

.admin_header .notification_box .dropdown-menu {
  min-width: 25rem;
  left: auto;
  right: 0;
}

.admin_header .dropdown-menu .nav-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 12px;
}

.admin_header .dropdown-menu .nav-item:last-child {
	border-bottom: none;
}

.admin_header .dropdown-menu .nav-link {
	color: var(--msa-white-color);
}

.admin_header .dropdown-menu .nav-link::after {
  display: none;
}

.admin_header .dropdown-menu .nav-link:hover, .admin_header .dropdown-menu .nav-link.active {
	color: var(--msa-black-color);
  font-weight: 700;
}

.admin_header .dropdown-menu .dropdown-item {
  color: var(--msa-white-color);
  font-weight: 500;
  font-size: 16px;
}

.admin_header .dropdown-menu .dropdown-item i {
  padding-right: 10px;
}

.admin_header .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: var(--msa-black-color);
}

.admin_header .notification_box .dropdown-menu .dropdown-item {
  padding: 1.5rem;  
}

.admin_header .notification_box {
  width: 45px;
  height: 45px;
  background-color: var(--msa-white-color);
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.admin_header .notification_box a.nav-link i {
  color: var(--msa-text-color);
  font-size: 22px;
  padding-left: 0;
}

.admin_header .user_box {
  padding-top: 0;
  padding-bottom: 0;
}

.admin_header .user_box a {
  display: flex;
  align-items: center;
}

.admin_header .user_box a span {
  color: var(--msa-white-color);
  font-size: 16px;
  font-weight: 500;
  padding-left: 15px;
}

.admin_header .user_box a .image_box{
  height: 45px;
  width: 45px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: block;
  color: var(--msa-white-color);
}

.admin_header .user_box a .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.admin_header .user_box .dropdown-toggle::after {
  color: var(--msa-white-color);
  border: 0;  
  content: '\f078';
  font-family: "Font Awesome 6 Pro";
  font-size: 15px;
}

.admin_info {
  padding: 12rem 0 2rem;
}

.admin_bg {
  background-color: #F2F2F2;
}

.admin_info .item_info {
  background-color: var(--msa-white-color);
  border-radius: 21px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
}

.admin_info .item_info .icon_box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--msa-primary-color);
  display: grid;
  place-content: center;
}

.admin_info .item_info .info_text p {
  font-size: 15px;
  font-weight: 500;
  color: #666666;
}

.admin_info .item_info .info_text p span {
  font-size: 24px;
  font-weight: 700;
  color: var(--msa-black-color);
}

.chart_info {
  padding: 0 0 2rem;
}

.chart_info .chart_box {
  background-color: var(--msa-white-color);
  border-radius: 30px;
  padding: 2rem;
  min-height: 390px;
}

.chart_info .chart_box .chart_heading {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.admin_bg h3 {
  font-size: 22px;
  color: var(--msa-black-color);
}

.chart_info .chart_box .chart_heading .select_box {
  display: flex;
  align-items: center;  
}

.chart_info .chart_box .chart_heading .select_box label {
  margin-bottom: 0;
  padding-right: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #404040;
}

.chart_info .chart_box .chart_heading .select_box .form-select {
  width: 120px;
  border: 1px solid #BABABA;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: #8B8B8B;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  background-position: right .25rem center;
}
.chart_info .chart_box .chart_heading .select_box .form-select:focus {
  box-shadow: none;
}


.chart_info .chart_area {
  margin: 3rem 0 0;
  text-align: center;
}

.admin_event {
  padding: 0 0 2rem;
}

.admin_event .event_list_box {
  background-color: var(--msa-white-color);
  border-radius: 30px;
  padding: 1.5rem 2rem;  
}

.admin_bg .nav-tabs {
  border: none;
  margin: 1.5rem 0 0;
}

.admin_bg .nav-tabs .nav-item {
  margin-right: 1rem;
}

.admin_bg .nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.admin_bg .nav-tabs .nav-link {
  background-color: #EBEBEB;
  border-radius: 0;
  font-family: 'Cambria';
  font-size: 16px;
  color: var(--msa-text-color);
  padding: 0.5rem 1.5rem;
  border-color: transparent;
}

.admin_bg .nav-tabs .nav-link.active {
  background-color: var(--msa-primary-color);
  color: var(--msa-white-color);
}

.admin_event .event_wrap {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.admin_event .event_wrap h4 {
  margin: 0;
  font-family: var(--msa-font-heading);
  color: #F2C44E;
  font-size: 17px;
}

.admin_event .event_wrap h4 span {
  font-size: 13px;
  color: #D5864B;
}

.admin_event .event_wrap .meta_row {
  margin-top: 0;
}

.admin_event .event_wrap .meta_row span {
  font-size: 12px;
}

.admin_event .event_wrap .meta_row span img {
  width: 15px;
}

.admin_event .event_wrap .event_body {
  padding: 1rem;
}

.admin_event .event_wrap .event_body p {
  font-size: 12px;
}

.shop_activity_section {
  padding: 0 0 4rem;
}

.shop_activity_section .shop_box {
  background-color: var(--msa-white-color);
  border-radius: 30px;
  padding: 1.5rem 2rem; 
  min-height: 360px;
}

.shop_activity_section .shop_box .order_wrap {
  height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c26b2c #EAEAEA;
  border-radius: 10px;
  padding-right: 15px;
}

.shop_activity_section .shop_box .order_wrap::-webkit-scrollbar {
  width: 8px;
  border-radius: 10px;
  background-color: #EAEAEA;
}


.shop_activity_section .shop_box .order_wrap::-webkit-scrollbar-track {
  background: #EAEAEA;
  border-radius: 10px;
  width: 8px;
}


.shop_activity_section .shop_box .order_wrap::-webkit-scrollbar-thumb {
  background: #c26b2c;
  border-radius: 10px;
  
}


.shop_activity_section .shop_box .order_wrap::-webkit-scrollbar-thumb:hover {
  background: #a55522;
}

.shop_activity_section .shop_box .nav-tabs .nav-link {
  padding: 0.5rem 2.5rem;
}

.shop_activity_section .order_info {
  display: grid;
  grid-template-columns: 120px 2fr 1fr 55px;
  column-gap: 20px;
  margin: 1.5rem 0;  
}

.shop_activity_section .order_info .order_image {
  width: 120px;
  height: 77px;
  overflow: hidden;
  position: relative;
}

.shop_activity_section .order_info .order_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop_activity_section .order_info .order_content h4 {
  font-family: 'Cambria';
  font-size: 14px;
  font-weight: bold;
  color: var(--msa-primary-color);
  line-height: 1;
}

.shop_activity_section .order_info .order_content p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--msa-black-color);
  margin: 0.5rem 0 0;
}

.shop_activity_section .order_info .order_content p.order_price {
  color: #D5864B;
  font-weight: 700;
}

.shop_activity_section .order_btns {
  text-align: center;
}

.shop_activity_section .msa_cta_btn {
  margin: 0 0 0.5rem;
  font-size: 10px;
  padding: 0.45rem;
  width: 108px;
  font-family: var(--msa-font-body);
}

.shop_activity_section .order_track {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #EEEEEE;
  position: relative;
  overflow: hidden;
  display: grid;
  place-content: center;
  margin-left: auto;
}



.shop_activity_section .activity_box ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.shop_activity_section .activity_box ul li {
  background-color: #F5F3ED;
  padding: 1rem;
  border-radius: 30px;
  display: grid;
  align-items: center;
  grid-template-columns: 70px 1fr;
  margin-bottom: 1rem;
}

.shop_activity_section .activity_box ul li:last-child {
  margin-bottom: 0;
}

.shop_activity_section .activity_box ul li .icon_box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--msa-white-color);
  display: grid;
  place-content: center;
}

.shop_activity_section .activity_box ul li p {
  font-size: 12px;
  font-weight: 600;
  color: var(--msa-black-color);
}

.shop_activity_section .activity_box ul li p span {
  color: #C27928;
  font-weight: 500;
}

.shop_activity_section .activity_box ul li p span.time_info {
  color: #808080;
  font-size: 12px;
  font-weight: 500;
}


/* Dashboard Page CSS End */

/* Responsive CSS */

@media only screen and (max-width: 1680.99px) {
  .banner_content .inner_content {
    padding-left: 10%;
  }
  .navbar .nav-item {
    padding: 5px 18px;
  }
  .banner_wrap .swiper-button-next, .banner_wrap .swiper-button-prev {
    bottom: 100px;
  }
  .banner_wrap .swiper-button-prev {
    right: 150px;
  }
  .banner_wrap .swiper-button-next {
    right: 90px;
  }
  .signature_card {
    width: 400px;
  }
  .signature_wrap .swiper-button-next {
    right: 0;
  }
  .signature_wrap .swiper-button-prev {
    right: 60px;
  }
  .team_wrap {
    padding-left: 0;
  }
  .inner_gallery_wrap {
    padding: 5rem 0 0;
  }
  .inner_gallery_wrap .image_wrap {
    width: auto;
  }

  .admin_header .navbar .nav-item {
    padding: 0;
  }

  .admin_header .navbar .user_box {
    padding-left: 25px;
  }
}

@media only screen and (max-width: 1440.99px) {
  .banner_content .hero_title {
    font-size: 70px;
  }
  .innerbanner_sec .banner_content .hero_title {
    font-size: 60px;    
  }
  .banner_wrap .image_box img {
    object-position: top right;
  }
  .signature_copy {
    max-width: 570px;
    padding-left: 0;
  }
  .signature_wrap {
    padding-left: 0;
    margin-right: 15px;
  }
  .member_section .section_tagline {
    font-size: 350px;
    padding: 0 15px;
  }
  .articles_section {
    background-position: right;
  }
  .decor_outline {
    width: 200px;
  }
  .gallery_section .msa_cta_btn {
    right: 40px;
  }
  .gallery_wrap .swiper-pagination-progressbar {
    width: 82%;
  }
  .mailing_box {
    padding: 3rem;
  }
  .member_section .section_tagline {
    font-size: 325px;    
  }
  .mailing_side_glass {
    width: 275px;
  }
  .mailing_side_man {
    width: 325px;
  }
  .elevating_sec .shop_fade_bg {
    background-size: 50%;
  }
  .team_section .team_card {
    width: 375px;
  }
  .team_section .team_card .team_card_body {
    min-height: 225px;
  }
  
  .community_section .community_custom {
    width: 60%;
  }
  .innerbanner_sec.contact_inner_banner .innerbanner_wrap .image_box img {
    object-position: right;
  }
  .inner_gallery_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .common_sec .shop_fade_bg {
    background-size: 50%;
  }

  .community_section .col-lg-8 {
    width: 75%;
  }
}

@media only screen and (max-width: 1366.99px) {
  .navbar {
    padding: 1rem;
  }
  .navbar .nav-item {
    padding: 5px 15px;
  }
  .profile_circle {
    margin: 0 20px 0 10px;
  }
  .banner_content .inner_content {
    padding-left: 5%;
  }
  .section_tagline {
    font-size: 270px;
  }
  .signature_copy {
    padding-left: 2rem;
  }
  .signature_card {
    width: 375px;
  }
  .signature_card_body {
    padding: 1.25rem 1rem 1.5rem;
  }  
  .team_section .team_card {
    width: 350px;
  }
  .team_section .team_card .team_card_body {
    min-height: 220px;
  }
  .community_section .col-lg-7 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .community_section .col-lg-8 {
    width: 85%;
  }
  .product_section .product_item .image_box {
    width: auto;
  }
  .product_page_section .product_image .image_box {
    width: 100%;
    height: 500px;
  }
}

@media only screen and (max-width: 1280.99px) {
  .navbar-brand img {
    width: 95px;
  }
  .header_sticky .navbar {
    padding: 0.5rem 1rem;
  }
  .navbar {
    padding: 1rem 0;
  }
  .banner_content .inner_content {
    padding-left: 10px;
  }
  .section_tagline {
    font-size: 250px;
  }
  .signature_card {
    width: 350px;
    height: 550px;
  }
  .signature_card_body h3 {
    font-size: 28px;
  }
  .member_section .section_tagline {
    font-size: 300px;
  }
  .mailing_section .custom_container {
    max-width: 1000px;
  }
  .mailing_box .section_copy {
    font-size: 20px;
    max-width: 800px;
  }

  .vision_section .box_wrap .icon_box {
    width: 145px;
    height: 145px;
  }
  .vision_section .box_wrap .box_content {
    max-width: 450px;
    padding-left: 30px;
  }
  .why_section .why_photo_wrap, .elevating_sec .img_box, .vision_section .image_box {
    width: 100%;
    height: auto;
  }
  .stat_wrap .stat_item .stat_info {
    font-size: 26px;
  }
  .community_section .middle_text {
    font-size: 190px;
  }
  .community_section .bottom_text {
    font-size: 35px;
  }
  .community_section .top_text {
    font-size: 45px;
  }
  .experience_points .point_item {
    font-size: 20px;
  }  
  .innerbanner_sec .banner_content .hero_kicker {
    font-size: 42px;
  }

  .events_information .event_info .meta_row {
    margin-top: 90px;
  }
  .events_information .event_form {
    flex-wrap: wrap;
  }
  .events_information .event_form .form_btn {
    width: 40%;
    margin-bottom: 15px;
  }
  .elevating_sec .section_tagline_alt {
    font-size: 300px;
    top: -11rem !important;
  }
  .shop_cart_sec .cart_box .cta_btns {
    flex-wrap: wrap;
    justify-content: center;
  }
  .admin_header .left_section {
    margin-left: 1.5rem;
  }
  .admin_bg h3 {
    font-size: 20px;
  }
  .shop_activity_section .order_info {
    column-gap: 10px;
  }
  .shop_activity_section .activity_box ul li {
    grid-template-columns: 55px 1fr;
  }
}

@media only screen and (max-width: 1199.99px) {
  .navbar .nav-item {
    padding: 5px 10px;
  }
  .section_tagline, .events_list .section_tagline, .common_sec .section_tagline {
    font-size: 225px;
  }
  .events_list .section_tagline, .common_sec .section_tagline {
    top: -4rem;
  }
  .decor_outline {
    width: 150px;
  }
  .signature_card {
    width: 330px;
    height: 530px;
  }
   .signature_card_body h3 {
    font-size: 26px;
  }
  .mailing_side_glass {
    width: 250px;
  }
  .mailing_side_man {
    width: 290px;
  }
  .elevating_sec .img_box, .vision_section .image_box {
    width: 100%;
    height: auto;
  }
  .team_wrap {
    padding-left: 20%;
  }
  .innerbanner_sec .col-lg-8 {
    width: 75%;
  }
}

@media only screen and (max-width: 1024.99px) {
  .navbar-brand img {
    width: 85px;
  }
  .header_sticky .navbar-brand img {
    width: 80px;
  }
  .header_sticky .navbar {
    padding: 0.5rem;
  }
  .navbar-brand {
    margin-right: 10px;
  }
  .navbar .nav-item .nav-link {
    font-size: 16px;
  }
  .navbar .join_btn {
    padding: 0.4rem 0.5rem;
    font-size: 17px;
  }
  .profile_circle {
    margin: 0 10px 0 5px;
    width: 40px;
    height: 40px;
  }
  .banner_content .col-lg-7 {
    width: 70.33333333%;
  }
   .section_tagline {
    font-size: 200px;
  }
  .event_section .g-5 {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 1rem;
  }
  .shop_copy {
    padding-left: 0px;
  }
  .shop_copy p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .signature_copy {
    padding-right: 0.5rem;
  }
  .signature_card {
    width: 400px;
    height: 550px;
    margin: 0 auto;
  }
  .signature_section {
    padding: 7rem 0 4rem;
  }
  .signature_wrap .swiper-button-prev, .signature_wrap .swiper-button-next {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .signature_wrap .swiper-button-prev {
    right: 50px;
  }
  .signature_wrap .swiper-button-next {
    left: 50px;
  }
  .article_card_body h3 {
    font-size: 25px;
  }

  .article_card_body {
    padding: 1.4rem;
  }
  .gallery_wrap .swiper-pagination-progressbar {
    width: 77%;
  }
   .mailing_section .custom_container {
    max-width: 800px;
  }
   .mailing_side_glass {
    width: 220px;
  }
   .mailing_side_man {
    width: 250px;
  }
   .mailing_box {
    padding: 3rem 2rem;
  }
  .gallery_wrap {
    margin: 0;
  }
  .gallery_section .msa_cta_btn {
    right: 10px;
  }
  .elevating_sec .section_tagline {
    font-size: 300px;
  }
  .elevating_sec .shop_copy p {
    font-size: 20px;
  }
  .vision_section .section_title {
    font-size: 35px;
  }
  .vision_section .shop_copy p {
    font-size: 20px;
  }
  .vision_section .box_wrap {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 100px auto;
  }
  .vision_section .box_wrap .box_content {
    padding-left: 30px;
  }
  .vision_section .box_wrap .icon_box {
    width: 100px;
    height: 100px;
    place-items: center;
  }
  .vision_section .box_wrap .icon_box img {
    width: 70%;
  }

  .member_section .section_tagline {
    font-size: 250px;
  }
  .community_section .col-lg-6 {
    width: 65%;
  }
  .elevating_sec .shop_fade_bg {
    background-size: 60%;
  }
  .team_wrap {
    padding-left: 8%;
  }

  .stat_wrap .stat_item {
    margin-top: 10px;
  }
  .why_section .member_space p {
    margin-top: 0;
  }
  .hightlight_section .highlights_info .highlight_item img {
    height: 90px;
  }
  .hightlight_section .highlights_info .highlight_item h4 {
    font-size: 17px;
  }
  .hightlight_section .highlights_info .highlight_item p {
    font-size: 15px;
  }
  
  .team_section {
    padding-top: 5rem;
  }
   .community_section .col-lg-7 {
    flex: 0 0 auto;
    width: 75%;
  }
  .shop_fade_bg {
    background-size: cover;
  }
  .vision_section .section_tagline {
    font-size: 175px;
  }
  .experience_section .section_tagline {
    font-size: 300px;
    left: 0;
    text-align: center;
  }
  .innerbanner_sec .col-lg-8 {
    width: 85%;
  }
  .events_list .nav-pills .nav-item {
    padding: 0 30px;    
  }
  .events_list .nav-pills .nav-link {
    font-size: 22px;
  }
  .events_list .nav-pills {
    margin: 50px 0 30px;
  }
  .search_form {
    max-width: 500px;
  }
  .events_list .event_wrap {
    gap: 20px;
  }
  .event_caption {
    padding: 0.7rem 1rem;
  }
  .event_caption h3 {
    font-size: 20px;
  }
  .events_information .event_info {
    padding-left: 0;
  }
  .events_information .event_info p {
    font-size: 20px;
  }
  .events_information .event_info .meta_row {
    margin-top: 30px;
  }
  .inner_gallery_wrap .image_wrap {
    height: 350px;
  }
  .form_sec {
    padding: 2rem;
  }
  .contact_info {
    padding-left: 0;
  }
  .community_section.btn_space {
    padding: 6rem 0;
  }
  .vision_section.experience_page_section .image_box {
    height: auto;
  }
  .experience_page_section .custom_container {
    margin-top: -75px;
  }
  .experience_points {
    margin: 20px 0 0;
  }
   .community_section .col-lg-8 {
    width: 95%;
  }
  .elevating_sec .section_tagline {
    font-size: 250px;
  }
  .product_section, .product_details .product_section {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin_info {
    padding: 10rem 0 2rem;
  }
  .admin_info .item_info {
    padding: 1rem;
  }
  .admin_info .item_info .info_text p {
    font-size: 14px;
  }
  .admin_info .item_info .info_text p span {
    font-size: 22px;
  }
  .admin_event.events_list .event_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop_activity_section .shop_box {
    padding: 1rem;
  }
}


@media only screen and (max-width: 991.99px) {
  .profile_circle {
    margin-left: auto;
  }

  .navbar .join_btn.ms-auto {
    margin-left: unset !important;
  }
	.navbar-toggler {
		border: none;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.navbar-toggler-icon {
		background-image: none;
		width: 30px;
		height: 2px;
		background-color: #ffffff;
		position: relative;
	}
	.navbar-toggler-icon::after {
		position: absolute;
		content: '';
		width: 30px;
		height: 2px;
		background-color: #ffffff;
		left: 0;
		top: -11px;
	}
	.navbar-toggler-icon::before {
		position: absolute;
		content: '';
		width: 30px;
		height: 2px;
		background-color: #ffffff;
		left: 0;
		bottom: -11px;
	}

	
	.navbar-toggler-icon.animate {
		background-color: transparent;
	}
	.navbar-toggler-icon.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);
	}
	.navbar-toggler-icon.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);
	}

  .mobile_menu .nav-item .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile_menu .nav-item .dropdown-menu .nav-link {
    justify-content: flex-start;
  }

  .mobile_menu .dropdown.active .dropdown-menu i {
    transform: rotate(0deg);
    top: 1px;
    margin-right: 7px;
    font-size: 14px;
  }

  .banner_content .inner_content {
    padding-top: 15%;
  }

  .innerbanner_sec .banner_content .hero_title {   
    max-width: 750px;
    margin: 0 auto;
  }

  .banner_content .col-lg-7, .innerbanner_sec .col-lg-8 {
    width: 100%;
  }

  .banner_content .inner_content {
    padding-top: 0;
    padding-left: 0;
    text-align: center;
  }
  .banner_content .hero_script {
    margin: 0 0 15px;
  }
  .banner_content .hero_copy {
    margin: 30px auto 70px;
  }

  .banner_wrap .swiper-button-next, .banner_wrap .swiper-button-prev {
    bottom: 30px;
  }

  .section_space, .elevating_sec.section_space {
    padding: 4rem 0;
  }

  .section_title, .hightlight_section .section_title {
    font-size: 35px;
  }

  .section_copy {
    font-size: 20px;
    max-width: 800px;
  }

  .event_section .event_card {
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
  }

  .middle_event_card a {
    order: 0;
    margin-top: 0;
  }

  .middle_event_card .event_body, .event_body {
    padding: 0.5rem 0 0;
  }

  .meta_row {
    justify-content: center;
  }

  .middle_event_card .meta_row {
    margin: 0.75rem 0 1.5rem;
  }

  .about_panel {
    margin: 0 auto;
    padding: 2rem 0;    
  }

  .inner_about {
    width: 100%;
    text-align: center;
  }

  .about_panel .section_title {
    text-align: center !important;
  }

  .sub_copy {
    margin: 0 auto 1.5rem;
  }
  .about_panel p {
    margin: 0 auto;
  }

  .main_shop_image {
    max-width: 600px;
    margin: 0 auto;
  }

  .shop_copy {
    margin: 0 auto;
    max-width: 600px;
    margin-top: 20px;
    text-align: center;
  }

  .signature_copy {
    margin: 0 auto;
    text-align: center;
    padding: 0;
    padding-bottom: 30px;
  }

  .signature_copy .section_title {
    text-align: center !important;
  }

  .signature_wrap {
    margin-right: 0;
  }

   .member_section .section_tagline {
    font-size: 240px;
  }

  .testimonial_wrap {
    padding: 0 0 50px;
  }

  .member_copy {
    max-width: 100%;
    text-align: center;
  }

  .testimonial_wrap .swiper-pagination {
    text-align: center;
  }

  .section_space .article_card {
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .article_card_body {
    text-align: center;
  }

  .gallery_section .experience_gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience_gallery > a.gallery_box:nth-child(3n+1) .image_box {
    height: 330px;
  }

  .experience_gallery > a.gallery_box:nth-child(3) {
    grid-area: unset;
  }

  .experience_gallery > a.gallery_box:nth-child(3n+1) {
    grid-row: unset;
  }

  .gallery_wrap {
    padding: 0 0 50px;
  }
  .gallery_wrap .swiper-pagination-progressbar {
    width: 100%;
  }

  .gallery_section .msa_cta_btn {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 195px;
    bottom: 0;
  }

  .mailing_section {
    margin-top: 30px;
  }

  .mailing_section .custom_container {
    max-width: 700px;
  }

  .footer_logo {
    margin: 0 auto;
    display: grid;
    width: 115px;
  }
  .innerbanner_sec .banner_content .inner_content {
    padding: 0;
  }
   .elevating_sec .section_tagline {
    font-size: 250px;
    text-align: center;
    top: -4rem;
  }
  .why_section .section_tagline {
    font-size: 175px;
  }
  .elevating_sec .shop_copy {
    padding-left: 0;
  }
  .articles_section .section_title {
    text-align: center !important;
  }
  .story_section .sub_copy {
    text-align: center;
  }
  .story_section p {
    max-width: 900px;
    text-align: center;
    margin: 40px auto 0;
  }
  .vision_section .section_tagline {
    font-size: 150px;
    top: 3rem;
  }
  .vision_section .box_wrap {
    justify-content: center;    
  }
  .vision_section .box_wrap .icon_box {
    margin-bottom: 15px;
  }
  .vision_section .box_wrap .box_content {
    max-width: 100%;
  }
  .why_section .why_photo_wrap {
    width: 50%;
    margin: 0 auto;
  }
  .innerbanner_sec .innerbanner_wrap {
    height: 550px;
  }
  .shop_space {
    margin-top: 0;
  }

  .vision_section .shop_copy {
    height: auto;
  }

  .elevating_sec .img_box {
    margin: 30px 0 0;
   }

  .community_section .col-lg-7 {   
    width: 80%;
  }
  .experience_points {
    margin: 50px 0;
    place-items: center;
  }
  .experience_points .point_item {
    text-align: left;
  }

  .events_information .event_info {
    margin-top: 30px;
  }
  .events_information .event_form .form_btn {
    margin-bottom: 0;
  }
  .event_main_photo {
    max-width: 50%;
    margin: 30px auto 0;
  }
  .community_section .col-lg-6 {
    width: 80%;
  }

  .inner_gallery_wrap {
    gap: 20px;
  }
  .common_sec .shop_fade_bg {
    background-size: 75%;
  }

  .contact_info {
    flex-direction: row;
  }
  .contact_info .info_item {
    width: 23%;
  }
  .form_sec .signup_link, .form_sec .signup_link p.login_para {
    font-size: 20px;
  }
  .articles_section.section_space.explore_section {
    padding: 6rem 0;
  }
  .experience_page_section .custom_container {
    margin-top: 50px;
  }
  .experience_top_bg {
    top: -50px;
  }
  .experience_page_section .custom_container .row {
    margin-bottom: 4rem;
  }
  .experience_page_section .custom_container .row:nth-child(2n) .col-lg-6:first-child {
    order: 0;
  }
  .experience_page_section .custom_container .row:nth-child(2n) .shop_copy {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .experience_page_section.vision_section .shop_copy {
    margin-top: 0;
  }
  .elevating_sec.about_experience .shop_fade_bg {
    background-size: cover;
  }
  .elevating_sec .section_tagline_alt {
    top: -8rem !important;
    font-size: 225px;
  }
  .about_member_section .about_points {
    margin: 0;
  }
  .about_member_section .col-lg-6 {
    margin: 0;
  }
  .about_member_section .sub_copy {
    margin-bottom: 50px;
  }
  .about_member_section .about_points p {
    max-width: 100%;
  }
  .about_member_section .about_points p {
    margin: 0;
    text-align: left;
    margin-top: 25px;
    margin-left: 30px;
    text-indent: -27px;
  }
  .apply_form form .professional_wrap .w-75 {
    width: 100% !important;
  }
  .registration_section {
    margin-top: 70px;
    width: 50%;
    margin: 50px auto 0;
  }
  .access_section.section_space {
    padding: 4rem 0;
  }

  .elevating_sec.access_member .shop_fade_bg {
    top: 1rem;
  }
  .community_section .middle_text {
    font-size: 170px;
  }
  .registration_section .article_card_body {
    min-height: auto;
  }
  .shop_page_section .col-lg-9 {
    order: 1;
  }

  .shop_page_section .col-lg-3 {
    width: 50%;
    margin: 0 auto;
  }
  .shop_page_section .shop_cart_sec {
    margin-top: 30px;
  }
  .shop_cart_sec .cart_box .cta_btns {
    justify-content: space-between;
  }
  .shop_cart_sec .cart_box, .shop_cart_sec .range_wrapper, .shop_cart_sec .categories_box {
    margin-left: 0;
  }
  .product_page_section .product_image .image_box {
    height: 450px;
  }
  .admin_info {
    padding-bottom: 1rem;
  }
  .admin_info .item_info {
    margin-bottom: 20px;
  }
  .chart_info .chart_box {
    margin-bottom: 25px;
  }
  .shop_activity_section .shop_box {
    padding: 1.5rem 2rem;
    margin-bottom: 25px;
  }
  .chart_info .chart_box, .shop_activity_section .shop_box {
    min-height: unset;
  }
}


@media only screen and (max-width: 834.99px) {
  .section_tagline {
    font-size: 160px;
  }
  .member_section .section_tagline {
    font-size: 200px;
  }
 .mailing_side_man {
    width: 225px;
  }

  .mailing_form {
    max-width: 375px;
  }

  .mailing_form .form-control {
    min-height: 60px;
    font-size: 18px;
  }

  .mailing_form .signup_btn {
    min-height: 60px;
  }


  .mailing_form .col-md-8, .mailing_form .col-md-3 {
    width: 100%;
  }
   .community_section .col-lg-6, .community_section .col-lg-7 {
    width: 100%;
  }
  .community_section .col-lg-7 .text-end {
    text-align: center !important;
  }
  .events_list .event_wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .team_wrap {
    padding-left: 0;
  }
  .team_section .team_card {
    width: 320px;
  }
  .elevating_sec.section_space {
    padding-top: 5rem;
  }
  .elevating_sec .section_tagline {
    font-size: 200px;
    text-align: center;
    top: -4rem;
  }

   .elevating_sec .shop_fade_bg {
    background-size: cover;
  }
  
  .why_section .why_photo_wrap {
    width: 75%;
  }
  .community_section .top_text {
    left: 0;
    font-size: 40px;
  }
  .community_section .bottom_text {
    margin-top: -20px;
  }
  .team_section .team_card .team_card_body {
    min-height: 250px;
  }
  .events_list .nav-pills .nav-item {
    padding: 0 20px;
  }
  .events_list .nav-pills .nav-link {
    font-size: 20px;
  }
  .events_list .nav-pills .nav-item::after {
    top: -2px;
  }
  .search_form {
    max-width: 100%;
  }
  .events_details_wrap .image_box {
    height: 400px;
  }
  .events_information .event_form .form_btn {
    width: 45%;
    margin-bottom: 15px;
  }
  .events_details .box_content {
    padding: 30px;
  }
  .inner_video_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact_info {
    flex-wrap: wrap;
  }
  .contact_info .info_item {
    width: 47%;
    margin-bottom: 30px;
  }
  .form_sec .form-check-input {
    margin-right: 5px;
  }
  .apply_form form .professional_wrap .w-75.mx-auto {
    margin-left: unset !important;
    margin-right: unset !important;
  }
  .apply_form form .professional_wrap .w-75.mx-auto .col-md-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 768.99px) {
  .section_tagline {
    font-size: 150px;
  }
.member_section .section_tagline {
    font-size: 175px;
  }
  .team_section .team_card {
    width: 350px;
  }
  .events_list .nav-pills .nav-link {
    font-size: 18px;
  }
  .events_list .nav-pills .nav-item::after {
    top: -4px;
  }
  .admin_event.events_list .event_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767.99px) {
  .vision_section .shop_fade_bg {
    background-size: cover;
  }
  .footer_bottom p {
    text-align: center;
  }
}

@media only screen and (max-width: 640.99px) {
  .decor_outline {
    right: 0;
  }
   .mailing_side_glass {
    width: 150px;
  }
   .mailing_side_man {
    width: 175px;
  }
  .banner_content .hero_kicker {
    font-size: 38px;
  }

  .innerbanner_sec .banner_content .hero_title {
    font-size: 50px;
    line-height: 1.3;
  }
  .elevating_sec .shop_fade_bg {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 32%), var(--shop-bg-image);
  }
  .elevating_sec .section_tagline {
    font-size: 150px;
  }
    .member_section .section_tagline {
    font-size: 130px;
  }
  .why_section .member_space {
    margin-top: 20px;
  }
  .team_section .team_card {
    width: 300px;
  }  
  .events_list .event_wrap {
    grid-template-columns: repeat(1, 1fr);    
    row-gap: 30px;
  }
  .events_list .event_card {
    max-width: 450px;
    margin: 0 auto;
  }
  .dot-spinner {
    --dot-size: 3rem;
  }
   .events_details_wrap .image_box {
    height: 350px;
  }
  .events_details .heading_sec {
    font-size: 20px;
    line-height: 1.5;
  }
  .event_main_photo {
    max-width: 100%;
  }
  .community_section .text-end {
    text-align: center !important;
  }
  .community_section .middle_text.text-end {
    text-align: center !important;
    font-size: 120px;
  }
  .community_section .bottom_text {
    text-align: center;
  }
  .inner_gallery_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .inner_gallery_wrap .row_span {
    grid-row: unset;
  }
  .inner_gallery_wrap .row_span .image_wrap {
    height: 400px;
  }
  .inner_gallery_wrap .column_span {
    grid-column: unset;
  }
  .inner_gallery_wrap .image_wrap, .inner_gallery_wrap .column_span .image_wrap {    
    width: 80%;
    margin: 0 auto;
  }
  .form_sec .msa_cta_btn {
    padding: 0.5rem 2rem;
    font-size: 18px;
  }
  .map_sec.section_space iframe {
    height: 350px;
  }
  .join_section .join_Text {
    font-size: 30px !important;
    margin-bottom: 35px !important;
  }
  .hightlight_section .msa_cta_btn_white {
    padding: 0.55rem 1.2rem;
    font-size: 20px;
  }
  .registration_section {
    width: 75%;
  }
  .faq_section .accordion-button h5, .faq_section .accordion-body {
    font-size: 20px;
  }
  .about_member_section .g-5 {
    --bs-gutter-y: 2rem;
    --bs-gutter-x: 2rem;
  }
  .admin_header .navbar {
    padding: 0.5rem;
  }
  .admin_header .left_section {
    margin-left: 1rem;
  }
  .admin_header .left_section h1 {
    font-size: 24px;
  }
  .admin_header .left_section .breadcrumb {
    margin: 2px 0 0;
  }

  .admin_header .left_section .breadcrumb-item, .admin_header .breadcrumb-item + .breadcrumb-item::before {
    font-size: 14px;
  }

  .admin_header .navbar .navbar-brand {
    margin-right: 0;
  }

  .admin_header .notification_box, .admin_header .user_box a .image_box {
    width: 35px;
    height: 35px;
  }
  .admin_header .notification_box a.nav-link i {
    font-size: 17px;
  }

  .admin_header .navbar .user_box {
    padding-left: 15px;
  }

  .admin_header .user_box a span {
    font-size: 14px;
    padding-left: 10px;
  }

  .admin_header .user_box .dropdown-toggle::after {
    font-size: 14px;
  }

  .admin_info {
    padding-top: 9rem;
  }

  .admin_bg .nav-tabs .nav-item {
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 575.99px) {
 .banner_content .hero_title {
    font-size: 60px;
  }
  .banner_content .hero_script {
    font-size: 140px;
  }

  .banner_content .hero_copy {
    font-size: 22px;
  }

  .banner_content .hero_kicker {
    font-size: 40px;
  }

  .innerbanner_sec .banner_content .hero_kicker {
    font-size: 35px;
    letter-spacing: 5px;
  }

  .innerbanner_sec .banner_content .hero_title {
    font-size: 45px;
  }

  .banner_content .banner_btn {
    width: auto;
    font-size: 20px;
  }
  .section_tagline {
    font-size: 100px;
  }
.member_section .section_tagline {
    font-size: 120px;
  }
  .about_panel .section_title, .section_title, .hightlight_section .section_title {
    font-size: 30px;
  }
  .sub_copy {
    font-size: 20px;
  }

  .msa_cta_btn {
    font-size: 18px;
  }

  .shop_copy p {
    font-size: 22px;
  }

  .shop_copy .msa_cta_btn {
    margin-top: 20px;
  }

  .signature_copy {
    padding-left: 15px;
    padding-right: 15px;
  }

  .signature_copy p {
    margin-bottom: 50px;
  }

  .member_space {
    margin-top: 0px;
  }
  .testimonial_text {
    font-size: 20px;
    margin-bottom: 2rem;
  }
  .article_card_body h3 {
    font-size: 22px;
  }

  .mailing_form {
    max-width: 300px;
  }
  .custom_container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
   .section_title, .vision_section .section_title {
    font-size: 30px;
  }
  
  .vision_section .box_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .vision_section .box_wrap .box_content {
    padding-left: 0;
  }
  .why_section .why_photo_wrap {
    width: 100%;    
  }
  .why_section .member_space p {
    font-size: 18px;
    line-height: 1.8;
  }
  .stat_wrap .stat_item .number_record span.counter_up {
    font-size: 50px;
  }
  .stat_wrap .stat_item .stat_info {
    font-size: 20px;
  }
  .stat_wrap .stat_item .stat_content {
    font-size: 15px;
  }

  .community_section {
    background-image: linear-gradient(55deg,rgb(18, 7, 0) 0%, rgba(0, 0, 0, 0.5) 90%), var(--community-bg-image);
  }

  .community_section .middle_text {
    font-size: 150px;
    line-height: 1;
  }
  .community_section .top_text {
    margin-bottom: 0;
  }
  .community_section .bottom_text {
    margin-top: 0;
    text-align: center;
  }
  .community_section .msa_cta_btn_white {
    margin-top: 50px;
  }
  .hightlight_section .highlights_info {
    margin: 30px 0;
    grid-template-columns: repeat(2, 1fr)
  }
  .hightlight_section .highlights_info .highlight_item {
    margin-bottom: 1.5rem;
  }
  .team_section .team_card {
    width: 275px;
  }  
  .team_section .team_card .team_card_body {
    min-height: 275px;
  }
  .team_section .team_card .team_card_body .team_info h3 {
    font-size: 22px;
  }
  .form_sec {
    padding: 1.25rem;
  }
  .common_sec .shop_fade_bg {
    background-size: cover;
  }
  .shop_page_section .col-lg-3 {
    width: 75%;
  }  
  .product_result {
    flex-wrap: wrap;
    justify-content: center;
    margin: 4rem 0 0;
  }
  .product_result .result_wrap {
    order: 1;
    margin-top: 15px;
  }
  .shop_cart_sec h4 {
    font-size: 20px;
  }
  .product_page_section .product_image .image_box {
    height: 350px;
  }
  .product_page_section .product_content p {
    font-size: 20px;
  }
  .product_page_section .product_content .product_price {
    font-size: 26px;
  }
  .product_information h3 {
    font-size: 25px;
  }

  .admin_event.events_list .event_wrap {
    grid-template-columns: repeat(1, 1fr);
  }

}


@media only screen and (max-width: 480.99px) {
  .banner_content .hero_title {
    font-size: 45px;
  }
   .banner_content .hero_copy {
    font-size: 20px;
  }
   .banner_content .hero_script {
    font-size: 110px;
  }
  .banner_content .banner_btn {
    margin-right: 0;
    width: 80%;
    margin-bottom: 15px;
  }
  .about_panel {
    padding-left: 15px;
    padding-right: 15px;
  }
  .gallery_section .experience_gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .mailing_side_man {
    width: 130px;
  }
  .mailing_side_glass {
    width: 120px;
  }
  .elevating_sec .section_tagline {
    font-size: 125px;
    top: -2rem;
  }
  .elevating_sec.section_space {
    padding: 3rem 0;
  }
  .section_title, .vision_section .section_title {
    font-size: 28px;
  }
  .elevating_sec .section_copy {
    width: 100%;
  }
  .section_copy, .vision_section .shop_copy p {
    font-size: 18px;
  }
  .elevating_sec .shop_copy p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  .innerbanner_sec .banner_content .hero_title {
    font-size: 42px;
    margin-top: 5px;
  }
  .community_section .middle_text {
    font-size: 115px;
  }
  .community_section .top_text {
    font-size: 30px;
  }
  .community_section .bottom_text {
    font-size: 30px;
  }
  .community_section .msa_cta_btn_white {
    font-size: 20px;
    padding: 0.55rem 1.2rem;
  }
  .member_section .section_tagline {
    font-size: 100px;
  }
  .vision_section .box_wrap .icon_box {
    width: 75px;
    height: 75px;
  }
  .vision_section .box_wrap .icon_box img {
    width: 50%;
  }
  .vision_section .box_wrap .box_content h3 {
    font-size: 25px;
  }
  .experience_points .point_item {
    font-size: 18px;
  }
  .hightlight_section .msa_cta_btn_white {
    margin: 0;
    padding: 0.55rem 1.2rem;
    font-size: 20px;
  }
  .hightlight_section .highlights_info {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .team_wrap {
    padding-bottom: 50px;
  }

  .team_wrap .swiper-button-prev {
    right: 70px;
  }
  .team_wrap .swiper-button-next {
    right: 15px;
  }
   .team_section .team_card {
    width: 97%;
  }
  .team_section .team_card .team_card_body {
    min-height: auto;
  }
  .banner_content .hero_kicker {
    font-size: 35px;
    letter-spacing: 5px;
  }
  .events_list .nav-pills {
    row-gap: 15px;
  }
   .events_details_wrap .image_box {
    height: 300px;
  }  
  .events_information .event_info p {
    font-size: 16px;
  } 
  .community_section .middle_text.text-end {
    line-height: 0.8;
  }
  .inner_gallery_wrap .image_wrap, .inner_gallery_wrap .column_span .image_wrap {
    width: 95%;
  }
  .contact_info .info_item {
    width: 100%;
  }
  .experience_points {
    margin: 30px 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .registration_section {
    width: 100%;
  }
  .product_section, .product_section, .product_details .product_section {
    grid-template-columns: repeat(1, 1fr);
  }
  .product_section .product_item .image_box {
    height: auto;
  }
  .shop_activity_section .order_info {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem 0;
  }

  .shop_activity_section .order_info .order_image {
    width: auto;
    height: auto;
  }

  .shop_activity_section .order_btns {
    width: 100%;
  }

  .shop_activity_section .order_btns, .shop_activity_section .order_track {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 420.99px) {
  .innerbanner_sec .innerbanner_wrap {
    height: 500px;
  }
  .section_title, .vision_section .section_title {
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .stat_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .why_section .section_title {
    margin-bottom: 1rem;
  }
  .experience_points {
    grid-template-columns: repeat(1, 1fr);
  }
  .section_tagline, .events_list .section_tagline, .common_sec .section_tagline{
    font-size: 160px;
  }
  .contact_wrap {
    margin: 4rem 0 0;
  }
   .shop_page_section .col-lg-3 {
    width: 100%;
  }
  .admin_header .navbar {
    padding: 0.5rem 0;
  }
  .admin_header .navbar-brand img {
    width: 75px;
  }
  .admin_header .left_section {
    margin-left: 10px;
  }
  .admin_header .left_section h1 {
    font-size: 22px;
  }
  .admin_header .left_section .breadcrumb-item, .admin_header .breadcrumb-item + .breadcrumb-item::before {
    font-size: 12px;
  }
  .admin_header .navbar .user_box {
    padding-left: 5px;
  }
  .admin_info {
    padding-top: 8rem;
  }
  .admin_bg .nav-tabs .nav-item, .admin_bg .nav-tabs .nav-link {
    width: 100%;
  }
  .admin_bg .nav-tabs .nav-item {
    margin-right: 0;
  }
}

@media only screen and (max-width: 380.99px) {
 .section_title {
    font-size: 30px;
  }
  .signature_section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .event_section .event_card {
    max-width: 100%;
  }
  .banner_content .hero_title, .innerbanner_sec .banner_content .hero_title {
    font-size: 40px;
  }
  .community_section .middle_text {
    font-size: 90px;
  }
   .member_section .section_tagline {
    font-size: 80px;
    top: 2rem;
  }
   .vision_section .section_tagline {
    font-size: 60px;
    top: 3rem;
  }
  .elevating_sec .section_tagline {
    font-size: 85px;
  }
  .innerbanner_sec .banner_content .hero_kicker {
    font-size: 30px;
  }
  .faq_section .accordion-button h5, .faq_section .accordion-body {
    font-size: 18px;
  }
  .form_sec .form-floating > label {
    font-size: 14px;
  }
  .admin_header .ms-auto {
    margin: 0 auto;
  }
  .admin_info {
    padding-top: 10rem;
  }

  .chart_info {
    padding-bottom: 1rem;
  }

  .chart_info .chart_box {
    padding: 1.5rem;
  }
  .chart_info .chart_box .chart_heading {
    grid-template-columns: 100%;    
  }

  .chart_info .chart_box .chart_heading h3 {
    text-align: center;
  }

  .chart_info .chart_box .chart_heading .select_box {
    margin: 15px auto 0;
  }
  .admin_event .event_list_box, .shop_activity_section .shop_box {
    padding: 1.25rem;
  }
}

@media only screen and (max-width: 360.99px) {
  .banner_content .hero_title, .innerbanner_sec .banner_content .hero_title {
    font-size: 35px;
  }
  .innerbanner_sec .innerbanner_wrap {
    height: 475px;
  }
  .events_information .event_form .form_btn {
    width: 100%;
  }
  .events_information .event_form .form_btn.registration_btn {
    margin-left: 0;
  }
  .inner_gallery_wrap .image_wrap, .inner_gallery_wrap .column_span .image_wrap {
    width: 100%;
    height: auto;
  }
  .community_section .middle_text.text-end {
    font-size: 100px;
  }
}