/*
    Theme Name: Inspiry TourPress Child
    Description: A purpose oriented WordPress theme for tours business.
    Theme URI: https://themeforest.net/user/inspirythemes/portfolio
    Author: InspiryThemes
    Author URI: https://inspirythemes.com
    Template: inspiry-tourpress
    Version: 1.0.2

    ----------------------------------------------------------------------------------------------------------------*/

/* 1. CONTENEDOR PRINCIPAL (ESTILO ESCRITORIO POR DEFECTO) */
.flexslider .slides li.slide .slide-container {
    width: 100%;
    max-width: 100%;
    height: 770px; /* Altura fija para escritorio */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2. VIDEO Y IMAGEN (FONDO) */
/* En escritorio forzamos a que cubran el área sin importar el tamaño original */
.slide-container video.video-bg,
.slide-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; /* Mantiene proporción y recorta bordes si sobra */
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* 3. CAPA DE TEXTOS */
.flexslider .slides li.slide header, 
.flexslider .slides li.slide .detail {
    position: relative !important;
    z-index: 10 !important;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    padding: 0 10%;
    pointer-events: auto;
}

/* 4. AJUSTES ESPECÍFICOS PARA MÓVIL (TABLETS Y CELULARES) */
@media (max-width: 1024px) {
    .flexslider .slides li.slide .slide-container {
        height: 450px !important;
    }
}

@media (max-width: 767px) {
    /* Forzar que el contenedor tenga altura suficiente para el texto */
    .flexslider .slides li.slide .slide-container {
        height: 67vh !important;
        min-height: 300px;
        display: flex !important;
        flex-direction: column;
/*         justify-content: flex-end; */
    }

    /* FORZAR VISIBILIDAD DEL TEXTO (Anulando .hidden-xs del tema) */
    .flexslider .slides li.slide header.hidden-xs {
        display: block !important; /* El !important es clave aquí */
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 20 !important;
        width: 90% !important;
/*         margin: 0 auto; */
		margin: 0 auto 8vh 6vw;
        text-align: left;
        padding: 10px !important;
/*         background: rgba(0, 0, 0, 0.3);  */
		background: none;
        border-radius: 8px;
    }

    .flexslider .slides li.slide header h2 {
        font-size: 4rem !important; /* Achicamos un poco el título para que entre */
        margin-bottom: 5px;
    }

    .flexslider .slides li.slide header span, 
    .flexslider .slides li.slide header p {
        font-size: 14px !important;
        display: block !important;
    }

    /* Ocultamos los detalles de precio/días en mobile para no saturar */
    .flexslider .slides li.slide .detail {
        display: none !important;
    }
	.home-slider .slide header{
		left:0;
	}
}

.flexslider .slides li {
    position: relative;
}

video.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; /* Esto evita que el video se estire feo */
}

.slide-container {
    z-index: 10;
    position: relative;
}



/* HEADER */

	/* MENU */

	.sub-menu {
		background: none !important;
	}

	/* BUSCADOR CABECERA (HEADER)*/

	.tur_header_buscador {
		padding-left: 20px;
	}

	@media (max-width: 768px) {
		.tur_header_buscador{ display: none; }
	}

/* 	@media (max-width: 1400px) {
	  .tur_header_buscador { display: none; }
	} */

	.tur_header_buscador form {
		display:flex;
		margin: 7px 0;
	}

	.tur_header_buscador button {
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		border: none !important;
		background-color: #719c29;
		color: white;
		width: auto;
		padding: 0 10px 0 11px;
	}

	.tur_header_buscador button:hover { 
		background-color: #77C720;
	}

	.tur_header_buscador input[type=search] {
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}


	/* BUSCADOR TOP HEADER */

	.tur_top_header_buscador {
		margin: 10px 0 0 0;
	}

	.tur_top_header_buscador form {
		display:flex;
	}

	.tur_top_header_buscador button {
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		border: none !important;
		background-color: #719c29;
		color: white;
		width: auto;
		padding: 0 10px 0 11px;
		box-shadow: 0px 0px 11px 0px #00000040;
	}

	.tur_top_header_buscador button:hover { 
		background-color: #77C720;
	}

	.tur_top_header_buscador input[type=search] {
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
		box-shadow: 0px 0px 11px 0px #00000040;
	}




/* BUSCADOR TOP HEADER MOBILE */

/* Barra móvil principal */
.mean-container .mean-bar {
    position: relative !important;
    min-height: 60px !important;
    z-index: 999999 !important;
    padding: 0 !important;
}

