/* -------------------------------------------------------------- */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #81B29A;
  --secondary-color:              #3D405B;
  --section-bg-color:             #F4F1DE;
  --custom-btn-bg-color:          #eca128;
  --custom-btn-bg-hover-color:    #E07A5F;
  --dark-color:                   #000000;
  --p-color:                      #454545;
  --link-hover-color:             #F2CC8F;

  --body-font-family:             "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, system-ui, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  16px;
  --menu-font-size:               16px;
  --btn-font-size:                14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, system-ui, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  /* font-family: 'Roboto', sans-serif; */

}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
  
}

.site-footer p {
  font-weight: 300;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-bg {
  background-color: var(--section-bg-color);
}

.section-padding {
  padding-top: 70px;
  padding-bottom: 70px;

}



.section-overlay {
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(rgba(39, 48, 83, 0.01) 0%, rgb(0, 0, 0) 100%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--custom-btn-bg-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
/* .custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
} */

.custom-border-btn i {
  /* background: transparent;
  border: 2px solid var(--custom-btn-bg-color); */
  color: var(--custom-btn-bg-color);
   font-size: 24px;
}

.custom-border-btn i:hover {
  /* background: var(--custom-btn-bg-color);
  border-color: transparent; */
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.offcanvas {
  /*background-color: var(--primary-color);*/
  background-color: #202020;
    padding: 20px;
}

.offcanvas.offcanvas-end {
  border-left: 0;
}

.offcanvas-header .btn-close {
  transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(180deg);
}

.offcanvas svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: #333;
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--dark-color);
  max-width: 48px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--white-color);
}
/* .btn-close {filter: invert(1);} */
.navbar .navbar-brand-image {
  /* filter: brightness(0) invert(1); */
}

.navbar-brand-image {
  width: 240px;
  height: auto;
}

.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding-top: 15px;
  padding-bottom: 15px;
}


.side-menu .navbar-nav .nav-link {
  padding-top: 3px;
  padding-bottom: 3px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.logo {z-index: 9;}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
  display: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../img/slider/slider3.3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  height: 100vh;
  min-height: 750px;
  margin-bottom: -90px;
}

.hero-50 {
  height: auto;
  min-height: 540px;
  margin-bottom: -100px;
}

.hero-50 .container + svg {
  transform: rotate(180deg);
}

.hero-section .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section > svg {
  top: 0;
}

.hero-section .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section .row {
  position: relative;
  z-index: 22;
}

.heading-h2 {
  position: relative;
}

.heading-h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 2px;
  background: #000;
  left: 0;
  right: 0;
  bottom: 0;
  top: 50px;
  margin: auto;
}

.row{
  align-items: center;
}
.modal-header {
   padding: 10px 20px;
}
/* ======================================
btn==================================== */

.btn.btn-white.btn-outline-white {
  color: #fff;
  background-color: transparent;
}
.btn.btn-white {
  border-width: 2px;
  border-color: #fff;
  background: #fff;
  color: #000;
}

.btn.btn-black:hover {
  color: #000;
  background-color: transparent;
}


.btn.btn-white.btn-outline-white:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.btn.btn-black.btn-outline-black:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.btn.btn-white:hover {
  color: #fff;
  background-color: transparent;
}

.offcanvas-backdrop {
  display: none !important;
}
.btn {
  text-transform: capitalize;
  /* font-size: 12px;
  font-weight: 900; */
  padding: 4px 20px;
}
.btn.btn-black {
  border-width: 2px;
  border-color: #000;
  background: #000;
  color: #fff;
}

.btn.btn-black.btn-outline-black {
  color: #000;
  background-color: transparent;
}

.btn.btn-black:hover {
  color: #000;
  background-color: transparent;
}

.btn.btn-black.btn-outline-black:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}


  .bg-gradient-to-r {
    background: #d6f4f1 !important;
    overflow: hidden;
    border: 1px solid #b0d2dd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: .6s;
    border-top: 4px solid #02b2e8;
    border-bottom: 4px solid #02b2e8;
}

