/*
@File: Poxo Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Main Banner Area CSS
** - Boxes Area CSS
** - About Area CSS
** - Donate Area CSS
** - Events Area CSS
** - Events Details Area CSS
** - History Area CSS
** - Team Area CSS
** - Vote Casting Area CSS
** - FAQ Area CSS
** - Join With Us Area CSS
** - Partner Area CSS
** - FunFact Area CSS
** - Testimonial Area CSS
** - Blog Area Area CSS
** - Blog Details Area CSS
** - Page Title Area CSS
** - Gallery Area CSS
** - Pagination Area CSS
** - Sidebar Widget Area CSS
** - 404 Error Area CSS
** - Issues Area CSS
** - Contact Area CSS
** - Footer Area CSS
** - Go Top CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,400,500,600,700,800,900&amp;display=swap");
body {
  color: #000000;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
.signature-image img {
    width: 30%; /* Réduit encore plus l'image pour une meilleure proportion */
    height: auto; /* Garde les proportions */
    display: block;
    margin: 20px auto 0; /* Centre l'image et ajoute un espace */
}

/* Ajustement sur mobile */
@media (max-width: 768px) {
    .signature-image img {
        width: 60%; /* Ajustement pour qu'elle soit un peu plus grande sur mobile */
    }
}

a {
  transition: 0.5s;
  outline: 0 !important;
  text-decoration: none;
  color: #430385;
}
a:hover, a:focus {
  text-decoration: none;
  color: #ed4266;
}

p {
  color: #57647c;
  line-height: 1.8;
  margin-bottom: 12px;
}
p:last-child {
  margin-bottom: 0;
}

.banner-image img {
    width: 100vw; /* 100% de la largeur de l'écran */
    height: auto; /* Garde les proportions */
    max-height: 500px; /* Limite la hauteur pour éviter une image trop grande */
    object-fit: cover; /* Coupe l'image si besoin pour qu'elle reste bien remplie */
    display: block;
}

@media (max-width: 768px) {
    .banner-image img {
        max-height: 300px; /* Réduit la hauteur sur mobile */
    }
}


/* Augmenter la taille de l'image */
.about-image .main-img {
    width: 100%; /* L'image prend toute la largeur de la colonne */
    max-width: 600px; /* Ajuste la taille maximale selon tes besoins */
    height: auto; /* Garde les proportions */
    display: block;
    margin: 0 auto; /* Centre l'image horizontalement */
}

/* Optionnel : Ajustement du "shape" */
.about-image .shape-img {
    max-width: 150px; /* Ajuste la taille de l'effet "shape" */
    position: absolute;
    bottom: -10px;
    right: -10px;
}


button, input {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.bg-FAFAFA {
  background-color: #FAFAFA;
}

img {
  max-width: 100%;
  height: auto;
}

html {
    scroll-behavior: smooth;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #430385;
  font-family: "Work Sans", sans-serif;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.section-title .sub-title {
  display: block;
  color: #ed4266;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}
.section-title h2 {
  margin-bottom: 0;
  position: relative;
  padding-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
}
.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #ed4266, #ba367a, #7b377c, #3d336b, #430385);
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Réduction de l'espace entre les logos */
}

.logo-img {
    width: 80px; /* Taille réduite des logos */
    height: auto; /* Maintien des proportions */
    max-width: 100%;
}
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Espacement entre l'email et les icônes */
}

.contact-email {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.social-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.social {
    display: flex;
    gap: 30px; /* Espacement entre les icônes */
    padding: 0;
    list-style: none;
}

.social li {
    display: inline-block;
}

.social a {
    font-size: 28px;
    color: #333;
    transition: 0.3s ease-in-out;
}

.social a:hover {
    color: #ff7e5f; /* Changement de couleur au survol */
}

.section-title {
    text-align: center; /* Centre le texte */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*default-btn*/
.default-btn {
  background-color: #ed4266;
  color: #ffffff;
  display: inline-block;
  transition: 0.5s;
  text-transform: uppercase;
  padding: 15px 35px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.default-btn:hover, .default-btn:focus {
  color: #ffffff;
  background-color: #430385;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: linear-gradient(to right, #430385, #3d336b, #7b377c, #ba367a, #ed4266);
  top: 0;
  left: 0;
}
.preloader .loader {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  transform: translateY(-43%);
  text-align: center;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}
.preloader .box {
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.preloader .shadow {
  width: 100%;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}

@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes shadow {
  50% {
    transform: scale(1.2, 1);
  }
}
/*================================================
Navbar Area CSS
=================================================*/
.banner-formulaire {
    background: white; /* Fond blanc */
    color: black; /* Texte en noir */
    text-align: center;
    margin: 50px auto;
    max-width: 800px;
    width: 100%; /* Assure un bon centrage */

    /* Centrage parfait */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px; /* Ajoute du padding pour éviter que ce soit trop serré */
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 15px; /* Espace entre le titre et le formulaire */
}


}
.btn-acceder {
    position: relative;
    overflow: hidden;
    background: #ff7e5f; /* Couleur de base */
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-acceder::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.7s ease-in-out;
}

.btn-acceder:hover::before {
    left: 100%;
}
.events-image img {
    display: block !important;
    width: 100%;
    max-width: 500px; /* Ajuste si besoin */
    height: auto;
}

.top-header {
  background-color: #430385;
  padding-left: 40px;
  padding-right: 40px;
}
.top-header .city-temperature {
  display: inline-block;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #514d4d;
}
.top-header .city-temperature i {
  color: #ffaf31;
  margin-right: 3px;
}
.top-header .city-temperature span {
  color: #ffffff;
}
.top-header .city-temperature b {
  color: #ffffff;
  font-weight: 500;
}
.top-header .top-nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
}
.top-header .top-nav li {
  display: inline-block;
  margin-right: 15px;
  border-right: 1px solid #514d4d;
  padding-right: 15px;
}
.top-header .top-nav li a {
  color: #ffffff;
}
.top-header .top-nav li a:hover {
  color: #ed4266;
}
.top-header .top-nav li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.top-header .top-social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: inline-block;
}
.top-header .top-social li {
  display: inline-block;
  margin-right: 10px;
}
.top-header .top-social li span {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
}
.top-header .top-social li a {
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
}
.top-header .top-social li a:hover {
  color: #ed4266;
  transform: translateY(-5px);
}
.top-header .top-social li:last-child {
  margin-right: 0;
}
.top-header .header-date {
  display: inline-block;
  margin-left: 20px;
  color: #ffffff;
  background-color: #ed4266;
  padding: 15px 17px;
  font-weight: 600;
  font-size: 14px;
}
.top-header .header-date i {
  margin-right: 3px;
}

.poxo-responsive-nav {
  display: none;
}

.poxo-nav {
  background-color: #ffffff;
}
.poxo-nav .navbar {
  background-color: #ffffff;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 0;
}
.poxo-nav .navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.poxo-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.poxo-nav .navbar .navbar-nav {
  font-family: "Work Sans", sans-serif;
  margin-left: auto;
}
.poxo-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}
.poxo-nav .navbar .navbar-nav .nav-item a {
  color: #430385;
  transition: 0.5s;
  font-size: 16.5px;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 12px;
  margin-right: 12px;
}
.poxo-nav .navbar .navbar-nav .nav-item a:hover, .poxo-nav .navbar .navbar-nav .nav-item a:focus, .poxo-nav .navbar .navbar-nav .nav-item a.active {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
}
.poxo-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.poxo-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}
.poxo-nav .navbar .navbar-nav .nav-item:hover a, .poxo-nav .navbar .navbar-nav .nav-item.active a {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  width: 250px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: capitalize;
  padding: 8px 15px;
  margin: 0;
  position: relative;
  color: #430385;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 500;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 0;
  transition: 0.5s;
  height: 1px;
  background-color: #ed4266;
  transform: translateY(-50%);
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #ed4266;
  padding-left: 26px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  width: 20px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #430385;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 220px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #430385;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #430385;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #430385;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #430385;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #430385;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #ed4266;
}
.poxo-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.poxo-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  margin-top: 0;
}
.poxo-nav .navbar .others-option {
  margin-left: 30px;
}
.poxo-nav .navbar .others-option .cart-btn {
  display: inline-block;
  color: #430385;
  font-size: 22px;
  position: relative;
  top: -9px;
}
.poxo-nav .navbar .others-option .cart-btn:hover {
  color: #ed4266;
}
.poxo-nav .navbar .others-option .option-item {
  color: #430385;
  position: relative;
  line-height: initial;
  display: inline-block;
  top: -8px;
}
.poxo-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  transition: 0.5s;
  color: #430385;
  font-size: 22px;
}
.poxo-nav .navbar .others-option .option-item .search-btn:hover {
  color: #ed4266;
}
.poxo-nav .navbar .others-option .option-item .close-btn {
  cursor: pointer;
  display: none;
  transition: 0.5s;
  width: 22px;
  color: #430385;
  font-size: 20px;
}
.poxo-nav .navbar .others-option .option-item .close-btn.active {
  display: block;
}
.poxo-nav .navbar .others-option .option-item .close-btn:hover {
  color: #ed4266;
}
.poxo-nav .navbar .others-option .call-us {
  padding-left: 51px;
  position: relative;
  display: inline-block;
  margin-left: 17px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}
