@keyframes modal-video {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px); }
  to {
    transform: translate(0, 0); } }

.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

.modal-video-effect-exit {
  opacity: 0; }
  .modal-video-effect-exit .modal-video-movie-wrap {
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    transform: translate(0, 100px); }

.modal-video-body {
  max-width: 940px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: table; }

.modal-video-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%; }

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out; }
  .modal-video-movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent; }
  .modal-video-close-btn:before {
    transform: rotate(45deg); }
  .modal-video-close-btn:after {
    transform: rotate(-45deg); }
  .modal-video-close-btn:before, .modal-video-close-btn:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
    border-radius: 5px;
    margin-top: -6px; }

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/**
 * Swiper 5.3.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 10, 2020
 */

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

button {
  outline: none !important;
  border: none; }

.ostion-logo img {
  width: 300px; }

.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 50%;
  margin-right: 5px;
  font-size: 13px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #424242; }

.action__text {
  display: flex;
  align-items: center;
  float: left;
  margin: 0px; }

.gray-icon-style {
  color: #6d6c6c; }

.mob-menu-logo {
  color: #818181;
  margin-bottom: 18px; }

.user-name {
  color: #818181;
  font-weight: 700;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap; }

a.hover {
  cursor: pointer; }

.update-profile {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-update-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.update-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .update-input input:focus {
    outline: none; }

.update-errors {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.My-account {
  white-space: nowrap; }

.mobile-menu-toggle {
  cursor: pointer; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .footer-links h3 {
    color: white;
    padding: 20px; }
  .footer-links .col {
    display: flex;
    justify-content: flex-end; }

.event-detail-item h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: 600; }

.event-detail-area {
  padding-top: 20px; }

.blog-image {
  height: 350px;
  object-fit: scale-down; }

.event-blog {
  cursor: pointer; }

.grid-help {
  padding-bottom: -10px; }

.footer-links a, .footer-links a:hover {
  text-decoration: none;
  color: white; }

.footer-slash {
  color: white; }

.form-controls {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: #1b1a1a;
  color: #ffffff;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  font-weight: 500;
  font-size: 16px;
  outline: none; }

.themes-btn {
  font-size: 12px;
  text-transform: uppercase;
  background: #ee782a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 25px 0 30px;
  line-height: 43px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-decoration: none;
  border: none; }

.banner {
  background-color: #f2f2f2;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .banner .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0; }
    .banner .grid .grid-items p {
      font-size: 20px;
      line-height: 30px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      color: #818181;
      margin-bottom: 1.85rem;
      text-align: center; }
    .banner .grid .grid-items p:last-child {
      margin-bottom: 0; }

.your-choose {
  padding: 5rem 0; }
  .your-choose .title-text {
    margin-bottom: 5rem; }
    .your-choose .title-text h3 {
      font-size: 50px;
      line-height: 60px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
      color: #424242;
      text-align: center;
      margin-bottom: 1.85rem; }
    .your-choose .title-text p {
      font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 20px;
      font-weight: 400;
      color: #818181;
      text-align: center; }
  .your-choose .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 0 20px; }
    .your-choose .grid .grid-items .icon-center {
      display: flex;
      justify-content: center; }
      .your-choose .grid .grid-items .icon-center .icon {
        background-color: #c8cbd4;
        width: 160px;
        height: 160px;
        border: 3px solid #fff;
        border-radius: 50%; }
    .your-choose .grid .grid-items .icon-text p {
      font-size: 20px;
      line-height: 28px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 600;
      color: #131313;
      text-align: center;
      margin-top: 1.25rem; }

.explore-banner {
  background-color: #f2f2f2;
  padding: 5rem 0; }
  .explore-banner .explore-section .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 0 30px;
    align-items: center; }
    .explore-banner .explore-section .grid .grid-items .explore-text h1 {
      font-size: 40px;
      line-height: 48px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 600;
      color: #424242;
      margin-bottom: 0; }
    .explore-banner .explore-section .grid .grid-items .explore-text p {
      font-size: 20px;
      line-height: 28px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 600;
      color: #424242;
      font-weight: 400;
      margin-top: .8rem;
      margin-bottom: .8rem; }
    .explore-banner .explore-section .grid .grid-items .explore-text span {
      font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 20px;
      font-weight: 400;
      color: #818181; }
    .explore-banner .explore-section .grid .grid-items .explore-text .explore-button {
      height: 100%;
      padding-top: 5rem; }
      .explore-banner .explore-section .grid .grid-items .explore-text .explore-button button {
        background-color: #798093;
        border: 1px solid transparent;
        padding: 8px 15px;
        min-width: 210px;
        height: 50px;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 20px;
        font-weight: 600;
        color: #fff; }
    .explore-banner .explore-section .grid .grid-items .empty-box {
      width: 100%;
      height: 450px;
      background-color: #fff; }

button {
  outline: none !important;
  border: none; }

.ostion-logo img {
  width: 300px; }

.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 50%;
  margin-right: 5px;
  font-size: 13px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #424242; }

.action__text {
  display: flex;
  align-items: center;
  float: left;
  margin: 0px; }

.gray-icon-style {
  color: #6d6c6c; }

.mob-menu-logo {
  color: #818181;
  margin-bottom: 18px; }

.user-name {
  color: #818181;
  font-weight: 700;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap; }

a.hover {
  cursor: pointer; }

.update-profile {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-update-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.update-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .update-input input:focus {
    outline: none; }

.update-errors {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.My-account {
  white-space: nowrap; }

.mobile-menu-toggle {
  cursor: pointer; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .footer-links h3 {
    color: white;
    padding: 20px; }
  .footer-links .col {
    display: flex;
    justify-content: flex-end; }

.event-detail-item h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: 600; }

.event-detail-area {
  padding-top: 20px; }

.blog-image {
  height: 350px;
  object-fit: scale-down; }

.event-blog {
  cursor: pointer; }

.grid-help {
  padding-bottom: -10px; }

.footer-links a, .footer-links a:hover {
  text-decoration: none;
  color: white; }

.footer-slash {
  color: white; }

.form-controls {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: #1b1a1a;
  color: #ffffff;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  font-weight: 500;
  font-size: 16px;
  outline: none; }

.themes-btn {
  font-size: 12px;
  text-transform: uppercase;
  background: #ee782a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 25px 0 30px;
  line-height: 43px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-decoration: none;
  border: none; }

.help-section-align .grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0 30px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c8cbd4;
  padding: 15px 0; }
  .help-section-align .grid .grid-items .card {
    background-color: #f2f2f2;
    padding: 1rem; }
    .help-section-align .grid .grid-items .card .card-body {
      background-color: #c8cbd4;
      height: 150px; }
      .help-section-align .grid .grid-items .card .card-body .card-body-border {
        border: 1px solid #fff;
        height: 100%;
        width: 80%; }
    .help-section-align .grid .grid-items .card .select-button {
      margin-top: 1rem; }
      .help-section-align .grid .grid-items .card .select-button button {
        background-color: #da5a3a;
        width: 100%;
        height: 40px;
        border: 1px solid transparent;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 20px;
        font-weight: 600;
        color: #fff;
        text-align: center; }
  .help-section-align .grid .grid-items .card-details p {
    color: #424242;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 1.25rem; }
  .help-section-align .grid .grid-items .card-details span {
    color: #818181;
    font-weight: 400; }
  .help-section-align .grid .grid-items .card-details .location-alignment,
  .help-section-align .grid .grid-items .card-details .date-alignment {
    display: flex;
    align-items: center; }
    .help-section-align .grid .grid-items .card-details .location-alignment span,
    .help-section-align .grid .grid-items .card-details .date-alignment span {
      font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 20px;
      font-weight: 400;
      padding-left: 0.8rem;
      color: #818181; }
  .help-section-align .grid .grid-items .card-details .date-alignment {
    padding-top: 1rem; }

.main-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px; }

.filter-label {
  margin-bottom: 20px; }
  .filter-label p {
    font-size: 20px;
    line-height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #818181;
    margin-bottom: 1rem; }
  .filter-label .filter-submenu p {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #818181;
    margin-bottom: 0; }
  .filter-label .checkbox-align {
    display: flex;
    align-items: center;
    margin-top: 1rem; }
    .filter-label .checkbox-align input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin: 0;
      border: 1px solid #131313; }
    .filter-label .checkbox-align span {
      padding-left: 0.5rem;
      font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 20px;
      font-weight: 600;
      color: #818181;
      font-weight: 400; }

.items-avilable p {
  color: #818181;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600; }

.filter-label {
  position: sticky;
  top: 100px; }

.filter-grid {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around; }
  .filter-grid .zip-input {
    color: #e36955;
    border: 1px solid #e36955;
    height: 30px;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    width: -webkit-fill-available; }
    .filter-grid .zip-input:focus {
      outline: none; }
  .filter-grid span {
    padding: 10px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #e36955;
    font-weight: 400; }
  .filter-grid input::-webkit-outer-spin-button,
  .filter-grid input::-webkit-inner-spin-button {
    -webkit-appearance: none; }
  .filter-grid select {
    padding: 0 15px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #e36955;
    border-color: #e36955;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer; }
  .filter-grid option {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #e36955;
    font-weight: 400; }

.header-grid {
  padding-bottom: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e36955;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1;
  font-size: 35px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #e36955;
  font-weight: 550;
  display: grid;
  grid-template-columns: 250px 1fr; }

.cus-filter-style {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #c8cbd4;
  cursor: pointer; }
  .cus-filter-style img {
    width: 15px; }

.No-dataFound {
  margin-left: 30px;
  margin-top: 200px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #818181;
  font-size: 100px; }

.table-data-responsive {
  width: 100%; }

.table-data-responsive tr th:nth-child(1) {
  width: 15%;
  background-color: #cabdbd; }

.table-data-responsive tr th:nth-child(2) {
  width: 70%;
  background-color: #a56464; }

.table-data-responsive table {
  border: 1px solid #dedede;
  width: 100%; }

.table-data-responsive table tr, th, td {
  padding: 0.55rem; }

.table-data-responsive tr {
  border-bottom: 1px solid #dedede; }

.No-Found {
  font-size: 50px;
  line-height: 60px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #818181;
  font-size: 40px; }

.signup-for {
  padding: 20px;
  border-bottom: 1px solid #c8cbd4; }

.event-name {
  cursor: pointer; }

.facebook-share {
  width: 100px;
  background-color: white; }

.paginationAlignment {
  padding: 1rem 0 0 0;
  display: flex;
  align-items: center; }
  .paginationAlignment .paginationBox {
    width: 48px;
    height: 48px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    color: black; }
  .paginationAlignment .ActivePagination {
    background-color: black;
    color: white; }

.paginationBox a {
  background-color: transparent;
  border: none; }
  .paginationBox a:hover {
    background-color: transparent; }

.paginationAlignment {
  margin-bottom: 2rem; }

button {
  outline: none !important;
  border: none; }

.ostion-logo img {
  width: 300px; }

.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 50%;
  margin-right: 5px;
  font-size: 13px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #424242; }

.action__text {
  display: flex;
  align-items: center;
  float: left;
  margin: 0px; }

.gray-icon-style {
  color: #6d6c6c; }

.mob-menu-logo {
  color: #818181;
  margin-bottom: 18px; }

.user-name {
  color: #818181;
  font-weight: 700;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap; }

a.hover {
  cursor: pointer; }

.update-profile {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-update-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.update-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .update-input input:focus {
    outline: none; }

.update-errors {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.My-account {
  white-space: nowrap; }

.mobile-menu-toggle {
  cursor: pointer; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .footer-links h3 {
    color: white;
    padding: 20px; }
  .footer-links .col {
    display: flex;
    justify-content: flex-end; }

.event-detail-item h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: 600; }

.event-detail-area {
  padding-top: 20px; }

.blog-image {
  height: 350px;
  object-fit: scale-down; }

.event-blog {
  cursor: pointer; }

.grid-help {
  padding-bottom: -10px; }

.footer-links a, .footer-links a:hover {
  text-decoration: none;
  color: white; }

.footer-slash {
  color: white; }

.form-controls {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: #1b1a1a;
  color: #ffffff;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  font-weight: 500;
  font-size: 16px;
  outline: none; }

.themes-btn {
  font-size: 12px;
  text-transform: uppercase;
  background: #ee782a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 25px 0 30px;
  line-height: 43px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-decoration: none;
  border: none; }

.help-details-align .grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 0 30px;
  gap: 0 30px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c8cbd4;
  padding: 20px 0; }
  .help-details-align .grid .grid-items .card {
    background-color: #f2f2f2;
    padding: 1rem; }
    .help-details-align .grid .grid-items .card .card-images {
      background-color: #c8cbd4;
      height: 150px;
      padding: 1rem; }
      .help-details-align .grid .grid-items .card .card-images .card-border {
        border: 1px solid #fff;
        height: 100%; }
  .help-details-align .grid .grid-items .card-details p {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 400;
    color: #424242;
    margin-bottom: 1.25rem; }
  .help-details-align .grid .grid-items .card-details h6 {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #424242; }
  .help-details-align .grid .grid-items .card-details span {
    font-weight: 400;
    padding-left: .4rem; }

.event-align {
  padding: 3rem 0 0rem 0; }
  .event-align .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
    border-bottom: 1px solid #c8cbd4;
    padding-bottom: 1.85rem;
    justify-content: space-between; }
    .event-align .grid .grid-items {
      padding-left: 30px; }
      .event-align .grid .grid-items .subgrid {
        display: grid;
        grid-template-columns: 120px 1fr;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 1.25rem; }
        .event-align .grid .grid-items .subgrid .subgrid-items span {
          font-size: 16px;
          font-family: Arial, Helvetica, sans-serif;
          line-height: 20px;
          font-weight: 400;
          color: #424242; }
      .event-align .grid .grid-items p {
        font-size: 20px;
        line-height: 30px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 400;
        color: #131313;
        margin-bottom: 1.25rem; }
      .event-align .grid .grid-items .items-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: space-between; }
        .event-align .grid .grid-items .items-grid .choose-grid .icon-text-alignment {
          display: flex;
          align-items: center;
          margin-bottom: 1rem; }
          .event-align .grid .grid-items .items-grid .choose-grid .icon-text-alignment span {
            color: #8A96BA;
            font-size: 16px;
            font-family: Arial, Helvetica, sans-serif;
            line-height: 20px;
            font-weight: 400;
            padding-left: .5rem;
            font-size: 14px;
            line-height: 16px; }

.head-grid {
  padding-bottom: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e36955;
  font-size: 35px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #e36955;
  font-weight: 550; }

.drop-down-grid {
  padding-top: 15px;
  padding-left: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 5px; }
  .drop-down-grid .icon-text-alignment {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; }
    .drop-down-grid .icon-text-alignment span {
      color: #8A96BA;
      font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 20px;
      font-weight: 400;
      padding-left: .5rem;
      font-size: 14px;
      line-height: 16px; }

.top-align-eventpage {
  padding: 20px 0; }
  .top-align-eventpage p {
    font-size: 20px;
    line-height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #131313;
    margin-bottom: 1.25rem; }
  .top-align-eventpage span {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #131313; }

.text-alignment:last-child {
  margin-bottom: 0; }

.drop-grid .text-alignment {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
  cursor: pointer; }
  .drop-grid .text-alignment span {
    font-size: 20px;
    line-height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #865858;
    padding-left: .5rem; }
  .drop-grid .text-alignment img {
    width: 20px; }

.drop-grids {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: space-between;
  gap: 5px; }
  .drop-grids .text-alignment {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
    cursor: pointer; }
    .drop-grids .text-alignment span {
      font-size: 20px;
      line-height: 30px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #865858;
      padding-left: .5rem; }
    .drop-grids .text-alignment img {
      width: 20px; }

.Load-more {
  cursor: pointer; }

.contact-button {
  margin-top: 1rem; }
  .contact-button button {
    background-color: #da5a3a;
    width: 20%;
    height: 40px;
    border: 1px solid transparent;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center; }

.form-design {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 0 20px;
  margin: 2rem 0; }
  .form-design .input-form span {
    color: #8A96BA;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    position: relative;
    bottom: 8px; }
  .form-design .input-form input:focus {
    outline: none;
    box-shadow: none; }
  .form-design .input-form textarea:focus {
    outline: none;
    box-shadow: none; }

.send-button button {
  padding: 5px 15px;
  background-color: #d1d1d1;
  color: #131313;
  font-size: 16px;
  font-weight: 600;
  min-width: 150px;
  height: 40px;
  border-radius: 4px; }

.help-button {
  height: 35px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 17%;
  background-color: #da6447;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #e6e6e6; }

.login-profile {
  font-size: 35px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 30px; }

.login-box {
  width: 470px;
  box-shadow: 0 2px 5px #0000000d;
  background-color: #fff;
  border-radius: 6px;
  padding: 30px; }
  .login-box .login-text h1 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 35px;
    line-height: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-align: center;
    color: #131313; }
  .login-box .login-text p {
    color: #757575;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 400;
    text-align: center; }
  .login-box .login-text .google-login {
    padding-top: 1rem; }
    .login-box .login-text .google-login button {
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px 15px;
      height: 50px;
      border: 1px solid #e2e2e2;
      border-radius: 999px;
      width: 100%; }
      .login-box .login-text .google-login button span {
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 20px;
        font-weight: 600;
        padding-left: 0.5rem;
        color: #424242; }

.login-forms .email-input {
  margin-bottom: 1.25rem; }
  .login-forms .email-input input {
    padding: 0.375rem 0.75rem;
    color: #424242;
    border: 1px solid #e2e2e2;
    height: 30px;
    font-size: 14px;
    border-radius: 9999px;
    width: -webkit-fill-available; }
    .login-forms .email-input input:focus {
      outline: none; }
  .login-forms .email-input span {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #757575;
    display: block;
    padding-bottom: 0.5rem; }
  .login-forms .email-input ::placeholder {
    font-size: 14px; }

.login-button button {
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  height: 50px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 100%;
  background-color: #da6447;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #e6e6e6; }

.login-text img {
  width: 150px; }

.social-login {
  display: flex;
  justify-content: center;
  padding-bottom: 10px; }

.relative-button {
  position: relative; }
  .relative-button button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }

.relative-btn {
  position: relative; }
  .relative-btn button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }

.forgot-password {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  padding: 0 10px 10px 0; }
  .forgot-password button {
    background-color: white; }
    .forgot-password button span {
      color: blue; }

.forgot-pass {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.forgotemail-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .forgotemail-input input:focus {
    outline: none; }

.login-errors {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.cash-button {
  height: 40px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 120%;
  background-color: #da6447;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #e6e6e6; }

.signup-button {
  height: 40px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 10%;
  background-color: #da6447;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #e6e6e6; }

.facebook-share {
  width: 100px;
  background-color: white; }

.signup-title {
  text-align: center;
  font-size: 5px;
  padding-top: -20px; }

button {
  outline: none !important;
  border: none; }

.ostion-logo img {
  width: 300px; }

.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 50%;
  margin-right: 5px;
  font-size: 13px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #424242; }

.action__text {
  display: flex;
  align-items: center;
  float: left;
  margin: 0px; }

.gray-icon-style {
  color: #6d6c6c; }

.mob-menu-logo {
  color: #818181;
  margin-bottom: 18px; }

.user-name {
  color: #818181;
  font-weight: 700;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap; }

a.hover {
  cursor: pointer; }

.update-profile {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-update-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.update-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .update-input input:focus {
    outline: none; }

.update-errors {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.My-account {
  white-space: nowrap; }

.mobile-menu-toggle {
  cursor: pointer; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .footer-links h3 {
    color: white;
    padding: 20px; }
  .footer-links .col {
    display: flex;
    justify-content: flex-end; }

.event-detail-item h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: 600; }

.event-detail-area {
  padding-top: 20px; }

.blog-image {
  height: 350px;
  object-fit: scale-down; }

.event-blog {
  cursor: pointer; }

.grid-help {
  padding-bottom: -10px; }

.footer-links a, .footer-links a:hover {
  text-decoration: none;
  color: white; }

.footer-slash {
  color: white; }

.form-controls {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: #1b1a1a;
  color: #ffffff;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  font-weight: 500;
  font-size: 16px;
  outline: none; }

.themes-btn {
  font-size: 12px;
  text-transform: uppercase;
  background: #ee782a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 25px 0 30px;
  line-height: 43px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-decoration: none;
  border: none; }

body {
  padding: 0;
  margin: 0; }

.forgot-banner {
  background-color: #f2f0ec;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .forgot-banner .forgot-box-align {
    display: flex;
    align-items: center;
    justify-content: center; }
    .forgot-banner .forgot-box-align .forgot-box {
      width: 400px;
      box-shadow: 0 2px 5px #0000000d;
      background-color: #fff;
      border-radius: 6px;
      padding: 30px; }
      .forgot-banner .forgot-box-align .forgot-box .forgot-text h1 {
        margin-top: 0;
        margin-bottom: 1.25rem;
        font-size: 35px;
        line-height: 40px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 600;
        text-align: center;
        color: #131313; }
      .forgot-banner .forgot-box-align .forgot-box .forgot-text p {
        color: #757575;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 20px;
        font-weight: 400;
        text-align: center; }
      .forgot-banner .forgot-box-align .forgot-box .forgot-text .google-forgot {
        padding-top: 1rem; }
        .forgot-banner .forgot-box-align .forgot-box .forgot-text .google-forgot button {
          background-color: transparent;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 6px 15px;
          height: 50px;
          border: 1px solid #e2e2e2;
          border-radius: 999px;
          width: 100%; }
          .forgot-banner .forgot-box-align .forgot-box .forgot-text .google-forgot button span {
            font-size: 16px;
            font-family: Arial, Helvetica, sans-serif;
            line-height: 20px;
            font-weight: 600;
            padding-left: 0.5rem;
            color: #424242; }

.forgot-form {
  padding-top: 3rem; }
  .forgot-form .email-input {
    margin-bottom: 1.25rem; }
    .forgot-form .email-input input {
      padding: 0.375rem 0.75rem;
      color: #424242;
      border: 1px solid #e2e2e2;
      height: 30px;
      font-size: 14px;
      border-radius: 9999px;
      width: -webkit-fill-available; }
      .forgot-form .email-input input:focus {
        outline: none; }
    .forgot-form .email-input span {
      font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 20px;
      font-weight: 600;
      color: #757575;
      display: block;
      padding-bottom: 0.5rem; }
    .forgot-form .email-input ::placeholder {
      font-size: 14px; }

.forgot-button button {
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  height: 50px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 100%;
  background-color: #da6447;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #e6e6e6; }

.login-text img {
  width: 150px; }

.social-login {
  display: flex;
  justify-content: center;
  padding-bottom: 10px; }

.relative-button {
  position: relative; }
  .relative-button button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }

.relative-btn {
  position: relative; }
  .relative-btn button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }

.forgot-password {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  padding: 0 10px 10px 0; }
  .forgot-password button {
    background-color: white; }
    .forgot-password button span {
      color: blue; }

.forgot-pass {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.forgotemail-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .forgotemail-input input:focus {
    outline: none; }

.forgot-errors {
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

button {
  outline: none !important;
  border: none; }

.ostion-logo img {
  width: 300px; }

.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 50%;
  margin-right: 5px;
  font-size: 13px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #424242; }

.action__text {
  display: flex;
  align-items: center;
  float: left;
  margin: 0px; }

.gray-icon-style {
  color: #6d6c6c; }

.mob-menu-logo {
  color: #818181;
  margin-bottom: 18px; }

.user-name {
  color: #818181;
  font-weight: 700;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap; }

a.hover {
  cursor: pointer; }

.update-profile {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-update-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.update-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .update-input input:focus {
    outline: none; }

.update-errors {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.My-account {
  white-space: nowrap; }

.mobile-menu-toggle {
  cursor: pointer; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .footer-links h3 {
    color: white;
    padding: 20px; }
  .footer-links .col {
    display: flex;
    justify-content: flex-end; }

.event-detail-item h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: 600; }

.event-detail-area {
  padding-top: 20px; }

.blog-image {
  height: 350px;
  object-fit: scale-down; }

.event-blog {
  cursor: pointer; }

.grid-help {
  padding-bottom: -10px; }

.footer-links a, .footer-links a:hover {
  text-decoration: none;
  color: white; }

.footer-slash {
  color: white; }

.form-controls {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: #1b1a1a;
  color: #ffffff;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  font-weight: 500;
  font-size: 16px;
  outline: none; }

.themes-btn {
  font-size: 12px;
  text-transform: uppercase;
  background: #ee782a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 25px 0 30px;
  line-height: 43px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-decoration: none;
  border: none; }

.orginfo-head {
  padding-top: 50px;
  padding-bottom: 20px; }

.form-design1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 0 20px;
  margin: 2rem 0; }
  .form-design1 .input-form span {
    color: #838080;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    position: relative;
    bottom: 8px; }
  .form-design1 .input-form input {
    background-color: #e4e2e2; }
    .form-design1 .input-form input:focus {
      outline: none;
      box-shadow: none; }
  .form-design1 .input-form textarea {
    background-color: #e4e2e2; }
    .form-design1 .input-form textarea:focus {
      outline: none;
      box-shadow: none; }

.send-massage button {
  padding: 5px 15px;
  background-color: #da6447;
  color: #131313;
  font-size: 16px;
  font-weight: 600;
  min-width: 150px;
  height: 40px;
  border-radius: 4px; }

.containers {
  width: 100%;
  padding-left: 300px;
  padding-right: 300px; }
  .containers .causes__texts {
    display: flex; }

button {
  outline: none !important;
  border: none; }

.ostion-logo img {
  width: 300px; }

.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  height: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 50%;
  margin-right: 5px;
  font-size: 13px;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #424242; }

.action__text {
  display: flex;
  align-items: center;
  float: left;
  margin: 0px; }

.gray-icon-style {
  color: #6d6c6c; }

.mob-menu-logo {
  color: #818181;
  margin-bottom: 18px; }

.user-name {
  color: #818181;
  font-weight: 700;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap; }

a.hover {
  cursor: pointer; }

.update-profile {
  font-size: 20px;
  line-height: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.modal-update-head span {
  padding-left: 15px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #757575;
  display: block;
  padding-bottom: 0.5rem; }

.update-input input {
  padding: 0.375rem 0.75rem;
  color: #424242;
  border: 1px solid #e2e2e2;
  height: 30px;
  font-size: 14px;
  border-radius: 9999px;
  width: -webkit-fill-available; }
  .update-input input:focus {
    outline: none; }

.update-errors {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.My-account {
  white-space: nowrap; }

.mobile-menu-toggle {
  cursor: pointer; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .footer-links h3 {
    color: white;
    padding: 20px; }
  .footer-links .col {
    display: flex;
    justify-content: flex-end; }

.event-detail-item h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: 600; }

.event-detail-area {
  padding-top: 20px; }

.blog-image {
  height: 350px;
  object-fit: scale-down; }

.event-blog {
  cursor: pointer; }

.grid-help {
  padding-bottom: -10px; }

.footer-links a, .footer-links a:hover {
  text-decoration: none;
  color: white; }

.footer-slash {
  color: white; }

.form-controls {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background-color: #1b1a1a;
  color: #ffffff;
  padding: 10px 30px;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  font-weight: 500;
  font-size: 16px;
  outline: none; }

.themes-btn {
  font-size: 12px;
  text-transform: uppercase;
  background: #ee782a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 25px 0 30px;
  line-height: 43px;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-decoration: none;
  border: none; }

body {
  padding: 0;
  margin: 0; }

.login-banner {
  background-color: #f2f0ec;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .login-banner .login-box-align {
    display: flex;
    align-items: center;
    justify-content: center; }
    .login-banner .login-box-align .login-box {
      width: 400px;
      box-shadow: 0 2px 5px #0000000d;
      background-color: #fff;
      border-radius: 6px;
      padding: 50px; }
      .login-banner .login-box-align .login-box .login-text h1 {
        margin-top: 0;
        margin-bottom: 1.25rem;
        font-size: 35px;
        line-height: 40px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 600;
        text-align: center;
        color: #131313; }
      .login-banner .login-box-align .login-box .login-text p {
        color: #757575;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 20px;
        font-weight: 400;
        text-align: center; }
      .login-banner .login-box-align .login-box .login-text .google-login {
        padding-top: 1rem; }
        .login-banner .login-box-align .login-box .login-text .google-login button {
          background-color: transparent;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 6px 15px;
          height: 50px;
          border: 1px solid #e2e2e2;
          border-radius: 999px;
          width: 100%; }
          .login-banner .login-box-align .login-box .login-text .google-login button span {
            font-size: 16px;
            font-family: Arial, Helvetica, sans-serif;
            line-height: 20px;
            font-weight: 600;
            padding-left: 0.5rem;
            color: #424242; }

.login-form {
  padding-top: 1rem; }
  .login-form .email-input {
    margin-bottom: 1.25rem; }
    .login-form .email-input input {
      padding: 0.375rem 0.75rem;
      color: #424242;
      border: 1px solid #e2e2e2;
      height: 30px;
      font-size: 14px;
      border-radius: 9999px;
      width: -webkit-fill-available; }
      .login-form .email-input input:focus {
        outline: none; }
    .login-form .email-input span {
      font-size: 16px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 20px;
      font-weight: 600;
      color: #757575;
      display: block;
      padding-bottom: 0.5rem; }
    .login-form .email-input ::placeholder {
      font-size: 14px; }

.login-button button {
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  height: 50px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  width: 100%;
  background-color: #da6447;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  color: #e6e6e6; }

.errors {
  color: red !important;
  top: 5px;
  font-size: 10px !important; }

.term-errors {
  color: red !important;
  top: 5px;
  font-size: 10px !important;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  font-weight: 600;
  display: flex;
  justify-content: center; }

.terms-input {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly; }
  .terms-input input {
    padding-left: 30px;
    color: #424242;
    border: 1px solid #e2e2e2;
    height: 20px; }
  .terms-input span {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #757575;
    display: block;
    margin-left: -50px; }

