@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
    background: #f2f2f2;
    font-family: "Montserrat", sans-serif;
}


/* From Uiverse.io by devkatyall */ 
/* The design is inspired from Galahhad*/

.user-img{
    width: -webkit-fill-available;
  }

.popup {
    --burger-line-width: 1.125em;
    --burger-line-height: 0.125em;
    --burger-offset: 0.625em;
    --burger-bg: #1e33a0;
    --burger-color: #333;
    --burger-line-border-radius: 0.1875em;
    --burger-diameter: 3.125em;
    --burger-btn-border-radius: calc(var(--burger-diameter) / 2);
    --burger-line-transition: 0.3s;
    --burger-transition: all 0.1s ease-in-out;
    --burger-hover-scale: 1.1;
    --burger-active-scale: 0.95;
    --burger-enable-outline-color: var(--burger-bg);
    --burger-enable-outline-width: 0.125em;
    --burger-enable-outline-offset: var(--burger-enable-outline-width);
    /* nav */
    --nav-padding-x: 0.25em;
    --nav-padding-y: 0.625em;
    --nav-border-radius: 0.375em;
    --nav-border-color: #ccc;
    --nav-border-width: 0.0625em;
    --nav-shadow-color: rgba(0, 0, 0, 0.2);
    --nav-shadow-width: 0 1px 5px;
    --nav-bg: #eee;
    --nav-font-family: "Poppins", sans-serif;
    --nav-default-scale: 0.8;
    --nav-active-scale: 1;
    --nav-position-left: 0;
    --nav-position-right: unset;
    /* if you want to change sides just switch one property */
    /* from properties to "unset" and the other to 0 */
    /* title */
    --nav-title-size: 0.625em;
    --nav-title-color: #000000;
    --nav-title-padding-x: 1rem;
    --nav-title-padding-y: 0.25em;
    /* nav button */
    --nav-button-padding-x: 1rem;
    --nav-button-padding-y: 0.375em;
    --nav-button-border-radius: 0.375em;
    --nav-button-font-size: 17px;
    --nav-button-hover-bg: #1e33a0;
    --nav-button-hover-text-color: #fff;
    --nav-button-distance: 0.875em;
    /* underline */
    --underline-border-width: 0.0625em;
    --underline-border-color: #ccc;
    --underline-margin-y: 0.3125em;
  }
  
  /* popup settings 👆 */
  

  .form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
      background-color: #0d6efd;
      border-color: #0d6efd;
  }
  .form-check-input.is-valid, .was-validated .form-check-input:valid {
      border-color: #0d6efd;
  }
  .form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
      color: #000;
  }

  .popup {
    display: inline-block;
    text-rendering: optimizeLegibility;
    position: relative;
  }
  
  .popup input {
    display: none;
  }
  
  .burger {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background: var(--burger-bg);
    width: var(--burger-diameter);
    height: var(--burger-diameter);
    border-radius: var(--burger-btn-border-radius);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--burger-transition);
    outline: var(--burger-enable-outline-width) solid transparent;
    outline-offset: 0;
  }
  
  .popup-window {
    transform: scale(var(--nav-default-scale));
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: var(--nav-padding-y) var(--nav-padding-x);
    background: var(--nav-bg);
    font-family: var(--nav-font-family);
    color: var(--nav-text-color);
    border-radius: var(--nav-border-radius);
    box-shadow: var(--nav-shadow-width) var(--nav-shadow-color);
    border: var(--nav-border-width) solid var(--nav-border-color);
    top: calc(
      var(--burger-diameter) + var(--burger-enable-outline-width) +
        var(--burger-enable-outline-offset)
    );
    left: var(--nav-position-left);
    right: var(--nav-position-right);
    transition: var(--burger-transition);
    margin-top: 10px;
  }
  
  .popup-window legend {
    padding: var(--nav-title-padding-y) var(--nav-title-padding-x);
    margin: 0;
    color: var(--nav-title-color);
    font-size: 14px;
    text-align: left;
  }
  
  .popup-window ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  .popup-window ul button {
    outline: none;
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    color: var(--burger-color);
    font-size: var(--nav-button-font-size);
    padding: var(--nav-button-padding-y) var(--nav-button-padding-x);
    white-space: nowrap;
    border-radius: var(--nav-button-border-radius);
    cursor: pointer;
    column-gap: var(--nav-button-distance);
  }
  
  .popup-window ul li:nth-child(1) svg,
  .popup-window ul li:nth-child(2) svg {
    color: #1e33a0;
  }
  
  .popup-window ul li:nth-child(4) svg,
  .popup-window ul li:nth-child(5) svg {
    color: rgb(153, 153, 153);
  }
  
  .popup-window ul li:nth-child(7) svg {
    color: red;
  }
  
  .popup-window hr {
    margin: var(--underline-margin-y) 0;
    border: none;
    border-bottom: var(--underline-border-width) solid
      var(--underline-border-color);
  }
  
  /* actions */
  
  .popup-window ul button:hover,
  .popup-window ul button:focus-visible,
  .popup-window ul button:hover svg,
  .popup-window ul button:focus-visible svg {
    color: var(--nav-button-hover-text-color);
    background: var(--nav-button-hover-bg);
  }
  
  .burger:hover {
    transform: scale(var(--burger-hover-scale));
  }
  
  .burger:active {
    transform: scale(var(--burger-active-scale));
  }
  
  .burger:focus:not(:hover) {
    outline-color: var(--burger-enable-outline-color);
    outline-offset: var(--burger-enable-outline-offset);
  }
  
  .popup input:checked + .burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  
  .popup input:checked + .burger span:nth-child(2) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  
  .popup input:checked + .burger span:nth-child(3) {
    transform: translateX(
      calc(var(--burger-diameter) * -1 - var(--burger-line-width))
    );
  }
  
  .popup input:checked ~ nav {
    transform: scale(var(--nav-active-scale));
    visibility: visible;
    opacity: 1;
  }

  
