/** FLEX **/
.flex{
    display:flex;
}
.flex.centered{
    justify-content:center;
    align-items: center;
}
.flex.end{
    justify-content: flex-end;
}
.flex.columns{
    flex-direction: column;
}
.flex.rows{
    flex-direction: row;
}
.flex.align-left{
    align-items: baseline;
}
.flex.right{
    justify-content: flex-end;
}
.flex.left{
    justify-content: flex-start;
}
.flex.top{
    align-items: flex-start;
}
.flex.spread{
    justify-content: space-between;
}
.flex.spaced{
    justify-content: space-evenly;
}
.flex.wrap{
    flex-wrap: wrap;
}
.flex.column-2{
    flex-wrap: wrap;
    gap: 16px 16px;
}
.flex.column-2 > * {
    width: calc(50% - 16px);
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.relative {
    position: relative;
}

/** TEXT **/
h0{
    font-weight: 700;
    font-size: 45px;
    line-height: 51px;
    text-align: center;
    letter-spacing: 32px;
}
h1{
    font-size: 42px;
    line-height: 57px;
    letter-spacing: 0.29px;
}
h1.statement, h2.statement{
    font-size: 40px;
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: 28px;
}
h2{
    font-weight: 700;
    font-size: 33px;
    line-height: 33px;
    letter-spacing: 2.21px;
}
h3{
    font-size: 23px;
    line-height: 30px;
    letter-spacing: 2.21px;
}
h4{
    font-size: 30px;
    line-height: 38px;
}
h5{
    font-size: 16px;
    line-height: 20px;
}
p{
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 2.21px;
}
label{
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.205714px;
}
.text-xl{
    font-size: 40px;
    line-height: 60px;
}
.text-l{
    font-size: 25px;
    line-height: 34px;
}
.text-m{
    font-size: 18px;
    line-height: 25px;
}
.text-s{
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.21px;
}
.text-xs{
    font-size: 12px;
    line-height: 20px;
}

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


.p0{
    padding: 8px;
}
.p1{
    padding: 16px;
}

.p2{
    padding:24px;
}

.pb-0{
    padding-bottom: 8px;
}

.pl-0{
    padding-left: 8px;
}
.pt-0{
    padding-bottom: 8px;
}

.pr-0{
    padding-left: 8px;
}
.pb-1{
    padding-bottom: 16px;
}

.pl-1{
    padding-left: 16px;
}
.pt-1{
    padding-top: 16px;
}

.pr-1{
    padding-right: 16px;
}
.pb-2{
    padding-bottom: 24px;
}

.pl-2{
    padding-left: 24px;
}
.pt-2{
    padding-top: 24px;
}

.pr-2{
    padding-right: 24px;
}

.m-0{
    margin: 8px;
}
.m1{
    margin: 16px;
}

.m2{
    margin:24px;
}

.mb-0{
    margin-bottom: 8px;
}

.ml-0{
    margin-left: 8px;
}
.mt-0{
    margin-bottom: 8px;
}

.mr-0{
    margin-left: 8px;
}
.mb-1{
    margin-bottom: 16px;
}

.ml-1{
    margin-left: 16px;
}
.mt-1{
    margin-top: 16px;
}

.mr-1{
    margin-right: 16px;
}
.mb-2{
    margin-bottom: 24px;
}

.ml-2{
    margin-left: 24px;
}
.mt-2{
    margin-top: 24px;
}

.mr-2{
    margin-right: 24px;
}

.mb-3{
    margin-bottom: 48px;
}
.ml-3{
    margin-left: 48px;
}
.mt-3{
    margin-top: 48px;
}
.mr-3{
    margin-right: 48px;
}

.pb-3{
    padding-bottom: 48px;
}
.pl-3{
    padding-left: 48px;
}
.pt-3{
    padding-top: 48px;
}
.pr-3{
    padding-right: 48px;
}

.mt-100{
    margin-top: 100px;
}
.pt-100{
    padding-top: 100px;
}
.mb-100{
    margin-bottom: 100px;
}
.pb-100{
    padding-bottom: 100px;
}

.mt-50{
    margin-top: 50px;
}
.pt-50{
    padding-top: 50px;
}
.mb-50{
    margin-bottom: 50px;
}
.pb-50{
    padding-bottom: 50px;
}

/** BORDERS **/
.border-radius{
    border-radius: 4px;
}
.border-radius-15{
    border-radius: 15px;
}

.border-sketchlines-top-right{
    position: relative;
    background-image: url('/assets/img/lines/sketch-lines-tr.svg');
    background-repeat: no-repeat;
    background-size: 300px auto;
    background-position: top right;
}

.border-sketchlines-bottom-left{
    position: relative;
    background-image: url('/assets/img/lines/sketch-lines-bl.svg');
    background-repeat: no-repeat;
    background-size: 300px auto;
    background-position: bottom left;
}

/** BUTTONS **/
a.btn, button, input[type="submit"], .wp-element-button{
    text-transform: uppercase;
    /* background-color: var(--bg-color); */
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.205714px;
    border: 1px solid var(--border-color);
    /* color: var(--primary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 50px;
    transition:150ms;
    border-radius: 0;
    cursor: pointer;
    height: 52px;
}
input[type="email"], input[type="text"]{
    height:45px;
    width: 300px;
    border-radius:5px;
    border:1px solid #ccc;
    text-indent:15px;
}
.btn:hover, button:hover, .wp-element-button:hover{
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
}

.btn.paged{
     border:none;
     height: 75px;
     width: 75px;
     padding: 0;
     font-size: 18px;
     color: var(--secondary-color);
}

.btn.active.paged{
    border: 1px solid var(--border-color);
    color: var(--primary-color);
}

.btn:hover{
    opacity:0.9;
}
.wp-element-button:hover{
    opacity:0.9;
}

.btn.large-text{
    font-size: 25px;
    font-weight: 700;
}

.btn.btn-inv{
    background-color: var(--primary-color);
}

.btn.btn-inv *{
    color:var(--bg-color);
}

.is-style-outline .wp-element-button{
    background-color: var(--font-color) !important;
    color:var(--bg-color) !important;
}

.btn.btn-cta{
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: 1px solid var(--primary-color);
}

.btn-cta:hover{
    background-color: var(--bg-color);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}


/** SIZES **/
.col{
    width: 1272px;
    max-width: 100%;
    margin: 0 auto;
}
.col-large{
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
}
.width-full{
    width: 100%;
}
.width-400{
    width:400px;
    max-width: 100%;
}

.width-200{
    width: 200px;
}

.width-30-per{
    width:30%;
}
.width-50-per{
    width: 50%;
}
.width-75-per{
    width: 75%;
}

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

.height-full{
    height:100%;
}
.height-100vh{
    height:100vh;
}
.height-150{
    height: 150px;
}

.height-200{
    height: 200px;
}

.overlay-link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
    display: block;
    z-index: 2 !important;
}

.z-index1{
    z-index: 1;
}

.z-index2{
    z-index: 2;
}

.border-top{
    border-top: 1px solid var(--border-color);
}

.border-left{
    border-left: 1px solid var(--border-color)
}

.border-right{
    border-right: 1px solid var(--border-color)
}

.border-bottom{
    border-bottom: 1px solid var(--border-color);
}

.border-all{
    border: 1px solid var(--border-color);
}
.underlined{
    text-decoration: underline;
}

.fl{
    float: left;
}

.fr{
    float: right;
}

.inline-block{
    display: inline-block;
}
.bold{
    font-weight: bold;
}
strong {
    font-weight: bold;
}
em, i {
    font-style: italic;
}
.underline{
    text-decoration: underline;
}
.letter-spacing-20{
    letter-spacing: 20px;
}
.text-align-right {
    text-align: right;
}
.text-align-left {
    text-align: left;
}
.text-align-center {
    text-align: center;
}

ul li{
    list-style: none;
}

ul{
    padding-left: 0;;
}

.text-right{
    text-align: right;
}