.poxo-nav .navbar .others-option .call-us .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: #ed4266;
  font-size: 20px;
  background-color: #f1f4f4;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transition: 0.5s;
  transform: translateY(-50%);
}
.poxo-nav .navbar .others-option .call-us a {
  display: block;
  color: #ed4266;
  font-weight: 600;
  font-size: 16px;
}
.poxo-nav .navbar .others-option .call-us:hover .icon {
  background-color: #ed4266;
  color: #ffffff;
}

.navbar-area {
  position: relative;
  background-color: #ffffff;
  transition: 0.5s;
}
.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.search-overlay {
  display: none;
}
.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 27px;
}
.search-overlay.search-popup .search-form {
  position: relative;
}
.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  padding-left: 10px;
  color: #430385;
  outline: 0;
  transition: 0.5s;
}
.search-overlay.search-popup .search-form .search-input:focus {
  border-color: #ed4266;
}
.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: transparent;
  border: none;
  width: 40px;
  outline: 0;
  color: #57647c;
  transition: 0.5s;
  padding: 0;
}
.search-overlay.search-popup .search-form .search-button:hover, .search-overlay.search-popup .search-form .search-button:focus {
  color: #ed4266;
}

@media only screen and (max-width: 991px) {
  .poxo-responsive-nav {
    display: block;
  }
  .poxo-responsive-nav .poxo-responsive-menu {
    position: relative;
  }
  .poxo-responsive-nav .poxo-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }
  .poxo-responsive-nav .poxo-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #ed4266;
  }
  .poxo-responsive-nav .poxo-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .poxo-responsive-nav .poxo-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 336px;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .poxo-responsive-nav .mean-container a.meanmenu-reveal {
    color: #430385;
  }
  .poxo-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #430385;
  }
  .poxo-responsive-nav .mean-container .others-option {
    display: none;
  }
  .poxo-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }
  .navbar-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .poxo-nav {
    display: none;
  }
}
/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
  height: 800px;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #430385, #3d336b, #7b377c, #ba367a, #ed4266);
  opacity: 0.6;
  z-index: -1;
}
.main-banner.item-bg1 {
  background-image: url(../img/main-banner1.jpg);
}
.main-banner.item-bg2 {
  background-image: url(../img/main-banner2.jpg);
}
.main-banner.item-bg3 {
  background-image: url(../img/main-banner3.jpg);
}

.banner-content {
  max-width: 700px;
  margin-top: -60px;
}
.banner-content h1 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 65px;
  font-weight: 700;
}
.banner-content p {
  color: #ffffff;
  font-size: 16px;
  max-width: 650px;
  line-height: 1.9;
  margin-top: 15px;
}
.banner-content .default-btn {
  margin-top: 15px;
}
.banner-content .default-btn:hover, .banner-content .default-btn:focus {
  background-color: #ffffff;
  color: #ed4266;
}

