@charset "utf-8";

/* font css */

@font-face {
  font-family: myFirstFont;
  src: url('../fonts/Poppins-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: myFirstFontBold;
  src: url('../fonts/Poppins-Bold.ttf');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: myFirstFontMedium;
  src: url('../fonts/Poppins-Medium.ttf');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: myFirstFontSemibold;
  src: url('../fonts/Poppins-SemiBold.ttf');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: myFirstFontLight;
  src: url('../fonts/Poppins-Light.ttf');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: myFirstFontExtrabold;
  src: url('../fonts/Poppins-ExtraBold.ttf');
  font-weight: bolder;
  font-style: normal;
}






/* Common css */


* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.5;
  font-family: myFirstFontMedium;
}

p, li{
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
  font-family: myFirstFontMedium;
  font-weight: 500;
}


address,
blockquote,
dd,
div,
dl,
dt,
fieldset,
form,
frame,
frameset {
  margin: 0;
  padding: 0;
  border: 0px;
  outline: none;
}

label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0px;
  padding: 0;
  outline: none;
  border: 0;
}

a {
  text-decoration: none;
  border: 0px;
  outline: none;
  transition: all .5s;
}

a img {
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

border {
  border-collapse: collapse;
}

hr {
  height: 1px;
  background: #c5c5c5;
  border: none;
  margin: 15px 0;
}

p:empty{display:none;}
.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
}

::-moz-selection {
  color: #fff;
  background: var(--main-clr);
}

::selection {
  color: #fff;
  background: var(--main-clr);
}

button,
input,
select,
option,
textarea {
  outline: 0 !important;
  pointer-events: all;
  font-family: inherit;
  font-size: 100%;
}

.txt_center{
  text-align: center;
}


/* variables-- */

:root {
  --body-font: myFirstFont;
  --head-font: myFirstFontBold;
  --pdg: clamp(40px, 4.17vw, 80px);
  --mrg: clamp(20px, 2.09vw, 40px);
  --body-font-size: clamp(16px, 0.94vw, 18px);
  --btn-font-size: clamp(15px, 0.84vw, 16px);
  --h1-font: clamp(30px, 3.6vw, 69px);
  --h2-font: clamp(24px, 2.5vw, 48px);
  --h3-font: clamp(20px, 1.57vw, 30px);
  --fs-24px: clamp(18px, 1.31vw, 24px);
  --fs-16px: clamp(15px, 0.84vw, 16px);
  --fs-15px: clamp(14px, 0.94vw, 15px);
  --main-clr: #003a66;
  --main-clr-drk: #8ac33a;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.0000001px;
}

a {
  color: var(--main-clr);
  transition: 0.2s;
  cursor: pointer;
}

img {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 200px
}

.line1{
  width: 50px;
  height: 1px;
  background-color: var(--main-clr-drk);
  margin-bottom: 20px;
}

.heading_h2{
  margin: 0;
  color: var(--main-clr);
  padding-bottom: 10px;
  font-size: 36px;
  font-family: myFirstFontBold;
}

.overflow_div{
  overflow: hidden;
}



/* top button */

.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 2px solid var(--main-clr-drk);
  z-index: 99;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.go-to-top span {
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: var(--main-clr-drk);
  border-width: 2px 2px 0 0;
  transform: rotate(-45deg);
  margin-top: 4px;
}

.go-to-top.show {
  opacity: 1
}





/* button design */

.btn-main {
  padding: 12px 20px;
  color: #fff;
  display: inline-block;
  border-radius: 0px;
  transition: 0.6s;
  z-index: 2;
  position: relative;
  background: var(--main-clr);
  overflow: hidden;
  border: 0;
  font-family: var(--body-font);
  font-weight: 400;
  text-decoration: none;
  font-size: var(--btn-font-size);
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: bold
}

.btn-main img {
  margin-right: 6px
}

.btn-main:hover {
  box-shadow: inset 0 0 0 50px var(--main-clr-drk);
  color: #fff
}

.btn-flex {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.282vw, 20px)
}

.subQ_btn{
  border: 2px solid var(--main-clr)!important;
  background: var(--main-clr-drk)!important;
  border-radius: 0;
  color: var(--main-clr)!important;
  text-transform: capitalize;
}

.subQ_btn:hover{
  border: 2px solid var(--main-clr)!important;
  background: var(--main-clr)!important;
  box-shadow: inset 0 0 0 50px var(--main-clr)!important;
  border-radius: 0;
  color: #fff!important;
}

.btn_full{
  border: 2px solid var(--main-clr)!important;
  background: var(--main-clr)!important;
  border-radius: 0;
  color: #fff!important;
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin-top: 20px;
}

.wht_txt{
  color: #fff;
}





/* common paddings */

.common-padd {
  padding-top: var(--pdg);
  padding-bottom: var(--pdg);
}

.common-padd-top {
  padding-top: var(--pdg)
}