.modal-fastlogin-dialog{
    max-width: 425px;
}
.modal-fastlogin-header{
    border: none;
}

.modal-fastlogin-content{
    border-radius: 16px;
    border: none;
    padding: 15px 19px;
}

.btn-close-fastlogin{
    order: none;
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: rgba(36, 63, 97, 0.1) 0px 1px 4px, rgba(36, 63, 97, 0.16) 0px 0px 1px;
    width: 1.5em;
    height: 1.5em;
}

.input-fastlogin{
    padding: .75rem .75rem;
}

input {
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
    border: 1px solid #999;
}

.login-btn-fastlogin{
    background-color: rgba(27, 27, 27, 1.00);
    padding: 15px 0px;
    min-height: 44px;
    color: white;
    font-family: "Space Grotesk", Roboto, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    transition-duration: 0.3s;
}

.login-btn-fastlogin:hover{
    background-color: rgb(0, 12, 126);
    padding: 15px 0px;
    min-height: 44px;
    color: white;
    font-family: "Space Grotesk", Roboto, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
}

.login-btn-fastlogin1{
    background-color: rgb(0 34 146);
    padding: 15px 0px;
    min-height: 44px;
    color: white;
    font-family: "Space Grotesk", Roboto, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    transition-duration: 0.3s;
}

.login-btn-fastlogin1:hover{
    background-color: rgb(0, 12, 126);
    padding: 15px 0px;
    min-height: 44px;
    color: white;
    font-family: "Space Grotesk", Roboto, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
}

.text-fastlogin-rgister{
    color: #767575;
}


.search input{
    width: 100%;
}

.twitter-typeahead{
    width: 100%;
}


.swal-icon img{
    height: 100px;
}
.swal-overlay{
    z-index: 10000000 !important;
}
.swal-title, .swal-text{
    color: #000;
} 
.swal-button-container{
    display: block;
    text-align: center;
}

