:root {
  --primaryColor: #0062cc; /* #e14f43 #bf0a30;  #f35c27; */
  --secondaryColor: rgb(9, 26, 54);
  --whatsapp: #075e54;
  --body_bg: #f9f3ed;
  --black: #252525;
  --poppins: "Poppins", sans-serif;
  --damion: "Damion", cursive;
  --elMessiri: "El Messiri", sans-serif;
  --dancingScript: "Dancing Script", cursive;
  --badScript: "Bad Script", cursive;
  --characters: 18;
}

*,
*:after,
*:before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::selection {
  background-color: var(--primaryColor);
  color: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  height: 100%;
  color: #8d9297;
  font-weight: 400;
  line-height: 28px;
  outline: none;
  font-family: var(--poppins);
  font-size: 15px;
  overflow-x: hidden;
  background-color: #fff;
}

p {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.relative {
  position: relative;
}

/* =====================================
              carousel
===================================== */
#carousel .carousel-item.boat {
  background-image: url("../../imgs/slide2.jfif");
}

#carousel .carousel-item.sea {
  background-image: url("../../imgs/slide1.jpg");
}

#carousel .carousel-item.river {
  background-image: url("../../imgs/slide3.jpg");
}

#carousel .carousel-item {
  height: 100vh;
  min-height: 650px;
  width: 100%;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel .carousel-inner .carousel-item {
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

#carousel .carousel-item .caption {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px;
  color: white;
  border-radius: 6px;
  overflow: hidden;
}
#carousel .carousel-item .caption h2 {
  font-family: var(--elMessiri);
}
/* =====================================
                Hero
===================================== */

.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 75;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 14px #ccc;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header_brand {
  color: #fff;
  font-size: 26px;
  max-width: 270px;
}
.header_brand h1 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--primaryColor);
}
/* Header for Home Page */
.header_nav {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
}
.header_nav > li {
  padding: 20px 0;
}
.header_nav > li a {
  position: relative;
  color: #111;
  text-decoration: none;
  margin: 10px;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: all 0.5s ease-in-out;
}
.header_nav > li a:hover {
  color:var(--primaryColor);
}
.header_nav > li a.active {
  color: var(--primaryColor) !important;
}
.header_nav > li a.contact_menu {
  border: 2px solid var(--primaryColor);
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--primaryColor);
  color: #fff !important;
  text-decoration: none;
}
.header_nav > li a.contact_menu:hover {
  color: var(--primaryColor);
  background-color: transparent;
  border: 2px solid var(--primaryColor);
}
.header_nav > li a.active::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header_nav > li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primaryColor);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}
.header_nav > li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header_nav > li a.contact_menu:hover::before {
  transform: scaleX(0);
}
.header_nav > li a i {
  font-size: 16px;
}
.header_nav > li a.white {
  color: white;
}
.header_nav > li a.primary {
  color: var(--primaryColor);
}
.header_nav .subnav {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  list-style-type: none;
  padding: 16px 0px;
  width: 300px;
  z-index: 9;
  border-radius: 16px;
  box-shadow: 10px 10px 28px 0px rgb(44 67 113 / 15%);
  transition: all 0.75s ease-in-out;
  background: #fff;
}
.header_nav .relative:hover .subnav {
  display: block;
}
.header_nav .subnav li {
  padding: 5px 0;
}
.header_nav .subnav li a {
  color: #000 !important;
  margin: 0 20px;
  font-size: 16px;
  padding: 0;
}
.header_nav .subnav li a:hover {
  color: var(--primaryColor) !important;
}
.carousel-indicators {
  margin-bottom: 6rem;
}
.header_mobile {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 75;
}
.header_mobile i {
  color: #111;
  font-size: 24px;
}

/* Typing style */
.typewriter {
  width: 0;
  font-size: 2em;
  overflow: hidden;
  white-space: nowrap;

  animation-name: blinking, typing;
  animation-duration: 0.5s, 5s;
  animation-timing-function: linear, steps(var(--characters));
  /* animation-delay: 2s;
  animation-iteration-count: infinite; */
  animation-fill-mode: forwards;
}
.typewriter2 {
  animation-timing-function: linear, steps(12);
}
.typewriter3 {
  animation-timing-function: linear, steps(22);
}
@keyframes blinking {
  from {
    border-right: 0 solid transparent;
  }

  to {
    border-right: 1px solid #fff;
  }
}