.modal-body{
  background: #d6f4f1 !important;
}
.para-height {
  height: 500px;
  overflow-y: auto !important;
}
/*---------------------------------------
  BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.section-bg-image {
  background-image: url('../img/slider/slider2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: -70px;
}
.csm-section{
  background-image: url('../img/slider/slider1.3.WEBP');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: -70px;
}

.section-bg-image .container + svg {
  transform: rotate(180deg);
  position: relative;
  bottom: -1px;
}

.section-bg-image-block {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  border-radius: var(--border-radius-medium);
  padding: 47px 50px;
}

.section-bg-image-block .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.section-bg-image-block .input-group-text {
  background-color: transparent;
  border: 0;
}

.section-bg-image-block input[type="email"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.section-bg-image-block button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}
/* .section-bg-image-block p{
 text-transform: capitalize;
} */

/*---------------------------------------
  ABOUT SECTOIN              
-----------------------------------------*/
.about-section {
  padding-bottom: 10px;
}

.member-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.member-block-image-wrap:hover .member-block-image {
  transform: scale(1.2);
}

.member-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.member-block-image-wrap .social-icon {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  padding: 15px 20px;
  width: auto;
}

.member-block-image {
  transition: all 0.3s;
}

.member-block-info {
  padding: 10px;
}

.member-block-info h4,
.member-block-info p {
  margin-bottom: 0;
}


/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
}

.custom-block-bg {
  background: var(--white-color);
}

.custom-block-date-wrap {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-medium);
  text-align: center;
  padding: 20px 30px;
}

.custom-block-date {
  font-size: var(--h1-font-size);
}

.custom-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.2);
}

.custom-block-image-wrap:hover .custom-block-icon {
  opacity: 1;
}

.custom-block-image {
  transition: all 0.3s;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
  position: absolute;
  bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
  border-radius: 0;
  left: 0;
  width: 50%;
  padding: 12.30px 20px;
}

.custom-block-image-wrap .custom-btn-wrap {
  right: 0;
  width: 50%;
}

.custom-block-image-wrap .custom-btn  {
  border-radius: 0;
  display: block;
  padding: 15px 20px;
}

.custom-block-info {
  padding-top: 10px;
}

.custom-block-image-wrap + .custom-block-info {
  padding-top: 20px;
}

.custom-block-span {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 110px;
  margin-right: 10px;
}

.custom-block-icon {
  background: var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: var(--h3-font-size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
}

.custom-block-icon:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}


/*---------------------------------------
  EVENTS SECTION            
-----------------------------------------*/
/* .events-section.section-bg .container > .row {
  margin-right: 5px;
  margin-left: 5px;
} */

.events-section.section-bg .container > .row .row {
  margin: auto;
}

.events-listing-section {
  margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
  padding: 40px 60px;
}

.events-detail-info {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px 25px;
}

.events-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
}



/*---------------------------------------
  MEMBERSHIP SECTION            
-----------------------------------------*/
.membership-section .container {
  position: relative;
  z-index: 2;
}

.table-responsive {
  border-radius: var(--border-radius-medium);
}

.table-responsive tbody, 
.table-responsive td, 
.table-responsive tfoot, 
.table-responsive th, 
.table-responsive thead, 
.table-responsive tr {
  border: 0;
}

.table-responsive thead tr {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.table-responsive thead th {
  padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
  background-color: var(--section-bg-color);
}

.table>:not(caption)>*>* {
  padding: 18px 16px;
}

.table-responsive .bi-check-circle-fill {
  color: var(--primary-color);
}

.table-responsive .bi-x-circle-fill {
  color: var(--custom-btn-bg-hover-color);
}

.membership-form {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  padding: 35px;
}

.membership-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 100px;
}

/* .digitat-image {
  height: 385px;
} */

.digital-bg_hight {
   height: 240px;
    overflow-y: auto;
}