.common-padd-btm {
  padding-bottom: var(--pdg);
}

.common-padd-sm {
  padding-top: var(--mrg);
  padding-bottom: var(--mrg);
}











/* slick dots */ 

.slick-dots li button:before {
  font-size: 10px;
  color: #373e46;
}

.slick-dots li button {
  padding: 0 4px
}

.slick-dots li {
  margin: 0
}







/* header design */

.header-area {
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
}

.header-area.sticky .header-nav {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 0 6px 0 #000;
}

.header-top-bar {
  background: var(--main-clr);
  color: #fff;
  padding: 10px 0;
  transition: 0.3s
}

.header-top-bar-inr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px
}

.header-top-bar p {
  margin: 0;
  text-transform: uppercase;
  font-size: var(--fs-15px);
}

.btn-main.hdr-btn {
  background: #fff;
  color: #0c0c0c;
  padding: 5px 20px;
  border-radius: 30px;
}

.btn-main.hdr-btn:hover {
  color: #fff
}

.btn-main.hdr-btn:hover img {
  filter: invert(1);
}

.header-nav {
  padding: 10px 0;
  transition: 0.4s, back;
  background: #fff;
}

.navbar-area-inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  transition: 0.2s;
  flex-shrink: 0
}

.navbar-area-menu {
  display: flex;
  align-items: center;
  gap: clamp(23px, 2.35vw, 45px);
}

.site-navbar{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 1.5625vw, 23px);
  margin-right: 30px;
}

.site-navbar ul li {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.site-navbar ul li a {
  display: block;
  color: var(--main-clr);
  font-weight: bold;
}

.site-navbar>ul>li a {
  padding: 8px 0;
  border-bottom: 2px solid #0000;
}

.site-navbar>ul>li a:hover {
  border-bottom-color: var(--main-clr);
}

.site-navbar ul ul {
  flex-direction: column;
  transform: translateY(100%);
  position: absolute;
  width: clamp(150px, 15.625vw, 300px);
  background: #fff;
  box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.26);
  transform-origin: top;
  z-index: 99;
  transition: 0.2s;
  align-items: flex-start;
  top: 100%;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: uppercase;
}

.site-navbar ul ul li {
  width: 100%;
  text-transform: none;
  font-weight: bold
}

.site-navbar ul ul a {
  padding: clamp(8px, 0.5208vw, 10px);
  width: 100%;
  display: block;
  color: #222;
}

.site-navbar ul ul li a:hover {
  background: var(--main-clr);
  color: #fff;
}

.site-navbar ul li>span {
  display: none;
}

.site-navbar ul li:hover ul {
  transform: none;
  opacity: 1;
  pointer-events: all
}

.navbar-social ul {
  margin: 0;
  padding: 2px 0 2px clamp(12px, 1.25vw, 24px);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 0.68vw, 13px);
  border-left: 1px solid var(--main-clr);
}

.navbar-social ul li a,
.navbar-social ul li img {
  display: block;
}

.nav-toggler {
  border: 0;
  background-color: #fff0;
  cursor: pointer;
  display: none;
  padding: 5px;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 2px;
  background-color: var(--main-clr-drk);
  display: block;
  transition: .3s;
}

.nav-toggler span:before {
  content: '';
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: '';
  transform: translateY(7px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-2px) rotate(-45deg);
}

.navbar-area-menu{
  display: block;
}

.mobile_element_div{
  display: none;
}

.info_div {
  display: flex;
  align-items: center;
  clip-path: polygon(0% 0%, 100% 1%, 100% 100%, 3% 100%);
  background-color: #f2f2f2;
  padding: 10px 20px;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-right: -64px;
}

.info_div_content a{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 20px;
}

.info_div_content .icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--main-clr-drk);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.info_div_content a p{
  font-weight: 600;
}

.info_div_content a .icon img{
  transform: scale(1.2);
}




/******************************* 
EVENT DETAILS PAGE 
*******************************/


/* banner design */

.event_details_banner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 85px 0;
}

.event_details_banner .content {
  z-index: 5;
  width: 50%;
  position: relative;
}

.event_details_banner .box_txt{
  background-color: var(--main-clr-drk);
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  width: fit-content;
  margin-bottom: 20px;
}

.box_txt_white {
  background-color: #fff;
  padding: 10px 60px 10px 20px;
  font-size: 18px;
  color: var(--main-clr);
  width: fit-content;
  margin-top: 20px;
  /* margin-left: 330px; */
  display: flex;
  align-items: center;
  font-family: myFirstFontBold;
  position: absolute;
  right: -15%;
}

.box_txt_white img{
  margin-right: 10px;
}

.event_details_banner h2 {
  font-size: 70px;
  font-family: myFirstFontBold;
}

.event_details_banner .banner_sm_img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: 20;
}

.event_details_banner .img_mb{
  display: none;
}


/* secOne design */