@keyframes typing {
  80%,
  100% {
    width: calc(var(--characters) * 1ch);
  }
}
/* =====================================
                Loader
===================================== */
.preloader {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-width: 100%;
  background-color: #1a1a1a;
  z-index: 200;
  position: fixed;
}
.loader {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  transform: perspective(500px) rotateX(60deg);
}
.loader span {
  position: absolute;
  display: block;
  border: 5px solid #fff;
  box-shadow: 0 5px 0 #ccc, inset 0 5px 0 #ccc;
  box-sizing: border-box;
  border-radius: 50%;
  animation: loaderAnimate 3s ease-in-out infinite;
}
.loader span:nth-child(1) {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  animation-delay: 1.3s;
}
.loader span:nth-child(2) {
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  animation-delay: 1.2s;
}
.loader span:nth-child(3) {
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  animation-delay: 1.1s;
}
.loader span:nth-child(4) {
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  animation-delay: 1s;
}
.loader span:nth-child(5) {
  top: 40px;
  left: 40px;
  bottom: 40px;
  right: 40px;
  animation-delay: 0.9s;
}
.loader span:nth-child(6) {
  top: 50px;
  left: 50px;
  bottom: 50px;
  right: 50px;
  animation-delay: 0.8s;
}
.loader span:nth-child(7) {
  top: 60px;
  left: 60px;
  bottom: 60px;
  right: 60px;
  animation-delay: 0.7s;
}
.loader span:nth-child(8) {
  top: 70px;
  left: 70px;
  bottom: 70px;
  right: 70px;
  animation-delay: 0.6s;
}
.loader span:nth-child(9) {
  top: 80px;
  left: 80px;
  bottom: 80px;
  right: 80px;
  animation-delay: 0.5s;
}
.loader span:nth-child(10) {
  top: 90px;
  left: 90px;
  bottom: 90px;
  right: 90px;
  animation-delay: 0.4s;
}
.loader span:nth-child(11) {
  top: 100px;
  left: 100px;
  bottom: 100px;
  right: 100px;
  animation-delay: 0.3s;
}
.loader span:nth-child(12) {
  top: 110px;
  left: 110px;
  bottom: 110px;
  right: 110px;
  animation-delay: 0.2s;
}
.loader span:nth-child(13) {
  top: 120px;
  left: 120px;
  bottom: 120px;
  right: 120px;
  animation-delay: 0.1s;
}
.loader span:nth-child(14) {
  top: 130px;
  left: 130px;
  bottom: 130px;
  right: 130px;
  animation-delay: 0s;
}
@keyframes loaderAnimate {
  0%,
  100% {
    transform: translateZ(-100px);
  }
  50% {
    transform: translateZ(0px);
  }
}
/* Button Styles */
.btn_style {
  margin: 30px 0 0;
  padding: 15px 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 0.08em;
  border-radius: 8px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: all 1s ease;
  border: 2px solid var(--primaryColor);
}
.btn_style:hover {
  color: #fff;
  text-shadow: none;
  text-decoration: none;
  background-color: var(--primaryColor);
}
.btn_stylish {
  font-size: 14px;
  padding: 15px 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  overflow: hidden;
  letter-spacing: 0.08em;
  background-color: var(--primaryColor);
  border-radius: 4px;
  box-shadow: -3px 9px 16px -4px rgb(0 0 0 / 26%);
  transition: all 0.5s ease-in-out;
}
.btn_stylish:hover {
  color: #fff;
  background-color: var(--black);
  text-decoration: none;
}
.btn_sub {
  font-size: 14px;
  padding: 0.3rem 0.75rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  overflow: hidden;
  letter-spacing: 0.08em;
  background-color: var(--primaryColor);
  border-radius: 4px;
  box-shadow: -3px 9px 16px -4px rgb(0 0 0 / 26%);
  transition: all 0.5s ease-in-out;
  outline: none;
}
.btn_sub:hover {
  color: #fff;
  background-color: var(--black);
  text-decoration: none;
}

