﻿
:root {
    --white: #FFFFFF;
    --avantade_col0: #283240; /*blue*/
    --avantade_col1: #BBCAF6; /*violet*/
    --avantade_col2: #2AAA36; /*green*/
    --avantade_col3: #D9FDA7; /*yellow*/
    --avantade_col4: #A6BABD; /*grey*/
    --blackLight:#413D3F;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}


html {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    font-size: 10px;
    font-weight: 400;
}


body {
    font-size: 1.2rem;
    background-color: var(--white);
    color: var(--avantade_col0);
}

ul {
    list-style: none;
}

li {
    font-size: 18px;
    font-weight: 400;
}

h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 1440px) {
    h1 {
        font-size: 56px;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
}

h2 {
    font-size: 38px;
    margin-bottom: 2rem;
}

.h2-semiB {
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
}




p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.p-semiB {
    font-weight: 600;
}

.small {
    font-size: 16px;
    font-weight: 600;
}
.small2 {
    font-size: 12px;
}


a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--avantade_col2);
}

a:hover {
    text-decoration: underline;
}

.padding-custom {
    padding-top: 16rem;
}

.paddingbottom3 {
    padding-bottom: 3rem;
    margin: 0;
}

.paddingtop6 {
    padding-top: 6rem;
}

.specialmargin {
    margin-top: 7.4rem;
}

input, button, textarea, select {
    outline: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    font: inherit;
}

video {
    clip-path: inset(1px 1px);
}

button {
    cursor: pointer;
}

    button:focus {
        outline: 0;
    }

.a-button {
    display: flex;
    justify-content: center;
    background: var(--avantade_col2);
    color: white;
    padding: 1.2rem 4rem;
    text-align: center;
    width: fit-content;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.94px;
    border-radius: 8px;
    border: 1px solid var(--avantade_col2);
}

    .a-button:hover {
        background: white;
        color: var(--avantade_col2);
        border: 1px solid var(--avantade_col2);
    }

.cursorhand {

    cursor: pointer;

}

.avantade_button {
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
    background-color: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    cursor: pointer;
    color: #666666;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffffff;
}

    .avantade_button:hover {
        background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
        background-color: #e9e9e9;
    }

    .avantade_button:active {
        position: relative;
        top: 1px;
    }        

.avantade_listmenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .avantade_listmenu li {
        float: left;
    }

        .avantade_listmenu li a {
            text-align: center;
            padding-left: 4px;
            padding-right: 4px;
            text-decoration: none;
        }

            .avantade_listmenu li a:hover {
                color: var(--avantade_col2);
                background-color: var(--avantade_col3);
            }

            .avantade_listmenu li a.active {
                float: right;
            }

.avantade_3d {
    clear: left;
    margin-bottom: 3rem;
}



.softbg {
    background: var(--avantade_col1);
}

.darkbg {
    background: var(--avantade_col0);
    color: white;
}

.mediumbg {
    background-color: #F6F6F6;
}

.container {
    width: 100%;
    max-width: 192rem;
    margin: 0 auto;
}

.inner-container {
    padding: 0 16rem;
    transition:all 0.4s ease;
}

@media only screen and (max-width: 1280px) {
    .inner-container {
        padding: 0 10rem;
    }
}

@media only screen and (max-width: 1080px) {
    .inner-container {
        padding: 0 6rem;
    }
}

@media only screen and (max-width: 768px) {
    .inner-container {
        padding: 0 2.5rem;
    }
}

.a-row {
    width:100%;
    display: flex;
    gap: 6rem;
    padding: 12rem 0rem;
}

@media only screen and (max-width: 1080px) {
    .a-row {
        flex-direction: column;
        gap: 3rem;
    }
}
@media only screen and (max-width: 768px) {
    .a-row {
        padding: 6rem 0rem;
    }
}


.a-column {
    flex: 1;
}

/*TABLE*/


.table-container {
    margin: 6.7rem auto;
    width: 100%;
    max-width: 133rem;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

    .table-container h3 {
        font-size: 4rem;
        font-weight: 600;
    }

.table-container__table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.table__header {
    background: rgba(166, 186, 189, 0.2);
    display: grid;
    gap: 30px;
    padding: 1rem 0px;

    @media (max-width: 1024px) {
        display:none;
    }
}

.table__header-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
}

    .table__header-title:first-of-type {
        text-align: center;
    }

.table__item {
    display: grid;
    gap: 30px;
    align-items: center;
    min-height: 70px;
    border-bottom: solid 1px #A6BABD;
    padding: 13px 0;

    @media (max-width: 1024px) {
        height: initial;
        align-items: initial;
        padding: 22px 0;
        gap: 5px;
    }
}

    .table__item p {
        margin: 0;
    }

.table__item-imgContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}



.table__item-name {
    @media (max-width: 1024px) {
        grid-area: name;
    }
}



.table__item-link {
    font-weight: 600;
    font-size: 20px;
    color: #2AAA36;
}

    .table__item-link:hover {
        text-decoration: underline;
    }