.secOne h2{
  margin: 0;
  color: var(--main-clr);
  padding-bottom: 10px;
  font-size: 36px;
  font-family: myFirstFontBold;
}

.secOne_ul{
  list-style: none;
}

.secOne_ul li{
  padding: 10px 0;
}

.secOne_ul li a {
  display: grid;
  grid-template-columns: 8% 80%;
  align-items: center;
}

.secOne_ul li .icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in 0.3s;
}

.secOne_ul li:hover .icon{
  background-color: var(--main-clr-drk);
}

.secOne_ul li:hover .icon img{
  transform: scale(1.2);
}

.secOne_ul li .icon img{
  transition: all ease-in 0.5s;
}

.secOne_ul li p{
  font-size: 17px;
}

.secOne .form_design{
  background-color: #fff;
  box-shadow: 0 0 6px 0 #9c9c9c;
  padding: 20px;
}

.secOne .heading_div{
  margin-bottom: 20px;
}

.secOne .heading_div .line1{
  margin: 0 auto;
}

.secOne .form_design label{
  color: #000;
  padding-bottom: 10px;
  font-family: myFirstFontMedium;
}

.secOne .form_design input, .secOne .form_design select {
  padding: 8px 20px;
  border: 1px solid #c5c5c5;
  background: #f9fbfd;
  width: 100%;
  margin: 5px 0 10px;
}

.secOne .form_design .main_flex_div{
  display: flex;
  align-items: center;
}

.secOne .form_design .flex_div{
  display: flex;
  align-items: center;
}

.secOne .form_design .flex_div input{
  width: fit-content;
  padding: 0;
  margin: 0;
}

.secOne .form_design .flex_div label{
  padding: 10px 5px;
  margin-right: 25px;
  font-family: myFirstFontMedium;
}

.secOne textarea{
  padding: 15px 20px;
  border: 1px solid #c5c5c5;
  background: #f9fbfd;
  width: 100%;
  margin: 10px 0 20px;
  height: 130px;
}

.secOne .btn_full{
  margin: 0;
}

/*.map iframe {
  width: 100%;
  height: 680px;
  margin-top: 20px;
}*/



/* secTwo design */

.secTwo{
  background-color: var(--main-clr);
  position: relative;
}

.secTwo .secTow_content{
  padding-left: 5rem;
}

.secTwo .secTwo_img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.secTwo li p{
  color: #fff;
  font-size: 18px!important;
  font-family: myFirstFontMedium;
}

.check_ul_div{
  list-style: none;
  margin-top: 30px;
}

.check_ul_div li{
  display: grid;
  grid-template-columns: 6% 90%;
  align-items: flex-start;
  font-size: 16px!important;
  padding: 10px 0;
}

.check_ul_div li img{
  transition: all ease-in 0.5s;
}

.check_ul_div li:hover{
  cursor: pointer;
}

.check_ul_div li:hover img{
  transform: scale(1.2);
}



/* secThree design */

.secThree{
  position: relative;
}

.secThree .secThree_img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.secThree .secThree_content{
  padding-left: 4rem;
}

.secThree li p{
  color: #000;
  font-size: 18px!important;
  font-family: myFirstFontMedium;
}





/* secFour design */

.secFour{
  position: relative;
}

.secFour .line1{
  margin: 0 auto;
}

.secFour_content{
  text-align: center;
  padding: 20px;
}

.secFour_content .secFour_icon img{
  transition: all ease-in 0.5s;
}

.secFour_content:hover{
  cursor: pointer;
}

.secFour_content:hover .secFour_icon img{
  transform: scale(1.2);
}

.secFour_icon {
  background-color: var(--main-clr);
  border: 7px solid #ffffffc7;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.secFour_content:hover p{
  color: var(--main-clr);
}







/* why-us */

.why-us {
  position: relative;
}

.why-us-left-item {
  display: flex;
  margin-top: 20px;
}

.why-us-left-item {
  display: flex;
  margin-top: 20px;
}

.why-us-left-number {
  width: 120px;
  padding: 10px;
  height: 100%;
  background-color: rgb(254, 254, 254);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
  transform: translateY(-10px);
  margin-right: -10px;
  text-align: center;
}

.why-us-left-text {
  color: #fff;
  padding: 10px 10px 10px 30px;
  display: flex;
  align-items: center;
  width: calc(100% - 150px);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
}

.why-us-left-item:nth-child(odd) .why-us-left-text {
  background: var(--main2);
}

.why-us-left-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us-left-text p {
  width: calc(100% - 50px);
  padding-left: 10px;
}

.why-us-left-angle {
  position: relative;
  width: 30px;
}

.why-us-left-angle-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.why-us-left-angle-inner img {
  height: 100%;
  width: 100%;
}

.why-us-left-item:nth-child(odd) .why-us-left-text {
  background: var(--main-clr);
}