/* =====================================
                SideBar
===================================== */
.sidebar {
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  background-color: var(--body_bg);
  height: 100vh;
  color: #fff;
  z-index: 100;
  overflow-y: scroll;
  transition: transform 0.5s ease-in-out;
}
.sidebar > ul {
  padding: 0;
}
.sidebar > ul > li {
  list-style-type: none;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar > ul > li:nth-of-type(1) {
  position: sticky;
  top: 0;
  background-color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar > ul > li:nth-of-type(1) p {
  font-weight: 700;
  font-size: 25px;
  margin: 0;
}
.sidebar > ul > li:nth-of-type(1) a {
  font-weight: 700;
  font-size: 25px;
  text-decoration: none;
  color: #fff;
}
.sidebar > ul > li a {
  text-decoration: none;
  color: #495057;
  font-size: 20px;
}
.sidebar .relative .drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar .relative .drop i {
  color: var(--black);
}
.sidebar .subnav {
  display: none;
  padding-left: 10px;
}
.sidebar .subnav li {
  padding-top: 15px;
}
.sidebar .subnav.active {
  display: block;
}
/* =====================================
                cursor
===================================== */
.cursor,
.cursor2 {
  position: fixed;
  border: 1px solid var(--primaryColor);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999999;
}
.cursor {
  width: 30px;
  height: 30px;
  transition: 0.15s;
}
.cursor2 {
  width: 8px;
  height: 8px;
  background-color: var(--primaryColor);
  transition: 0.1s;
}
/* =====================================
                events
===================================== */
.mySwiper {
  margin-top: -60px;
  padding-bottom: 40px;
}
.event_item {
  box-shadow: rgb(2 2 2 / 50%) 0px 0px 50px;
  border-radius: 10px;
  padding: 35px 30px;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.event_timing {
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  border-radius: 8px;
  margin-top: 0px;
  background-color: #ffeef1;
  width: 25%;
}
.event_timing:after {
  content: "\f017";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: -20px;
  left: 0;
  right: 0;
  color: #000;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border-radius: 0 50% 50%;
  margin: auto;
  transform: rotate(222deg);
  background-color: var(--primaryColor);
  color: #fff;
}
.event_timing .e_date {
  display: block;
  color: var(--primaryColor);
  padding: 32px 0px 15px;
}
.event_timing .e_time {
  display: block;
  background-color: var(--primaryColor);
  color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 3px 0;
}
.event_details {
  width: 75%;
  padding: 0 16px;
}
.event_details h2 > a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--badScript);
}
.event_details > a {
  text-decoration: underline;
  color: var(--primaryColor);
  font-size: 18px;
  font-weight: 700;
}
.about {
  margin: 80px 0;
}
.about_details h2 {
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  color: var(--primaryColor);
  font-size: 18px;
}
.about_details h3 {
  color: #252525;
  font-family: var(--elMessiri);
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}
.about_details p {
  margin: 15px 0;
}
/*.about_details p:nth-of-type(2) {*/
/*  color: #8d9297;*/
/*  font-family: var(--damion);*/
/*  font-size: 25px;*/
/*  font-weight: 400;*/
/*  text-decoration: none;*/
/*  line-height: 34px;*/
/*  text-shadow: 0px 0px 0px rgb(12 12 12 / 30%);*/
/*}*/
.about_type i {
  background-color: var(--primaryColor);
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
}
.about_type:hover i {
  background-color: var(--black);
}
.about_type h4 {
  color: var(--black);
  font-family: var(--badScript);
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.special_span {
    color: var(--black);
    font-family: var(--badScript);
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.donate {
  background-image: url("../../imgs/slider1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0;
}
.donate_details {
  display: grid;
  place-items: center;
  text-align: center;
}
.donate_details h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
  margin: 30px 0;
  font-family: var(--elMessiri);
}
.donate_details p {
  font-family: var(--dancingScript);
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
}
.pulse {
  display: grid;
  place-items: center;
}
.pulse_heart {
  position: relative;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  background: var(--primaryColor);
  border-radius: 50%;
  box-shadow: 0px 2px 20px var(--primaryColor);
  cursor: pointer;
}
.pulse_heart svg {
  font-size: 30px;
  color: #fff;
  z-index: 10;
  width: 40%;
}
.pulse_heart::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primaryColor);
  border-radius: 50%;
  box-shadow: 0px 2px 20px var(--primaryColor);
  cursor: pointer;
  opacity: 0.6;
}
.pulse_heart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background: var(--primaryColor);
  border-radius: 50%;
  z-index: 1;
  animation: animation 2s infinite;
}
@keyframes animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
    z-index: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
    z-index: 1;
  }
}