.digital-section {
   padding-bottom: 50px;
}
/* -------------------------------------
cms-section----------------------------- */
.cms-section {
  background-image: url('../img/slider/slider1.3.WEBP');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: -70px;
 
}

.swiper-slide h3 {
 text-align: center;
}

.swiper_section {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  justify-content: space-around;
  padding: 10px 10px;
}
.swiper-slide{
   text-align: center;

}
.swiper-slide img{
   width: 100px;
   text-align: center;
}
/* -------------------------------------
cms-section----------------------------- */



/*---------------------------------------
  CONTACT               
-----------------------------------------*/


.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 120px;
}

.contact-info {
  position: relative;
}

.contact-info-item {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.contact-info-body {
  padding: 20px 30px;

}

.contact-info-body strong,
.contact-info-item a {
  color: var(--white-color);
}

.contact-info-footer {
  background-color: var(--custom-btn-bg-hover-color);
  padding: 10px 20px;
  transition: all 0.3s;
}

.contact-info-footer:hover {
  background-color: var(--custom-btn-bg-color);
}

.contact-info-footer a {
  display: block;
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SITE FOOTER            
-----------------------------------------*/
.site-footer {
  position: relative;
  /* padding-bottom: 200px; */
   background-color: #333; 
    padding: 40px 20px 20px 20px;
}

/* .site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.site-footer-title {
  color: var(--secondary-color);
}

.site-footer p span {
  font-weight: var(--font-weight-medium);
  margin-right: auto;
} */
/* ===================================
========mega-menu===================== */



.mega-section {
  /* background-color: #006459; */
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  /* background-image: url(../img/mega-bg.WEBP);
  background-repeat: no-repeat;
  background-size: cover; */
  top:0px;


}



.find_tt h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid;
  line-height: 40px;
  display: inline-block;
}

.mega_menu {
  margin-bottom: 20px;
}

.mega_menu ul {
  padding: 0px;
  margin: 0px;
}

.mega_menu ul li {
  list-style: none;
}

.mega_menu ul li a {
  color: #fff;
  padding: 0px 0px;
  display: inline-block;
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
  left: 15px;
  font-weight: 500;
}

.mega_menu ul li a:hover {
  color: #c7c7c7;
}

.mega_menu ul li a:after {
  content: '';
  position: absolute;
  color: #fff;
  left: -15px;
  top: 7px;
  font-size: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}

.mega_menu ul li a:after :hover {
  background-color: #ccc;
}

.mega_menu ul li i.bx {
  display: none;
}

.find_tt p {
  padding: 5px 0px 10px 15px;
  color: #fff;
  height: 120px;
  font-size: 14px;
  position: relative;

}


.find_tt p::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0px;
  width: 4px;
  height: 70px;
  background-color: #e2a808;
}

.close {
  position: absolute;
  color: #fff;
  right: 40px;
  font-size: 18px;
  top: 10px;
  cursor: pointer;
  z-index: 9999;
}

.mega_menu_bx-1 {

  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 15px;
  height: 100vh;
  width: 100%;
  position: relative;
}

.mega_color {
  position: absolute;
  content: "";
  background: rgb(199, 0, 57, 1);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 30px 30px;

}


.mega_menu_bx-2 .mega_color {
  position: absolute;
  content: "";
  background: rgba(144, 12, 63, 1);

  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 30px 30px;

}


.mega_menu_bx-3 .mega_color {
  position: absolute;
  content: "";
  background: rgb(99, 57, 116, 1);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 30px 30px;
}


.mega_menu_bx-4 .mega_color {
  position: absolute;
  content: "";
  background: rgb(10, 181, 133, 1);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 30px 30px;
}



.mega_p {
  padding: 0px;

}


