
:root {
    --primary-color: #DA291C;
    --gray-color: #222222;
}

@font-face {
    font-family: 'TedNextDemiBold';
    font-weight: 400;
    font-style: normal;
    src: url("fonts/TedNext-DemiBold.woff2") format('woff2');
}

@font-face {
    font-family: 'TedNextSemiBold';
    font-weight: 400;
    font-style: normal;
    src: url("fonts/TedNext-SemiBold.woff2") format('woff2');
}
  
@font-face {
    font-family: 'TedNextMedium';
    font-weight: 700;
    font-style: normal;
    src: url("fonts/TedNext-Medium.woff2") format('woff2');
}

@font-face {
    font-family: 'TedNextRegular';
    font-weight: 700;
    font-style: normal;
    src: url("fonts/TedNext-Regular.woff2") format('woff2');
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: TedNextMedium;
    width: 100%;
}

header,
footer,
main,
article,
section {
    position: relative;
    box-sizing: border-box;
}

/********************************* header */

header {    
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: var(--primary-color);
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}


header > div {
    height: 100%;
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
}

header > div .logos {
    display: flex;
    align-items: center;
    height: 100%;
}

header > div .logos span {    
    border-left: 1px solid #fff;
    height: 25%;
    margin: 0 20px 0px 10px;
}

header > div nav {
    margin-left: auto;
    font-family: TedNextDemiBold;
    font-size: 1.1em;
    padding-right: 20px;
    white-space: nowrap;
}

header > div nav ul {
    list-style: none;
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
}

header > div nav li {
    margin: 0 14px;
}

header > div nav a {
    color: #fff;
    text-decoration: none;
}

header > div nav a:hover {
    color: #000;
}

header > div nav span {    
    border-left: 1px solid #fff;    
    margin: 0 10px 0px 10px;
}

header > div .mobile_menu,
header > div .mobile_lang {
    display: none;
}

header nav.mobile {
    display: none;;
}

@media only screen and (max-width: 1140px) {

    header > div .logos {     
        flex: 1 1 auto;  
        height: 7.4vw;
    }   
    
    header .logos img {
        height: 100%;
        width: auto;
    }

    header > div .logos img:last-of-type {
        height: 60%;
        width: auto;
    }

}

@media only screen and (max-width: 870px) {

    header {
        justify-content: center;
        align-items: center;
        height: 75px;
    }

    header > div nav {
        display: none;
    }

    header > div nav {
        display: none;
    }

    header > div .logos {
        flex: 1;
        align-items: center;
        justify-content: center;
        height: 95%;
    }   
    
    header > div .logos img {
        height: 100%;
        width: auto;
    }

    header > div .logos img:last-of-type {
        height: 60%;
        width: auto;
    }

    header > div .logos span {    
        height: 35%;
        margin: 0 15px 0px 5px;
    }

    header > div .mobile_menu,
    header > div .mobile_lang {
        display: block;
        color: #fff;
        text-decoration: none;
        font-family: TedNextDemiBold;
        font-size: 1.1em;
    }

    header > div .mobile_menu {
        margin-left: 16px;
        height: 20px;
    }

    header > div .mobile_lang {
        margin-right: 16px;
    }

    header nav.mobile {
        position: fixed;
        top: 75px;
        left: 0px;       
        flex-direction: column;
        background-color: rgba(34, 34, 34, 0.95);
        height: calc(100% - 75px);
        z-index: 1;   
        font-family: TedNextDemiBold;
        font-size: 1.125rem;  
        width: 240px;;
        display: flex;
        margin-left: -240px;
        transition: margin-left 350ms ease-in-out;
    }

    header nav.mobile.active {
       margin-left: 0px;
    }

    header nav.mobile > ul.pages {
        flex: 1 1 auto;
        height: 100%;
    }

    header nav.mobile > ul.pages,
    header nav.mobile > .other ul {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-top: 80px;
        margin-left: 30px;
        flex: 1 1 auto;
    }

    header nav.mobile > .other ul {
        margin-top: 0px;
        margin-bottom: 30px;
    }

    header nav.mobile ul.pages li {
        margin-bottom: 30px;
    }

    header nav.mobile a {
        color: #FFF;
        text-decoration: none;
    }

    header nav.mobile > .other {
        flex: 0;        
        height: auto;
    }

    header nav.mobile .other h3 {
        margin: 0;
        padding: 0;
        font-family: TedNextDemiBold;
        font-weight: normal;
        font-size: 1.125rem;  
        color: #FFF;
        margin-left: 30px;
        margin-bottom: 10px;
    }

    header nav.mobile > .other ul li {
        font-family: TedNextMedium;
        margin-bottom: 10px;
    }

    header nav.mobile .social {
        display: flex;
        list-style: none;
        margin-top: 48px;
        height: auto;
        height: 100%;
        color: #FFF;
        gap: 10px;
        margin: 0;
        padding: 0;
        margin: 30px 0 30px 30px;
        flex: 0;
    }

}