.purchase {
  padding: 50px 0;
}
.img_line {
  width: 100%;
  margin: 28px 0;
}
.purchase_heading {
  text-align: center;
  text-transform: uppercase;
}
.purchase_heading h2 {
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 3px;
  font-weight: 600;
  font-family: var(--badScript);
}
.purchase_heading h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: var(--dancingScript);
  text-transform: uppercase;
}

.purchase_item {
  text-align: center;
  padding: 12px 0;
}
.purchase_item p {
  margin: 8px 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

/* Flip Book */
.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 100%;
  margin-bottom: 35px;
  max-width: 100%;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background-color: var(--primaryColor);
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background-color: #fff;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  color: var(--body_bg);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.flip-box-back .flip-box-header {
  font-size: 34px;
  color: var(--primaryColor);
}
.flip-box-back p {
  color: var(--black);
}
.flip-box p {
  font-size: 16px;
  line-height: 36px;
}

.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}
.flip-box-button:hover {
  text-decoration: none;
  color: #fff;
}
.flip-box-back .flip-box-button {
  background-color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.flip-box-back .flip-box-button:hover {
  text-decoration: none;
  color: var(--primaryColor);
  background-color: transparent;
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-60px);
  }
  100% {
    transform: translatey(0px);
  }
}
.float {
  animation: float 6s ease-in-out infinite;
}