/*.img_mega-icon {
  text-align: center;
  margin-top: 30px;
  position: absolute;
  bottom: 20px;
  left: 100px;
}*/
.img_mega-icon {
    text-align: center;
    position: relative;
    top: 20px;
    bottom: 0px;
    left: 0;
    /* display: contents; */
    margin: 0 auto;
    width: 100%;
}
.btn_section {
  /*position: absolute;
  bottom: 126px;*/
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.btn_model {
  border-radius: 0;
  padding: 3px 10px;
  border: none;
  text-transform: capitalize;
  background-color: inherit;
}

.save-model {
  background-color: #fff !important;
  color: #000;
  border: 2px solid #fff;
}
.get-model {
  background-color: #f5a425;
  border: 2px solid #f5a425;
}
.get-model:hover{
  background-color: #f5a525c6;
}
.btn_model:hover, .get-model:hover {
  /* opacity: 0.7 !important; */
  color: #fff;
  background-color: #000 !important;
  border: 2px solid #000;
}

.img_bx img {
  width: 85px;
}


.swiper-slide {
  background: #fff;
  border-radius: 4px;
  padding:5px 10px;
}

/* ------------------------------------------------------
end
------------------------------- */

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.contact-section {
  padding-top: 50px;
}
.custom-form .form-control {
  border-radius: var(--border-radius-medium);
  border-width: 2px;
  box-shadow: none;
  color: var(--p-color);
  
  padding: 10px;
  padding-left: 15px;
  outline: none;
}

label#captcha_msg-error {
  margin-top: 10px;
  margin-left: 10px;
}

label {
  display: inline-block;
  color: red;
}

.input-group label {
  display: inline-block;
  color: red;
  position: absolute;
  bottom: -22px;
}
.sent-message {color: green;}
.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

textarea {resize: none;}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.header-form {
  position: relative;
}

.header-form .form-control {
  padding-left: 42px;
}

.header-form-icon {
  width: 24px;
  position: absolute;
  top: 0;
  margin: 12px;
  margin-left: 15px;
}


.captcha-add {
  display: flex;
  align-items: center;
}
.Please-text {
  font-size: 16px;
}

.captcha-add input {
  width: 100px;
  margin-left: 20px;
  height: 35px !important;
}
.bg_color-model {
  border-top: 6px solid #fc0;
  border-bottom: 6px solid #b10404;
  border-radius: 12px;
  margin-top: 100px;
  background-color: #000;
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


.social-icons .facebook {
  border: 2px solid #4267B2 !important;
}

.social-icons .facebook {
  border: 2px solid #4267B2 !important;
}

.social-icons .twitter {
  border: 2px solid #1DA1F2 !important;
}

.social-icons .linkedin {
  border: 2px solid #4267B2 !important;
}

.social-icons .insta {
  border: 2px solid #d6249f !important;
}

.social-icons .pint { 
  border: 2px solid #c70302 !important;
}


/* ----- Social Icons ----- */

.social-icons-simple {
  margin-top: -3px;
}

ul.social-icons-simple li,
ul.social-icons li {
  display: inline-block;
}

ul.social-icons li a,
ul.social-icons-simple li a {
  height: 30px;
  line-height: 30px;
  width: 30px;
  font-size: 14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 1px;
  text-align: center;
  display: block;
  color: #26313c;
  position: relative;
  z-index: 1;
  border: 1px solid #7c7c7c;
}

ul.social-icons li a,
ul.social-icons-simple li a {
  line-height: 26px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

ul.no-border li a {
  border: none !important;
}

ul.social-icons-simple li a {
  border: none;
}

ul.social-icons.whitebg li a {
  background: #fff;
}

ul.social-icons li:last-child a {
  margin-right: 0;
}

ul.social-icons li:first-child a {
  margin-left: 0;
}

ul.social-icons li a::before,
ul.social-icons-simple li a::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
  opacity: 0;
  visibility: hidden;
  /* background: #cc0101; */
  border-radius: inherit;
  z-index: -1;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
}

ul.social-icons li a:hover::before,
ul.social-icons li a:focus::before,
ul.social-icons-simple li a:hover::before,
ul.social-icons-simple li a:focus::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

ul.social-icons.white li a,
ul.social-icons-simple.white li a,
ul.social-icons li a:hover,
ul.social-icons li a:focus,
ul.social-icons.white li a:hover,
ul.social-icons.white li a:focus {
  color: #000;
 

}

ul.social-icons {
  padding-left: 0px;
}
/*icon bg bover */
.facebook{
  background-color: #4267B2 !important;
  color: #fff;

}

.twitter {
  background-color: #1DA1F2 !important;
  color: #fff;
}

.insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  color: #fff;
}

