/* ==========================================================================
	 /// BASE ///
   ========================================================================== */
:root {
    --purple: #A863EA;
    --blue: #00BAE5;
    --green: #00A95B;
    --yellow: #FFCF26;
    --orange: #FF7909;
    --red: #FF321E;
    --beige: #FFF9EF;
    --yellow-section: #fdd745;
}
html, body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	background-color: var(--beige);
	color: var(--blue);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
h1 {
	margin-bottom: 20px;
}
h1 a {
    pointer-events: none;
    cursor: default;
}
h2 {
	font-size: 2.125rem;
	margin-bottom: 20px;
	text-align: center;
}
h4 {
	font-size: 1.2rem;
	color: var(--orange);
	line-height: 130%;
}
h6 {
	font-size: .9rem;
}
p {
	margin-bottom: 0;
	color: var(--orange);
}
img {
	width: 100%;
}
small {
	font-weight: inherit;
}
*::selection {
    background: var(--purple);
    color: #fff;
}
/* ==========================================================================
	 /// LAYOUT ///
   ========================================================================== */
.bg-purple {
	background-color: var(--purple);
}
.bg-blue {
	background-color: var(--blue);
}
.bg-green {
	background-color: var(--green);
}
.bg-yellow {
	background-color: var(--yellow);
}
.bg-orange {
	background-color: var(--orange);
}
.bg-red {
	background-color: var(--red);
}
.bg-blue-navy {
	background-color: var(--blue-navy);
}
.bg-beige {
	background-color: var(--beige);
}
.bg-yellow-section {
	background-color: var(--yellow-section);
}
.bg-decoration {
	background-image: url(../img/bg-symbols.png);
    background-size: contain;
    background-repeat-x: repeat;
    height: 100%;
    width: 100%;
}
.bg-decoration-sm {
    background: url(../img/bg-cross.png) no-repeat top center;
    background-size: contain;
}
.padding-bg {
	padding: 40px 15px;
}
/* ==========================================================================
	 /// MODULE ///
   ========================================================================== */
.wrapper {
	overflow: hidden;
}
.content {
	padding: 0 15px;
	margin: 40px 0;
}
.line-pride{
    height: 10px;
	width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    margin: 0 auto 20px;
}
.line-pride span {
	z-index: 1000;
	height: 10px;
    width: calc(100% / 6);
    left: 0;
}
/* ====== ROUTE ======*/
.route {
    margin: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}
.status{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
}
.status h6 {
	margin-bottom: 0;
}
.status {
	max-width: 115px;
	position: relative;
    margin-bottom: 0;
    font-size: .65rem;
}
.status div {
	position: relative;
	padding-left: 30px;
}
.status div:before {
    content: "";
    background: var(--blue);
    width: 20px;
    height: 2px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px;
}

/*PROGRESS BAR*/
.bar-status {
	margin-right: 65px;
	height: 530px;
}
.progress-bar__container {
    height: 400px;
    margin: 0 auto;
}
.progress-bar__wrap {
    background-color: rgb(224, 226, 230);
    position: relative;
    width: 50px;
    height: 420px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}
.bar-value {
	background: rgb(236,108,185);
	background: linear-gradient(180deg, rgba(236,108,185,1) 0%, rgba(107,55,133,1) 50%, rgba(0,186,229,1) 99%);
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	animation: grow 1.5s ease-out forwards;
	transform-origin: bottom;
}
.bar-value::before {
	content: attr(title);
	position:absolute;
	bottom:40px;
	left:10px;
	color:white;
	font-size: .8rem;
}
.final-bar {
	position: absolute;
    margin: 0 auto;
    margin-left: -30px;
}
.final-bar img {
	width: 130px;
}
@keyframes grow {
    from {
        transform: scaleY(0);
    }
}
.bar-value  {
	-webkit-animation: slideIn 1s;
	-moz-animation: slideIn 1s;
	-o-animation: slideIn 1s;
	animation: slideIn 1s;
}

