:root {
    --primary-color: #0075BE;
    --secondary-color: #005587;
    --color-white: #FFFFFF;
    --color-dark: #001928;
    --color-light: #E6F9FE;
    --color-hover-background: #F5F6F7;
    --background-color: #EEF7FC;
    --button-color: #0075BE;
    --button-hover-color: #001928;
    --button-light-color: #F5F6F7;
    --font-color: #003758;
    --text-font-color: #001928;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
	height:100%;
    display: block;
    font-family: "Heebo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--color-dark);
	background: var(--primary-color);
    font-size: 16px;
}

label,
button,
input {
    font-family: "Heebo", sans-serif;
}

button {
    transition: background .2s, color .2s;
    cursor: pointer;
}

* {
    outline-color: var(--primary-color);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
div,
section {
    position: relative;
    display: block;
}

/* accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* global */
.layout-center {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;

    @media (width <=1248px) {
        padding-inline: 24px;
    }
}

.layout-background {
    background: #F5F6F7;
    padding-block: 80px;

    @media (width <=1248px) {
        padding-block: 40px;
    }
}

a {
    transition: color .25s;
}


/* header */
header {
    background-color: #fff;
    position: sticky;
    top: 0px;
    z-index: 5000;
	
	.logo {
        display: flex;
        align-items: center;
        height: 100%;
        padding-block: 16px;
        margin-right: 72px;

        img {
            width: 116.11px;
            height: auto;
        }
		
    }
}

main {
    scroll-margin-top: 115px;
    min-height: calc(100dvh - 290px);
}

/* home */
body.home {

    main {

        section.hero {
            position: relative;
            background: var(--primary-color);
            padding-block-end: 40px;

            div.layout-center {
                position: relative;
                display: grid;
                padding-block: 50px 0px;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: minmax(25vw 200px) 1fr;
                gap: 1rem;

                .logo {
                    grid-area: 1 / 1 / 1 / 1;
                    margin-left: max(-25px, -2.5vw);

                    img {
                        width: 130%;
                        height: auto;
                    }
					
					h1{
			margin-bottom: 0;
		}
                }

                .image {
                    grid-area: 1 / 2 / 3 / 2;

                    img {
                        width: 100%;
                        height: auto;
                    }
                }

                .content {
                    color: var(--color-white);
                    font-size: 26px;
                    font-style: normal;
                 
                    line-height: 150%;
                    grid-area: 2 / 1 / 5/ 1;
                    max-width: none;

                    p {
                        margin-block: 0;
                    }

                }
            }

            @media (width < 800px) {

                div.layout-center {
                    position: relative;
                    display: grid;
                    padding-inline: 0px;
                    grid-template-columns: 1fr 1fr;
                    grid-template-rows: minmax(25vw 200px) 1fr;
                    gap: 1rem;
                    overflow: hidden;

                    .logo {
                        margin-left: 5px;

                        img {
                            width: 215%;
                        }
						
                    }

                    .image {
                        overflow: hidden;
                        margin-top: 20px;
                        margin-left: -70px;

                        img {
                            width: 105%;
                        }
                    }

                    .content {
                        grid-area: 2 / 1 / 3 / 3;
                        font-size: 18px;
                        padding-inline: 20px;
                        margin-top: 60px;

                        p {
                            margin-block: 0;
                        }

                    }
                }
            }


        }


    }


    }

}

