/*
Theme Name: ASPTT Club 2022
Theme URI: http://www.asptt.com
Description: Thème Club 2022
Author: WEB Stratégies
Author URI: http://www.webstrategies.fr
Version: 1.0    
*/

/* ------ */


@font-face {
    font-family: 'Gotham';
    src: url('./assets/fonts/Gotham-Bold.eot');
    src: url('./assets/fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('./assets/fonts/Gotham-Bold.woff2') format('woff2'),
        url('./assets/fonts/Gotham-Bold.woff') format('woff'),
        url('./assets/fonts/Gotham-Bold.ttf') format('truetype'),
        url('./assets/fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('./assets/fonts/Gotham-Light.eot');
    src: url('./assets/fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
        url('./assets/fonts/Gotham-Light.woff2') format('woff2'),
        url('./assets/fonts/Gotham-Light.woff') format('woff'),
        url('./assets/fonts/Gotham-Light.ttf') format('truetype'),
        url('./assets/fonts/Gotham-Light.svg#Gotham-Light') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ------ */


::selection { 
    background: var(--e-global-color-primary); 
    color:white;
}

/* ------ */

*{
    box-sizing: border-box;
}

/*  -------- */

body{
    margin:0;
    padding:0;
    font-family: 'Gotham', sans-serif;   
    font-weight:normal;
    font-size: 15px;
    background:white;
    overflow-x: hidden;
    color:#231f20;
}    

img{
    vertical-align:top;
}
img:not([width]){
    max-width:100%;
    width:auto;
}
img:not([height]){
    height:auto;
    max-height:auto;
}
input{    
    font-family:'Gotham','Arial',sans-serif;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    border-radius: 0;
}
p {
    margin:0;
}

a {
    color: var(--e-global-color-primary);
    font-weight: bold;
}

/* --- */

.grecaptcha-badge{
    display:none !important;
}

/* --------- */

.asptt-site-content{
    max-width:var(--asptt-content-width);
    margin-left:auto;
    margin-right:auto;
    width: 100%;  
}

.asptt-button{
    text-decoration: none;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #eeeeee;
    color: #231f20;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
    display:inline-block;
    line-height: 1;
}

.asptt-button--big{
    font-size: 14px;
    padding: 14px 30px;
}

.asptt-button--alt{
    background-color: var(--e-global-color-primary);
    color: #FFF;
}

.asptt-button--black{
    background-color: #1d1d1d;
    color: #ffffff;
}

.asptt-button:hover{
    opacity: .75;
}

.asptt-offset-shadow {
    -webkit-box-shadow: 6px 6px 0px 0px var(--e-global-color-primary); 
    box-shadow: 6px 6px 0px 0px var(--e-global-color-primary); 
    position: relative;
    top: -3px;
}

.asptt-offset-shadow > *{
    position: relative;
}

.asptt-offset-shadow--grey {
    -webkit-box-shadow: 6px 6px 0px 0px #e3e3e3; 
    box-shadow: 6px 6px 0px 0px #e3e3e3;
}

.asptt-full-width {
    margin-left: calc(-100vw / 2 + var(--asptt-content-width) / 2);
    margin-right: calc(-100vw / 2 + var(--asptt-content-width) / 2);
}

.asptt-full-width > *{
    max-width: var(--asptt-content-width);
    margin: 0 auto;
}


/* --- -*/

#asptt-content{
    padding-top:50px;
    padding-bottom:50px;
}

@media screen and (max-width: 1224px) {
    .asptt-full-width {
        margin-left: calc(-1 * var(--asptt-margin-inner));
        margin-right: calc(-1 * var(--asptt-margin-inner));
    }
}

@media screen and (max-width: 1224px) {   
    .asptt-site-content{
        padding-left: var(--asptt-margin-inner);
        padding-right: var(--asptt-margin-inner);        
        max-width: 100%;
        min-width: 0;        
    }
}

@media screen and (max-width: 768px) {
    #asptt-content {
        padding-top: 20px;
    }

    .asptt-offset-shadow {
        -webkit-box-shadow: 4px 4px 0px 0px var(--e-global-color-primary); 
        box-shadow: 4px 4px 0px 0px var(--e-global-color-primary);
        top: 2px;
    }
}

