/*
 Theme Name:   All on Scale
 Theme URI:    https://clarq.nl
 Template:     generatepress
 Version:      0.1
*/

:root {
    --grey: #0A0A0A;
    --light-grey: #272727;
    --blue: #121482;
    --red: #ED1C24;
    --white: #FFFFFF;

    --dark-blue: #060741;
    --medium-blue: #CDDAFF;
    --light-blue: #F7F8FF;
    --red-dark: #C04C51;
    --grey-blue: #F1F3FB;
    --gold: #CDAC8E;
	
}


/* Fonts */
@font-face {
    font-family: Inter;
    src: url('fonts/Inter.ttf');
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    line-height: 140%;
}


/* General Styles */
section {
    max-width: 2600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.boxed {
    max-width: 1520px;
    margin: 0 auto;
    padding: 80px 40px;
}

h1 {
    font-size: 60px;
    line-height: normal;
}

h2 {
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -3px;
}

p, a, li {
}

.image img {
    border-radius: 20px;
}

span > strong {
    color: #ff4401 !important;
}

/* Colors */
body * {
    color: var(--blue);
}

.bg-dark-blue * {
    color: var(--white);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.bg-grey-blue {
    background-color: var(--grey-blue);
}


/* Buttons */
.btn-group {
    display: flex;
    gap: 12px;
}

.btn-group.position-right {
    justify-content: flex-end;
}

.btn {
    display: flex;
    align-items: center;
    padding: 16px 26px;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    max-width: fit-content;
    height: fit-content;
}

.has-background-image .btn-primary, .has-background-video .btn-primary, .bg-dark-blue .btn-primary {
    background-color: var(--white);
    color: var(--grey);
}

.has-background-image .btn-secondary, .has-background-video .btn-secondary, .bg-dark-blue .btn-secondary {
    color: var(--white);
    border: 1px solid var(--white);
    background-color: transparent;
}


.bg-light-blue .btn-primary {
    background-color: var(--red);
    color: var(--white);
}

.bg-light-blue .btn-secondary {
    color: var(--blue);
    border: 1px solid var(--blue);
    background-color: transparent;
}

/* Header */
.site-header .header-image {
    max-width: 65vw;
}


/* Content */
.content ul {
    list-style: none;
}

.content ul li {
    position: relative;
    margin-bottom: 30px;
}

.bg-dark-blue .content ul li strong {
    color: var(--white);
}

.bg-dark-blue .content ul li {
    color: var(--medium-blue);
}

.content ul li::before {
    position: absolute;
    left: -53px;
    top: -1px;
    content: '';
    display: block;
    background-image: url("images/general/list-style-general.png");
    background-repeat: no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
}

.content.list-lightning-bolt ul {
    list-style: none;
    max-width: 450px;
}

.content.list-lightning-bolt ul li {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 37.5px;
    letter-spacing: 0.5px;
}

.content.list-lightning-bolt ul li::before {
    position: absolute;
    left: -53px;
    top: -1px;
    content: '';
    display: block;
    background-image: url("images/general/anchor.png");
    background-repeat: no-repeat;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
}


/* Responsive */
@media (max-width: 550px) {
    h1 {
        font-size: 40px;
        line-height: normal;
    }

    h2 {
        font-size: 40px !important;
        line-height: 42px !important;
        letter-spacing: -2px !important;
    }
    .boxed {
        padding: 40px 20px !important;
    }
    .btn {
        padding: 9px 18px;
        font-size: 14px !important;
    }
    p, a, li {
        font-size: 18px !important;
        line-height: normal !important;
    }
}