:root {
  --white-color: #ffffff;
  --primary-color: #535da1;
  --secondary-color: #14B789;
  --section-bg-color: #f9f9f9;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --featured-border-color: #727aab;

  --body-font-family: 'DM Sans', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-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: #FFF7FC;
  font-family: var(--body-font-family);
  overflow-x: hidden;
  z-index: 0;
}


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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

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

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

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

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

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

ul li {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  list-style-type: none !important;
}

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

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: #d70a0a;
}

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

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

.section-padding {
  padding-top: 50px;
  padding-bottom: 40px;
}

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

.section-title-wrap {
  background-color: rgb(50, 50, 50);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
  transition: 0.6s;
}

.section-title-wrap:hover {
  box-shadow: 5px 5px 5px black;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 140px;
  height: 140px;
}

.avatar-image-large {
  width: 90px;
  height: 90px;
}

/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  /* background: var(--white-color); */
  /* background-color: #f6e1e1; */
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}


@keyframes buzzOut {
  0% {
      transform: translateX(0);
  }
  25% {
      transform: translateX(-5px) rotate(2deg);
  }
  50% {
      transform: translateX(5px) rotate(-2deg);
  }
  75% {
      transform: translateX(-3px) rotate(1deg);
  }
  100% {
      transform: translateX(3px) rotate(-1deg);
  }
}

.buzz-out {
  animation: buzzOut 0.5s ease-in-out;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/

.navbar {
  background-color: #d70a0a;
  color: white;
  position: sticky;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  transition: all 0.6s;
  padding-top: 0px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);

  img {
    background: transparent;
  }
}

.gradient-text {
  background-color: #f3ec78;
  color: white;
  /* background-image: linear-gradient(45deg, rgb(255, 255, 255), red); */
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 8px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: black;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

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

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

.nav-item .btn {
  position: relative;
  animation: moveUpDown 1s ease-in-out infinite;
  outline: none;
  box-shadow: none;
}

@keyframes moveUpDown {
  0% {
      transform: translateY(0); /* Initial position */
  }
  50% {
      transform: translateY(-10px); /* Moves up by 10px */
  }
  100% {
      transform: translateY(0); /* Moves back to the initial position */
  }
}

.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 1000ms 50ms ease, -webkit-transform 1000ms 350ms ease;
  transition: top 1000ms 50ms ease, transform 1000ms 350ms ease;
  transition: top 1000ms 50ms ease, transform 1000ms 350ms ease, -webkit-transform 1000ms 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 1000ms 1000ms 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;
}




/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  /* overflow-x: hidden; */
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: red;
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;

  img {
    width: 80%;
  }

  .img1 {
    height: 48%;
  }
}

/*---------------------------------------
  SERVICES              
-----------------------------------------*/

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  /* overflow-x: hidden; */
  /* margin-bottom: 24px; */
  padding: 20px 20px 0px 20px;
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
}

.services-thumb:hover {
  border: 2px solid #D70A0A;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 30px 30px 30px 30px;
  height: 100%;

  .socialicons {
    justify-content: space-around;
  }

  

  .social-btn {
    background-color: white;
    border: 2px solid transparent;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
  }

  .social-btn:hover {
    background-color: #fff7fc;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }

  .socialicons p {
    margin: 0;
  }

  .socialicons .btn {
    font-size: 24px;
  }
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid #ebebeb;
  color: black;
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: black;
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: #D70A0A;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: #D70A0A;
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: #D70A0A;
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background-color: #D70A0A;
  border-color: transparent;
}

/* ----------------------------- */
    /* footer */
    .footer {
      background-color: #d70a0a !important;
      color: white !important;
    }

/* ----------------------------- */

/* --------gallery---------- */

@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,500');

.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    height: 100vh;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}

.elements {
    position: fixed;
    bottom: 0;
    display: flex;
    height: 10vh;
    width: 100%;
    z-index: 100;
}

.elements .swiper-pagination-bullet {
    flex: 1;
    text-align: center;
    line-height: 10vh;
    vertical-align: middle;
    opacity: 1;
    background: whitesmoke;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    font-size: 2em;
    border-radius: 0;
}

.elements .swiper-pagination-bullet-active {
    background: springgreen;
    transition: background 0.3s ease;
}

@media only screen and (max-width: 480px) {
    .elements .swiper-pagination-bullet {
        font-size: 1.4em;
    }
}


/* --------gallery---------- */

@media screen and (max-width: 340px) {


  .services-thumb {
    width: 100%;
  }
  .navbar-brand {
    img {
      width: 50px;
    }
  }
  body {
    flex-direction: column;
  }
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
  .mobileabout {
    margin-top: 20px;
  }

  #galleryCarousel {
    img {
      /* width: 80%; */
      align-items: center;
      flex-direction: column;
      /* display: flex; */
      margin-top: 10px;
      gap: 10px;
    }
  }
  .forms {
    margin-top: 20px;
  }
  #aboutOurApp, #upcomingEvents {
    .services-thumb {
      margin-left: 0px;
    }
  }

  .footer {
    a {
      font-size: 12px;
    }
  }
}

.social-btn {
  font-weight: bold;
  text-decoration: none;
  margin-right: 10px;
  padding: 10px;
  border: none;
}

.social-btn.facebook {
  color: #4267B2;
}

.social-btn.instagram {
  color: #C13584;
}

.social-btn.twitter {
  color: #1DA1F2;
}

.social-links {
  display: flex;
  justify-content: space-around;
}