.swal-button{
    background-color: #071A7F;
}

.swal-button:hover{
    background-color: #07064B !important;
}
/* footer */
.carousel-inner, .carousel-inner img {
    max-height: 600px; /* Altura máxima de las imágenes */
  }
  
  .carousel-inner img {
  
  }
  
  #carouselExampleIndicators {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Sombra suave para dar profundidad */
      z-index: 1;
      margin-top: -53px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #555; /* Color de fondo para los iconos de control */
    padding: 10px; /* Padding para aumentar el área de clic */
  }
  
  .carousel-control-prev-icon:hover,
  .carousel-control-next-icon:hover {
    background-color: #777; /* Color de fondo al pasar el mouse */
  }
  
/* contacto */
.title-contact{
    font-size: 70px;
    font-weight: 900;
}

.subtitle-contact{
    font-size: 23px !important;
    font-weight: 400;
}
.searchbar_main {
    border-radius: 8px;
    background: #ebedf3;
    margin-top: -115px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.search_inner {
    padding: 10px 10px;
    display: flex;
}
.link{
    text-decoration: none; 
    color:#1d1c24;
    position: relative;
  }


  /* menu */
  .button-container {
    display: none;
}
  .fixed_nav_mobile{
    position: fixed;
    left: 0;
    right:0;
    bottom: 0;
    z-index: 10000;
    display: none;
}
.nav_mobile_text{
    display: block;
    color: #FFF;
    font-size: 12px;
}
.fixed_link a{
    text-decoration: none;
}
.fixed_main{
    height: 40px;
    background-color: #464646;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
  .nav_main{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;

}
.left_nav{
    display: flex;
}
.left_nav .nav_item {
    display: flex;
    align-items: center;
}
.left_nav .nav_item a {
    text-decoration: none;
    color: white;
    line-height: 16px;
    letter-spacing: 0.05em;
    font-size: 12px;
    font-weight: 600;
    margin-left: 35px;
}
.links:hover {
    opacity: 0.7;
}
.right_nav{
    display: flex;

}
.right_nav .nav_item {
    display: flex;
    align-items: center;
    min-width: max-content;
}
.right_nav .nav_item a {
    text-decoration: none;
    color: white;
    line-height: 16px;
    letter-spacing: 0.05em;
    font-size: 12px;
    font-weight: 600;
    margin-right: 35px;
}
.right_nav .nav_item a:hover {
    opacity: 0.7;
}
.right_nav .nav_item a:hover {
    opacity: 0.7;
}

.cust:hover{
    background-color:#000000b9 !important;
}

.cust{
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}
.left_nav .nav_item .nav_logo{
position: relative;
z-index: 10;
    height:35px;
}

.links {
    text-decoration: none;
    color: white;
    line-height: 16px;
    letter-spacing: 0.05em;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 10;
}
.nav_logo:hover{
    opacity: 0.7;
    cursor: pointer;
}
.right_nav{
    position: relative;
    z-index: 10;
}
.nav_item .btn button{
    color: rgba(27,27,27,1.00);
    line-height: 20px;
    letter-spacing: 0.5px;
    font-weight: 700; 
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Space Grotesk", Roboto, Arial, Helvetica, sans-serif;
    padding: 8px 16px;
    border-radius: 6px;
    border: 0;
}
.nav_item .btn button:hover{
    opacity: 0.9;
}
  /*  */
.button-contact {
    text-decoration: none;
    line-height: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 10px 10px 20px rgba(0,0,0,.05);
    background-color: #fff;
    color: #121212;
    border: none;
    cursor: pointer;
  }
  
  .button-decor {
    position: absolute;
    inset: 0;
    background-color: var(--clr);
    transform: translateX(-100%);
    transition: transform .3s;
    z-index: 0;
  }
  
  .button-content {
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden; 
  }
  
  .button__icon {
    min-width: 48px;
    height: 55px;
    background-color: var(--clr);
    display: grid;
    place-items: center;
  }
  
  .button__text {
    display: inline-block;
    transition: color .2s;
    padding: 2px 1.5rem 2px;
    padding-left: .75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 530px; 
    font-size: 18px;
    font-weight: 700;
    text-align: left;
  }

  .button__text a{
    text-decoration: none;
}
  .form-textbox{
    padding-top: 12px;
    padding-bottom: 12px;
  
    background-color: #f2f2f2;
    border-radius: 14px;
  }

  .button-contact:hover .button__text {
    color: #fff;
  }
  
  .button-contact:hover .button-decor {
    transform: translate(0);
  }


  .btn-enviar {
    font-family: inherit;
    font-size: 20px;
    background:#0075EF;;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
  }
  
  .btn-enviar span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-enviar svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
  }
  
  .btn-enviar:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
  }
  
  .btn-enviar:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
  }
  
  .btn-enviar:hover span {
    transform: translateX(5em);
  }
  
  .btn-enviar:active {
    transform: scale(0.95);
  }
  
  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
  
    to {
      transform: translateY(-0.1em);
    }
  }
  
  .text-decoration-none{
    list-style-type: none;
    padding:  0px 0px 0px 10px;
  }
  
  .btn-contact{
    border: none;
    padding: 9px 20px 9px 20px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .btn-contact.active{
    background-color: #0075EF;
    color: #fff; 
  }
  .btn-contact:not(.active){
    background-color: #fff;
    color: black; 
  }

  .padding-term{
    padding: 10px 35px 10px 35px;
  }


  .accordion-button:not(.collapsed) {
    color: #0075EF !important;
    background-color: transparent;
    box-shadow: none;
}
/* contacto */

/* perfil organizador */

.padding{
    margin-top: 100px;
    color: #fff;
}
 
.card-img-top{
    height:300px;
}
.m-t-20 {
    margin-top: 20px;
}
.card-no-border .card {
    border-color: #d7dfe3;
    border-radius: 4px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05)
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem
}