.contact_section {
      background-image: url(../../imgs/slider1.jpg);
    background-color: var(--primaryColor);
    background-repeat: no-repeat;
    margin: 60px 0;
    padding-bottom: 60px;
    position: relative;
    background-size: cover;
}
.contact_section .shape_bottom {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  direction: ltr;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.contact_section .shape_bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.contact_section .shape_bottom svg .shape-fill {
  fill: var(--body_bg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.contact_details h2 {
  margin-bottom: 10px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  color: var(--primaryColor);
  font-size: 18px;
  letter-spacing: 1px;
}
.contact_details h3 {
  color: #fff;
  font-family: var(--elMessiri);
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}
.contact_details p {
  color: #fff;
  padding: 20px 0;
}
.contact_details a {
  margin-top: 8px;
}
.divider {
  background-color: var(--primaryColor);
  display: block;
  height: 4px;
  position: relative;
  width: 60px;
  border-radius: 50px;
  overflow: hidden;
}
.divider::before {
  content: "\f0d8";
  position: absolute;
  left: 8px;
  top: -6px;
  border-radius: 6px;
  transform: rotate(2deg);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 45px;
  color: #fff;
}

.back_to_top {
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 100;
  text-align: center;
  color: #fff;
  font-size: 9px;
  line-height: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.back_to_top a {
  color: #fff;
  background: var(--primaryColor);
  padding: 20px;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
}
.back_to_top a:hover {
  background: var(--black);
}

/* ==================================
                footer
===================================== */
footer {
  /* background: url(../../imgs/footer-backgound.png) center no-repeat;
  background-size: cover; */
  padding: 60px 0;
  background-color: #ddd4c5;
}
.footer_about h4 {
  color: #000;
  font-weight: 600;
  font-family: var(--elMessiri);
}
.footer_about p {
  font-family: var(--poppins);
  font-size: 16px;
}
.footer_social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.footer_social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_social ul li {
  margin: 15px;
  padding: 5px;
  border: 1px solid var(--primaryColor);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.75s ease;
}
.footer_social ul li i {
  color: var(--primaryColor);
}
.footer_social ul li:hover {
  background-color: var(--primaryColor);
}
.footer_social ul li:hover i {
  color: #fff;
}

.subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.subscribe input:nth-of-type(1) {
  width: calc(100% - 120px);
}

.testimonial_section {
  padding: 60px 0;
}
#demo {
  background: linear-gradient(112deg, #ffffff 50%, antiquewhite 50%);
  max-width: 800px;
  margin: auto;
}

.carousel-caption {
  position: initial;
  z-index: 10;
  padding: 5rem 8rem;
  color: rgba(78, 77, 77, 0.856);
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: bold;
  line-height: 2rem;
}
.carousel-caption {
  font-family: var(--poppins);
  font-size: 18px;
}
@media (max-width: 767px) {
  .carousel-caption {
    position: initial;
    z-index: 10;
    padding: 3rem 2rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: center;
    font-size: 0.7rem;
    font-style: italic;
    font-weight: bold;
    line-height: 1.5rem;
  }
}

.carousel-caption img {
  width: 6rem;
  border-radius: 5rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .carousel-caption img {
    width: 4rem;
    border-radius: 4rem;
    margin-top: 1rem;
  }
}

#image-caption {
  font-style: normal;
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  #image-caption {
    font-style: normal;
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }
}

.style {
  background-color: var(--primaryColor);
  padding: 1.4rem;
}

@media (max-width: 767px) {
  .style {
    padding: 0.8rem;
  }
}

.carousel-control-prev {
  justify-content: flex-start;
}

.carousel-control-next {
  justify-content: flex-end;
}

.carousel-control-prev,
.carousel-control-next {
  transition: none;
  opacity: unset;
}

/* upload */
.upload_content {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
}
.upload_content span {
  color: red;
  font-size: 18px;
  padding-left: 3px;
}
.upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.upload img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.upload_content input[type="file"] {
  padding: 20px 0 12px;
}
.upload_btn {
  text-align: center;
}
.upload_btn input[type="submit"] {
  font-size: 16px;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
}
.upload div {
  width: calc(100% - 80px);
}

/* winner */
/* .winner_bg {
  background-image: url("../../imgs/winner_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */
#particles-js {
  position: relative;
}

#particles-js canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.img_content {
  border: 1px solid #8d8d8d;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.img_admin {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
}
.img_admin img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-right: 10px;
}
.img_admin h2 {
  font-size: 26px;
  color: var(--black);
  margin: 0;
  font-weight: 600;
  font-family: var(--elMessiri);
  letter-spacing: 1px;
}
.heart_sec {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.heart i {
  color: red;
  cursor: pointer;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.like_count {
  padding-left: 0.5rem;
  font-size: 18px;
  border: none;
  background-color: #fff;
}
.img_content p {
  font-size: 16px;
}
.about_page {
  padding-top: 60px;
}
.about_page h2 {
  font-size: 32px;
  color: var(--primaryColor);
  font-family: var(--elMessiri);
  font-weight: 600;
  letter-spacing: 1px;
}
.about_page p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 30px;
}

.contact_form {
  padding: 60px 35px;
  border: 1px solid var(--primaryColor);
  color: #000;
  border-radius: 9px;
}
.contact_form h3 {
  font-size: 32px;
  color: var(--primaryColor);
  font-family: var(--elMessiri);
  font-weight: 600;
  letter-spacing: 1px;
}
.contact_form p {
  font-size: 0.9em;
}

/********* Form *********/
.form {
  width: 100%;
  position: relative;
  height: 50px;
  margin-bottom: 20px;
  overflow: hidden;
}
.form input {
  width: 100%;
  height: 100%;
  color: #444;
  padding-top: 20px;
  border: none;
  outline: none;
  background: transparent;
}
.form label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  margin: 0;
  border-bottom: 1px solid #000;
}
.form label::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid var(--primaryColor);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.content-name {
  position: absolute;
  bottom: 5px;
  left: 0px;
  transition: all 0.3s ease;
}

.form input:focus + .label-name .content-name,
.form input:valid + .label-name .content-name {
  transform: translateY(-80%);
  font-size: 14px;
  color: var(--primaryColor);
}
.form input:focus + .label-name::after,
.form input:valid + .label-name::after {
  transform: translateX(0%);
}
@media (max-width: 767px) {
  .contact_form {
    padding: 46px 25px;
  }
}

