@font-face {
    font-family: "GillSans";
    src: url("../fonts/GillSans-01.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "GillSans";
    src: url("../fonts/GillSans-SemiBold-05.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "GillSans";
    src: url("../fonts/GillSans-Bold-02.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #f5f8fb;
    color: #171717;
    font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
}

body,
h1,
h2,
h3,
p,
ul {
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
}

strong {
    color: #171717;
    font-weight: 500;
}

.gill-regular {
    font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.gill-semibold {
    font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.gill-bold {
    font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.pt-regular {
    font-family: "PT Serif", Georgia, serif;
    font-weight: 400;
    font-style: normal;
}

.pt-bold {
    font-family: "PT Serif", Georgia, serif;
    font-weight: 700;
    font-style: normal;
}

.section {
    position: relative;
    display: flex;
    min-height: 60vh;
    width: 100%;
    padding: 126px 72px;
    align-items: center;
    justify-content: center;
}

.section-content {
    display: flex;
    width: 100%;
    max-width: 1280px;
    align-items: center;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #38a9e8, #c8102e);
}

.present-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 950;
    height: 41px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    padding: 0 18px;
    background: rgba(14, 52, 91, 0.92);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 17px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.present-button:hover,
.present-button:focus-visible {
    background: #38a9e8;
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.delay {
    transition-delay: 0.18s;
}

@media (max-width: 1180px) {
    .section {
        padding: 116px 46px;
    }
}

@media (max-width: 560px) {
    .section {
        min-height: auto;
        padding: 64px 18px;
    }
}

@media print {
    .site-navbar,
    .present-button,
    .progress-bar {
        display: none;
    }

    .section {
        min-height: auto;
        page-break-after: always;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