.pro-img {
    margin-top: -80px;
    margin-bottom: 20px
}

.little-profile .pro-img img {
    width: 128px;
    height: 128px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 100%
}

.btn-rounded.btn-md {
    padding: 12px 35px;
    font-size: 16px
}

.btn-primary,
.btn-primary.disabled {
    background: #071A7F;
    border: 1px solid #071A7F;
    -webkit-box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in
}

.btn-primary:hover{
background: #07064B; 
}

.btn-primary:active{
    background: #07064B !important; 
    }

.btn-rounded {
    border-radius: 15px;
    padding: 7px 18px
}

/* perfil organizador */

.category{
    background-color: transparent;
    padding: 5px;
    width: 100%;
    text-align: left;
    border-color: transparent;
}
.category:hover{
    background-color: #1e33a0;
    color:#ffffff;
}

.city{
    background-color: transparent;
    padding: 5px;
    width: 100%;
    text-align: left;
    border-color: transparent;
}
.city:hover{
    background-color: #1e33a0;
    color:#ffffff;
}

.org-view{
border-radius: 15px;
width: 250px;
}

.modal-backdrop{
    z-index: 100000;
}
.mobile ul li a:hover {
    color: #0075EF !important;
}
#main_bg {
    background-image: url("https://s5.cdn-boletu.com/web/img/banner-7.jpg");
    /* background-color: #cccccc; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 250px;
    /* padding-bottom: 30px; */
}
button:focus {
    outline: none !important;
    box-shadow: none !important;
}
.main_nav {
    padding-top: 20px;
    z-index: 10000;
}
.carousel-inner{
    position: relative;
}
.slider_top{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999;
}
.main_toggle img{
    width: 54px;
height: 40px;
margin-left: -15px;
}
.main_toggle {
    border-radius: 50px;
    height: 50px;
    width: 206px;
    padding: 0;
}
.for_margin{
    margin-top: -78px;
}
.main_toggle span {
    color: #1a1a1a;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.text_part {
    color: #fff;
    font-family: "Montserrat";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; 
}
 
 