.card {
  background: #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08), 0 0 6px rgba(0, 0, 0, 0.05);
  border: 1;
  border-radius: 1rem;
}

.img-hover-zoom--colorize img {
  border-radius: 50%;
  width: 150px;
  height: auto;
  margin-top: 20px;
  padding: 1px;
  transition: transform 0.5s;
  filter: grayscale(100%);
}

.img-hover-zoom--colorize:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.card h5 {
  overflow: hidden;
  height: 80px;
  font-weight: 300;
  font-size: 1rem;
}

.card h5 a {
  color: black;
  text-decoration: none;
}

.role {
  color: #7a7a7a;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab {
  font-size: 1.5rem;
  color: darkgray;
  transition: transform 0.5s;
}

.fab:hover {
  color: black;
  transform: scale(1.1);
}

.card h2 {
  font-size: 1rem;
}

/* MEDIA */
@media only screen and (min-width: 1200px) {
  .img-hover-zoom--colorize img {
    width: 200px;
  }
}

@media only screen and (min-width: 1200px) {
  .h1 {
    font-size: 2rem;
  }
}

.winner_details {
  padding: 20px;
}
.winner_details h2 {
  font-size: 20px;
  color: var(--black);
  text-transform: uppercase;
  line-height: 34px;
}
.winner_details h2 span {
  border-bottom: 1px solid var(--black);
}
.winner_details h1 {
  font-size: 36px;
  padding: 10px 0;
  color: var(--primaryColor);
}
.winner_details p {
  font-size: 18px;
  line-height: 30px;
}

/* Login Model  */
.modal-body {
  padding: 0 1rem;
}
.modal_login_content {
  color: #fff;
  background-color: rgb(3, 3, 85);
  padding: 20px 0;
}
.forgot {
  color: #ccc;
  font-size: 12px;
}
#link {
  text-decoration: underline;
  color: rgb(3, 3, 85);
  cursor: pointer;
  font-weight: 600;
}
.modal-footer a {
  color: var(--primaryColor);
  font-size: 16px;
}
.top_desc {
  /* position: sticky;
  top: 70px; */
  border: 1px solid;
  padding: 10px;
  border-radius: 4px;
}
.top_desc h2 {
  margin-bottom: 12px;
  margin-top: 12px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  color: var(--primaryColor);
  font-size: 18px;
  text-align: center;
}
.top_desc_item h3 {
  color: #252525;
  font-family: var(--elMessiri);
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 0;
  margin-top: 28px;
  text-align: center;
}
.top_desc_item .divider {
  margin: auto;
}
main.sign {
  background-color: var(--body_bg);
  /* margin: auto;
  border-radius: 15px;
  display: flex;
  flex-direction: column; */
}
#content-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100% - 300px);
  justify-content: center;
  gap: 20px;
  width: 85%;
  max-width: 420px;
  margin: 0 auto;
}
#content-wrapper h2 {
  text-align: center;
  font-family: var(--elMessiri);
  padding: 20px 0 0;
  margin: 0;
}
#content-wrapper input {
  outline: none;
}
#content-wrapper input[type="file"] {
  padding: 0 10px;
}
#content-wrapper label {
  margin: 10px 10px 0;
  font-size: 20px;
}
.client-info {
  height: 60px;
  background-color: #e5ebf5;
  border: solid #e5ebf5 2px;
  border-radius: 15px;
  text-indent: 20px;
  color: #19122b;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.client-info:focus {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
/* .client-info:not(:focus):invalid {
  border: solid #ff4242 2px;
} */
#recovery:link {
  text-decoration: none;
  color: #777a84;
  padding-left: 54%;
}
#signin-button {
  width: 70%;
  height: 60px;
  background-color: var(--primaryColor);
  border: none;
  margin: 20px auto 40px;
  color: #fff;
  font-size: 20px;
  border-radius: 15px;
  font-weight: 400;
  transition-duration: 200ms;
}
#signin-button:hover {
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}
#other-option-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 70%;
}
#other-option-wrapper .line {
  width: 30%;
  height: 2px;
  background-color: #d8d8d9;
  margin-top: 0.6em;
}
#other-option-wrapper #continue-with {
  color: #9599ab;
}
#other-icon-wrapper {
  margin: 10px auto;
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#other-icon-wrapper .other-icon {
  display: flex;
  width: 25%;
  height: 60px;
  background-color: transparent;
  border: solid #dddede 2px;
  border-radius: 10px;
  transition-duration: 400ms;
}
#other-icon-wrapper .other-icon:hover {
  border: solid #fff 2px;
  background-color: #fff;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}