.home-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.home-slides.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 30px;
  top: 45%;
  transform: translateY(-45%);
  background-color: transparent !important;
  transition: 0.5s;
  margin: 0;
  padding: 0 0 0 0 !important;
  opacity: 0.7;
  color: #ffffff;
  font-size: 30px;
  overflow: hidden;
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  padding: 0 25px 0 0 !important;
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-prev::before {
  content: "Prev";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.4s ease;
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-prev::after {
  content: "Prev";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, 100%);
  transition: transform 0.4s ease;
  font-size: 14px;
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-prev:hover::before {
  transform: translateY(-190%);
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-prev:hover::after {
  transform: translate(0, -50%);
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 30px;
  padding: 0 0 0 25px !important;
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-next::before {
  content: "Next";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.4s ease;
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-next::after {
  content: "Next";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0%, 100%);
  transition: transform 0.4s ease;
  font-size: 14px;
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-next:hover::before {
  transform: translateY(-190%);
}
.home-slides.owl-theme .owl-nav [class*=owl-].owl-next:hover::after {
  transform: translate(0, -50%);
}
.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
  opacity: 1;
}

/*================================================
Boxes Area CSS
=================================================*/
.boxes-area {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  margin-bottom: -30px;
}

.single-box {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #ffffff;
  transition: 0.5s;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.single-box .icon {
  color: #ed4266;
  margin-bottom: 20px;
  background-color: #fee5e6;
  display: inline-block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  transition: 0.5s;
  font-size: 40px;
}
.single-box h3 {
  margin-bottom: 10px;
  transition: 0.5s;
  font-size: 23px;
  font-weight: 600;
}
.single-box p {
  margin-bottom: 0;
  transition: 0.5s;
}
.single-box .details-btn {
  display: inline-block;
  position: relative;
  color: #57647c;
  z-index: 1;
  margin-top: 18px;
  width: 35px;
  height: 35px;
  line-height: 36px;
  left: -12px;
  border-radius: 50%;
  font-size: 23px;
}
.single-box .details-btn::before {
  width: 100%;
  height: 100%;
  border: 1px solid #eeeeee;
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s;
}
.single-box .details-btn:hover {
  background-color: #ffffff !important;
  color: #ed4266 !important;
  left: 0;
}
.single-box .details-btn:hover::before {
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.single-box:hover {
  transform: translateY(-10px);
  background-color: #ed4266;
}
.single-box:hover .icon {
  background-color: #ffffff;
  color: #ed4266;
}
.single-box:hover h3 {
  color: #ffffff;
}
.single-box:hover p {
  color: #ffffff;
}
.single-box:hover .details-btn {
  color: #ffffff;
}
.single-box:hover .details-btn::before {
  border: 1px solid #ffffff;
}

/*================================================
About Area CSS
=================================================*/
.about-image {
  position: relative;
  z-index: 1;
  padding-right: 8px;
  padding-left: 50px;
  padding-bottom: 50px;
}
.about-image .text {
  position: absolute;
  right: 0;
  bottom: 42px;
  background-color: #ed4266;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  max-width: 250px;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.4);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
}
.about-image .text span {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
}
.about-image .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}


.about-content p {
    font-size: 1.5rem; /* Augmente la taille du texte */
    line-height: 1.6; /* Améliore l'espacement pour la lisibilité */
    font-weight: 400; /* Ajuste le poids du texte (peut être augmenté si besoin) */
}

.about-content {
  padding-left: 15px;
}
.about-content .sub-title {
  display: block;
  color: #ed4266;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}
.about-content h2 {
  position: relative;
  padding-bottom: 17px;
  font-size: 40px;
  font-weight: 700;
}
.about-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #ed4266, #ba367a, #7b377c, #3d336b, #430385);
}
.about-content p {
  margin-top: 17px;
}
.about-content .signature-image {
  margin-top: 25px;
}

.about-inner-area {
  margin-top: 60px;
}

.about-text h3 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 23px;
  font-weight: 600;
}
.about-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  background-color: #ed4266;
  height: 1px;
}
.about-text .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.about-text .features-list li {
  position: relative;
  margin-bottom: 15px;
  color: #430385;
  padding-left: 30px;
}
.about-text .features-list li i {
  font-size: 12px;
  color: #430385;
  background-color: #eaeaf2;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  transition: 0.5s;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-text .features-list li:last-child {
  margin-bottom: 0;
}
.about-text .features-list li:hover i {
  background-color: #ed4266;
  color: #ffffff;
}

/*================================================
Donate Area CSS
=================================================*/
.donate-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/donate-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.donate-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #430385, #3d336b, #7b377c, #ba367a, #ed4266);
  opacity: 0.7;
  z-index: -1;
}
.donate-area .section-title .sub-title {
  color: #ffffff;
}
.donate-area .section-title h2 {
  color: #ffffff;
}
.donate-area .section-title h2::before {
  background: #ffffff;
}
.donate-area.extra-pb {
  padding-bottom: 200px;
}

.donate-content {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.donate-content ul {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -7px;
  margin-bottom: 0;
  margin-top: -14px;
  margin-left: -7px;
}
.donate-content ul li {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 14px;
}
.donate-content ul li button {
  display: block;
  width: 100%;
  border: none;
  border-radius: 1px;
  padding: 13px 10px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.5s;
  margin: 0;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1);
  font-size: 21px;
  font-weight: 600;
}
.donate-content ul li button:hover, .donate-content ul li button:focus, .donate-content ul li button.active {
  color: #ffffff;
  background-color: #ed4266;
}
.donate-content .give-btn {
  margin-top: 30px;
  display: inline-block;
  text-transform: uppercase;
  border: none;
  background-color: #ed4266;
  transition: 0.5s;
  color: #ffffff;
  padding: 15px 45px;
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
}
.donate-content .give-btn:hover {
  color: #ed4266;
  background-color: #ffffff;
}

/*================================================
Events Area CSS
=================================================*/
.single-upcoming-events-box {
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
}
.single-upcoming-events-box .events-box {
  display: flex;
  flex-wrap: wrap;
}
.single-upcoming-events-box .events-box .events-image {
  flex: 0 0 25%;
  max-width: 25%;
}
.single-upcoming-events-box .events-box .events-image .image {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-upcoming-events-box .events-box .events-image .image img {
  display: none;
}
.single-upcoming-events-box .events-box .events-image .image.bg1 {
  background-image: url(../img/upcoming-events/1.jpg);
}
.single-upcoming-events-box .events-box .events-image .image.bg2 {
  background-image: url(../img/upcoming-events/2.jpg);
}
.single-upcoming-events-box .events-box .events-image .image.bg3 {
  background-image: url(../img/upcoming-events/3.jpg);
}
.single-upcoming-events-box .events-box .events-image .image.bg4 {
  background-image: url(../img/upcoming-events/4.jpg);
}
.single-upcoming-events-box .events-box .events-content {
  flex: 0 0 50%;
  max-width: 50%;
}
.single-upcoming-events-box .events-box .events-content .content {
  padding: 30px;
}
.single-upcoming-events-box .events-box .events-content .content h3 {
  font-size: 23px;
  font-weight: 600;
}
.single-upcoming-events-box .events-box .events-content .content h3 a {
  display: inline-block;
}
.single-upcoming-events-box .events-box .events-content .content p {
  margin-top: 12px;
}
.single-upcoming-events-box .events-box .events-content .content .location {
  display: block;
  color: #57647c;
  margin-top: 15px;
}
.single-upcoming-events-box .events-box .events-content .content .location i {
  color: #ed4266;
  margin-right: 2px;
}
.single-upcoming-events-box .events-box .events-content .content .join-now-btn {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}
.single-upcoming-events-box .events-box .events-content .content .join-now-btn::before {
  width: 100%;
  height: 1px;
  background: #ed4266;
  content: "";
  position: absolute;
  transition: 0.5s;
  left: 0;
  bottom: 0;
}
.single-upcoming-events-box .events-box .events-content .content .join-now-btn:hover::before {
  width: 0;
}
.single-upcoming-events-box .events-box .events-date {
  flex: 0 0 25%;
  max-width: 25%;
}
.single-upcoming-events-box .events-box .events-date .date {
  width: 100%;
  height: 100%;
  background-color: #ed4266;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
}
.single-upcoming-events-box .events-box .events-date .date span {
  display: inline-block;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}
.single-upcoming-events-box .events-box .events-date .date span::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 4px;
  background: #ffffff;
  width: 1px;
  height: 30px;
  transform: rotate(40deg);
}
.single-upcoming-events-box .events-box .events-date .date h3 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 700;
}
.single-upcoming-events-box .events-box .events-date .date p {
  color: #ffffff;
  line-height: initial;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.single-upcoming-events-box .events-box .events-date .date i {
  display: inline-block;
  font-size: 110px;
  color: #ffffff;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

/*================================================
Events Details Area CSS
=================================================*/
.events-details-image img {
  width: 100%;
  border-radius: 5px;
}

.events-details-header {
  margin-bottom: 25px;
}
.events-details-header .back-all-events {
  display: inline-block;
  color: #57647c;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.events-details-header .back-all-events:hover {
  color: #ed4266;
}
.events-details-header h3 {
  margin-bottom: 13px;
  font-size: 23px;
  font-weight: 600;
}
.events-details-header .events-info-meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.events-details-header .events-info-meta li {
  display: inline-block;
  margin-right: 10px;
  color: #57647c;
}
.events-details-header .events-info-meta li i {
  color: #ed4266;
  margin-right: 1px;
}

.events-details .events-details-image {
  margin-bottom: 20px;
}
.events-details .events-info-links {
  margin-top: 25px;
}
.events-details .events-info-links a {
  display: inline-block;
  background-color: #ed4266;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 15px 6px;
  margin-right: 5px;
}
.events-details .post-navigation {
  margin-top: 35px;
}

/*================================================
History Area CSS
=================================================*/
.history-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.history-timeline.timeline .swiper-container {
  height: 700px;
  width: 100%;
  position: relative;
}
.history-timeline.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.history-timeline.timeline .swiper-slide {
  position: relative;
  color: #ffffff;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.history-timeline.timeline .swiper-slide.bg1 {
  background-image: url(../img/history-bg1.jpg);
}
.history-timeline.timeline .swiper-slide.bg2 {
  background-image: url(../img/history-bg2.jpg);
}
.history-timeline.timeline .swiper-slide.bg3 {
  background-image: url(../img/history-bg3.jpg);
}
.history-timeline.timeline .swiper-slide.bg4 {
  background-image: url(../img/history-bg4.jpg);
}
.history-timeline.timeline .swiper-slide.bg5 {
  background-image: url(../img/history-bg5.jpg);
}
.history-timeline.timeline .swiper-slide.bg6 {
  background-image: url(../img/history-bg6.jpg);
}
.history-timeline.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100%;
  right: -30%;
  bottom: -8%;
  width: 240px;
  height: 50%;
  box-shadow: -280px 0 150px 50vw rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.history-timeline.timeline .swiper-slide .timeline-year {
  display: block;
  margin-bottom: 12px;
  transform: translate3d(20px, 0, 0);
  color: #ed4266;
  opacity: 0;
  transition: 0.2s ease 0.4s;
  font-style: italic;
  font-size: 30px;
  font-weight: 700;
}
.history-timeline.timeline .swiper-slide .timeline-title {
  margin: 0 0 15px;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.5s;
  color: #ffffff;
  font-weight: 700;
  font-size: 40px;
}
.history-timeline.timeline .swiper-slide .timeline-text {
  color: #ffffff;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.6s;
}
.history-timeline.timeline .swiper-slide-content {
  position: absolute;
  width: 490px;
  max-width: 490px;
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  z-index: 2;
  text-align: right;
}
.history-timeline.timeline .swiper-slide-active .timeline-year {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.6s;
}
.history-timeline.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.7s;
}
.history-timeline.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.8s;
}
.history-timeline.timeline .swiper-pagination {
  right: 15% !important;
  height: 100%;
  width: 168%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}