@media only screen and (max-width: 768px) {

    header {
        height: 60px;
    }

    header nav.mobile {
        top: 60px;
        height: calc(100% - 60px);
    }

}


/********************************* main */

main {
    margin: 0 auto;
    padding: 0;
}


/********************************* dialog */

section.dialog {
   position: relative;    
   overflow: hidden;
   width: 100vw;
   height: 100vh;
}

section.dialog .progress {
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(255,255,255,1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17pt;
}

section.dialog .progress span {    
    font-family: TedNextMedium;
    text-transform: uppercase;
    font-size: 17pt;
    margin-bottom: 120px;
}

section.dialog .progress:after {
    position:absolute;
    content: " ";
    top: 50%;
    left: 50%;    
    height: 40px;
    width: 40px;
    margin-left: -20px;    
    margin-top: -20px;    
    border-bottom: 0.2em solid var(--primary-color);
    border-left: 0.2em solid var(--primary-color);
    border-right: 0.2em solid #686868;
    border-top: 0.2em solid #686868;
    border-radius: 100%;
    animation: spin 1s infinite linear;
}	

@keyframes spin {
    0%  {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}   
}

section.dialog img.intro-background  {
    position: absolute;
    width: 1176px;
    height: 1176px;    
    right: -10vw; 
    top: -452px;
    clip-path: circle(50%);
    z-index: -1;
    object-fit: cover;
    object-position: right 200px;
}

section.dialog .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 32px;
    position: absolute;
    max-width: 600px;  
    width: 70%;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%,-50%);    
    background: #FFFFFF;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
    color: var(--gray-color);
    font-size: 1rem;
    text-align: center;
}

section.dialog .box h1 {
    font-family: 'TedNextSemiBold';
    font-size: 1.875;
    font-weight: normal;
}

section.dialog .box p { 
    line-height: 1.5rem;
}

section.dialog .box p a { 
    text-decoration: none;
    color: var(--gray-color);
}

section.dialog .box p .red { 
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'TedNextDemiBold';
}

section.dialog .box form { 
    margin: 0;
    padding: 0;
}

section.dialog .box label { 
    display: block;
    font-size: 0.875rem;
    text-align: left;
    color: var(--gray-color);
    opacity: .7;;    font-family: TedNextMedium;
    width: 100%;
    margin-bottom: 6px;;
}

section.dialog .box div.input {
    position: relative;    
    margin-bottom: 30px;
}

section.dialog .box input { 
    box-sizing: border-box;
    padding: 10px 14px;
    width: 100%;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    font-size: 1rem;
    color: var(--gray-color)
}

section.dialog .box form .message {
    background: #A3271E;
    font-family: 'TedNextDemiBold';
    color: #fff;
    position: absolute;
    width: 100%;
    padding: 3px 5px;
    font-size: .8rem;
    box-sizing: border-box;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    pointer-event: none;
    opacity: 0;
    transition: opacity 250ms;
}

