:root {
  --colorMain: #28a745;
  --colorBlack: #000;
  --AmiriFont: "Cairo", sans-serif;
}
body {
  font-family: var(--AmiriFont);
  /* background-color: #f6f6f6; */
}
* {
  letter-spacing: 0 !important;
}
strong,
p,
span {
  font-family: var(--AmiriFont);
}
a,
a:hover {
  text-decoration: none;
  -webkit-transitiontransition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.lines-1 {
  -webkit-line-clamp: 1;
}
.lines-2 {
  -webkit-line-clamp: 2;
}
.lines-3 {
  -webkit-line-clamp: 3;
}
.lines-4 {
  -webkit-line-clamp: 4;
}
.lines-5 {
  -webkit-line-clamp: 5;
}
.lines-6 {
  -webkit-line-clamp: 6;
}
.lines-7 {
  -webkit-line-clamp: 7;
}
.lines-8 {
  -webkit-line-clamp: 8;
}
.lines-9 {
  -webkit-line-clamp: 9;
}
.lines-10 {
  -webkit-line-clamp: 10;
}
.lines-11 {
  -webkit-line-clamp: 11;
}
.lines-12 {
  -webkit-line-clamp: 12;
}
.lines-13 {
  -webkit-line-clamp: 13;
}
.lines-14 {
  -webkit-line-clamp: 14;
}
.lines-15 {
  -webkit-line-clamp: 15;
}
/*.floating_btn {*/
/*  background-color: var(--colorMain);*/
/*  color: #fff;*/
/*  padding: 10px;*/
/*  border-radius: 10px;*/
/*  font-size: 18px;*/
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
/*  position: fixed;*/
/*  bottom: 50px;*/
/*  right: 50px;*/
/*  z-index: 9;*/
/*}*/

.c_green {
  color: var(--colorMain);
}
.c_red {
  color: #f92f60;
}
.bg_green {
  background: var(--colorMain);
}
.bg_white_opacity {
  background-color: rgba(255, 255, 255, 0.75);
}
.bg_black_opacity {
  background-color: rgba(0, 0, 0, 0.75);
}
.bg_green_opacity {
  background-color: rgba(40, 167, 70, 0.75);
}
.bg_pattern {
  position: relative;
  z-index: 1;
}
.bg_pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/pattern.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: multiply;
  opacity: 0.14;
  z-index: -1;
}
.bg_pattern.black_pattern::before {
  background-color: #000;
  background-blend-mode: difference;
  opacity: 0.05;
}
.bg_pattern.white_pattern::before {
  background-color: #fff;
  background-blend-mode: difference;
  opacity: 0.07;
}

.b_raduis {
  border-radius: 100px;
}

.btn-primary {
  background-color: var(--colorMain);
  border-color: var(--colorMain);
  color: #fff;
  opacity: 0.9;
  transition: 0.3s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--colorMain);
  border-color: var(--colorMain);
  color: #fff;
  opacity: 1;
  transform: scale(1.1);
}

/****************************************/
/****************************************/
/****************************************/
/****************************************/
/****************************************/
/****************************************/
/****************************************/

.banner-top {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding-bottom: 4rem; */
}
.title_page {
  font-size: 50px;
  font-weight: bold;
  color: yellow;
}
.caption {
  background-color: rgba(0, 0, 0, 0.9);
  background-color: rgba(40, 167, 70, 0.8);
  padding: 2rem;
  color: #fff;
  border-radius: 30px;
}
.caption h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.caption h2 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================== */

.sec-info-user {
  position: relative;
  top: -100px;
}