.dropdown-toggle::after {
    vertical-align: 0.13em !important;
    font-size: 20px !important;
}

/* search */
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");
.search_div {
    width: 100%;
}
.search {
    position: relative;
    color: #aaa;
    font-size: 16px;
}

.search input {
    width: 250px;
    height: 32px;
    border: none !important;
    padding-left: 15px;
    background: white;
    border-radius: 5px;
    width: 100%;
    text-align: left;
    font-size: 17px;
}

.search input {
    text-indent: 32px;
}
.search .fa-search {
    position: absolute;
    left: 10px;
    top: 22px;
}

.search input {
    height: 60px;
    border-radius: 8px;
}
.drop_main {
    display: flex;
    width: auto;
}
.date_drop {
    border-radius: 8px;
    color: #1a1a1a;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.32px;
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 10px;
}

.search_btn button {
    background: #00020f;
    border: 0;
    border-radius: 8px;
    height: 60px;
    padding: 0 50px;
    margin-left: 10px;
    transition: 0.3s;
    color: #ffffff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 135.6%;
    letter-spacing: 0.32px;
}
.search_btn button:hover {
    background-color: #07064B;
    color: white;
    border-color: transparent;
}

/* trending events card */
.event_heading {
    color: #1a1a1a;

    font-family: "Montserrat";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    display: flex;
    align-items: center;
}

.event_sub_heading {
    color: #1a1a1a;

    font-family: "Montserrat";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.trending_main {
    display: flex;
    padding-top: 25px;
}
.trending_btn {
    display: flex;
    align-items: center;
    margin-left: 35px;
}
.trending_btn button {
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #484b51;
    width: 104px;
    transition: 0.3s;
    height: 50px;
}
.trending_btn button:hover {
    background-color: #1e33a0;
    color: white;
    border-color: transparent;
}
.event_card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    margin: auto;
    box-shadow: rgba(18, 18, 18, 0.15) 0px 0px 4px 2px;
}
.img_part img {
    width: 100%;
    height: 200px;
    box-shadow: rgba(18, 18, 18, 0.15) -20px -11px 14px 20px;
}

.body_part {
    padding: 20px;
    position: relative;
}
.card_heading {
    color: #1a1a1a;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    min-height: 36px;
}
.location_part {
    padding-top: 3px;
}
.location_part span {
    color: #484b51;
    font-family: "Montserrat";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.time_calender {
    display: flex;
    padding: 6px 0;
}
.time_calender .calender {
    color: #484b51;
    font-family: "Montserrat";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-items: center;
    display: flex;

}
.time_calender .time {
    color: #484b51;
    font-family: "Montserrat";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 10px;
    align-items: center;
    display: flex;
}
.bottom_card_area {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
}
.bottom_card_area .left {
    display: flex;
    align-items: center;
}
.left .dollar_price {
    color: #1a1a1a;
    font-family: "Montserrat";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
} 

.button_div button{
    border-radius: 5px;
    border: none;
    transition: 0.3s;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 15px;
    background-color: rgba(35, 35, 35, 0.94);
}
.button_div button:hover {
    background-color: #1e33a0;
    color: white;
    border-color: transparent;
}
 
/* popular events */
#popular {
    padding: 80px 0;
    padding-bottom: 0;
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    margin-left: 12px;
}

.swiper {
    width: 100%;
    height: 300px;
    margin: 20px auto;
}

.append-buttons {
    text-align: center;
    margin-top: 20px;
}