.why-us-left-item:nth-child(even) .why-us-left-text {
  background: #6eb70a;
}

.why-us-left-item:nth-child(odd) .why-us-left-number {
  color: var(--main-clr-drk);
}

.why-us-left-item:nth-child(even) .why-us-left-number {
  color: var(--main-clr);
}

.why-us-left-number {
  width: 120px;
  padding: 10px;
  height: 100%;
  background-color: rgb(254, 254, 254);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
  transform: translateY(-10px);
  margin-right: -10px;
  text-align: center;
}

.why-us-left-item {
  display: flex;
  margin-top: 20px;
}

.why-us .h1 {
  font-size: 45px;
}

.why-us-right-logo {
  margin-bottom: 40px;
}

.why-us-right {
  text-align: center;
}

.why-us-right-item-body {
  padding: 15px!important;
  border: 2px solid var(--main-clr);
}

.why-us-right-img{
  height: 90px;
  margin-bottom: 20px;
}

.why-us-right p {
  text-align: center;
  color: var(--main-clr);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
}

.why-us-right-item-angle img{
  margin-bottom: -5px;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


/* secFive design */

.secFive{
  position: relative;
}

.secFive .secFive_img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.secFive .secFive_content{
  padding-left: 4rem;
}

.secFive li p{
  color: #000;
  font-size: 18px!important;
  font-family: myFirstFontMedium;
}







/******************************* 
EVENT LISTING PAGE 
*******************************/



/* banner design */

.banner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 100px 0;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1
}

.banner-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%
}

.banner h2 {
  margin: 0;
  font-size: 40px;
}





/* event_listing design */

.event_listing .humburger p {
  color: #a2a2a2;
  font-weight: 500;
  padding-bottom: 15px;
}

.event_listing .humburger p span{
  color: var(--main-clr);
}

.event_listing h2{
  margin: 0;
  color: var(--main-clr);
  padding-bottom: 10px;
  font-size: 36px;
  font-family: myFirstFontBold;
}

.event_listing .event_card_listing {
  background-color: #fff;
  box-shadow: 0 0 6px 0 #c5c5c5;
  height: 100%;
}

.event_listing .card_img{
  position: relative;
}

.event_listing .card_bg_img{
  width: 100%;
}

.event_listing .date_div {
  background-color: var(--main-clr-drk);
  display: flex;
  align-items: center;
  padding: 5px 10px;
  width: fit-content;
  position: absolute;
  bottom: 4px;
  right: 0;
}

.event_listing .date_div p{
  color: #fff;
  padding-left: 10px;
  font-weight: 500;
}

.event_listing .content_div{
  padding: 20px;
}

.event_listing .content_div h3{
  font-size: 24px;
  margin: 0;
  padding-bottom: 10px;
  font-family: myFirstFontSemibold;
}

.event_listing .content_div p{
  margin: 0;
}

.event_listing .event_card_ul1 {
  padding: 5px 0 5px 25px;
}

.event_listing .event_card_ul1 li::marker{
  font-size: 24px;
  color: var(--main-clr);
}

.event_listing .event_card_ul2{
  list-style: none;
}

.event_listing .event_card_ul2 li {
  display: grid;
  grid-template-columns: 10% 80%;
  padding: 5px 0;
  align-items: center;
  font-family: myFirstFontSemibold;
  color: var(--main-clr);
  font-size: 16px;
}


.max-height_li {
  max-height: 60px;
  min-height: 60px;
}





/* footer */

.site-footer {
  background: #222222;
  color: #eeeeee;
}

.ftr_heading{
  padding-bottom: 10px;
}

.site-footer p{
  font-family: myFirstFont;
  font-weight: 400;
}

.site-footer a {
  color: #eeeeee;
}

.site-footer ul li:hover, .site-footer ul li a:hover{
  color: var(--main-clr-drk);
  cursor: pointer;
}