.item_inf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--colorMain);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.item_inf strong {
  margin-bottom: 4rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.user-img {
  position: relative;
  overflow: hidden;
  height: 340px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.user-img::before,
.user-img::after {
  content: "";
  position: absolute;
  top: 34px;
  left: -30px;
  width: 170px;
  height: 5px;
  background-color: #000;
  transform: rotate(-45deg);
}
.user-img::after {
  top: 50px;
}

/* ========================================== */

.caption-prayer .box {
  position: relative;
  padding: 2rem;
  background-color: var(--colorMain);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  color: #fff;
  overflow: hidden;
  border-radius: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.caption-prayer .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--colorMain);
  opacity: 0.7;
  z-index: -1;
}

/* ========================================== */

.section-heading p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: #666;
}

.item_library {
  text-align: center;
  border: 1px solid #eee;
  padding: 10px;
  width: 100%;
  height: 100%;
}
.item_library .card-banner {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item_library .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.item_library .card-content {
  padding: 0 15px 10px;
  width: 100%;
}
.item_library .h3 {
  font-size: 18px;
  font-weight: 700;
  margin-block: 25px 20px;
}
.item_library .card-title {
  transition: 0.3s;
}
.item_library .card-title:is(:hover, :focus) {
  color: var(--colorMain);
}

.card-btn {
  font-size: 16px;
  font-weight: 700;
  max-width: max-content;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 30px;
  border-radius: 30px;
  transition: 0.3s;
  margin-inline: auto;
  padding-block: 12px;
}
.card-btn:hover {
  background-color: var(--colorMain);
  color: #fff;
  border-color: var(--colorMain);
}

.navs_swiper_custom.swiper-button-next,
.navs_swiper_custom.swiper-button-prev {
  background-color: rgba(40, 167, 70, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  z-index: 1;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.4s;
  left: auto;
  right: auto;
}
.navs_swiper_custom.swiper-button-next,
.navs_swiper_custom.swiper-button-prev {
  top: 50%;
}
.navs_swiper_custom.swiper-button-next {
  right: -50px;
}
.navs_swiper_custom.swiper-button-prev {
  left: -50px;
}
.navs_swiper_custom.swiper-button-next:hover,
.navs_swiper_custom.swiper-button-prev:hover {
  background-color: var(--colorMain);
  color: #fff;
}
.navs_swiper_custom.swiper-button-next:after,
.navs_swiper_custom.swiper-button-prev:after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background: none;
  font-size: 20px;
}
.navs_swiper_custom.swiper-button-next:after {
  content: "\f061";
}
.navs_swiper_custom.swiper-button-prev:after {
  content: "\f060";
}
.library-swiper:hover .navs_swiper_custom.swiper-button-next {
  right: 10px;
}
.library-swiper:hover .navs_swiper_custom.swiper-button-prev {
  left: 10px;
}

/* ========================================== */

.item-video {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid #eee;
}
.item-video strong {
  color: var(--colorMain);
}
.item-video img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-video i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #fff;
  z-index: 1;
}
.item-video:hover i {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}
.item-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.3s ease-in-out;
}
.item-video:hover::before {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* ========================================== */

.box-contact {
  /*padding-bottom: 5rem;*/
}
.box-contact .box {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
  background-color: var(--colorMain);
  /*border-radius: 30px;*/
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}
.box-contact .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: -1;
}
.box-contact strong {
  display: block;
  font-size: 40px;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.box-contact li {
  font-size: 20px;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.box-contact .actions {
  display: flex;
}
.box-contact .actions a {
  padding: 10px 0;
  background-color: rgba(40, 167, 70, 0.7);
  color: #fff;
  margin: 1rem;
  width: 140px;
  font-weight: bold;
  border-radius: 10px;
}
.box-contact .actions a:hover {
  background-color: var(--colorMain);
}
.box-contact .actions a i {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .item_inf strong {
    margin-bottom: 2rem;
  }
  .box-contact strong {
    font-size: 20px;
  }
  .box-contact li {
    font-size: 16px;
  }
  .box-contact .actions a {
    width: 120px;
    font-size: 14px;
  }
}

/* ========================================== */

footer {
  background-color: var(--colorMain);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* ========================================== */

.title-section {
}
.title-section .top-title {
  color: var(--colorBallBlue);
  font-weight: 600;
  position: relative;
  padding-left: 55px;
}
.title-section .top-title::before,
.title-section .top-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--colorBallBlue);
  height: 2px;
}
.title-section .top-title::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.title-section .top-title::after {
  width: 50px;
}
.title-section .title {
  color: var(--colorBlueBG);
  font-weight: 700;
  font-family: var(--fontPoppins);
}
.title-section.title-section_2 .top-title {
  color: var(--colorMain);
}
.title-section.title-section_2 .top-title::before,
.title-section.title-section_2 .top-title::after {
  background-color: var(--colorMain);
}
.title-section.title-section_2 .title {
  color: #fff;
  font-size: 3.5rem !important;
}

.item_prev {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 16px;
}

.item_prev a {
  color: var(--colorBlack);
}
.item_prev:hover a {
  color: var(--colorMain);
}
.item_prev .img {
  height: 200px;
}
.item_prev .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================== */

/* ========================================== */

.home-banner {
  height: 700px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.home-banner video {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-banner video {
  background: rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.content-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  width: 70%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.btn-primary {
  background-color: var(--colorMain);
  color: #fff;
  border-color: var(--colorMain);
  font-weight: 600;
  font-size: 16px;
  box-shadow: none;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary.active,
.btn.btn-primary.show,
.btn.btn-primary:focus-visible,
:not(.btn-check) + .btn.btn-primary:active:focus-visible,
.btn.btn-primary:active {
  box-shadow: none;
  color: #fff;
  background-color: #009688;
  border-color: #009688;
}

.form-contact {
  padding: 15px;
  background-color: #f8f8f8;
  width: 800px;
  margin: auto;
}
@media screen and (max-width: 991px) {
  .form-contact {
    width: 100%;
  }
}
.custom-input {
  position: relative;
}
.custom-input .form-control {
  padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)))
    calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)))
    calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)))
    calc(41px + (52 - 41) * ((100vw - 320px) / (1920 - 320)));
  border: none;
  font-size: 14px;
}
.custom-input .form-control::placeholder {
  color: #666;
  font-weight: 600;
}
.custom-input .icon {
  position: absolute;
  top: 0;
  left: 6px;
  height: 100%;
  /* padding: 0 calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))); */
  display: flex;
  align-items: center;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: #4a5568;
  background-color: transparent;
  justify-content: center;
  width: 18px;
}
.custom-input .icon svg {
  width: 16px;
}
.custom-input .icon.icon_ta {
  height: 12%;
  top: 20px;
}
.custom-input textarea.form-control {
  min-height: 100px;
}
#imagePreviewContainer {
  margin-top: 20px;
  display: none;
}
#imagePreviewContainer .img-item {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  margin: 5px;
  border: 1px solid #ddd;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
#imagePreviewContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
#imagePreviewContainer .img-item:hover img {
  opacity: 1;
}
#imagePreviewContainer button {
  background-color: tomato;
  color: currentColor;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  outline: unset;
  border-radius: 50%;
}
/* ========================================== */

/* ========================================== */

.banner-pages {
  height: 200px;
}

/* ========================================== */

/* ========================================== */

/* ========================================== */

@media screen and (max-width: 767px) {
  .content-banner .h2,
  .content-banner h2,
  .content-banner .h1,
  .content-banner h1 {
    font-size: calc(1rem + 1vw);
  }
  .home-banner {
    height: 400px;
  }
  .content-banner {
    padding: 2rem 0;
    width: 90%;
  }
}


/* BANNER */
.home-banner2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.main-title {
}
.img-user {
  height: 450px;
}
.doaa-all .box {
  height: 350px;
}

.box_media .top {
  height: 120px;
}
.box_media .content_audio {
  background-color: #fff;
  height: 120px;
}

.quran_area {
  height: 100vh;
}

.section-heading p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: #666;
}
.item_library {
  text-align: center;
  border: 1px solid #eee;
  padding: 10px;
  width: 100%;
  height: 100%;
}
.item_library .card-banner {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item_library .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.item_library .card-content {
  padding: 0 15px 10px;
  width: 100%;
}
.item_library .h3 {
  font-size: 18px;
  font-weight: 700;
  margin-block: 25px 20px;
}
.item_library .card-title {
  transition: 0.3s;
}
.item_library .card-title:is(:hover, :focus) {
  color: var(--colorMain);
}
.item-video {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid #eee;
}
.item-video strong {
  color: var(--colorMain);
}
.item-video img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-video i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #fff;
  z-index: 1;
}
.item-video:hover i {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}
.item-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.3s ease-in-out;
}
.item-video:hover::before {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.item_tasbeh {
  border-radius: 0 0 300px 300px;
  transition: 0.3s;
}
.item_tasbeh:hover {
  background-color: var(--colorBlack);
}

.navs_swiper_custom.swiper-button-next,
.navs_swiper_custom.swiper-button-prev {
  background-color: rgba(40, 167, 70, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  z-index: 1;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.4s;
  left: auto;
  right: auto;
}
.navs_swiper_custom.swiper-button-next,
.navs_swiper_custom.swiper-button-prev {
  top: 50%;
}
.navs_swiper_custom.swiper-button-next {
  right: -50px;
}
.navs_swiper_custom.swiper-button-prev {
  left: -50px;
}
.navs_swiper_custom.swiper-button-next:hover,
.navs_swiper_custom.swiper-button-prev:hover {
  background-color: var(--colorMain);
  color: #fff;
}
.navs_swiper_custom.swiper-button-next:after,
.navs_swiper_custom.swiper-button-prev:after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background: none;
  font-size: 20px;
}
.navs_swiper_custom.swiper-button-next:after {
  content: "\f061";
}
.navs_swiper_custom.swiper-button-prev:after {
  content: "\f060";
}
.library-swiper:hover .navs_swiper_custom.swiper-button-next {
  right: 10px;
}
.library-swiper:hover .navs_swiper_custom.swiper-button-prev {
  left: 10px;
}

.floating_btn {
    background-color: #3d3d3d;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 85px;
    right: 30px;
    z-index: 9;
}

.img-user img {
  object-position: bottom;
}

@media screen and (max-width: 767px) {
  .fs-2 {
    font-size: calc(1rem + 0.7vw) !important;
  }
  .fs-3 {
    font-size: calc(1.1rem + 0.5vw) !important;
  }
  .b_raduis {
    border-radius: 50px;
  }

  .w-75 {
    width: 100% !important;
  }

  .quran_area {
    height: 600px;
  }
  .quran_area .fs-3 {
    font-size: calc(1rem + 0.3vw) !important;
  }
  .quran_area .fs-2 {
    font-size: calc(1rem + 0.3vw) !important;
  }
  .quran_area .mt-5 {
    margin-top: 1rem !important;
  }
}

@media screen and (max-width: 480px) {
  .fs-3 {
    font-size: calc(0.9rem + 0.2vw) !important;
  }
  .doaa-all .box {
    height: 300px;
    padding: 3rem 1rem !important;
  }

  .box_quran.p-5 {
    padding: 3rem 1rem !important;
  }

  .quran_area {
    height: 600px;
  }
  .quran_area .fs-3 {
    font-size: calc(0.8rem + 0.2vw) !important;
  }
  .quran_area .fs-2 {
    font-size: calc(0.8rem + 0.2vw) !important;
  }
  .quran_area .mt-5 {
    margin-top: 1rem !important;
  }
}

/********************************************************/
.bird {
  background-image: url(../imgs/bird-cells-new.svg);
  background-size: auto 100%;
  width: 88px;
  height: 125px;
  will-change: background-position;
  -webkit-animation-name: fly-cycle;
  animation-name: fly-cycle;
  -webkit-animation-timing-function: steps(10);
  animation-timing-function: steps(10);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.bird--one {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.bird--two {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-delay: -0.75s;
  animation-delay: -0.75s;
}
.bird--three {
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}
.bird--four {
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.bird-container {
  position: absolute;
  top: 20%;
  left: -10%;
  transform: scale(0) translateX(-10vw);
  will-change: transform;
  -webkit-animation-name: fly-right-one;
  animation-name: fly-right-one;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.bird-container--one {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.bird-container--two {
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.bird-container--three {
  -webkit-animation-duration: 14.6s;
  animation-duration: 14.6s;
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}
.bird-container--four {
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  -webkit-animation-delay: 10.25s;
  animation-delay: 10.25s;
}

@-webkit-keyframes fly-cycle {
  100% {
    background-position: -900px 0;
  }
}

@keyframes fly-cycle {
  100% {
    background-position: -900px 0;
  }
}
@-webkit-keyframes fly-right-one {
  0% {
    transform: scale(0.3) translateX(-10vw);
  }
  10% {
    transform: translateY(2vh) translateX(10vw) scale(0.4);
  }
  20% {
    transform: translateY(0vh) translateX(30vw) scale(0.5);
  }
  30% {
    transform: translateY(4vh) translateX(50vw) scale(0.6);
  }
  40% {
    transform: translateY(2vh) translateX(70vw) scale(0.6);
  }
  50% {
    transform: translateY(0vh) translateX(90vw) scale(0.6);
  }
  60% {
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
  100% {
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
}
@keyframes fly-right-one {
  0% {
    transform: scale(0.3) translateX(-10vw);
  }
  10% {
    transform: translateY(2vh) translateX(10vw) scale(0.4);
  }
  20% {
    transform: translateY(0vh) translateX(30vw) scale(0.5);
  }
  30% {
    transform: translateY(4vh) translateX(50vw) scale(0.6);
  }
  40% {
    transform: translateY(2vh) translateX(70vw) scale(0.6);
  }
  50% {
    transform: translateY(0vh) translateX(90vw) scale(0.6);
  }
  60% {
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
  100% {
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
}
@-webkit-keyframes fly-right-two {
  0% {
    transform: translateY(-2vh) translateX(-10vw) scale(0.5);
  }
  10% {
    transform: translateY(0vh) translateX(10vw) scale(0.4);
  }
  20% {
    transform: translateY(-4vh) translateX(30vw) scale(0.6);
  }
  30% {
    transform: translateY(1vh) translateX(50vw) scale(0.45);
  }
  40% {
    transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
  }
  50% {
    transform: translateY(0vh) translateX(90vw) scale(0.45);
  }
  51% {
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
  100% {
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
}
@keyframes fly-right-two {
  0% {
    transform: translateY(-2vh) translateX(-10vw) scale(0.5);
  }
  10% {
    transform: translateY(0vh) translateX(10vw) scale(0.4);
  }
  20% {
    transform: translateY(-4vh) translateX(30vw) scale(0.6);
  }
  30% {
    transform: translateY(1vh) translateX(50vw) scale(0.45);
  }
  40% {
    transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
  }
  50% {
    transform: translateY(0vh) translateX(90vw) scale(0.45);
  }
  51% {
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
  100% {
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
}
/********************************************************/

   .wts-app-floating {
            position: fixed;
            bottom: 30px; /* Adjust the value to control the vertical position */
            right: 30px; /* Adjust the value to control the horizontal position */
            z-index: 1000;
        }
      .wts_btn {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #25D366;
            color: white;
            width: 124%;
            height: 47px;
            border-radius: 11px;
            text-align: center;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            animation: pulse 4s infinite;
        }


        .wts_btn:hover {
            background-color: #128C7E;
        }
        .wts_btn i {
            font-size: 30px;
        }
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

