@import url("https://use.typekit.net/qox2vwt.css");

/* Root styles */
:root {
    --black: #000000;
    --dark-gray: #3F4444;
    --gray: #979797;
    --light-gray: #EBEFEE;
    --light-gray-2: #F2F2F2;
    --light-gray-3: #F8F8F8;
    --white: #ffffff;

    --light-green: #F2F9F6;
    --light-green-2: #A9D9C8;
    --green: #367B63;
    --dark-green: #1C464A;
    --dark-blue: #0C1D1F;
    --beige: #FBFAE7;
    --beige: #FDF4E4;
    --yellow: #ECC442;
    --orange: #ECA63A;
    
    /* Font sizes */
    --text-xlarge: 42px;
    --text-large: 30px;
    --text-medium: 24px;
    --text-small-medium: 20px;
    --text-small: 16px;
    --text-extra-small: 12px;

    --font-family-primary: "inter-variable", sans-serif;
}

/*FIX TEMPLATE*/
#banner-section {
    padding: 96px 0 0;
}
.container-fluid.middle-content {
    padding: 0;
    margin: 0;
}
.footer {
    margin: 0;
}
#pre-login-section {
    padding-top: 30px;
    padding-bottom: 20px;
}
#pre-login-section .not-logged {
    padding-top: 50px;
    padding-bottom: 50px;
}
.component-section {
    padding: 20px 0px 20px 0;
    position: relative;
}

/* Global styles */
body {
    margin: 0;
    font-family: var(--font-family-primary);
    background-color: var(--light-gray);
    line-height: 1.3;
}

h1 {
    font-size: var(--text-large);
    color: var(--white);
    margin: 20px 0;
}

h1, h2 {
    line-height: 1;
}

.text-xlarge { font-size: var(--text-xlarge); }
.text-large { font-size: var(--text-large); }
.text-medium { font-size: var(--text-medium); }
.text-small-medium { font-size: var(--text-small-medium); }
.text-small { font-size: var(--text-small); }
.text-extra-small { font-size: var(--text-extra-small); }

.text-black { color: var(--black); }
.text-dark-gray { color: var(--dark-gray); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }

.text-light-green { color: var(--light-green); }
.text-light-green-2 { color: var(--light-green-2); }
.text-green { color: var(--green); }
.text-dark-blue { color: var(--dark-blue); }
.text-dark-green { color: var(--dark-green); }
.text-beige { color: var(--beige); }
.text-yellow { color: var(--yellow); }
.text-orange { color: var(--orange); }

.bg-light-black { background-color: var(--light-black); }
.bg-light-gray { background-color: var(--light-gray); }
.bg-gray { background-color: var(--gray); }
.bg-white { background-color: var(--white); }

.bg-light-green { background-color: var(--light-green); }
.bg-light-green-2 { background-color: var(--light-green-2); }
.bg-green { background-color: var(--green); }
.bg-dark-blue { background-color: var(--dark-blue); }
.bg-dark-green { background-color: var(--dark-green); }
.bg-beige { background-color: var(--beige); }
.bg-yellow { background-color: var(--yellow); }
.bg-orange { background-color: var(--orange); }

.m-auto { margin: auto; }
.d-flex { display: flex; }
.jc-center { justify-content: center; }
.jc-space-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.m-0 { margin: 0; }
.m-1 { margin: 5px; }
.m-2 { margin: 10px; }
.m-3 { margin: 20px; }
.m-4 { margin: 40px; }
.m-x-1 { margin-right: 1rem; margin-left: 1rem;}
.m-x-2 { margin-right: 2rem; margin-left: 2rem;}
.m-x-3 { margin-right: 3rem; margin-left: 3rem;}
.m-x-6 { margin-right: 6rem; margin-left: 6rem;}
.m-y-1 { margin-top: 1rem; margin-bottom: 1rem;}
.m-y-2 { margin-top: 2rem; margin-bottom: 2rem;}
.m-y-3 { margin-top: 3rem; margin-bottom: 3rem;}
.m-y-4 { margin-top: 4rem; margin-bottom: 4rem;}
.m-y-6 { margin-top: 6rem; margin-bottom: 6rem;}