.site-footer-top {
  padding: clamp(40px, 4.17vw, 80px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer ul li{
  list-style: none;
  padding: 10px 0;
}

.contact_ul li a {
  display: grid;
  grid-template-columns: 10% 80%;
  align-items: center;
}

.contact_ul li .icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #9c9c9c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in 0.3s;
}

.pr_4{
  width: 70%;
}

.site-footer-btm{
  padding: 20px 0;
  font-weight: 500;
}

.site-footer .contact_ul li a:hover .icon{
  background-color: var(--main-clr);
}

.site-footer .contact_ul li a:hover .icon img{
  filter: brightness(0) invert(1);
}

.site-footer-btm p{
  color: #919191;
}







/*media queries*/

@media(max-width:1920px){

.info_div {
    margin-right: -252px;
}

.event_details_banner h2 {
  font-size: 85px;
}

.event_details_banner .box_txt {
  font-size: 25px;
}

.box_txt_white {
  position: absolute;
  right: -20%;
}

.secOne_ul li p {
  font-size: 22px;
}

p, li, .site-navbar ul li a, .info_div_content a p,.btn-main {
  font-size: 20px;
}

.check_ul_div li {
  display: grid;
  grid-template-columns: 6% 90%;
  align-items: center;
}

.secTwo li p {
  font-size: 22px!important;
}

.heading_h2 {
  font-size: 50px;
}

/*.map iframe {
  width: 100%;
  height: 780px;
  margin-top: 20px;
}*/

.contact_ul li a {
  display: grid;
  grid-template-columns: 10% 80%;
  align-items: flex-start;
}

.secThree li p {
  font-size: 22px!important;
}

.secOne h2 {
  font-size: 50px;
}

.why-us-left-angle-inner {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
}


}

@media(max-width:1800px){

  .info_div {
      margin-right: -192px;
  }
  
  .event_details_banner h2 {
    font-size: 90px;
}
  
  .event_details_banner .box_txt {
    font-size: 25px;
  }
  
  .secOne_ul li p {
    font-size: 22px;
  }
  
  p, li, .site-navbar ul li a, .info_div_content a p,.btn-main {
    font-size: 20px;
  }
  
  .check_ul_div li {
    display: grid;
    grid-template-columns: 6% 90%;
    align-items: center;
  }
  
  .secTwo li p {
    font-size: 22px!important;
  }
  
  .heading_h2 {
    font-size: 50px;
  }
  
 /* .map iframe {
    width: 100%;
    height: 750px;
    margin-top: 20px;
}*/
  
  .contact_ul li a {
    display: grid;
    grid-template-columns: 10% 80%;
    align-items: flex-start;
  }
  
  .secThree li p {
    font-size: 22px!important;
  }
  
  .secOne h2 {
    font-size: 50px;
  }

  .secTwo .secTow_content {
    padding-left: 12rem;
}
  
  
}

@media(max-width: 1700px){

.info_div {
    margin-right: -142px;
}

.event_details_banner h2 {
font-size: 85px;
}

.event_details_banner .box_txt {
font-size: 22px;
}

.secOne_ul li p {
font-size: 20px;
}

p, li, .site-navbar ul li a, .info_div_content a p,.btn-main {
font-size: 18px;
}

.check_ul_div li {
display: grid;
grid-template-columns: 6% 90%;
align-items: center;
}

.secTwo li p {
font-size: 20px!important;
}

.heading_h2 {
font-size: 40px;
}

/*.map iframe {
  width: 100%;
  height: 700px;
  margin-top: 20px;
}*/

.contact_ul li a {
display: grid;
grid-template-columns: 10% 80%;
align-items: flex-start;
}

.secThree li p {
font-size: 20px!important;
}

.secOne h2 {
font-size: 40px;
}

.secTwo .secTow_content {
  padding-left: 9rem;
}


}

@media only screen and (min-width:1600px) {
  .container {
    max-width: 1440px
  }
}

@media(max-width: 1600px){

  .info_div {
    margin-right: -92px;
  }

  .box_txt_white {
    position: absolute;
    right: -15%;
}
  
.event_details_banner h2 {
  font-size: 70px;
}
  
  .event_details_banner .box_txt {
  font-size: 22px;
  }
  
  .secOne_ul li p {
  font-size: 20px;
  }
  
  p, li, .site-navbar ul li a, .info_div_content a p,.btn-main {
  font-size: 18px;
  }
  
  .check_ul_div li {
  display: grid;
  grid-template-columns: 6% 90%;
  align-items: center;
  }
  
  .secTwo li p {
  font-size: 20px!important;
  }
  
  .heading_h2 {
  font-size: 40px;
  }
  
  /*.map iframe {
    width: 100%;
    height: 700px;
    margin-top: 20px;
  }*/
  
  .contact_ul li a {
  display: grid;
  grid-template-columns: 10% 80%;
  align-items: flex-start;
  }
  
  .secThree li p {
  font-size: 20px!important;
  }
  
  .secOne h2 {
  font-size: 40px;
  }
  
  .secTwo .secTow_content {
    padding-left: 9rem;
  }
  
  
  }

@media(max-width: 1500px){

  .info_div {
    margin-right: -65px;
}
    
/* .box_txt_white {
  font-size: 18px;
  margin-left: 330px;
} */
    
    .event_details_banner h2 {
    font-size: 70px;
    }
    
    .event_details_banner .box_txt {
    font-size: 18px;
    }
    
    .secOne_ul li p {
    font-size: 18px;
    }
    
    p, li, .site-navbar ul li a, .info_div_content a p,.btn-main {
    font-size: 16px;
    }

    .site-navbar ul li a{
      font-size: 15px;
      }
    
    .check_ul_div li {
    display: grid;
    grid-template-columns: 6% 90%;
    align-items: center;
    }
    
    .secTwo li p {
    font-size: 18px!important;
    }
    
    .heading_h2 {
    font-size: 32px;
    }
    
    /*.map iframe {
      width: 100%;
      height: 700px;
      margin-top: 20px;
    }*/
    
    .contact_ul li a {
    display: grid;
    grid-template-columns: 10% 80%;
    align-items: flex-start;
    }
    
    .secThree li p {
    font-size: 18px!important;
    }
    
    .secOne h2 {
    font-size: 32px;
    }
    
    .secTwo .secTow_content {
      padding-left: 9rem;
    }

    .max-height_li {
      max-height: 40px;
      min-height: 40px;
  }
    
    
}

@media(max-width: 1400px){

  .info_div {
    margin-right: -52px;
}

}

@media(max-width:1366px) {

  .info_div {
    margin-right: -126px;
}
    
/* .box_txt_white {
  font-size: 16px;
  margin-left: 260px;
} */
    
    .event_details_banner h2 {
    font-size: 60px;
    }
    
    .event_details_banner .box_txt {
    font-size: 16px;
    }
    
    .secOne_ul li p {
    font-size: 16px;
    }
    
    p, li, .site-navbar ul li a, .info_div_content a p,.btn-main {
    font-size: 14px;
    }

    .site-navbar ul li a{
      font-size: 14px;
      }
    
    .check_ul_div li {
        display: grid;
        grid-template-columns: 8% 90%;
        align-items: center;
    }
    
    .secTwo li p {
    font-size: 16px!important;
    }
    
    .heading_h2 {
    font-size: 28px;
    }
    
    /*.map iframe {
      width: 100%;
      height: 700px;
      margin-top: 20px;
    }*/
    
    .contact_ul li a {
    display: grid;
    grid-template-columns: 10% 80%;
    align-items: flex-start;
    }
    
    .secThree li p {
    font-size: 16px!important;
    }
    
    .secOne h2 {
    font-size: 28px;
    }
    
    .secTwo .secTow_content {
      padding-left: 9rem;
    } 

}

@media(max-width:1280px) {

.info_div {
    margin-right: -82px;
}

/* .box_txt_white {
  font-size: 16px;
  margin-left: 220px;
} */

.secOne_ul li a {
  display: grid;
  grid-template-columns: 10% 80%;
  align-items: center;
}

.why-us-right-img {
  height: 60px;
  margin-bottom: 20px;
}

.why-us-right-img{margin-bottom:10px;}
.why-us-right-img img{width:50px;}
.why-us-right-item-body{padding:10px 5px;}
.why-us-right-item-angle {padding: 0 27%; }


}

@media (max-width:1199px) {

.site-logo-inr{
    width: 70%;
  }

  .info_div {
    margin-right: -131px;
}

.secOne .form_design label {
  color: #000;
  padding-bottom: 10px;
  font-family: myFirstFontMedium;
  font-size: 14px;
}

/*.map iframe {
  width: 100%;
  height: 730px;
  margin-top: 20px;
}*/

.contact_ul li a {
  display: grid;
  grid-template-columns: 15% 80%;
  align-items: flex-start;
}

.event_details_banner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 75px 0;
}

  .navbar-social ul img {
    max-width: 16px;
  }

  .navbar-social ul {
    gap: 6px;
    padding-left: 10px;
  }

  .site-navbar ul {
    gap: 12px;
  }

  .site-navbar ul li {
    font-size: 13px;
  }

  .navbar-area-menu {
    gap: 12px;
  }

  .event_listing .content_div h3 {
    font-size: 20px;
    margin: 0;
    padding-bottom: 0px;
    font-family: myFirstFontSemibold;
}

  .clndr_img{
  width: 17px;
}

  .go-to-top.show {
    bottom: 10px;
}

.why-us-right-img {
  height: 50px;
  margin-bottom: 10px;
}

.why-us-right-item-body {
  padding: 15px!important;
  border: 2px solid var(--main-clr);
  height: 228px;
}

.why-us-right p {
  text-align: center;
  color: var(--main-clr);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 12px;
}

.why-us-right-item-body {
  padding: 15px!important;
  border: 2px solid var(--main-clr);
  height: 218px;
}

.event_details_banner h2 {
  font-size: 50px;
}

.box_txt_white {
  position: absolute;
  right: -15%;
  bottom: -22%;
  margin-top: 0;
  padding: 10px 40px 10px 10px;
}

.box_txt_white img {
  margin-right: 10px;
  width: 20px;
}


}

