@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@keyframes arrow-movement {
  0% {
    opacity: 0;
    top: 35%;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(310deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) rotate(310deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(310deg);
  }
}
@keyframes float2 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(9deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) rotate(9deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(9deg);
  }
}
@keyframes float3 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(-15deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) rotate(-15deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(-15deg);
  }
}
@keyframes float4 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(27deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) rotate(27deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(27deg);
  }
}
@keyframes float6 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(113deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) rotate(113deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(113deg);
  }
}
@keyframes float7 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(-30deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) rotate(-30deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) rotate(-30deg);
  }
}
/* Responsive */
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(255, 255, 255);
  outline: 1px solid slategrey;
}

html {
  scroll-behavior: smooth;
}

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "sans-serif";
  list-style: none;
  overflow-x: hidden;
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Roboto", "sans-serif";
}

@keyframes locaAnim {
  0% {
    top: -3px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -3px;
  }
}
.headerTopClass {
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  position: relative;
  top: 0;
  left: 0;
  z-index: 99;
}
.headerTopClass .headNavigation {
  /**
  * Mobile Navigation 
  */
}
.headerTopClass .headNavigation .brandLogo {
  position: relative;
}
.headerTopClass .headNavigation .brandLogo img {
  height: auto;
}
@media (max-width: 1080px) {
  .headerTopClass .headNavigation .brandLogo img {
    width: 90px;
  }
}
.headerTopClass .headNavigation .brandLogo .mdLine {
  margin: 0px 10px 0px 10px;
  height: 50px;
  width: 2px;
  border-radius: 10px;
  background: #000931;
}
@media (max-width: 1080px) {
  .headerTopClass .headNavigation .brandLogo .mdLine {
    height: 40px;
    width: 2px;
  }
}
.headerTopClass .headNavigation .navbar {
  display: flex;
  justify-content: space-between;
}
.headerTopClass .headNavigation .navbar ul {
  text-decoration: none;
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0px;
  padding: 0px;
}
.headerTopClass .headNavigation .navbar ul li {
  margin: 20px;
}
.headerTopClass .headNavigation .navbar ul li a {
  text-decoration: none;
  color: #000931;
}
.headerTopClass .headNavigation .navbar ul li a:active::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background: #bf2424;
}
.headerTopClass .headNavigation .navbar ul .pinLocationLink {
  background: linear-gradient(323deg, rgb(24, 168, 99) 0%, rgb(91, 209, 140) 100%);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  position: relative;
  box-shadow: 2px 5px 13px -7px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 2px 5px 13px -7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 5px 13px -7px rgba(0, 0, 0, 0.75);
}
.headerTopClass .headNavigation .navbar ul .pinLocationLink::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(171, 249, 203, 0.4509803922);
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: -9;
}
.headerTopClass .headNavigation .navbar ul .locationCon {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-5px);
}
.headerTopClass .headNavigation .navbar ul .locationCon img {
  height: 22px;
  position: relative;
  z-index: 19;
  top: -40px;
  animation: locaAnim 1.3s ease-in-out 0s infinite forwards;
}
.headerTopClass .headNavigation .navbar ul .locationCon span.pinPlate {
  width: 15px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.headerTopClass .headNavigation .offcanvas-end {
  width: 255px !important;
}
.headerTopClass .headNavigation .offcanvas-body {
  background-color: #FFF;
}
.headerTopClass .headNavigation .offcanvas-body .nav-link {
  color: rgb(27, 27, 27);
}
.headerTopClass .headNavigation .btn-mobile i {
  color: rgb(34, 34, 34);
}
.headerTopClass .headNavigation .offcanvas-header {
  background: #FFF;
  color: rgb(70, 70, 70);
  justify-content: flex-end;
  cursor: pointer;
}
.headerTopClass .headNavigation .offcanvas-header .dropdown-profile h3 {
  color: #222222;
}
.headerTopClass .headNavigation .offcanvas-header .location-menu span {
  color: rgb(37, 37, 37);
}
.headerTopClass .headNavigation .nav-item {
  color: rgb(32, 32, 32) !important;
}
.headerTopClass .headNavigation .nav-link:focus,
.headerTopClass .headNavigation .nav-link:hover {
  color: #DD3256 !important;
  transition: 0.3s ease-in-out;
}
.headerTopClass .headNavigation .btn-close {
  color: rgb(134, 134, 134);
  background-color: rgb(95, 95, 95);
}
.headerTopClass .headNavigation .nav-link img {
  margin-right: 10px;
  width: 20px;
}
.headerTopClass .headNavigation .container-social-menu {
  background: #eeeeee;
}
.headerTopClass .headNavigation .container-social-menu .social-icons {
  color: rgb(95, 95, 95);
}
.headerTopClass .headNavigation .container-social-menu .social-icons i {
  margin: 15px;
}
.headerTopClass .headNavigation .links-menu a {
  color: rgb(70, 70, 70) !important;
  margin: 10px;
  font-size: 11px;
}
@media (max-width: 991px) {
  .headerTopClass .headNavigation .mobile-nav-toggle {
    display: block;
  }
  .headerTopClass .headNavigation .navbar ul {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .btn-mobile {
    display: none;
  }
}
.swiper {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1366px) {
  .swiper-wrapper {
    height: auto;
  }
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
  border-radius: 30px;
}

.mySwiper {
  height: auto;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 15%;
  height: 30%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.mySwiper .swiper-slide-thumb-active img {
  border: 2px solid red;
}

.swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.mySwiper .swiper-slide img {
  border-radius: 20px;
}

.newEventDetailsPage {
  margin-bottom: 3rem;
}
.newEventDetailsPage .titleRow {
  margin-bottom: 2rem;
}
.newEventDetailsPage .lastDiv .titleCon {
  font-size: 1.7rem;
  font-weight: 500;
}
.newEventDetailsPage .lastDiv .desCon {
  font-size: 16px;
}
.newEventDetailsPage .lastDiv .date_paracon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.newEventDetailsPage .lastDiv .date_paracon img {
  margin-right: 10px;
}
.newEventDetailsPage .lastDiv .date_paracon .dateSet .darBg {
  font-weight: 500;
}

footer {
  overflow: hidden;
  width: 100%;
  padding: 0px !important;
  margin: 0px !important;
}
footer .footerCon {
  display: flex;
  justify-content: center;
  margin: 30px 0px 30px 0px;
}
footer .footerCon .footerColOne {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footerCon .footerColOne .imageLogoBrLow {
  width: 160px;
}
footer .footerCon .footerColOne .socialRow {
  margin-top: 40px;
}
footer .footerCon .footerColOne .socialRow img {
  padding: 5px;
}
footer .sectionLastFooter {
  overflow: hidden;
}

.copyright {
  background-color: #DD3256;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}

.pinkiText {
  color: #DD3256;
  font-weight: 700;
}

.space2 {
  margin-top: 10px;
}/*# sourceMappingURL=new_page_event.css.map */