.history-timeline.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.history-timeline.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: #ffffff;
  margin: 15px 0 !important;
  position: relative;
  transition: 0.5s;
  font-weight: 600;
}
.history-timeline.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.2px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #ed4266;
  transform: scale(0);
  transition: 0.5s;
}
.history-timeline.timeline .swiper-pagination-bullet-active {
  color: #ed4266;
}
.history-timeline.timeline .swiper-pagination-bullet-active::before {
  transform: scale(1);
}
.history-timeline.timeline .swiper-button-next, .history-timeline.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
}
.history-timeline.timeline .swiper-button-prev {
  top: 15%;
  left: auto;
  right: 15%;
  transform: rotate(90deg) translate(0, 10px);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.history-timeline.timeline .swiper-button-prev::after {
  display: none;
}
.history-timeline.timeline .swiper-button-prev:hover {
  transform: rotate(90deg) translate(-3px, 10px);
}
.history-timeline.timeline .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
  top: auto;
  bottom: 15%;
  right: 14.8%;
  transform: rotate(90deg) translate(0, 10px);
}
.history-timeline.timeline .swiper-button-next:hover {
  transform: rotate(90deg) translate(3px, 10px);
}
.history-timeline.timeline .swiper-button-next::after {
  display: none;
}

/*================================================
Team Area CSS
=================================================*/
.single-team-box {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
  padding-top: 0;
  padding-bottom: 30px;
}
.single-team-box .image {
  overflow: hidden;
  position: relative;
  padding: 5px;
  background: linear-gradient(to right, #ed4266, #ba367a, #7b377c, #3d336b, #430385);
}
.single-team-box .image img {
  transition: 0.5s;
}
.single-team-box .image .social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  bottom: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
.single-team-box .image .social li {
  display: inline-block;
  margin-left: 1px;
  margin-right: 1px;
}
.single-team-box .image .social li a {
  display: block;
  width: 35px;
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: #430385;
  color: #ffffff;
}
.single-team-box .image .social li a:hover {
  color: #ffffff;
  background-color: #ed4266;
}
.single-team-box .content {
  padding-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
}
.single-team-box .content h3 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 600;
}
.single-team-box .content span {
  display: block;
  margin-top: 6px;
  color: #57647c;
}
.single-team-box:hover .image img {
  transform: scale(1.2) rotate(5deg);
}
.single-team-box:hover .image .social {
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

/*================================================
Vote Casting Area CSS
=================================================*/
.vote-casting-area {
  overflow: hidden;
}
.vote-casting-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.vote-casting-area .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.vote-casting-area .container-fluid .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

.vote-casting-content {
  margin-left: auto;
  max-width: 700px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 80px;
}
.vote-casting-content .sub-title {
  display: block;
  color: #ed4266;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}
.vote-casting-content h2 {
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
}
.vote-casting-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #ed4266, #ba367a, #7b377c, #3d336b, #430385);
  right: 0;
}

.vote-casting-image {
  height: 100%;
  background-image: url(../img/vote-casting-image.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.vote-casting-image img {
  display: none;
}

.vote-casting-content .col-lg-4:nth-child(3) .single-vote-casting-box::before, .vote-casting-content .col-lg-4:nth-child(6) .single-vote-casting-box::before {
  display: none;
}
.vote-casting-content .btn-box {
  margin-top: 40px;
}

.single-vote-casting-box {
  position: relative;
  margin-top: 40px;
}
.single-vote-casting-box::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 25px;
  width: 56px;
  height: 26px;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/arrow-right.png);
  background-repeat: no-repeat;
}
.single-vote-casting-box .icon {
  transition: 0.5s;
  background-color: #e7e7e7;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  font-size: 30px;
  color: #430385;
  text-align: center;
  margin-bottom: 15px;
}
.single-vote-casting-box h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
.single-vote-casting-box:hover .icon {
  background-color: #ed4266;
  color: #ffffff;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.faq-area .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.faq-area .container-fluid .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

.faq-image {
  height: 100%;
  background-image: url(../img/faq-img.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.faq-image img {
  display: none;
}

.faq-accordion {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.faq-accordion .sub-title {
  display: block;
  color: #ed4266;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}
.faq-accordion h2 {
  margin-bottom: 45px;
  position: relative;
  padding-bottom: 15px;
  max-width: 470px;
  font-size: 40px;
  font-weight: 700;
}
.faq-accordion h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #ed4266, #ba367a, #7b377c, #3d336b, #430385);
  right: 0;
}
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
  padding: 12px 20px 12px 51px;
  color: #430385;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: #efd2d2;
  color: #ed4266;
  font-size: 14px;
  transition: 0.5s;
}
.faq-accordion .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.faq-accordion .accordion .accordion-title.active i {
  background-color: #ed4266;
  color: #ffffff;
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
}
.faq-accordion .accordion .accordion-content {
  display: none;
  padding: 15px 70px 15px 15px;
  border-top: 1px solid #eeeeee;
}

/*================================================
Join With Us Area CSS
=================================================*/
.join-with-us-content {
  text-align: center;
  background-color: #430385;
  position: relative;
  z-index: 1;
  margin-top: -100px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 30px;
  padding-right: 30px;
}
.join-with-us-content .sub-title {
  display: block;
  color: #ed4266;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}
.join-with-us-content h2 {
  position: relative;
  padding-bottom: 15px;
  color: #ffffff;
  max-width: 470px;
  font-size: 40px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.join-with-us-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: #ffffff;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.join-with-us-content form {
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}
.join-with-us-content form .input-email {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 70px;
  padding-top: 3px;
  outline: 0;
  color: #430385;
  font-size: 16px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}
.join-with-us-content form .input-email::-moz-placeholder {
  color: #737b9a;
}
.join-with-us-content form .input-email::placeholder {
  color: #737b9a;
}
.join-with-us-content form button {
  background-color: #ed4266;
  color: #ffffff;
  transition: 0.5s;
  display: inline-block;
  text-transform: uppercase;
  position: absolute;
  right: 4.3px;
  top: 4.3px;
  border: none;
  padding: 17px 35px;
  border-radius: 30px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.join-with-us-content form button:hover {
  color: #ffffff;
  background-color: #430385;
}
.join-with-us-content .shape {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.8;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-item {
  border-right: 1px solid #f7f1f1;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.partner-item a {
  display: block;
  position: relative;
}
.partner-item a img:nth-child(1) {
  position: relative;
  display: inline-block !important;
  width: auto !important;
  transition: transform 0.4s ease;
  opacity: 0.5;
}
.partner-item a img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: transform 0.4s ease;
  display: inline-block !important;
  width: auto !important;
}
.partner-item a:hover img:nth-child(1) {
  transform: translateY(-100%);
}
.partner-item a:hover img:nth-child(2) {
  transform: translate(-50%, 0);
}

/*================================================
FunFact Area CSS
=================================================*/
.single-funfact {
  text-align: center;
}
.single-funfact h3 {
  margin-bottom: 3px;
  font-size: 40px;
  font-weight: 700;
}
.single-funfact h3 .sign-icon {
  position: relative;
  top: 2px;
}
.single-funfact p {
  color: #ed4266;
  line-height: initial;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-image {
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-image .shape {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  top: 100px;
  opacity: 0.8;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slides {
  margin-bottom: 60px;
  margin-top: 40px;
}
.testimonial-slides.owl-theme .owl-nav {
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  transition: 0.5s;
}
.testimonial-slides.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  background-color: transparent;
  transition: 0.5s;
  color: #bcbcbc;
  font-size: 25px;
}
.testimonial-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -30px;
}
.testimonial-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ed4266;
  background-color: transparent;
}
.testimonial-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.testimonial-item {
  text-align: center;
  position: relative;
  padding-top: 75px;
}
.testimonial-item p {
  color: #430385;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 26px;
  font-style: italic;
}
.testimonial-item .name {
  display: block;
  color: #430385;
  position: relative;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
.testimonial-item .name::before {
  content: "";
  position: relative;
  left: -5px;
  bottom: 4px;
  height: 2px;
  display: inline-block;
  width: 30px;
  background: linear-gradient(to right, #ed4266, #ba367a, #7b377c, #3d336b, #430385);
}
.testimonial-item::before {
  content: "\f113";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  color: #430385;
  font-family: Flaticon;
  font-size: 70px;
  font-style: normal;
  margin-left: auto;
  margin-right: auto;
  margin-top: -27px;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  position: relative;
  z-index: 1;
}

.single-blog-post {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
}
.single-blog-post .post-image {
  overflow: hidden;
}
.single-blog-post .post-image a {
  display: block;
}
.single-blog-post .post-image a img {
  transition: 0.5s;
}
.single-blog-post .post-content {
  padding: 25px;
  position: relative;
  z-index: 1;
}
.single-blog-post .post-content .post-meta {
  transition: 0.5s;
  margin-bottom: 11px;
}
.single-blog-post .post-content .post-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-blog-post .post-content .post-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
  color: #57647c;
  position: relative;
}
.single-blog-post .post-content .post-meta ul li::before {
  position: absolute;
  right: -10px;
  top: 5px;
  width: 1px;
  height: 14px;
  background-color: #57647c;
  content: "";
  transform: rotate(10deg);
}
.single-blog-post .post-content .post-meta ul li a {
  color: #ed4266;
  display: inline-block;
}
.single-blog-post .post-content .post-meta ul li:last-child {
  margin-right: 0;
}
.single-blog-post .post-content .post-meta ul li:last-child::before {
  display: none;
}
.single-blog-post .post-content h3 {
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 22px;
  font-weight: 600;
}
.single-blog-post .post-content h3 a {
  display: inline-block;
}
.single-blog-post .post-content .read-more-btn {
  color: #ed4266;
  position: relative;
  display: inline-block;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 600;
}
.single-blog-post .post-content .read-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  transition: 0.5s;
  height: 1px;
  background: #ed4266;
}
.single-blog-post .post-content .read-more-btn i {
  font-size: 14px;
}
.single-blog-post .post-content .read-more-btn:hover::before {
  width: 100%;
}
.single-blog-post:hover .post-image a img {
  transform: scale(1.2) rotate(4deg);
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-image img {
  width: 100%;
  border-radius: 5px;
}
.blog-details-desc .article-content {
  margin-top: 25px;
}
.blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}
.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #430385;
  margin-right: 21px;
}
.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #430385;
  font-weight: 500;
}
.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #57647c;
}
.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #ed4266;
}
.blog-details-desc .article-content .entry-meta ul li i {
  color: #ed4266;
  margin-right: 2px;
}
.blog-details-desc .article-content .entry-meta ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #ed4266;
}
.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}
.blog-details-desc .article-content h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 24px;
  font-weight: 600;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}