@media (max-width:1024px) {

  .site-logo-inr{
      width: 70%;
    }
  
    .info_div {
      margin-right: -44px;
  }

  .event_details_banner .box_txt {
    font-size: 12px;
  }

  .event_details_banner h2 {
    font-size: 50px;
}

.info_div_content a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 10px;
}

p, li, .site-navbar ul li a, .info_div_content a p, .btn-main {
  font-size: 12px;
}

.secOne .form_design label,  .secOne .form_design select, .secOne .form_design input{
  color: #000;
  padding-bottom: 10px;
  font-family: myFirstFontMedium;
  font-size: 12px;
}

/*.map iframe {
  width: 100%;
  height: 685px;
  margin-top: 20px;
}*/

.secTwo .secTow_content {
  padding-left: 3rem;
}
  
.check_ul_div {
  list-style: none;
  margin-top: 20px;
}

.event_listing .event_card_ul2 li {
  display: grid;
  grid-template-columns: 15% 80%;
  font-size: 16px;
}
  
}

@media(max-width: 992px){

.info_div {
    margin-right: -28px;
}

.box_txt_white {
  position: relative;
  right: 0;
  margin-top: 20px;
}

.secOne_ul li p {
  font-size: 14px;
}

.secTwo li p {
  font-size: 14px!important;
}

.secThree li p {
  font-size: 14px!important;
}

.secFour_icon {
  border: 4px solid #ffffffc7;
  width: 80px;
  height: 80px;
}

.event_listing .event_card_ul1 li::marker {
  font-size: 17px;
  color: var(--main-clr);
  padding-top: 25px;
  margin-top: 23px;
  line-height: 24px;
}

.why-us-right-item-body {
  padding: 15px!important;
  border: 2px solid var(--main-clr);
  height: 168px;
}

}

