@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
/* /400: regular; 500: medium; 700: bold/ */

/* GLOBAL */
:root {
    font-size: 16px;
    font-family: "Roboto", sans-serif;

    --welcome-blue: #489ff1;
    --body-gray: rgba(247, 248, 249, 1);

    --primary: #0066ab;
    --secondary: #001e33;
    --text-primary: #333333;
    --text-secondary: #000;
    --text-iprimary: #ccc;
    --text-isecondary: #fff;

    --cap-width: 1300px;
    --cap-width-mobile: 400px;

    --regular: 400;
    --medium: 500;
    --bold: 700;
}
*:focus {
    outline: none;
}
body {
    max-width: 1500px;
    background-color: var(--body-gray);
    margin: auto;
}
@media (min-width: 1500px) {
    body {
        border-left: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
    }
}

/* body::-webkit-scrollbar {
    width: 0.45rem;
}
body::-webkit-scrollbar-track {
    background: lightgray;
}
body::-webkit-scrollbar-thumb {
    background: var(--primary);
}
body::-webkit-scrollbar-thumb:hover {
    background: #1b8bd6;
} */
h1,
h2,
h3,
p,
a,
small {
    color: var(--text-primary);
}
h1 {
    font-size: 2.45rem;
    line-height: 3.438rem;
    font-weight: 700;
    color: var(--text-isecondary);
    margin-top: 1rem;
}
@media (min-width: 1300px) {
    h1 {
        font-size: 2.85rem;
        line-height: 3.8rem;
    }
}
h2 {
    font-size: 1.65rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
}
h3 {
    /* text-align: center; */
    font-size: 1.25rem;
    font-weight: 700;
}
h4 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.375rem;
    color: var(--text-primary);
}
p {
    line-height: 1.375rem;
}
small {
    color: gray;
}
label {
    color: var(--text-isecondary);
    margin-left: 10px;
}
input {
    height: 45px;
    padding: 0 0.5rem;
    border-radius: 10px;
    margin-bottom: 0.4rem;
    width: 100%;
}
input[type="button"],
input[type="submit"] {
    width: 125px;
    height: 45px;
    margin: auto;
    border-radius: 150px;
    background-color: var(--secondary);
    color: var(--text-isecondary);
    font-weight: 700;
    cursor: pointer;
}
input[type="button"],
input[type="submit"]:hover {
    background-color: #001828;
}
textarea {
    padding: 0 0.5rem;
    border-radius: 10px;
    margin-bottom: 0.4rem;
}
a:hover {
    text-decoration: none;
    color: var(--primary);
}
button {
    width: 225px;
    height: 45px;
    margin: auto;
    border-radius: 150px;
    background-color: var(--welcome-blue);
    color: var(--text-isecondary);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    background-color:#0E5AA7;
    border-radius: 5px;
    font-weight:bold;
}

button.load_more {
    width: 100%  ;
    background-color: white;
    color: var(--welcome-blue);
}

button.load_more:hover {
    color: var(--primary);
}

hr {
    width: 80%;
    margin: auto;
    padding-bottom: 4rem;
}
section {
    padding: 4.5rem 0;
    background: white;
}

/* CONTACT FORM */
section.contact {
    background-color: var(--primary);
    padding: 3.3rem 1.5rem;
}
section.contact h2 {
    margin-bottom: 0.5rem;
}
.contact form {
    display: grid;
    max-width: 500px;
    margin: 2rem auto;
}