.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}
.blog-details-desc .article-content .features-list li {
  margin-bottom: 17px;
  position: relative;
  padding-left: 34px;
  color: #430385;
}
.blog-details-desc .article-content .features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
  background-color: #faf5f5;
  color: #ed4266;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}
.blog-details-desc .article-content .features-list li:hover i {
  background-color: #ed4266;
  color: #ffffff;
}
.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}
.blog-details-desc .article-footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.blog-details-desc .article-footer .article-tags {
  flex: 0 0 50%;
  max-width: 50%;
  color: #57647c;
}
.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #430385;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #57647c;
}
.blog-details-desc .article-footer .article-tags a:hover {
  color: #ed4266;
}
.blog-details-desc .article-footer .article-share {
  flex: 0 0 50%;
  max-width: 50%;
}
.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}
.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}
.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #57647c;
}
.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #ed4266;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
  font-size: 14px;
}
.blog-details-desc .article-footer .article-share .social li a:hover {
  color: #ffffff;
  background-color: #ed4266;
  transform: translateY(-2px);
}
.blog-details-desc .post-navigation {
  margin-top: 30px;
}

blockquote, .blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}
blockquote p, .blockquote p {
  color: #430385;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 22px !important;
}
blockquote cite, .blockquote cite {
  display: none;
}
blockquote::before, .blockquote::before {
  color: #efefef;
  content: "\f10e";
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  font-family: "Font Awesome 5 Free";
  font-size: 140px;
  font-weight: 900;
}
blockquote::after, .blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #ed4266;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-navigation {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}
.post-navigation .navigation-links {
  display: flex;
  flex-wrap: wrap;
}
.post-navigation .navigation-links .nav-previous {
  flex: 0 0 50%;
  max-width: 50%;
}
.post-navigation .navigation-links .nav-previous a i {
  margin-right: 2px;
  transition: 0.5s;
}
.post-navigation .navigation-links .nav-previous a:hover i {
  margin-right: 0;
}
.post-navigation .navigation-links .nav-next {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}
.post-navigation .navigation-links .nav-next a i {
  margin-left: 2px;
  transition: 0.5s;
}
.post-navigation .navigation-links .nav-next a:hover i {
  margin-left: 0;
}
.post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 600;
}