@media(max-width:991px){

  body.no-scroll {
    height: 100vh;
    overflow: hidden;
  }

  .nav-toggler {
    display: block;
    position: relative;
    z-index: 10;
  }

  .nav-toggler.toggler-open {
    position: fixed;
    top: 16px;
    right: 5px;
  }

  .navbar-area-menu {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    font-family: var(--font1);
    transform: scale(0);
    transition: 0.6s;
    opacity: 0;
    transform-origin: top right;
    height: 100vh;
    width: 100%;
    flex-direction: column;
  }

  .site-navbar>ul {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: clamp(40px, 7.5vw, 120px) 0px clamp(20px, 2.5vw, 40px);
    width: 100%;
    transition: 0.6s;
    overflow-y: auto;
    max-height: 100vh;
    justify-content: flex-start;
  }

  .site-navbar ul li {
    display: block;
    width: 100%;
    color: #fff;
  }

  .site-navbar>ul>li:not(:last-child) {
    border-bottom: 1px solid #ffffff38;
  }

  .site-navbar ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 14px 0;
    border-bottom-width: 0
  }

  .navbar-area-menu.open {
    transform: scale(1);
    opacity: 1;
  }

  .navbar-close {
    position: absolute;
    top: clamp(10px, 1.25vw, 20px);
    right: clamp(30px, 3.75vw, 60px);
    font-family: var(--font1);
    font-size: var(--40px);
    font-weight: bold;
    cursor: pointer;
  }

  .navbar-area-menu::before {
    background: #222;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    padding: 200%;
  }

  .site-navbar ul ul {
    position: static;
    background: #0000;
    box-shadow: none;
    width: auto;
    text-align: center;
    pointer-events: all;
    opacity: 1;
    transform: none;
    display: none;
    transition: 0s;
    padding-bottom: 10px;
  }

  .site-navbar ul ul a {
    display: block;
    text-transform: none;
    padding: 8px 0;
  }

  .site-navbar ul ul a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0 1px 1px 0;
    display: inline-block;
  }

  .site-navbar .li-sub-menu-wrap>a {
    display: inline-block;
    width: auto;
  }

  .site-navbar .li-sub-menu-wrap {
    padding: 0 35px
  }

  .site-navbar .li-sub-menu-wrap.open-submenu {
    background: #111;
  }

  .site-navbar .li-sub-menu-wrap::after {
    content: '\002B';
    color: #fff;
    border-width: 0 1px 1px 0;
    position: absolute;
    top: 10px;
    right: 13px;
    font-size: 140%;
    transition: 0.2s;
  }

  .site-navbar .li-sub-menu-wrap.open-submenu::after {
    transform: rotate(45deg);
  }

  .site-navbar ul ul li a:hover {
    background: #0000
  }

  .site-navbar {
    width: 100%;
  }

  .navbar-social {
    width: 100%;
  }

  .navbar-social ul {
    padding-left: 0;
    justify-content: center;
    border-left: 0;
    gap: 16px;
  }

  .desktop_element{
    display: none;
  }

  .event_details_banner .banner_sm_img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    z-index: -1;
    opacity: 0.5;
}

.event_details_banner .content {
  z-index: 5;
  width: 100%;
  position: relative;
}

.secOne .form_design{
  margin-top: 20px;
}

.secOne_ul {
  list-style: none;
  margin-bottom: 20px;
}

.mobile_element_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile_element_div .info_div_content .icon{
  margin-right: 0;
}

.info_div_content a{
  margin: 0;
  padding-right: 10px;
}

.event_details_banner h2 br{
  display: none;
}

.event_details_banner h2 {
  font-size: 45px;
}