.append-buttons button {
    display: inline-block;
    cursor: pointer;
    border: 1px solid #007aff;
    color: #007aff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 10px;
    font-size: 13px;
}
#next,
#prev {
    visibility: hidden !important;
}
.prev button svg rect {
    transition: 0.3s;
}
.next button svg rect {
    transition: 0.3s;
}
.prev button:hover svg rect {
    fill: #1e33a0;
}
.next button:hover svg rect {
    fill: #1e33a0;
}
.download_text button:hover svg rect {
    fill: #1e33a0;
}
.prev button:hover svg path {
    fill: white;
}
.next button:hover svg path {
    fill: white;
}

.result {
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}
.swiper-pagination {
    visibility: hidden !important;
}

.about-wrapper{
    margin-top: 20px;
}

.about-title{
    font-size: 50px;
    font-weight: 800;

}

.ups{
    font-size: 60px;
    font-weight: 900;
}

.about-parents-wrapper-min{
    text-align: left !important;
    margin-top: 160px;
}

.pro-choose-file{
    background-color: #071A7F;
    font-weight: 800;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    padding: 14px;
    border-radius: 15px;
}

.pro-choose-file:hover{
    background-color: #07064B;
    color: #fff;
}



/* todo los */
.tab {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 5px;
}

.tab.active {
    background-color: #000000 !important;
    color: white !important;
    border-color: black !important;
}

.special-date{
    background-color: #007aff !important;
}
#todos {
    padding-bottom: 100px;
}
.all_btn {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
}
.all_btn .innerbtn {
    padding-right: 10px;
}
.all_btn .innerbtn button {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #fff;
    color: #000;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 96%;
    padding: 8px 20px;
    transition: 0.3s;
    height: 50px;
}
.all_btn .innerbtn button:hover {
    background-color: #1e33a0;
    color: white !important;
    border-color: #1e33a0;
}
.todo_body_part {
    padding: 20px;
    border-radius: 26px;
    margin-top: -31px;
    background-color: white;
    position: relative;
}
.todo_img_part img {
    width: 100%;
    height: auto;
}

/* footer */
#footer {
    background-image: url("../images/suscribete.jpg");
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-size: 100% 100%;
}
.footer_head {
    color: #fff;
    font-family: "Montserrat";
    font-size: 64px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    padding-top: 35px;
    padding-bottom: 80px;
}
.email_input {
    position: relative;
    padding-bottom: 80px;
}
.email_input input {
    height: 80px;
    flex-shrink: 0;
    border-radius: 100px;
    background: #fff;
    border: none;
    padding-left: 40px;
    width: 100%;
}
.email_input input,
.search :focus {
    outline: none;
}
.yellow_box {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 100px;
    background: #1e33a0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.goicon {
    position: absolute;
    top: 11px;
    right: 9px;
}

/* footer bottom */
.download_text {
    color: #1a1a1a;
    text-align: center;
    font-family: "Montserrat";
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
}
.bot_nav ul li a {
    color: #1a1a1a;

    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.bot_nav ul {
    display: flex;
    flex-direction: row;
    justify-content: end;
}
#footer_bot {
    padding: 80px 0;
    padding-bottom: 40px;
}
.copy_right {
    color: #1a1a1a;
    text-align: center;
    font-family: "Montserrat";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
}
.faqs img {
    width: 100%;
    height: auto;
}
.box {
    background-color: white;
    padding: 2px 20px;
    color: black;
    border-radius: 100px;
    margin-right: 5px;
}
.box a {
    color: black;
    text-decoration: none;
    color: #1a1a1a;

    text-align: center;
    font-family: "Montserrat";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
}