/* BUSCADOR: Centrado absoluto */
.mean-search-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 170px !important;
    height: 34px !important;
    z-index: 1000001 !important;
    display: block; /* Visible por defecto */
}

/* OCULTAR BUSCADOR AL DESPLEGAR: 
   Cuando el botón tiene la clase .mean-clicked, el buscador se oculta */
.mean-container a.meanmenu-reveal.mean-clicked ~ .mean-search-container {
    display: none !important;
}

.mean-search-form {
    display: flex !important;
    background: #fff !important;
    border-radius: 4px !important;
    height: 100% !important;
    overflow: hidden !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mean-search-field {
    border: none !important;
    padding: 0 10px !important;
    width: 100% !important;
    font-size: 14px !important;
}

.mean-search-submit {
    background: #356F23 !important;
    border: none !important;
    color: white !important;
    padding: 0 10px !important;
}

/* Botón Hamburguesa / X */
.mean-container a.meanmenu-reveal {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #719c29 !important;
    border: none !important;
    padding: 6px !important;
    width: 28px !important;
    height: 28px !important;
    z-index: 1000002 !important;
    color: #fff !important;
}

.mean-container a.meanmenu-reveal a:link, a:visited, a:hover, a:focus, a:active {
    border: none;
    outline: none; 
    text-decoration: none; 
}

/* Menú desplegable: Empieza debajo de la barra */
.mean-container .mean-nav {
    position: absolute !important;
    top: 15px !important;
    width: 100% !important;
    z-index: 999998 !important;
}

.mean-container a.meanmenu-reveal span {
    background: #fff !important;
}


















/* CSS PARA LAS LOCALIDADES */


/* =========================
   MODULO DESTINO - 4 COLUMNAS
========================= */

.destino-top-info {
    max-width: 1080px;
    margin: 28px auto 24px;
    padding: 0 18px;
}

.destino-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.destino-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow: hidden;
}

.destino-card-info,
.destino-card-history {
    padding: 18px 18px 16px;
}

.destino-card-info {
    min-height: 300px;
}

.destino-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.2;
    color: #1f2937;
    font-weight: 700;
}

.destino-card-info p,
.destino-card-history p,
.destino-card-info li,
.destino-card-history li {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
}

.destino-card-info p:last-child,
.destino-card-history p:last-child {
    margin-bottom: 0;
}

.destino-card-info ul,
.destino-card-history ul {
    margin: 0;
    padding-left: 16px;
}

.destino-card-history {
    margin-top: 0;
}

.destino-top-info + .taxonomy-list,
.destino-top-info + .taxonomy-grid {
    margin-top: 6px;
}

/* tablet */
@media (max-width: 1100px) {
    .destino-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destino-card-info {
        min-height: auto;
    }
}

/* mobile */
@media (max-width: 767px) {
    .destino-top-info {
        margin: 20px auto 20px;
        padding: 0 14px;
    }

    .destino-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .destino-card-info,
    .destino-card-history {
        padding: 16px 15px 14px;
    }

    .destino-card h3 {
        font-size: 16px;
    }

    .destino-card-info p,
    .destino-card-history p,
    .destino-card-info li,
    .destino-card-history li {
        font-size: 12.8px;
        line-height: 1.55;
    }
}
















/* NAVEGACION "QUE HACER" "DONDE COMER" Y "DONDE ALOJARSE" */

.navega_contenedor_grid {
    width: 75%;
    margin: 24px auto 24px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.navega_boton {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 118px;
    padding: 22px 26px;
    background: #ffffff;
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(46, 45, 44, 0.10);
    border: 1px solid rgba(46, 45, 44, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Barlow', 'Rubik', sans-serif;
}

.navega_boton::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: var(--boton-color);
}

.navega_boton:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(46, 45, 44, 0.16);
}

.navega_icono {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--boton-bg);
    color: var(--boton-color);
    font-size: 34px;
}