.comments-area {
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: #ffffff;
}
.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 23px;
  font-weight: 600;
}
.comments-area .comments-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #ed4266;
  top: 50%;
  transform: translateY(-50%);
}
.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .children {
  margin-left: 20px;
}
.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  color: #430385;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.comments-area .comment-body .reply {
  margin-top: 15px;
}
.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #430385;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}
.comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #ed4266;
  border-color: #ed4266;
}
.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.3em;
  position: relative;
  z-index: 2;
}
.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  top: 5px;
}
.comments-area .comment-author .fn {
  font-weight: 600;
}
.comments-area .comment-author .says {
  display: none;
}
.comments-area .comment-metadata {
  margin-bottom: 0.7em;
  color: #57647c;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.comments-area .comment-metadata a {
  color: #57647c;
}
.comments-area .comment-metadata a:hover {
  color: #ed4266;
}
.comments-area .comment-respond {
  margin-top: 30px;
}
.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  position: relative;
  font-size: 23px;
  font-weight: 600;
}
.comments-area .comment-respond .comment-reply-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: #ed4266;
  top: 50%;
  transform: translateY(-50%);
}
.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}
.comments-area .comment-respond .comment-form {
  overflow: hidden;
}
.comments-area .comment-respond .comment-notes {
  margin-bottom: 0;
  margin-top: 10px;
}
.comments-area .comment-respond .comment-notes .required {
  color: red;
}
.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}
.comments-area .comment-respond label {
  display: block;
  font-weight: 600;
  color: #430385;
  margin-bottom: 5px;
}
.comments-area .comment-respond input[type=date], .comments-area .comment-respond input[type=time], .comments-area .comment-respond input[type=datetime-local], .comments-area .comment-respond input[type=week], .comments-area .comment-respond input[type=month], .comments-area .comment-respond input[type=text], .comments-area .comment-respond input[type=email], .comments-area .comment-respond input[type=url], .comments-area .comment-respond input[type=password], .comments-area .comment-respond input[type=search], .comments-area .comment-respond input[type=tel], .comments-area .comment-respond input[type=number], .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond input[type=date]:focus, .comments-area .comment-respond input[type=time]:focus, .comments-area .comment-respond input[type=datetime-local]:focus, .comments-area .comment-respond input[type=week]:focus, .comments-area .comment-respond input[type=month]:focus, .comments-area .comment-respond input[type=text]:focus, .comments-area .comment-respond input[type=email]:focus, .comments-area .comment-respond input[type=url]:focus, .comments-area .comment-respond input[type=password]:focus, .comments-area .comment-respond input[type=search]:focus, .comments-area .comment-respond input[type=tel]:focus, .comments-area .comment-respond input[type=number]:focus, .comments-area .comment-respond textarea:focus {
  border-color: #ed4266;
}
.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}
.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #57647c;
  font-weight: normal;
}
.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}
.comments-area .comment-respond .form-submit input {
  background: #ed4266;
  border: none;
  color: #ffffff;
  border-radius: 50px;
  padding: 13px 35px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  text-transform: uppercase;
  transition: 0.5s;
  font-weight: 600;
  font-size: 14px;
}
.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #430385;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 130px;
  background-color: #430385;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-title-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #430385;
  opacity: 0.65;
}
.page-title-area.item-bg1 {
  background-image: url(../img/main-banner1.jpg);
}
.page-title-area.item-bg2 {
  background-image: url(../img/main-banner2.jpg);
}
.page-title-area.item-bg3 {
  background-image: url(../img/main-banner3.jpg);
}

.page-title-content h2 {
  margin-bottom: 0;
  word-wrap: break-word;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}