#other-icon-wrapper .other-icon svg {
  height: 60%;
  margin: auto;
}
.profile_details {
  margin: auto;
  text-align: center;
}
.profile_details h3 {
  font-family: var(--elMessiri);
  color: var(--primaryColor);
}
.profile_details .divider {
  margin: auto;
}
.profile_details ul {
  list-style: none;
  margin: 1rem 0;
}

/* .text #moreText {
  display: none;
} */
.displayToggle {
  display: none;
}

.img_content form label {
            font-size: 24px;
            padding-bottom: 6px;
        }
        
        
        
/*===== modal style ======*/
/*=======================*/
.Click-here {
  cursor: pointer;
  font-size:16px;
}
.custom-model-main {
    text-align: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* z-index: 1050; */
    -webkit-overflow-scrolling: touch;
    outline: 0;
    opacity: 0;
    -webkit-transition: opacity 0.15s linear, z-index 0.15;
    -o-transition: opacity 0.15s linear, z-index 0.15;
    transition: opacity 0.15s linear, z-index 0.15;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
}

.model-open {
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
}

.custom-model-inner {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    display: inline-block;
    vertical-align: middle;
    width: 600px;
    margin: 30px auto;
    max-width: 97%;
}

.custom-model-wrap {
    display: block;
    width: 100%;
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
    text-align: left;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.model-open .custom-model-inner {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    z-index: 999;
}

.model-open .bg-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0);
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-transition: background 0.15s linear;
    -o-transition: background 0.15s linear;
    transition: background 0.15s linear;
}

.close-btn {
    position: absolute;
    right: 0;
    top: -30px;
    cursor: pointer;
    z-index: 99;
    font-size: 30px;
    color: #fff;
}


.popup_content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.facebook_icon {
    margin: 0 40px;
}

.whatsapp_icon {
    margin: 0 40px;
}


@media screen and (min-width:800px) {
    .custom-model-main:before {
        content: "";
        display: inline-block;
        height: auto;
        vertical-align: middle;
        margin-right: -0px;
        height: 100%;
    }
}

@media screen and (max-width:799px) {
    .custom-model-inner {
        margin-top: 45px;
    }
}