@-webkit-keyframes slideIn {
    0% {
        height: 0;
    }
    100% {
        height: normal;
    }
}

@-moz-keyframes slideIn {
    0% {
        height: 0;
    }
    100% {
        height: normal;
    }
}
@-ms-keyframes slideIn {
    .progress-bar 0% {
        height: 0;
    }
    .progress-bar 100% {
        height: normal;
    }
}
@-o-keyframes slideIn {
    0% {
        height: 0;
    }
    100% {
        height: normal;
    }
}
@keyframes slideIn {
    0% {
        height: 0;
    }
    100% {
        height: normal;
    }
}
/* ====== END ROUTE ======*/
.social-buttons a {
    display: inline-block;
    margin: 0 20px;
    padding: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 1em;
    border-radius: 50%;
    background-color: var(--purple);
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.social-buttons a:hover {
	background-color: var(--blue);
}
.i-zoom {
	animation: ani 2s linear infinite;
    -moz-animation: ani 2s linear infinite;
    -webkit-animation: ani 2s linear infinite;
    -o-animation: anie 2s linear infinite;
}
.i-zoom {
    animation: ani 2s linear infinite;
    -moz-animation:ani 2s linear infinite;
    -webkit-animation:ani 2s linear infinite;
    -o-animation:anie 2s linear infinite;
}
@-webkit-keyframes ani {
    0% { transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1); }

    70% { transform: scale(.95);
    -moz-transform: scale(.95);
    -webkit-transform: scale(.95);
    -o-transform: scale(.95);
    -ms-transform: scale(.95); }

    100% { transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1); }
 }
@-moz-keyframes ani {
    0% { transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1); }

     70% { transform: scale(.95);
    -moz-transform: scale(.95);
    -webkit-transform: scale(.95);
    -o-transform: scale(.95);
    -ms-transform: scale(.95); }
    100% { transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1); }
 }
@keyframes ani {
    0% { transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1); }

     70% { transform: scale(.95);
    -moz-transform: scale(.95);
    -webkit-transform: scale(.95);
    -o-transform: scale(.95);
    -ms-transform: scale(.95); }

    100% { transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1); }
 }
.grid-notes {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    counter-reset: item-counter;
}
.item-notes {
	padding: 15px;
	font-weight: bold;
	margin: 20px 0;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}
.item-notes:hover {
    -webkit-transform: translate(0px, 3px);
    -ms-transform: translate(0px, 3px);
    transform: translate(0px, 3px);
}
.item-notes a:hover {
	text-decoration: none;
	opacity: .8;
}
.item-notes:last-child {
    margin-bottom: 0;
}
.item-notes p {
	color: var(--beige);
}
.item-notes.bg-yellow p, .title-note a  {
	color: var(--purple);
}
.title-note{
	padding: 15px 0;
	display: inline-block;
}
.link-dots {
	display: block;
    height: 30px;
    background: url(../img/dots-single.png) right center repeat-x;
    margin-right: 36px;
    text-align: right;
    margin-top: 10px;
    transition-duration: .3s;
}
.link-dots i {
    margin-right: -36px;
    margin-top: 5px;
    font-size: 20px;
    color: var(--beige);
}
.text-break {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 60px;
}
.text-break div:first-child {
	display: inline-block;
    flex-basis: 30%;
    margin-right: 15px;
}
.text-break div:last-child {
	flex-basis: 70%;
}
.division-sm span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 50px 5px 10px;
	display:inline-block;
}
.post {
    border: 2px solid var(--purple);
    border-radius: 2px;
    background: #fff;
    padding: 10px 10px;
    margin-top: 20px;
}
.post a {
	transition: all 0.3s ease-in-out;
}
.post a:hover svg g path {
	fill: var(--blue);
}
.flag {
	background: url(../img/bandera-lgbt.png) no-repeat bottom center;
	background-size: contain;
	padding-bottom: 100px;
}
/*CAROUSEL*/
.carousel-control-next, .carousel-control-prev {
	opacity: 1;
	top: calc((100% / 2) - 32%);
	width: 10%;
}
.carousel-control-prev-icon {
    background-image: url(../img/carousel-control.png);
}
.carousel-control-next-icon {
	background-image: url(../img/carousel-control.png);
	-webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
.carousel-control-next-icon, .carousel-control-prev-icon {
	width: 30px;
    height: 30px;
}
.carousel-indicators {
	bottom: -50px;
}
.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--yellow);
    opacity: 1;
}
.carousel-indicators .active {
    background-color: var(--purple);
}
/*CAROUSEL END*/