.page-title-content ul {
  word-break: break-all;
  padding-left: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
  margin-top: 10px;
  margin-bottom: 0;
}
.page-title-content ul li {
  display: inline-block;
  color: #ffffff;
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
}
.page-title-content ul li::before {
  content: "\f054";
  position: absolute;
  right: -15px;
  top: 6px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
}
.page-title-content ul li a {
  color: #ffffff;
}
.page-title-content ul li a:hover {
  color: #ed4266;
}
.page-title-content ul li:first-child {
  margin-left: 0;
}
.page-title-content ul li:last-child {
  margin-right: 0;
}
.page-title-content ul li:last-child::before {
  display: none;
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-box {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.single-gallery-box .gallery-content {
  position: absolute;
  left: 0;
  bottom: 15px;
  background-color: #ffffff;
  height: auto;
  width: 100%;
  padding: 25px 20px 20px;
  transition: transform 0.3s ease, opacity 0.3s;
  max-width: 370px;
  transform: translate3d(-100%, 0, 0);
}
.single-gallery-box .gallery-content h3 {
  margin-bottom: 0;
  transform: translateX(20px);
  transition: transform 0.3s ease, opacity 0.3s;
  opacity: 0;
  font-size: 23px;
  font-weight: 600;
}
.single-gallery-box .gallery-content .category {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #57647c;
  opacity: 0;
  transform: translateX(20px);
  transition: transform 0.4s ease;
}
.single-gallery-box .plus-icon a {
  background-color: #ed4266;
  width: 85px;
  height: 85px;
  position: absolute;
  top: 25px;
  right: 25px;
  transform: scale(0);
  transition: all 0.4s ease-out 0s;
  overflow: hidden;
  border-radius: 50%;
}
.single-gallery-box .plus-icon a span {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single-gallery-box .plus-icon a span::after, .single-gallery-box .plus-icon a span::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single-gallery-box .plus-icon a span::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.single-gallery-box .plus-icon a:hover {
  background-color: #430385;
}
.single-gallery-box:hover .gallery-content {
  transition: transform 0.5s ease;
  transform: translate3d(0, 0, 0);
}
.single-gallery-box:hover .gallery-content h3 {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease 0.5s, opacity 0.5s 0.3s;
}
.single-gallery-box:hover .gallery-content .category {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease 0.6s, opacity 0.5s 0.6s;
}
.single-gallery-box:hover .plus-icon a {
  transform: scale(1);
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 10px;
  text-align: center;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 2px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 45px;
  color: #430385;
  box-shadow: 0 2px 10px 0 #d8dde6;
  border-radius: 50px !important;
  font-size: 18px;
  font-weight: 700;
}
.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #ed4266;
  color: #ffffff;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

/*================================================
Sidebar Widget Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px;
}
.widget-area .widget:first-child {
  margin-top: 0;
}
.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  font-size: 22px;
}
.widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  background: #ed4266;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.widget-area .widget_search {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 15px;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.widget-area .widget_search form .screen-reader-text {
  display: none;
}
.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}
.widget-area .widget_search form .search-field:focus {
  border-color: #ed4266;
}
.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: #ed4266;
  transition: 0.5s;
}
.widget-area .widget_search form button:hover {
  background-color: #430385;
  color: #ffffff;
}
.widget-area .widget_poxo_posts_thumb {
  position: relative;
  overflow: hidden;
}
.widget-area .widget_poxo_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}
.widget-area .widget_poxo_posts_thumb .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_poxo_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}
.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/7.jpg);
}
.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/8.jpg);
}
.widget-area .widget_poxo_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog/9.jpg);
}
.widget-area .widget_poxo_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}
.widget-area .widget_poxo_posts_thumb .item .info time {
  display: block;
  color: #57647c;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 11px;
}
.widget-area .widget_poxo_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
}
.widget-area .widget_poxo_posts_thumb .item .info .title a {
  display: inline-block;
}
.widget-area .widget_recent_entries ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}
.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #430385;
  padding-left: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15px;
}
.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_recent_entries ul li::before {
  background: #ed4266;
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}
.widget-area .widget_recent_entries ul li a {
  display: inline-block;
  color: #430385;
}
.widget-area .widget_recent_entries ul li a:hover {
  color: #ed4266;
}
.widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #57647c;
  margin-top: 4px;
}
.widget-area .widget_recent_comments ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}
.widget-area .widget_recent_comments ul li {
  position: relative;
  margin-bottom: 12px;
  color: #57647c;
  padding-left: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15px;
}
.widget-area .widget_recent_comments ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_recent_comments ul li::before {
  background: #ed4266;
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}
.widget-area .widget_recent_comments ul li a {
  display: inline-block;
  color: #430385;
}
.widget-area .widget_recent_comments ul li a:hover {
  color: #ed4266;
}
.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}
.widget-area .widget_archive ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 14px;
  color: #430385;
  font-size: 15px;
  font-weight: 600;
}
.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_archive ul li::before {
  background: #ed4266;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
}
.widget-area .widget_archive ul li a {
  display: inline-block;
  color: #430385;
}
.widget-area .widget_archive ul li a:hover {
  color: #ed4266;
}
.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}
.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: #57647c;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 600;
}
.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_categories ul li::before {
  background: #ed4266;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
}
.widget-area .widget_categories ul li a {
  color: #430385;
  display: block;
}
.widget-area .widget_categories ul li a:hover {
  color: #ed4266;
}
.widget-area .widget_categories ul li .post-count {
  float: right;
}
.widget-area .widget_meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-family: "Work Sans", sans-serif;
}
.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #430385;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 600;
}
.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_meta ul li::before {
  background: #ed4266;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
}
.widget-area .widget_meta ul li a {
  display: inline-block;
  color: #430385;
}
.widget-area .widget_meta ul li a:hover {
  color: #ed4266;
}
.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}
.widget-area .tagcloud a {
  display: inline-block;
  color: #430385;
  font-weight: 600;
  font-size: 13.5px !important;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  margin-top: 8px;
  margin-right: 4px;
}
.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #ed4266;
  border-color: #ed4266;
}
.widget-area .widget_events_details ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_events_details ul li {
  border-bottom: 1px solid #eeeeee;
  color: #57647c;
  padding-bottom: 10px;
  padding-top: 10px;
}
.widget-area .widget_events_details ul li:first-child {
  padding-top: 0;
}
.widget-area .widget_events_details ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-area .widget_events_details ul li span {
  display: inline-block;
  color: #430385;
  font-weight: 600;
}
.widget-area .widget_events_details ul li a {
  display: inline-block;
  color: #57647c;
}
.widget-area .widget_events_details ul li a:hover {
  color: #ed4266;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}
.error-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}
.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

/*================================================
Issues Area CSS
=================================================*/
.single-issues-box {
  margin-bottom: 30px;
  background-color: #ffffff;
  position: relative;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}
.single-issues-box .issues-content {
  padding: 25px;
}
.single-issues-box .issues-content span {
  display: block;
  text-transform: uppercase;
  color: #57647c;
  margin-bottom: 8px;
}
.single-issues-box .issues-content h3 {
  margin-bottom: 8px;
  line-height: 1.4;
  font-size: 23px;
  font-weight: 600;
}
.single-issues-box .issues-content h3 a {
  display: inline-block;
}
.single-issues-box .issues-content .read-more-btn {
  color: #ed4266;
  position: relative;
  display: inline-block;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 600;
}
.single-issues-box .issues-content .read-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  transition: 0.5s;
  height: 1px;
  background: #ed4266;
}
.single-issues-box .issues-content .read-more-btn i {
  font-size: 14px;
}
.single-issues-box .issues-content .read-more-btn:hover::before {
  width: 100%;
}
.single-issues-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to right, #430385, #3d336b, #7b377c, #ba367a, #ed4266);
  transition: 0.5s;
  height: 4px;
  opacity: 0;
  visibility: hidden;
}
.single-issues-box:hover {
  transform: translateY(-10px);
}
.single-issues-box:hover::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
}
.contact-area .section-title {
  margin-bottom: 40px;
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.contact-area .section-title h2::before {
  margin-left: 0;
  margin-right: 0;
}

.contact-form form .form-control {
  background-color: #ffffff;
  border: none;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 57px;
  font-size: 14px;
  padding-left: 15px;
  color: #430385;
}
.contact-form form .form-group {
  text-align: left;
  margin-bottom: 20px;
}
.contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}
.contact-form form .row .col-lg-12, .contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}
.contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}
.contact-form form .default-btn {
  border: none;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}
.contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}
.contact-form form .help-block ul li {
  color: red;
}
.contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: center !important;
}
.contact-form form #msgSubmit.text-danger, .contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  text-align: left !important;
  font-size: 20px;
  font-weight: 600;
}

.contact-info {
  padding-right: 35px;
}
.contact-info .contact-list {
  margin-bottom: 0;
  list-style-type: none;
  padding-right: 20px;
  padding-left: 0;
}
.contact-info .contact-list li {
  position: relative;
  padding-left: 95px;
  color: #57647c;
  margin-bottom: 25px;
  font-size: 15px;
}
.contact-info .contact-list li .icon {
  border: 1px dashed #ed4266;
  width: 75px;
  height: 75px;
  line-height: 74px;
  color: #ffffff;
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.contact-info .contact-list li .icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ed4266;
  border-radius: 50%;
  margin: 6px;
  z-index: -1;
  transition: 0.5s;
}
.contact-info .contact-list li .icon i.flaticon-email {
  position: relative;
  display: inline-block;
  top: -2px;
}
.contact-info .contact-list li .icon i.flaticon-map-location {
  position: relative;
  display: inline-block;
  top: -2px;
}
.contact-info .contact-list li span {
  display: block;
  margin-bottom: 5px;
  color: #430385;
  font-size: 21px;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.contact-info .contact-list li a {
  color: #57647c;
  display: block;
  margin-bottom: 2px;
}
.contact-info .contact-list li a:hover {
  color: #ed4266;
}
.contact-info .contact-list li a:last-child {
  margin-bottom: 0;
}
.contact-info .contact-list li:last-child {
  margin-bottom: 0;
}
.contact-info .contact-list li:hover .icon::before {
  margin: 0;
}
.contact-info .social {
  padding-left: 95px;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}
.contact-info .social li {
  display: inline-block;
  margin-right: 3px;
}
.contact-info .social li a {
  display: inline-block;
  background-color: #f1f4f4;
  color: #ed4266;
  width: 50px;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
}
.contact-info .social li a i.flaticon-facebook {
  display: inline-block;
  padding-left: 4px;
}
.contact-info .social li a i.flaticon-twitter {
  display: inline-block;
  position: relative;
  top: 2px;
}
.contact-info .social li a:hover {
  background-color: #ed4266;
  color: #ffffff;
}
.contact-info .social li:last-child {
  margin-right: 0;
}

.bg-map {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  text-align: center;
  margin: 0 auto;
  opacity: 0.3;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  padding-top: 80px;
  background-color: #430385;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-area::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/bg-map.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.single-footer-widget {
  margin-bottom: 30px;
}
.single-footer-widget h3 {
  margin-bottom: 35px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #4e5e6a;
  font-size: 23px;
  font-weight: 600;
}
.single-footer-widget h3::before {
  bottom: -1px;
  left: 0;
  width: 55px;
  height: 1px;
  background-color: #ffffff;
  content: "";
  position: absolute;
}
.single-footer-widget .footer-quick-links {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: -15px;
}
.single-footer-widget .footer-quick-links li {
  flex: 0 0 45%;
  max-width: 45%;
  font-size: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}
.single-footer-widget .footer-quick-links li a {
  display: inline-block;
  color: #ffffff;
}
.single-footer-widget .footer-quick-links li a:hover {
  color: #ed4266;
}
.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-footer-widget .footer-contact-info li {
  color: #ffffff;
  padding-left: 55px;
  position: relative;
  margin-bottom: 25px;
  font-size: 13px;
}
.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info li i {
  font-size: 35px;
  color: #ed4266;
  position: absolute;
  left: 0;
  top: 0;
}
.single-footer-widget .footer-contact-info li span {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
}
.single-footer-widget .footer-contact-info li a:hover {
  color: #ed4266;
}
.single-footer-widget .footer-contact-info li .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-footer-widget .footer-contact-info li .social li {
  display: inline-block;
  padding-left: 0;
  margin-right: 15px;
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info li .social li a {
  display: inline-block;
}
.single-footer-widget .footer-contact-info li .social li a i {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  transition: 0.5s;
}
.single-footer-widget .footer-contact-info li .social li a:hover {
  transform: translateY(-2px);
}
.single-footer-widget .footer-contact-info li .social li a:hover i {
  color: #ed4266;
}
.single-footer-widget .footer-contact-info li .social li:last-child {
  margin-right: 0;
}
.single-footer-widget .footer-instagram-post {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}
.single-footer-widget .footer-instagram-post li {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}
.single-footer-widget .footer-instagram-post li a {
  display: block;
}
.single-footer-widget .footer-instagram-post li a:hover {
  opacity: 0.6;
}

.copyright-area {
  border-top: 1px solid #4e5e6a;
  margin-top: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.copyright-area p {
  color: #ffffff;
  margin-bottom: 0;
}
.copyright-area p a {
  display: inline-block;
  color: #ffffff;
}
.copyright-area p a:hover {
  color: #ed4266;
}
.copyright-area ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  text-align: right;
}
.copyright-area ul li {
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
  position: relative;
}
.copyright-area ul li a {
  display: inline-block;
  color: #ffffff;
}
.copyright-area ul li a:hover {
  color: #ed4266;
}
.copyright-area ul li::before {
  content: "";
  position: absolute;
  right: -13px;
  top: 4.1px;
  width: 1px;
  height: 14px;
  background-color: #ffffff;
}
.copyright-area ul li:first-child {
  margin-left: 0;
}
.copyright-area ul li:last-child {
  margin-right: 0;
}
.copyright-area ul li:last-child::before {
  display: none;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #430385;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
  font-size: 16px;
}
.go-top.active {
  top: 98%;
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ed4266;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.go-top:hover, .go-top:focus {
  color: #ffffff;
}
.go-top:hover::before, .go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}/*# sourceMappingURL=style.css.map */