.navega_texto {
    font-family: "Rubik", sans-serif;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navega_titulo { 
    font-size: 1.7rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #2E2D2C;
    text-transform: uppercase;
}

.navega_subtitulo { 
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0;
    text-transform: none;
}

.navega_boton_que_hacer {
    --boton-color: #FAAE05;
    --boton-bg: #FFF3D6;
}

.navega_boton_donde_comer {
    --boton-color: #2F76D2;
    --boton-bg: #E7F1FF;
}

.navega_boton_donde_alojarse {
    --boton-color: #356F23;
    --boton-bg: #EAF3E6;
}

/* TABLET */
@media (max-width: 1024px) {
    .navega_contenedor_grid {
        width: 90%;
    }

    .navega_boton {
    font-family: "Rubik", sans-serif;
        padding: 18px;
        gap: 14px;
    }

    .navega_icono {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 28px;
    }

    .navega_titulo {
    font-family: "Rubik", sans-serif;
        font-size: 1.05rem;
    }

    .navega_subtitulo {
    font-family: "Rubik", sans-serif;
        font-size: 0.9rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .navega_contenedor_grid {
        width: 94%;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 16px auto 20px auto;
        padding: 0;
    }

    .navega_boton {
    font-family: "Rubik", sans-serif;
        min-height: 86px;
        padding: 10px 6px;
        border-radius: 8px;
        gap: 6px;

        text-align: center;
        box-shadow: none;
        background: #f4f4f4;
		
		display: flex;
        flex-direction: column;
		justify-content: center;
		align-items: center; 
    }

    .navega_icono {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: transparent;
        font-size: 26px;
    }

    .navega_titulo {
    font-family: "Rubik", sans-serif;
        font-size: 1.2rem;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: 0.10em;
    }

    .navega_subtitulo {
        display: none;
    }

    .navega_boton::after {
        height: 3px;
    }
}










/* SLIDE DE PRODUCTOS DEL HOME */


.home-mood-destination.swiper {
	width: 100%;
	overflow: hidden;
	padding: 40px 0 30px 0;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    box-shadow: 0px 0px 40px 0 #0000000f;
    border-radius: 15px;
}

.home-mood-destination .swiper-wrapper {
	align-items: stretch;
}

.home-mood-destination .swiper-slide {
	height: auto;
}

.home-mood-destination .swiper-slide figure {
	margin: 0;
}

/* FINAL DE SLIDE DE PRODUCTOS DEL HOME */








/* COMO LLEGAR BOTONERA */
.cg-top-nav-outer{
  position: relative;
  margin-top: 30px;
  margin-bottom: 26px;
  z-index: 50;
  pointer-events: auto;
}

.cg-top-nav{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}

.cg-top-btn{
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none !important;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.17);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
  pointer-events: auto;
}

.cg-top-btn:hover,
.cg-top-btn:focus{
  transform: translateY(-4px);
  box-shadow: 0 14px 28px #0000007d;
  filter: brightness(1.02);
  text-decoration: none !important;
}

.cg-top-btn:focus{
  outline: none;
}

.cg-top-btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,0));
  pointer-events: none;
}

.cg-icon{
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  position: relative;
  z-index: 2;
}

.cg-icon svg{
  width: 24px;
  height: 24px;
  display: block;
}

.cg-texts{
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.cg-title{
  font-size: 20px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #ffffff;
}

.cg-anchor{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

/* Colores institucionales */
.cg-tierra{
  background: #719C29;
  color: #ffffff !important;
}

.cg-aire{
  background: #769FD3;
  color: #ffffff !important;
}

.cg-rio{
  background: #F36D21;
  color: #ffffff !important;
}

.cg-info{
  background: #FACD05;
  color: #2E2D2C !important;
}

.cg-info .cg-title,
.cg-info .cg-anchor{
  color: #2E2D2C !important;
}

.cg-info .cg-icon{
  background: rgba(255,255,255,.38);
  border-color: rgba(46,45,44,.08);
}

#por-tierra,
#por-aire,
#por-rio,
#informacion-util{
  scroll-margin-top: 125px;
}

/* BLOQUES EXPANDIBLES */
.cg-box-more{
  margin: 18px 0 28px;
  border: 1px solid #dfe5d8;
  border-left: 6px solid #719C29;
  border-radius: 12px;
  background: #f8fbf4;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cg-box-more--blue{
  border-left-color: #769FD3;
  background: #f5f8fd;
  border-color: #dce6f4;
}

.cg-box-more--yellow{
  border-left-color: #FACD05;
  background: #fffbee;
  border-color: #f3e39a;
}

.cg-more-toggle,
.cg-sub-toggle{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  color: #2E2D2C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .2s ease;
}

.cg-more-toggle:hover,
.cg-sub-toggle:hover{
  background: rgba(0,0,0,.03);
}

.cg-more-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #719C29;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.cg-box-more.is-open .cg-more-icon{
  transform: rotate(180deg);
}

.cg-box-more--blue .cg-more-icon{
  background: #769FD3;
}

.cg-box-more--yellow .cg-more-icon{
  background: #2E2D2C;
  color: #FACD05;
}

.cg-more-content,
.cg-sub-content{
  display: none;
  padding: 0 18px 18px;
}