.linkedin {
  background-color: #0077B5 !important;
  color: #fff;
}

.pint {
  background-color: #c70302 !important;
  color: #fff;
}

.whatsapp {
  background-color: #09cc16 !important;
  color: #fff;
}
.offcanvas-backdrop {
   position: inherit !important;
}
.btn-bx {
   margin-top: 30px;
}

.web-app {
  padding: 0px 23px;

}

.web-app li {
  color: #000;
  font-weight: 600;
}
/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media (max-width: 1340px) {
.find_tt p {
    font-size: 13px;
}
.mega_menu ul li a {
    font-size: 13px;
    font-weight: normal;
}	
}	

@media (max-width: 1260px) {
.find_tt p {
    font-size: 13px;
}
.mega_menu ul li a {
    font-size: 13px;
    font-weight: normal;
}	
}	

@media (max-width: 1199px) {
  .mega_menu_bx-1 {

    height: 600px;

  }
.btn_section{
  position: relative;
    bottom: inherit !important;
}
  .mega-section {
    position: fixed;
    height: 100vh;
    overflow-y: scroll !important;
    overflow-x: hidden;
  }

  .find_tt p {
    height: 90px;
  }

  .img_mega-icon {
    /*text-align: left;*/
    margin-top: 15px;
    position: relative;
    bottom: 0px;
    left: inherit;

  }

  .img_mega-icon img {
    width: 70px;
  }

  img.smalldevice {
    width: 100%;
  }
  .hero-section {
 
    padding-top: 120px;
    padding-bottom: 100px;
    height: inherit;
    min-height: 700px;
    margin-bottom: -90px;
}

.section-bg-image .container + svg {

  bottom: -2px;
}
}


@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color:#333;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px;
    padding: 0;
  }

  .hero-section {
    position: relative;
    top: 73px;
    margin-bottom: 82px;
  }

  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 40px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom:20px;
  }
  .digitat-image {
     height: auto;
  }

  .swiper {
     padding: 10px 15px;
  }
  .section-padding  {
     overflow-y: hidden !important;
  }

  .cd-words-wrapper b {
    white-space: break-spaces !important;

  }
  .modal-dialog {
    margin-top: 50px;
 }

 .section-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-section {
  position: relative;
  top: 73px;
  margin-bottom: 50px;
  padding-top: 0px;
  padding-bottom: 0px;
}
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding-top: 36px;
    padding-bottom: 16px;
    height: inherit;
    min-height: 700px;
    margin-bottom: 20px;
}

}
@media screen and (max-width: 480px) {
  
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-info-item {
    width: 80%;
  }
  .contact-info-body {
    padding: 15px 15px;
}
  .heading-h2::after {
  display: none;
  }
  .cd-words-wrapper b {
    white-space: break-spaces !important;

  }

  .section-bg-image-block {
    padding: 20px 10px;
}
.custom-btn.custom-border-btn {
  padding: 0;
}
.btn {
   padding:4px 10px;
}
.mega_menu_bx-1 {

  /* height: 600px; */

}

.hero-section {
  padding-top: 0px;
  padding-bottom: 30px;
  height: inherit;
  min-height: 682px;
  margin-bottom: 70px;
}

.section-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}
.about-section {
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}
.btn-bx {
   margin-top: 0px;
}

.modal-dialog {
   margin-top: 100px;
}
.navbar-brand-image {
  width: 210px;
}
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}