/*Recording Section in Record Page*/
  .section_record_audio {
    margin: 0;
    padding: 0;
    background-color: lightcyan;
    color: #414142;
    position: relative;
    font-family: monospace;
  }
  .btn_save {
    padding: 10px 24px;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    border: 2px solid #0062cc;
    margin: 10px 0;
    background-color: #0062cc;
  }
  .title {
    font-size: 30px;
    margin-bottom: 55px;
    text-align: center;
  }
  .particle_container {
      position: relative;
    /*  width: 200px;*/
    /*height: 200px;*/
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .record_container {
    max-width: 300px;
    height: auto;
  }
  .start-recording-button .fa.fa-microphone {
      position: absolute;
  }
  .particles_text {
      position: absolute;
    z-index: 1;
  }
  .particles_text1 {
      top: 10px;
      left: 30px;
    transform: rotate(320deg);
    /*animation: animateText 12s linear infinite;*/
  }
  .particles_text2 {
      top: 70%;
      left: 50%;
      transform: translate(-50%, -50%);
    /*animation: animateText 18s linear infinite 1s;*/
  }
  .particles_text3 {
      top: 18%;
      left: 50%;
    transform: rotate(45deg);
    /*animation: animateText 25s linear infinite 0s;*/
  }
  .particles_text4 {
      top: 0%;
      left: 90%;
    /*animation: animateText 20s linear infinite 1.2s;*/
  }
  @keyframes animateText{
      20% {
        top: 0%;
        left: 30%;
        transform: rotate(90deg);
      }
      40% {
        top: 80%;
        left: 80%;
        transform: rotate(135deg);
      }
      60% {
        top: 90%;
        left: 40%;
        transform: rotate(45deg);
      }
      80% {
        top: 85%;
        left: 0%;
        transform: rotate(0deg);
      }
      100% {
        top: 50%;
        left: 10%;
        transform: rotate(45deg);
      }
  }
  .audio-recording-container {
    padding: 30px 0;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .start-recording-button {
    font-size: 70px;
    color: #435f7a;
    cursor: pointer;
    opacity: 0.5;
    margin-bottom: 30px;
  }
  .start-recording-button:hover {
    opacity: 1;
  }
  .recording-contorl-buttons-container {
    display: -webkit-flex;
    /*targeting IE10*/
    display: -ms-flex;
    display: flex;
    justify-content: space-evenly;
    /*horizontal centering*/
    align-items: center;
    width: 334px;
    margin-bottom: 30px;
  }
  .cancel-recording-button,
  .stop-recording-button {
    font-size: 70px;
    cursor: pointer;
  }
  .cancel-recording-button {
    color: red;
    opacity: 0.7;
  }
  .cancel-recording-button:hover {
    color: rgb(206, 4, 4);
  }
  .stop-recording-button {
    color: #33cc33;
    opacity: 0.7;
  }
  .stop-recording-button:hover {
    color: #27a527;
  }
  .recording-elapsed-time {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .red-recording-dot {
    font-size: 25px;
    color: red;
    margin-right: 12px;
    /*transitions with Firefox, IE and Opera Support browser support*/
    animation-name: flashing-recording-dot;
    -webkit-animation-name: flashing-recording-dot;
    -moz-animation-name: flashing-recording-dot;
    -o-animation-name: flashing-recording-dot;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
  }
  /* The animation code */
  @keyframes flashing-recording-dot {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes flashing-recording-dot {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-moz-keyframes flashing-recording-dot {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-o-keyframes flashing-recording-dot {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .elapsed-time {
    font-size: 32px;
  }
  .recording-contorl-buttons-container.hide {
    display: none;
  }
  .overlay {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(82, 76, 76, 0.35);
    /*targeting Chrome & Safari*/
    display: -webkit-flex;
    /*targeting IE10*/
    display: -ms-flex;
    display: flex;
    justify-content: center;
    /*horizontal centering*/
    align-items: center;
  }
  .overlay.hide {
    display: none;
  }
  .browser-not-supporting-audio-recording-box {
    /*targeting Chrome & Safari*/
    display: -webkit-flex;
    /*targeting IE10*/
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*horizontal centering*/
    align-items: center;
    width: 317px;
    height: 119px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
  }
  .close-browser-not-supported-box {
    cursor: pointer;
    background-color: #abc1c05c;
    border-radius: 10px;
    font-size: 16px;
    border: none;
  }
  .close-browser-not-supported-box:hover {
    background-color: #92a5a45c;
  }
  .close-browser-not-supported-box:focus {
    outline: none;
    border: none;
  }
  .audio-element.hide {
    display: none;
  }
  .text-indication-of-audio-playing-container {
    height: 20px;
  }
  .text-indication-of-audio-playing {
    font-size: 20px;
  }
  .text-indication-of-audio-playing.hide {
    display: none;
  }
  /* 3 Dots animation*/
  .text-indication-of-audio-playing span {
    /*transitions with Firefox, IE and Opera Support browser support*/
    animation-name: blinking-dot;
    -webkit-animation-name: blinking-dot;
    -moz-animation-name: blinking-dot;
    -o-animation-name: blinking-dot;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
  }
  .text-indication-of-audio-playing span:nth-child(2) {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
  }
  .text-indication-of-audio-playing span:nth-child(3) {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
  }
  /* The animation code */
  @keyframes blinking-dot {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  /* The animation code */
  @-webkit-keyframes blinking-dot {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  /* The animation code */
  @-moz-keyframes blinking-dot {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  /* The animation code */
  @-o-keyframes blinking-dot {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
