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

*{
    margin: 0;
    padding: 0;
}

ul, ol{
    list-style: none;
}

html:focus-within{
    scroll-behavior: smooth;
}

a:not([class]){
    text-decoration-skip-ink: auto;
}

img, picture, svg, video, canvas{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (prefers-reduced-motion: reduce){
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

body, html{
    min-height: 100vh;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    cursor: pointer;
}

body {
    font-family: 'Mulish', serif;
    background-color: #EBECF2;
    width: 100%;
    overflow-x: hidden;
}

.techPage {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 44px;
}
.techPage__inner {
    width: calc(100% - 48px);
    max-width: 1440px;
    margin: 0 auto;
}
.techPage--logo {
    width: 264px;
    margin-bottom: 35px;
    display: block;
}
.techPage--image {
    width: 100%;
    display: block;
}
.techPage--image img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .techPage--logo {
        width: 200px;
    }
}

@media screen and (max-width: 500px) {
    .techPage {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .techPage__inner {
        width: calc(100% - 30px);
    }
    .techPage--logo {
        display: none;
    }
}