.cg-box-more.is-open .cg-more-content,
.cg-sub-more.is-open .cg-sub-content{
  display: block;
}

.cg-sub-more{
  margin-top: 14px;
  border-top: 1px dashed rgba(0,0,0,.12);
  padding-top: 8px;
}

.cg-sub-toggle{
  padding: 12px 0;
  font-size: 14px;
  color: #356F23;
}

.cg-box-more--blue .cg-sub-toggle{
  color: #4f78ad;
}

.cg-box-more--yellow .cg-sub-toggle{
  color: #8f6f00;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .cg-top-nav{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .cg-top-nav-outer{
    margin: 15px;
  }

  .cg-top-nav{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cg-top-btn{
    min-height: 78px;
    padding: 12px;
    gap: 10px;
    border-radius: 14px;
  }

  .cg-icon{
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .cg-icon svg{
    width: 20px;
    height: 20px;
  }

  .cg-title{
    font-size: 17px;
  }

  .cg-anchor{
    font-size: 11px;
    margin-top: 4px;
  }

  .cg-more-toggle,
  .cg-sub-toggle{
    padding: 14px 14px;
  }

  .cg-more-content,
  .cg-sub-content{
    padding: 0 14px 14px;
  }
}



/* ── Header flotante SOLO home ── */

/* En home, el header empieza visible y flotante (no oculto) */
.home header.sticky-header {
    transform: translateY(0) !important;
    position: absolute;
    top: 56px;
    left: 56px;
    right: 56px;
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
    transition: border-radius 0.35s ease, box-shadow 0.35s ease, top 0.35s ease, left 0.35s ease, right 0.35s ease;
    z-index: 9999;
}

/* Al hacer scroll: fixed arriba, sin bordes */
.home header.sticky-header.is-docked {
    position: fixed;
    max-width: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
}

.is-docked{
	width: auto !important;
}

.banner-bajo-slide {
  max-width: 94%;
  height: auto;
  margin-left: 3%;
}

.banner-bajo-slide img {
border-radius: 7px;
}




/* MOOD DESTINATION (mood-destinations.php) */

.home-mood-destination .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -12px;
    margin-right: -12px;
}

.home-mood-destination .mood-col-5 {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

/* Desktop: 5 por fila */
@media (min-width: 992px) {
    .home-mood-destination .mood-col-5 {
        width: 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Tablet: 3 por fila */
@media (min-width: 768px) and (max-width: 991px) {
    .home-mood-destination .mood-col-5 {
        width: 33.3333%;
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* Mobile: 2 por fila */
@media (max-width: 767px) {
    .home-mood-destination .mood-col-5 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }

    .home-mood-destination .row {
        margin-left: -8px;
        margin-right: -8px;
    }
}

/* Link de la card */
.home-mood-destination .mood-col-5 a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
}

/* Card */
.home-mood-destination figure {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    margin: 0;
    position: relative;
    background: #ddd;
}

/* Imagen principal */
.home-mood-destination figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Overlay */
.home-mood-destination figure .overlay {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
}

/* Icono */
.home-mood-destination figure .overlay img {
    max-width: 92px;
    max-height: 92px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

/* Texto */
.home-mood-destination figure .overlay span {
    display: block;
    text-align: center;
    line-height: 1.2;
}

/* Hover suave */
.home-mood-destination figure > img {
    transition: transform 0.35s ease;
}

.home-mood-destination .mood-col-5 a:hover figure > img {
    transform: scale(1.05);
}

/* Ajuste mobile */
@media (max-width: 767px) {
    .home-mood-destination figure {
        height: 210px;
        border-radius: 16px;
    }

    .home-mood-destination .mood-col-5 a,
    .home-mood-destination figure > img,
    .home-mood-destination figure .overlay {
        border-radius: 16px;
    }

    .home-mood-destination figure .overlay img {
        max-width: 72px;
        max-height: 72px;
    }
}

/* VARIOS */

.read-more {
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;	
    box-shadow: 0px 0px 7px 5px #0000000f;
}


.read-more a:hover { 	
    box-shadow: 0px 0px 20px 0px #a2db43;
}


/* SLIDER DE LOS VIDEOS DEL HOME (CONTROLES) */

/* PUNTITOS DEL SLIDER */

.home-slider {
    position: relative;
}

.flex-control-nav {
    bottom: 25px;
    z-index: 9999;
}

.flex-control-paging li a {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    transition: all .3s ease;
}

.flex-control-paging li a:hover {
    background: rgba(255,255,255,.8);
}

.flex-control-paging li a.flex-active {
    background: #ffffff;
    transform: scale(1.2);
}