/* Media Queries */
@media only screen and (max-width: 1366px) {
    .button_div_slide button {
        width: 100px;
    }
    .text_part {
        display: none;
    }
    
    .img404{
        height: 90%;
    }
    .drop1{
        display: none;
    }
    .drop2{
        display: none;
    }
    .drop3{
        display: none;
    }
}
@media only screen and (max-width: 992px) {
    .about-parents-wrapper-min{
        text-align: center !important;
        margin-top: 0px;
    }
    .all_btn{
        display: flex;               /* Utiliza flexbox para alinear los elementos en fila */
    flex-wrap: nowrap;            /* Evita que los elementos se envuelvan en múltiples filas */
    overflow-x: auto;             /* Habilita el desplazamiento horizontal */
    scrollbar-width: none; 
    padding-top: 20px;
    }
    .link{
        z-index: 1000;
    }
    .link-event{
        float: left;
    }
    .img404{
        height: 80%;
    }
    .drop_main {
        display: flex;
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .searchbar_main {
        border-radius: 8px;
    }
    .all_btn .innerbtn button {
        margin-top: 6px;
    }
    .faqs {
        margin-bottom: 0px;
        margin-top: 30px;
    }

    .heart-icon {
        bottom: 44% !important;
    }
    .card_heading{
        margin-top: 193px;
    }

}
@media only screen and (max-width: 768px) {
    /*menu*/
.button-container {
    display: flex;
    background-color: #333333;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px 10px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px,
  rgba(245, 73, 144, 0.5) 5px 10px 15px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
  }
  
  .user-image{
    height: 29px;
    border-radius: 100%;
  }
 
  .button {
    outline: 0 !important;
    border: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
  }
  
  .button:hover {
    transform: translateY(-3px);
  }
  
  .icon {
    font-size: 20px;
  }
/*menu*/
.searchbar_main{
        margin-top: 20px;
        margin-bottom: 0px;
    }
    .hide_for{
        display: none!important;
        }
    .fixed_nav_mobile{

        display: block;
    }
    .search_inner {
        padding: 10px 10px;
        display: block;
    } 
    .button__text {
        font-size: 15px;
        text-wrap:balance; 
      }
    .title-contact{
        font-size: 40px;
      }
    .text-decoration-none{
        list-style-type: none;
        padding: 0px;
      }
    .text_part {
        font-size: 40px;
        padding-top:95px;
    }
    .navbar-toggler{
        z-index: 1000000;
    }
    .dropdown-menu{
        width: -webkit-fill-available;
    }
    .mobile {
        position: fixed;
        top: 0px;
        background:#000000;
        left: 0px;
        right: 0px;
        z-index: 999999;
        padding: 28px;
    }

    .event_heading {
        font-size: 18px;
    }
    .faqs {
        margin-bottom: 0px;
        margin-top: 30px;
    }
    #footer_bot {
        padding: 50px 0;
    }
    .rights {
        flex-direction: column-reverse;
    }
    .slider_top{
        position: unset;
        top: unset;
        left: unset;
        transform:unset;
        z-index: 9999;
    }
    #main_bg {
        padding-bottom: 30px;
    }
    /* .event_card{
        height: 113.3px;
        width: 100%;
    }

    .img_part, .img_part8{
        float: left;
        width: 170px;
    }
    .img_part, .img_part8 img{
        height: 113.3px;
    }
    .time_calender .calender, .time_calender .time{
        font-size: 13px;
    }
    .card_heading{
        min-height:0px;
        padding-right: 10px;
    }
    .location_part span {
        font-size: 13px;
    }
    .bottom_card_area {
        padding: 0px;
    }
    .bottom_card_area{
        display: none;
    }
    .location_part svg {
       width: 19px;
       height: 19px;
    }
    
    .body_part{
        padding: 19px 0px 0px 180px;
    }

     */



    .search_inner {
        padding: 0px 0px;
        display: flex;
    }

    .drop_main {
        display: flex;
        width: auto;
        flex-wrap: wrap;
        justify-content: center;
    } 
    .search_btn button {
        padding: 0 13px;
        margin-left: -25px;
        border-radius: 0px 8px 8px 0px;
        z-index: 10000;
        position: relative;
    }
    .main_bgs{
        transform: scale(2.1);
    }
}
@media only screen and (max-width: 600px) {
   
    .for_margin{
        margin-top: -138px;
    }
    .text_part {
        font-size: 35px;
        line-height: 97%;
        padding: 15px;
        margin-top: 80px;
    } 
    .footer_head {
        font-size: 50px;
        padding-bottom: 40px;
    }
    .download_text {
        font-size: 22px;
    }
    .bot_nav ul {
        display: block;
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
    .bot_nav ul li a {
        padding: 15px 0;
    }
    .bot_logo {
        text-align: center;
    } 
    .app {
        width: 100%;
        height: auto;
    }
    .button_div_slide button {
        width: 80px !important;
        height: 32px;
        border-radius: 12px;
        border: 1px solid #1a1a1a;
    }
    .time_calender_slide {
        display: block;
    }

    .time_calender_slide .time {
        margin-left: 0;
        margin-top: 10px;
    }
    .event_card_slide .body_part {
        padding: 15px;
    }
    .event_card_slide .bottom_card_area {
        display: block;
        padding-top: 0;
    }
    .event_card_slide .bottom_card_area .right {
        margin-top: 8px;
    }
    .event_card_slide .location_part {
        padding-top: 8px;
    }
    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        margin-left: 0px !important;
    }
    .event_card_slide {
        padding: 15px;
    }
    .controls {
        margin-top: 18px;
    }
    .faqs {
        margin-bottom: 30px;
        margin-top: 0px;
    }
}