/* ==========================================================================
	 /// MEDIA QUERIES ///
   ========================================================================== */

@media only screen and (min-width: 620px) {
	.grid-notes {
	    -webkit-column-count: 2;
	    -moz-column-count: 2;
	    column-count: 2;
	}
	.item-notes {
		margin-left: 10px;
		margin-right: 10px; 
		box-sizing: border-box;
	    -webkit-column-break-inside: avoid;
	    -moz-column-break-inside: avoid;
	    break-inside: avoid;
	}
	.item-notes:first-child {
		margin-top: 0;
	}
	/*.flag {
		background-position-y: bottom;
		background-position-x: center; 
		height: 250px;
	}*/
}

@media only screen and (min-width: 768px) {
	h1 img {
		width: 340px;
	}
	.content {
		padding-left: 50px;
		padding-right: 50px;
		margin-top: 70px;
		margin-bottom: 70px;
	}
	/* ====== ROUTE ======*/
	.pride-route  .text-center{
		max-width: 700px;
		margin: 0 auto;
	}
	.route {
		margin-top: 70px;
		flex-direction: column;
	}
	.status {
		flex-direction: row;
		max-width: inherit;
		margin-top: 60px;
		height: inherit;
	}
	.bar-status {
		margin-right: 0;
		height: inherit;
	}
	.progress-bar__container {
	    height: 50px;
	    width: 100%;
	}
	.progress-bar__wrap {
		height: 50px;
	    width: calc(100% - 100px);
    	margin: 0 auto;
	}
	.final-bar {
	    right: 0;
	    top: -30px;
	}
	.bar-value {
		width: inherit;
    	height: 100% !important;
	}
	.bar-value::before {
	    bottom: 15px;
	    left: 20px;
	}
	.status div {
		padding-left: 0;
	}
	.status div::before {
	    width: 2px;
	    height: 30px;
	    top: -35px;
	    left: 50%;
	}
	.status h6 {
	    padding-left: 0;
	    text-align: center;
	}
	.post {
		margin: 80px 100px 0;
	}
}
@media only screen and (min-width: 900px) {
	h2 {
		margin-bottom: 40px;
	}
	h4 {
		font-size: 1.5rem;
	}
	.route {
		max-width: 800px;
    	margin: 80px auto;
	}
	.grid-notes {
	    -webkit-column-count: 3;
	    -moz-column-count: 3;
	    column-count: 3;
	}
	.item-notes {
		margin: 0 15px 30px;
	}
	.post {
		max-width: 850px;
   		margin: 100px auto 0;
	}
	.bg-decoration-sm {
		background: url(../img/bg-cross.png) repeat-x top left;
		background-size: auto;
	}
	.text-break {
	    align-items: center;
	    max-width: 750px;
	    margin: 50px auto 0;
	}
	.text-break div:first-child {
	    margin-right: 51px;
	}
}
@media only screen and (min-width: 1400px) {
	.content {
		max-width: 1200px; 
		margin: 80px auto;
	}
	.max-width {
		max-width: 1200px;
		margin: 0 auto;
	}
}
@media only screen and (min-width: 2200px) {
	.wrapper{
	    max-width: 2900px;
	    margin: 0 auto;
	}
}