section.dialog .box form div.input.error .message {
    opacity: 1;
}

section.dialog .box input::placeholder {
    color: #CAC9C8;
}

section.dialog .box button { 
    position: relative;
    padding: 9px 12px;
    width: 100%;
    height: 42px;
    background: var(--primary-color);
    border-radius: 3px;
    border: none;
    outline: none;
    font-family: 'TedNextSemiBold';
    font-size: 1rem;;
    color: #FFF;
    cursor: pointer;
}

section.dialog .box button.loading {
    color: #ffffff;
}

section.dialog .box button.loading:after {
    position:absolute;
    content: " ";
    top: 50%;
    left: 50%;    
    height: 20px;
    width: 20px;
    margin-left: -90px;    
    margin-top: -12px;    
    border-bottom: 0.15em solid #686868;
    border-left: 0.15em solid #686868;
    border-right: 0.15em solid #FFF;
    border-top: 0.15em solid #fff;
    border-radius: 100%;
    animation: spin 1s infinite linear;
}	

.grecaptcha-badge {
    top: calc(50% + 50vh - 70px);
    margin-right: calc(-15vw + 30px) !important;
}
  
@media only screen and (min-width: 870px) {  
    .grecaptcha-badge {
        top: calc(50% + 50vh - 70px);
        margin-right: calc((100vw - 660px) / -2) !important;
    }  
}


/********************************* hero */

section.hero {
    width: 100%;
    min-height: 340px;
    height: auto;
    color: #fff;
    background: #000;    
    box-sizing: border-box;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

@media only screen and (max-width: 870px) {
    
    section.hero {
        margin-top: 75px;
    }

}

@media only screen and (max-width: 768px) {

    section.hero {
        margin-top: 60px;
    }

}


section.hero > img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}

section.hero div.title {
    position: relative;
    margin: 0px auto 20px;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

section.hero h1,
section.hero h2 {
    font-family: 'TedNextSemiBold';
    font-weight: normal;
    font-size: 3.5rem;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.25);
    font-weight: normal;
}

section.hero div.title h2 span {
     white-space: nowrap;
}

section.hero h2 {
    margin-top: 24px;
    font-size: 1.75rem;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.25);
    max-width: 580px;;
}

section.hero  div.tag {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    
    gap: 10px;;
    height: 20px;    
    right: 5%;
    bottom: 20px;
    font-size: 1.125rem;
}

section.hero  div.tag img {
    height: 100%;
    margin-top: 3px;
}


@media only screen and (max-width: 768px) {

    section.hero {
        min-height: 50vh;
        height: auto;
    }

    section.hero h1 {
        font-size: 2.5rem;
        padding: 0 20px;
        font-weight: normal;
    }

    section.hero h2 {
        font-size: 1.25rem;
        box-sizing: border-box;
        padding: 0 40px;
        font-weight: normal;
    }

    section.hero  div.tag {
        position: relative;
        right: 0;
        font-size: 0.875rem;
        bottom: 20px;
    }

}



/********************************* article */

article {
    margin: 0 auto;
    width: 100%;
    padding: 50px 100px;
    line-height: 2em;
    max-width: 1440px;
    margin-bottom: 50px;
}

article h3 {
    color: var(--gray-color);
    font-size: 2.25rem;
    margin: 24px 0 30px;
    clear: both;
    padding-top: 50px;
    font-family: 'TedNextSemiBold';
    font-weight: normal;
}

article h3.center {
    text-align: center;
}

article h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 29px 0;
    clear: both;
    font-family: 'TedNextSemiBold';
}

article h5 {
    color: var(--gray-color);
    font-size: 1.5rem;
    font-size: 1.875rem;
    font-family: TedNextMedium;
    line-height: 2.8125rem;
    margin: 0 0 20px;
}

article h3:first-child {
    padding-top: 0;
}

article ul {   
    margin: 0; 
    list-style: disc;    
}

article p.nopad {
    margin:0;
}