.p-0 { padding: 0; }
.p-1 { padding: 5px; }
.p-2 { padding: 10px; }
.p-3 { padding: 20px; }
.p-4 { padding: 40px; }
.p-x-1 { padding-right: 1rem; padding-left: 1rem;}
.p-x-2 { padding-right: 2rem; padding-left: 2rem;}
.p-x-3 { padding-right: 3rem; padding-left: 3rem;}
.p-x-6 { padding-right: 6rem; padding-left: 6rem;}
.p-y-1 { padding-top: 1rem; padding-bottom: 1rem;}
.p-y-2 { padding-top: 2rem; padding-bottom: 2rem;}
.p-y-3 { padding-top: 3rem; padding-bottom: 3rem;}
.p-y-4 { padding-top: 4rem; padding-bottom: 4rem;}
.p-y-6 { padding-top: 6rem; padding-bottom: 6rem;}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/*FONT FAMILY*/
.font-family-inter {
    font-family: var(--font-family-primary);
}

.font-light { font-weight: 200; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-book { font-weight: 700; }
.font-bold { font-weight: 900; }

.font-normal { font-style: normal; }
.font-italic { font-style: italic; }
.font-uppercase { text-transform: uppercase; }
.font-lowercase { text-transform: lowercase; }
.font-capitalize { text-transform: capitalize; }

.text-decoration-underline { text-decoration: underline; }
.text-decoration-none { text-decoration: none !important; }

.b-color-1-green { border: 1px solid var(--green); }

.br-4 { border-radius: 4px; }
.br-12 { border-radius: 12px; }
.br-15 { border-radius: 15px; }
.br-25 { border-radius: 25px; }

.w-100 { width: 100%; }
.w-50 { width: 50%; }
.w-25 { width: 25%; }
.w-33 { width: 33%; }

a.custom-btn-primary,
a.custom-btn-primary :active,
a.custom-btn-primary :focus,
a.custom-btn-primary :hover,
a.custom-btn-primary :visited {
    padding: 12px 30px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 1s ease-in-out;
    font-weight: 500 !important;
    color: var(--dark-blue) !important;
}

/*NAVBAR-------------------------------------*/
#header-custom nav .logo-header img {
	width: 100%;
	height: 100%;
	aspect-ratio: 53 / 17;
	object-fit: cover;
}

#header-custom .custom-tabs {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	box-sizing: content-box;
	gap: 15px;
    align-items: center;
    justify-content: center;
}

#header-custom .custom-tabs a {
	color: var(--white);
	text-decoration: none;
	display: block;
	font-size: 2rem;
	position: relative;
	transition: color 1s ease-in-out;
}

#header-custom .custom-tabs a.active,
#header-custom .custom-tabs a:hover {
	color: var(--light-green-2);
}

#header-custom .custom-tabs a::before {
	content: "";
	width: 0;
	height: 3px;
	background-color: var(--light-green-2);
	position: absolute;
	top: 130%;
	left: 50%;
	transition: all 0.2s ease-in-out;
}

#header-custom .custom-tabs a.active::before,
#header-custom .custom-tabs a:hover::before {
	width: 50%;
	transform: translateX(-50%);
	transition: width 0.3s ease-in-out;
	display: flex;
	justify-self: center;
}

#custom-main-content .tab-content {
	display: none;
	opacity: 0;
	transition: all 0.3s ease-in;
	transition-behavior: allow-discrete;
}

#custom-main-content .tab-content.active {
	display: block;
	opacity: 1;
}

#header-custom .custom-tabs a br {
    display: none;
}
/*NAVBAR-FIN------------------------------------*/


/*HERO*/
#hero {
    padding: 0;
    background-position: center;
    height: 550px;
    align-items: center;
    display: flex;
    background-repeat: no-repeat;
    background-color: var(--dark-aqua);
    align-content: center;
}

.hero-inner-content {
    width: 80%;
    margin: auto;
}

.hero-inner-content .row {
    display: flex;
    align-content: center;
    align-items: center;
}