/* COMMONS  */
.border-y {
    border: 1px lightgray;
    border-style: none solid;
}
.pancakes-stacks {
    max-width: var(--cap-width);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.pancakes {
    flex: 1 1 200px;
    text-align: left;
    margin: 0.1rem;
    display: inline-grid;
    place-content: baseline;
    justify-content: center;
}
.flex {
    display: flex;
    align-items: center;
}
.bold {
    font-weight: 700;
}
.white {
    color: var(--text-isecondary);
}
.cap-width {
    max-width: var(--cap-width);
    margin: auto;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.show-on-mobile-only {
    display: none !important;
}
@media (max-width: 660px) {
    .hide-on-mobile {
        display: none !important;
    }
    .show-on-mobile-only {
        display: grid !important;
    }
}
.hidden {
    display: none !important;
}
.clickable {
    cursor: pointer;
}

.unclickable {
    cursor: default !important;
}
.passepartout {
    background-color: white;
}
/* .masonry-1 {
    column-count: 3;
    column-gap: 3rem;
    margin: auto;
    width: 90%;
    max-width: var(--cap-width);;
} 
*/
.margin-auto {
    margin: auto;
}
.max-width-600 {
    max-width: 600px;
    margin: auto;
}

.grey-box {
    display: grid;
    padding: 1rem;
    margin: 1rem 0;
    background-color: rgb(241, 244, 246);
    border-radius: 10px;
}
.white-box {
    min-height: 70vh;
    padding: 1rem;
    margin: 1rem 0.5rem;
    background-color: white;
    border-radius: 10px;
}
.checkbox-text {
    display: flex;
    margin-right: 1rem;
    color: var(--welcome-blue);
}
.row1-col5 {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto;
    grid-gap: 0.5rem;
    align-items: center;
    padding: 0 1rem;
}
.row1-col4 {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    grid-gap: 0.5rem;
    align-items: center;
    padding: 0 1rem;
}
.row1-col2 {
    display: grid;
    grid-template: 1fr / 1fr auto;
    padding: 0 0.5rem;
}

.row2-col3 {
    display: grid;
    grid-template: auto auto / 1fr auto auto;
    align-items: center;
}
.row2 {
    display: grid;
    grid-template-rows: 1fr 1fr;
    margin: 1rem 0;
}

/* TOGGLE BUTTON */
.tgl {
    display: none;
}
.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl + .tgl-btn {
    box-sizing: border-box;
}
.tgl::-moz-selection,
.tgl:after::-moz-selection,
.tgl:before::-moz-selection,
.tgl *::-moz-selection,
.tgl *:after::-moz-selection,
.tgl *:before::-moz-selection,
.tgl + .tgl-btn::-moz-selection {
    background: none;
}
.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl *::selection,
.tgl *:after::selection,
.tgl *:before::selection,
.tgl + .tgl-btn::selection {
    background: none;
}
.tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tgl + .tgl-btn:after,
.tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}
.tgl + .tgl-btn:after {
    left: 0;
}
.tgl + .tgl-btn:before {
    display: none;
}
.tgl:checked + .tgl-btn:after {
    left: 50%;
}

.tgl-light + .tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.tgl-light:checked + .tgl-btn {
    /* background: #9FD6AE; */
    background: rgb(76, 217, 100);
}
.top-logo {
    margin-top: clamp(1rem, 10%, 15rem);
    display: grid;
    justify-items: center;
}
.logo-undertitle {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: auto 1fr;
    font-style: italic;
}
/* prompt */
.prompt {
    position: absolute;
    /* display: grid; */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.prompt .prompt-content {
    background-color: white;
    z-index: 3;
    position: absolute;
    width: 300px;
    margin: auto;
    left: 0;
    top: 35%;
    right: 0;
    border-radius: 10px;
}
.prompt .shadow-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.prompt p {
    text-align: center;
    padding: 0 1rem;
}
.prompt a {
    font-weight: bold;
}
.prompt a.blue {
    color: rgb(72, 159, 241);
}
.prompt a.gray {
    color: gray;
}
.prompt h3 {
    text-align: center;
    padding: 0 1rem;
    padding-top: 1rem;
}
.prompt hr {
    width: 100%;
    padding-bottom: 0;
    margin: 0;
    border-top: 1px solid lightgray;
}
.prompt .action-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}
.prompt .action-btn {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
}
.prompt .border-right {
    border-right: 1px solid lightgray;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
}
.prompt .border-none {
    border: none;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
}

.prompt .right-btn {
    padding: 0.8rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
/* end prompt */
