@charset "UTF-8";

:root {
    --primary: rgba(35, 100, 160, 1);
    --secondary: rgba(33, 169, 168, 1);
    --light: rgba(255, 255, 255, 1);
    --light-bg: rgba(236, 242, 250, 1);
    --table-bg: rgba(235, 250, 243, 1);
    --dark: rgb(58, 58, 58);
    --danger: rgba(198, 46, 40, 1);
    --nav-hover: rgba(239, 111, 49, 1);
    --border-color: rgba(192, 192, 190, 1);
    --background: rgba(232,241,241,0.33);
    --button-width: 6rem;
    --font-size: 1.5em;
    --rounding-l: 0.5rem;
    --rounding-s: 0.25rem;
    --gutter-x: 1.5rem;
    --gutter-y: 0;
    --gap: 2em;
}

html,
body {
    font-family: Arial, Helvetica, sans-serif;
    -webkit-text-size-adjust: 100%;
    background-color: var(--background);
    margin: 0;
    padding: 0.5rem;
    width: 100% !important;
    height: 100% !important;
}

header,
main,
footer {
    width: 100%;
    max-width: 1200px;
    place-self: center !important;
}

*,
::after,
::before {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-optical-sizing: auto;
    margin: 2em 0.75em;
}

a,
p,
li {
    font-size: calc(var(--font-size) * 0.8);
    font-weight: 400;
    margin: 0.75em;
    padding-bottom: 1.5em;
}

p>a {
    color: var(--primary);
    font-style: italic;
    font-size: inherit;
    text-decoration: none;
    margin: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 2em;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 3em;
    width: 100%;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline-block;
    font-size: calc(var(--font-size)* 0.7);
    /* font-weight: 600; */
    position: relative;
    padding: 0 0.4em;
}

.menu li a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.menu li:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: -0.3em;
    left: 0;
    background-color: var(--nav-hover);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.menu li:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mobile {
    display: none;
    /* Hidden by default */
    cursor: pointer;
    border: 1px solid var(--primary);
    border-radius: 5px;
}

.mobile .line {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px;
}

footer {
    display: grid;
    grid-template-columns: auto;
}

footer>p {
    justify-self: center;
    padding: 0;
}

.container {
    display: block;
    width: 100%;
    padding: 0 calc(var(--gutter-x) * 0.5);
    margin: 1.2em 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc(-1 * var(--gutter-y)) calc(-0.5 * var(--gutter-x));
    padding: 1em 0;
}

.col {
    flex: 1 0 0%;
}

.col25 {
    flex: 0 0 25%;
}

.col50 {
    flex: 0 0 50%;
}

.col75 {
    flex: 0 0 75%;
}

.cards {
    display: grid;
    grid-auto-flow: column;
    align-items: baseline;
    justify-self: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.grid-2-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.grid-2-3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.card {
    display: flex;
	position: relative;
	background-color: var(--light);
    flex-direction: column;
    max-width: 360px;
    margin-bottom: var(--gap);
}

.card>p{
    height: 5em;
}

.shadow {
    border: 1px solid rgba(58, 58, 58, 0.1);
    border-radius: var(--rounding-l);
    box-shadow: 3px 3px 6px -4px var(--dark);
}

.card-height-35 {
    height: 35em;
}

.card-height-25 {
    height: 27em;
}

.btn {
    display: inline-block;
    font-weight: 600;
    color: var(--light);
    background-color: var(--primary);
    border-radius: var(--rounding-s);
    padding: 0.375rem 0.75rem;
    transition: color 0.15s, background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn:hover {
    text-shadow: 2px 1px var(--dark);
    box-shadow: 0 4px 8px rgba(0, 75, 10, 0.2);
}

#stickyButton {
    --size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: var(--primary);
    border-radius: var(--rounding-s);
    right: var(--size);
    bottom: var(--size);
    width: calc(var(--size) * 2);
    height: calc(var(--size) * 2);
    z-index: 5;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    display: flex;
    padding: 0.25rem;
    border-radius: var(--rounding-l);
    max-width: 250px;
    height: auto;
    place-self: center;
	padding-bottom: 3em;
}

.img-logo {
    background-color: unset;
    width: 10em;
    height: auto;
}

.icon {
    margin: 1em;
    height: 3em;
    width: auto;
}

.icon>img {
    position: absolute;
    height: 3em;
}

.up-r {
    top: 0;
    right: 0;
}

.up-l {
    top: 0;
    left: 1em;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-round {
    border-radius: var(--rounding-l);
}

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

.bg-grid {
    background-image: linear-gradient(rgba(107, 107, 107, 0.3) .05em, transparent .025em),
        linear-gradient(90deg, rgba(107, 107, 107, 0.3) .05em, transparent .025em);
    background-size: 10px 10px;
}

.bg-circle {
    background: var(--primary);
    background: radial-gradient(circle, var(--primary) 0%, rgba(255, 255, 255, 0.8) 50%);
    background: -moz-radial-gradient(circle, var(--primary) 0%, rgba(255, 255, 255, 0.8) 50%);
    background: -webkit-radial-gradient(circle, var(--primary) 0%, var(--background) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#039735", endColorstr="#ffffff", GradientType=1);
}

.error {
    color: var(--danger);
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    color: var(--dark);
    display: flex;
    flex-wrap: wrap;
    padding: 0 1em 0 0.3em;
}

.form>* {
    /* font-family: "Noto Sans", serif; */
    font-size: calc(var(--font-size) * 0.7);
    font-weight: 400;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.3em 1em;
    margin: 0.3em 0;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: 0.35s;
    box-sizing: border-box;
}

input:hover,
textarea:hover {
    border: 2px solid var(--primary);
    outline: none;
}

input:focus,
textarea:focus {
    border: 2px solid var(--primary);
    box-shadow: 3px 4px 10px -3px var(--dark);
}

input[type="submit"] {
    background-color: var(--primary);
    color: var(--light-bg);
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    opacity: 0.9;
    box-shadow: 3px 4px 10px -3px var(--dark);
}

textarea {
    height: 8em;
    resize: none;
}

.step {
    font-size: 2em;
    font-weight: 600;
    width: 2em;
    height: 2em;
    padding: 0.5em;
    justify-content: center;
    border-radius: 0.3em;
    background-color: var(--primary);
    color: var(--light-bg);
}

.col>.step {
    display: none;
}

#top2 {
    max-width: 60%;
    padding-left: 3em;
}

#stickyButton>a {
    padding: 0;
}

@media (min-width: 769px) and (max-width: 1200px) {
    #top2 {
        max-width: 75%;
        padding-left: 0.75em;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}



@media only screen and (max-device-width: 480px) {
    header {
        flex-wrap: wrap;
    }
    .menu {
        display: none;
        /* Hide regular menu */
        flex-direction: column;
        position: absolute;
        top: 8em;
        /* left: 0; */
        width: 100%;
        background-color: var(--background-color);
        text-align: center;
    }

    .menu.active {
        display: flex;
		background-color: var(--light-bg);
        width: 33%;
        align-items: center;
        justify-self: anchor-center;
    }

    .menu li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .mobile {
        display: block;
        /* Show mobile menu */
    }

    .col,
    .col25,
    .col50,
    .col75 {
        flex: unset;
    }

    .cards {
        grid-auto-flow: row;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    #top2 {
        max-width: 100%;
        padding-left: 0.75em;
    }

    #arrow-line {
        display: none;
    }

    .col>.step {
        display: flex;
    }
}