/*------------------------NAV PILLS----------------------*/
.custom-tabs .nav-pills {
    border-bottom: none;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.custom-tabs .nav-pills>li {
    float: left;
    padding: 20px;
    background: var(--light-green);
    border-radius: 60px;
    margin: 10px;
}
.custom-tabs .nav-pills>li.active {
    background: var(--dark-green);
}
.custom-tabs .nav-pills>li.active a{
    color: var(--dark-green);
    text-decoration: none !important;
}
.custom-tabs .nav-pills>li.active a{
    color: var(--white);
    text-decoration: none !important;
}

.custom-tabs .nav-pills>li>a {
    font-family: 'inter-variable';
    font-size: medium;
    color: var(--dark-green);
    border-radius: 0;
    border-bottom: none !important;
    background: transparent !important;
    font-weight: 700 !important;
}
/*------------------------NAV PILLS----------------------*/

.grid-legales {
    display: grid;
    grid-template-columns: 25% 60% 15%;
    grid-template-rows: auto;
    grid-template-areas:
    "logo texto-legal codigo-qr";
    align-items: center;
}

.grid-legales .logo {
    grid-area: logo;
}

.grid-legales .texto-legal {
    grid-area: texto-legal;
}

.grid-legales .codigo-qr {
    grid-area: codigo-qr;
}
.grid-legales .texto-legal ,
.grid-legales .texto-legal .legal-link {
    font-family: var(--font-family-primary);
}

.grid-legales .texto-legal .legal-link {
    font-weight: 700;
}

#pm-code {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*EVENTO*/
.video-evento {
    border-radius: 0 0 12px 12px;
    overflow: hidden; 
}

/*---------------------CUSTOM-ACCORDION---------------------------------*/
div#legales h4,
div#legales .accordion-container .az-panel-heading a {
  display: flex;
  align-items: center;
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
}
div#legales .panel {
    margin-bottom: 20px;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    box-shadow: none;
}
div#legales .panel-body,
div#legales .accordion-container .accordion-inner-container {
    padding: 0;
}
div#legales .accordion-inner-container .panel-group {
    border: none;
}
div#legales .accordion-container[data-enable-custom-icon="true"]{
    width: 100%;
}
.accordion-group span.fa.pull-right {
  background-image: url(/content/dam/multibrand/ar/es/cardiovascular-renal-metabolico/wainua/icon-referencias-amarillo-verde.svg);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 10px !important;
  transform: rotate(180deg);
}
.accordion-group span.fa.pull-right.fa-plus {
  transform: rotate(0deg);
  transition: .25s all ease-in-out;
}
.accordion-group span.fa.pull-right.fa-minus {
  transform: rotate(180deg);
  transition: .25s all ease-in-out;
}
.fa-minus:before ,
.fa-plus:before {
  content: "";
}
.accordion-container[data-enable-custom-icon="true"] .collapse-panel-heading .fa {
  margin: 0;
}
/*----------------------------------------------------------------------*/


/*ANIMATIONS START*/
.anim-show {
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name: show;
    animation-range: entry 25% cover 30%;
    animation-fill-mode: both;
}
@keyframes show {
	from {
		opacity: 0;
		scale: 55%;
	}
	to {
		opacity: 1;
		scale: 100%;
	}
}
/*ANIMATIONS END*/
@media (max-width: 1500px) {
    #banner-section {
        padding: 90px 0 0;
    }
}

@media (max-width: 1200px) {
    #banner-section {
        padding: 100px 0 0;
    }
}

@media (max-width: 992px) {
    #banner-section {
        padding: 130px 0 0;
    }
    .cards {
        flex-direction: column;
        margin: 20px 0;
    }
    .card {
        margin: 0 0 20px 0;
    }
    .grid-legales {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: repeat(3,auto);
        grid-template-areas:
            "logo"
            "texto-legal"
            "codigo-qr";
        align-items: center;
        justify-content: center;
        justify-items: center;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    #banner-section {
        padding: 125px 0 0;
    }
    .hero-inner-content .row {
        display: flex;
        align-content: center;
        align-items: center;
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-copy h2, .hero-copy h3 {
        text-align: center;
    }
}