:root{
    --color-gold:#CA972B;
    --color-blue: #57A5C4;
    --color-darkPink: #A53448;
    --color-lightGray: #EBEBF0;
    --color-darkGray: #8E8D94;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(../fonts/FontsFree-Net-SFProDisplay-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(../fonts/FontsFree-Net-SFProDisplay-Bold.ttf);
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(../fonts/FontsFree-Net-SFProDisplay-Medium.ttf);
    font-weight: medium;
    font-style: normal;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(../fonts/FontsFree-Net-SFProDisplay-Light.ttf);
    font-weight: lighter;
    font-style: normal;
}

body
{
    display:flex; 
    flex-direction:column;
    min-height: 100vh;
    font-family: 'SFProDisplay';
    font-weight: medium;
    font-style: normal;
    background-image: url(../images/caldex-background-blured-v3.png);
    background-repeat:repeat-y;
    background-size: cover;
    background-position-x: center; 
    padding: 0;
    margin: 0;
}

.header
{
    min-height:50px;
    background-color: var(--color-lightGray);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-logo{
    display: flex;
    flex-direction: row;
    margin-left: 75px;
}

.nav-links{
    margin-right: 75px;
}

.nav-links-list{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
}


.nav-link-item{
    display: block;
    text-decoration: none;
    text-align: center;
    color: black;
    padding: 14px 16px;
    margin-right: 3px;
    border-bottom: 5px solid transparent;
    transition: 0.3s ease-out;
}

.nav-links-list li:nth-child(3n+1) a:hover
{
    border-color: var(--color-gold);
    border-bottom-style: solid;
    border-bottom-width: 5px;
}

.nav-links-list li:nth-child(3n+2) a:hover
{
    border-color: var(--color-blue);
    border-bottom-style: solid;
    border-bottom-width: 5px;
}

.nav-links-list li:nth-child(3n+3) a:hover
{
    border-color: var(--color-darkPink);
    border-bottom-style: solid;
    border-bottom-width: 5px;
}

.content{
    display: block;
    flex:1;
    width: 50%;
    margin: 7% auto 7% auto;
    opacity: 0;
    animation: 1.3s fade-in-slide-down 0.3s ease-out forwards;
    color: var(--color-lightGray)
}

.title{
    font-size: 3.5rem;
    line-height: 3.5rem;;
    text-align:center;
}

.title-content{
    color: var(--color-lightGray);
    margin: 0;
}

.description{
    padding: 15px;
}

.description-content{
    color: var(--color-lightGray);
    line-height: 22px;
    letter-spacing: 1px;
    margin: 35px 0 35px 0;
}

.store-badges{
    text-align:center;
}

@keyframes fade-in-slide-down {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);

    }
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height:50px;
    background-color: var(--color-lightGray);
    width: 100%;
    height: 50px;
}

/******************************Privacy Policy***************************************/

.content-pp{
    flex: 1;
    width: 50%;
    margin: 7% auto 7% auto;
    color: var(--color-lightGray);
    line-height: 22px;
    letter-spacing: 1px;
}

/**********************************Support******************************************/
.content-sup{
    flex: 1;
    width: 40%;
    margin: 35vh auto 7% auto;
    color: var(--color-lightGray);
    text-align: center;
    line-height: 22px;
    letter-spacing: 1px;
}

/*********************************Responsive*****************************************/
.nav-res-bars{
    display: none;
    font-size: x-large;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .nav-links{margin-right: 20px;}
    .nav-links-list{
        display: none;
        flex-direction: column;
        position: absolute;
        z-index: 10;
        left: 0;
        right: 0;
        background-color: var(--color-lightGray);
        top: 68px;
    }
    .nav-link-item{border-top: 1px solid var(--color-darkGray)}
    .content{width: 75%; margin-top: 10vh;}
    .content-pp{width: 75%; margin-top: 10vh;}
    .content-sup{width: 75%;}
    .nav-logo{margin-left: 20px;}

    .nav-res-bars{display: block;}
}

.nav-res-active{
    display: block;
}