/*.map iframe {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  margin-bottom: 2rem;
}*/

.secOne .form_design br{
  display: none;
}

.heading_h2 {
  font-size: 24px;
}

.check_ul_div li {
  display: grid;
  grid-template-columns: 12% 85%;
  align-items: flex-start;
}

.secFour_content {
  text-align: center;
  padding: 0px;
}

.ftr_heading {
  padding-bottom: 10px;
  padding-top: 20px;
}

.contact_ul li a {
  display: grid;
  grid-template-columns: 7% 80%;
  align-items: center;
}

.pr_4 {
  width: 100%;
}

.site-logo{
  width: 40%;
}

.subQ_btn{
  padding: 8px 10px;
  font-size: 10px;
}

.mobile_element_div .site-logo{
  display: none;
}

.why-us-left{margin-bottom:30px;}
.why-us-left-number{min-height:70px;display:flex;justify-content:center;align-items:center;}

}

@media(max-width:767px) {

  .header-area.sticky .header-top-bar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transform: translate(0, -100%);
  }

  .check_ul_div li {
    display: grid;
    grid-template-columns: 6% 85%;
    align-items: flex-start;
}

.secTwo .secTow_content {
  padding-left: 8rem;
}

.order_one{
  order: 1;
}

.order_two{
  order: 2;
}

.secThree .secThree_content{
  padding-left: 0;
  margin-top: 2rem;
}

.secFour_content{
  margin-bottom: 20px;
}

.event_details_banner h2 {
  font-size: 36px;
}

.site-navbar ul{
  margin-right: 0;
}

.box_txt_white img {
  margin-right: 10px;
  width: 15px;
}

.event_listing .event_card_ul2 li {
  display: grid;
  grid-template-columns: 8% 80%;
  font-size: 16px;
}

.event_listing .event_card_listing {
  background-color: #fff;
  box-shadow: 0 0 6px 0 #c5c5c5;
  height: auto;
  margin-bottom: 20px;
}

.why-us-right-item-body {
  padding: 15px!important;
  border: 2px solid var(--main-clr);
  height: 188px;
}

.why-us-right-item { margin-bottom: 20px;}

.why-us .h1 {
  font-size: 30px;
}
 
}

@media(max-width: 600px){

.secTwo .secTow_content {
    padding-left: 3rem;
}

.contact_ul li a {
  display: grid;
  grid-template-columns: 8% 80%;
  align-items: center;
}

.banner_sm_img{
  display: none;
}

.event_details_banner .img_mb{
  display: block;
}

.event_details_banner .content{
  margin-top: 2rem;
}

.event_details_banner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 30px 0;
}

.box_txt_white {
  font-size: 12px;
}

.why-us-left-number {width: 60px;}
.why-us-left-text {width: calc(100% - 60px);}
.why-us-right-item-wrap .col-4{max-width:100%!important;width:100%!important}

}

@media(max-width: 576px){

.event_details_banner .content {
    margin-top: 1rem;
}

.event_details_banner .box_txt {
  margin-bottom: 10px;
}

.box_txt_white {
  margin-top: 10px;
}

.event_details_banner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 15px 0;
}

.why-us-right p {
  text-align: center;
  color: var(--main-clr);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 12px;
}

}

@media(max-width:540px){

  .why-us-right p {
    text-align: center;
    color: var(--main-clr);
    margin-bottom: 0;
    font-weight: 500;
    font-size: 20px;
}

.why-us-right-item-body {
  padding: 15px!important;
  border: 2px solid var(--main-clr);
  height: 175px;
}

.why-us .h1 {
  font-size: 25px;
}

.why-us-right-logo {
  width: 70%;
  margin: 40px auto;
}

.why-us-right p {
  text-align: center;
  color: var(--main-clr);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
}

.why-us-right-img img {
  width: 60px;
}

}

@media(max-width:480px){

  .secOne_ul li a {
    display: grid;
    grid-template-columns: 15% 80%;
    align-items: center;
}

.site-logo {
  width: 35%;
}

.site-logo-inr {
  width: 90%;
}

.mobile_element_div .subQ_btn{
  display: none;
}

.secOne h2 {
  font-size: 24px;
}

.check_ul_div li {
  display: grid;
  grid-template-columns: 12% 85%;
  align-items: flex-start;
}

.secTwo .secTow_content {
  padding-left: 2rem;
}

.go-to-top.show {
  bottom: 90px;
}

.secFour_img{
  width: 40%;
}

.secFour_content p{
  font-size: 15px;
}

.contact_ul li a {
  display: grid;
  grid-template-columns: 14% 80%;
  align-items: center;
}

}


@media(max-width: 375px){

  .site-logo {
    width: 45%;
}

.event_details_banner .box_txt {
  font-size: 12px;
}

.secOne .form_design input, .secOne .form_design select {
  padding: 8px 10px;
}

}