article a {
    color: var(--primary-color);
}

article p strong {
    font-family: 'TedNextSemiBold';
}

article p.large {
    font-size: 1.25rem;
    font-family: 'TedNextRegular';
}

article .top-pad {
    margin-top: 80px;
}

article .bottom-pad {
    margin-bottom: 80px;
}

article p.center {
    display: flex;
    width: 100%;;
    text-align: center;
    justify-content: center;
    align-items: center;
}

article a.button {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    border-radius: 3px;
    width: fit-content;
    padding: 0 16px;
    height: 42px;
    line-height: 42px;
    float: left;
    margin-right: 20px;
}

article div.columns {
    position: relative;
    display: flex;
    width: 100%;
    gap: 60px;
}

article div.columns.center  {
    justify-content: center;
    align-items: center;
}

article div.columns > div {    
    flex: 1 1 auto;
}

article div.columns > div.three {   
    width: 33.3%;
}

article div.columns.half > div {  
    width: 50%;
}

article div.columns.half > div img {  
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

article div.columns > div h4 {
    margin-top: 0px;
}

article div.columns > div > ul {
    padding-left: 10px;
}  

@media only screen and (max-width: 1040px) {

    article {
        padding: 10px 30px;
    }

    article .only_desktop {
        display: none;
    }

    article div.columns.half > div {  
        width: 100%;
    }
    
    article .top-pad,
    article .bottom-pad{
        margin-top: 0px;
        margin-bottom: 0px;
    }

    article .mobile-top-pad {
        margin-top: 20px;
    }
    

    article div.columns.half > div img {  
        width: 100%;
        margin-top: 40px;
        height: 400px;
    }

    article h3 {
        text-align: center;
    }

    article div.columns {
        display: block;
    }

     article div.columns {
        display: block;
        width: 100%;
    }
   
    article div.columns div {
     width: 100%;
    }

    article div.columns.mobile_flip {
        display: flex;
        flex-direction: column-reverse;
    }

    article div.columns.mobile_flip > div img {  
        margin-top: -20px;
    }

    article div.columns > div h4 {
        margin-top: 40px;
    }

}

@media only screen and (max-width: 768px) {

    article h3 {
     text-align: center;
        font-size: 1.7rem;
        margin: 24px 0 20px;
    }

    article .leaderboard h3 {
        margin: 0px 0 20px;
    }

}


/********************************* leaderboard */

.leaderboard {
    width: 100%;    
}

.leaderboard .tabs {
    width: 100%;
    display: flex;
}

.leaderboard .tabs a {
    flex: 1;
    text-decoration: none;
    color: var(--gray-color);
    display: flex;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    padding: 14px 0;
}

.leaderboard .tabs a.disabled {
    pointer-events: none;
}

.leaderboard .tabs a img {
    pointer-events: none;
}

.leaderboard .tabs a img:not(.cl) {
    display: none;
}

.leaderboard .tabs a.selected {
    background-color: var(--primary-color);
    color: #fff;
}

.leaderboard .tabs a:hover {
    background-color: var(--primary-color);
    transition: background-color 250ms, color 250ms;
    color: #fff;
}

.leaderboard .tabs a.selected img.cl,
.leaderboard .tabs a:hover img.cl {
    display: none;
}

.leaderboard .tabs a.selected img:not(.cl),
.leaderboard .tabs a:hover img:not(.cl) {
    display: inherit;
}

.leaderboard table {
    width: 100%;    
    border: none;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    font-family: 'TedNextSemiBold';
    color: var(--gray-color);
    font-size: 1rem;
}

.leaderboard table thead {
    background-color: var(--primary-color);
    color: #fff;    
    width: 100%;    
    border: 1px solid var(--primary-color);
    text-align: center;
    font-size: 1.125rem;    
    line-height: 50px;
}

.leaderboard table tbody tr {
    border: 1px solid #CAC9C8;
    line-height: 1.3em;
    height: 68px;
}

.leaderboard table tbody tr:first-child {
    border-top: none;
}

.leaderboard table tr {
    padding: 0;
    margin: 0;
}

.leaderboard table tr th:nth-child(1) {
    width: 10%;    
    white-space: nowrap;
}

.leaderboard table tbody tr th:nth-child(1) {
    text-align: right;
    padding-right: 2%;
    box-sizing: border-box;
}

.leaderboard table tbody tr th:nth-child(1) span {  
    display: block;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-right: 23px;
}

.leaderboard table tr th:nth-child(2) {
    width: 10%;
    padding-right: 30px;
    padding-left: 30px;
    white-space: nowrap;
    box-sizing: border-box;
}

.leaderboard table tbody tr th:nth-child(2) span {  
    display: block;
    height: 100%;
    width: 90px;
    box-sizing: border-box;
    padding-left: 15px;
}

.leaderboard table tr th:nth-child(3) {
    width: 30%;
    width: 66%;
    text-align: left;
}

.leaderboard table tr th:nth-child(4) {
    width: 36%;
}

.leaderboard table tr.leader {
    background: #E5E5E5;
}

.leaderboard table tbody tr.leader th:nth-child(1) span {
    background: url(../img/icon_star.svg) no-repeat;
    background-position: 100% 30%;
}

.leaderboard table tbody tr.up th:nth-child(2) span {  
    background: url(../img/icon_up.svg) no-repeat;
    background-position: 5px 30%;
}

.leaderboard table tbody tr.down th:nth-child(2) span {  
    background: url(../img/icon_down.svg) no-repeat;
    background-position: 0 30%;
}

.leaderboard table tbody tr.nochange th:nth-child(2) span {  
    background: url(../img/icon_dash.svg) no-repeat;
    background-position: 0 30%;
}

@media only screen and (max-width: 1040px) {

    .leaderboard {
        width: calc(100% + 60px);
        margin-left: -30px;
    }

    .leaderboard .tabs {
        width: 100%;
        display: flex;
        background-color: var(--primary-color);
        color: #FFF;
        min-height: 50px;
    }
    
    .leaderboard .tabs a img {
        display: none !important;
    }

    .leaderboard .tabs a {
        color: #FFF;
        text-align: center;
        line-height: 1.2em;;
        box-sizing: border-box;
        padding: 2px 5px;
    }

    .leaderboard .tabs a.selected,
    .leaderboard .tabs a:hover {
       background-color: #A3271E;
    }
    
    .leaderboard table thead {
        display: none;
    }

    .leaderboard table tbody tr th:nth-child(1) {  
        width: 10%;
    }

    .leaderboard table tbody tr th:nth-child(1) span {
        position: relative;
        padding-right: 0px;
        height: 100%;
        width: auto !important;
        text-align: center;
    }

    .leaderboard table tbody tr.leader th:nth-child(1) span {
        background: none;
    }

    .leaderboard table tbody tr.up th:nth-child(1) span:after,
    .leaderboard table tbody tr.down th:nth-child(1) span:after,
    .leaderboard table tbody tr.nochange th:nth-child(1) span:after {
        position: absolute;
        top: -12px;
        left: 50%;
        margin-left: -6px;
        width: 20px;
        height: 20px;
        content: " ";
        background: url(../img/icon_up_mobile.svg) no-repeat;        
        background-size: 12px;
    }

    .leaderboard table tbody tr.down th:nth-child(1) span:after {
        background: url(../img/icon_down_mobile.svg) no-repeat;  
        background-size: 12px;
        top: auto;
        bottom: -24px;
    }

    .leaderboard table tbody tr.nochange th:nth-child(1) span:after {
        background: url(../img/icon_dash_mobile.svg) no-repeat;  
        background-size: 14px;
        top: auto;
        margin-left: -7px;
        bottom: -24px;
    }

    .leaderboard table tbody tr th:nth-child(2) {  
        display: none;;
    }

    .leaderboard table tbody tr th:nth-child(3) {  
        width: 60%;
        padding-left: 25px;
    }

    .leaderboard table tbody tr.leader th:nth-child(3) {
        background: url(../img/icon_star.svg) no-repeat;
        background-position: 0% 48%;
    }

    .leaderboard table tbody tr th:nth-child(4) {  
        width: 30%;
    }

}


/********************************* column tabs */

.columntabs .heading,
.columntabs .content {
    display: flex;    
    gap: 50px;
}

.columntabs .heading > div,
.columntabs .content .column {
    display: flex;    
    flex-direction: column;
    border: 1px solid #CAC9C8;
    border-top: none;
    box-sizing: border-box;
    font-size: .9rem;
    width: 50%;
}

.columntabs .heading div a {
    color: #fff;
    text-decoration: none;    
}

.columntabs .content .column div {
    border-bottom: 1px solid #CAC9C8;
    box-sizing: border-box;
    padding: 25px 20px;
}

.columntabs .heading div {
    border-bottom: none;
    background:  var(--primary-color);
    color: #fff;
    font-size: 1.8rem;
    padding: 15px 20px;
}

.columntabs .content .column div:last-child {
    border-bottom: none;
}

.columntabs .content .column div img {
    float:left;
    display: inline-block;
    margin-right: 10px;
    margin-top: -5px;
}

.columntabs .content .column div h6 {
    font-family: 'TedNextRegular';
    font-size: 1.25rem;
    color:  var(--primary-color);
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    display: block;    
}

.columntabs .content .column div .red {
    color:  var(--primary-color);
}

@media only screen and (max-width: 1040px) {

    .columntabs .content .column {
       width: 100%;
    }
    .columntabs .heading {
       border-top: 1px solid #CAC9C8;
       gap: 0;
    }

    .columntabs .heading div {
        background: #fff;
        font-family: 'TedNextDemiBold';
        text-align: center;
        font-size:1.4em;
    }

    .columntabs .heading div:first-child {
        border-right: none;
    }

    .columntabs .heading div:last-child {
        border-left: none;
    }

    .columntabs .heading div a {
        color:  var(--primary-color);
    }

    .columntabs .heading div:not(.active) {
        background: #E3E2DD;
    }
    .columntabs .heading div:not(.active) a {
        color: #22222280;
    }

    .columntabs .content .column:not(.active) {
        display: none;
    }   

    .columntabs .content .column div img {
        display: none;
    }

}



/********************************* footer */

footer {
    background-color: var(--primary-color);
    height: 200px;
    width: 100%;
    margin: 0;
    padding: 0;    
}

footer > div {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 10%;
}

footer .logos {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 1.5rem;
    margin-top: -40px;
    font-family: 'TedNextRegular';
    flex: 1 1 auto;
}

footer .logos img {
    margin-right: 20px;
    max-width: 172px;
}

footer h3 {
    display: block;
    font-family: TedNextDemiBold;
    font-size: 1.125rem;
    color: #fff;
    margin: 0 0 10px;
}


footer nav {
    flex: 2 1 auto;
    margin-top: 48px;
}

footer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-direction: column;    
    color: #fff;
}

footer nav ul a {
    color: #fff;
    text-decoration: none;
}

footer nav ul a {
    color: #fff;
}

footer nav ul a:hover {
    color: #000;
}

footer .social {
    display: flex;
    margin-top: 48px;
    height: 100%;
    color: #FFF;
    flex-direction: column;
}

footer .social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}


@media only screen and (max-width: 1040px) {

    footer {
        height: auto;
        padding: 50px 0 50px;
    }
    
    footer > div {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    footer .logos {
        font-size: 1.3rem;
        margin-left: 10px;
    }

    footer .logos img {
        margin-right: 0px;
    }

    footer nav {
        margin-top: 15px;
        margin-left: 25px;
    }

    footer .social {
        margin-top: 40px;
        margin-left: 25px;
    }   
    

}