.de-img{
    background: linear-gradient(to bottom right, black, transparent);
    border-radius: 20px;
}

.btn-b-info{
    position: absolute;
    bottom: inherit;
    margin-bottom: 21px;
    background-color: #071A7F !important;
    color: #fff;
    border-radius: 30px;
    /* font-weight: 500; */
}

.btn-b-info:hover{
    background-color: #07064B !important;
}

.sorting{
    padding-left: 5px;
    padding-bottom: 6px;
    border-bottom: 1px solid gray;
    cursor: pointer;
}
.heart-icon{
    position: absolute;
    right: 0;
    bottom: 90%;
    z-index: 1145;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #ffffffd9;
    margin-right: 8px;
 }

 .heart-icon i{
 padding: 12px;
 padding-left: 11px;
}

/* pulse animation */
.pulse:hover,
.pulse:focus {
    -webkit-animation: pulse 1s;
    animation: pulse 1s;
    box-shadow: 0 0 0 2em transparent;
}

@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #1e33a0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #1e33a0;
    }
}


/* date picker */

.date-picker-container {
    position: relative;
    display: inline-block;
  }
  
  .date-picker-button {
    cursor: pointer;
  }
  .carousel-inner{
    overflow: visible;
  }
  .date-picker {
    display: none;
    position: absolute;
    margin-top: 1rem;
    top: 100%;
    transform: translateX(-50%);
    left: 50%;
    padding: .5rem;
    border-radius: .5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background-color: white;
    z-index: 99999;
  }
  
  
  .date-picker-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: .8rem;
    align-items: center;
  }
  
  .date-picker-grid {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(7, 2rem);
    grid-auto-rows: 2rem;
  }
  
  .date-picker-grid > * {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .date-picker-grid-header {
    font-weight: bold;
    font-size: .75rem;
    color: #333;
  }
  
  .date-picker-grid-dates {
    color: #555;
  }
  
  .date-picker-other-month-date {
    color: #AAA;
  }
  
  .date-picker-grid-dates > .date {
    cursor: pointer;
    border-radius: .25rem;
    border: none;
    background: none;
  }
  
  .date-picker-grid-dates > *:hover {
    background-color: hsl(200, 100%, 80%);
    color: black;
  }
  
  .month-button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .month-button:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-radius: .5rem;
  }
  
  .date-picker.show {
    display: block;
  }
  
  .date.selected {
    background-color: hsl(200, 100%, 50%);
    color: white;
  }