@font-face {
    font-family: charter;
    src: url('../fonts/charter-regular.otf');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: charter;
    src: url('../fonts/charter-italic.otf');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: charter;
    src: url('../fonts/charter-bold.otf');
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: charter;
    src: url('../fonts/charter-bold-italic.otf');
    font-style: italic;
    font-weight: bold;
}

:root {
    font-size: 18px;
    --white30: white;
    --white20: #A5A3A5;
    --white10: #3A3539;

}

body {
    color: var(--white30);
    /* font-family: charter; */
    font-family: "Quicksand", sans-serif;
    background: #251F24;
    margin: 0;
    /* margin-inline: 100px; */
    /* margin-block: 100px; */
    /* margin-block-start: 150px; */
} 

html {
    scroll-behavior: smooth;
}

a {
    color: var(--white30);
}

.header {

}

.header-content {
    padding-inline: 20px;
}

header {
    margin-block-start: 20px;
    font-size: 14px;
    color: var(--white);
}

header li {
    color: var(--white20);
    margin-block-end: 16px;
}

header a {
    color: var(--white20);
    text-decoration: none;
}

header a:hover {
    color: var(--white30);;
}

nav details summary {
    font-weight: bold;
}

/* h1, h2, h3 {
    font-weight: normal;
} */

h1 {
    font-size: 40px;
    margin-block-start: 20px;
    margin-block-end: 16px;
}

hr {
    margin-block: 40px;
    border: 1px solid rgba(97, 97, 97, 0.2)
}

h2 {
    font-size: 2em;
    margin-block: 40px;
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-block: 16px;
}

pre {
    background: var(--white10);
    padding: 40px;
    overflow: auto;
    border-radius: 8px;
    border-inline-start: 5px solid orange;
    border-block-start: 20px solid pink;
    border-inline-end: 5px solid green;
    border: 5px solid #5551FF;
    box-shadow: -10px 10px 0 0 #ABAAF6;
    margin-block-end: 30px;
    border-start-start-radius: 60px;
    border-end-end-radius: 60px;
}

p {
    color: var(--white20);
}

.section-content li {
    color: var(--white20);
    margin-block-end: 16px;
}

.hero {
    /* background: linear-gradient(to top, rgba(255, 255, 255, .3), transparent), url('../images/pattern.png'); */
    background: linear-gradient(96.07deg, #314755 30.63%, #26A0DA 102.18%);
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: cover; */
    block-size: 50px;
    /* width: 100%; */
}

blockquote {
    margin-block-start: 80px;
    margin-block-end: 63px;
    background-color: var(--white10);
    border-radius: 8px;
    line-height: 32px;
    font-size: 24px;
    padding-inline-end: 24px;
    padding-inline-start: 24px;
    padding-block-start: 24px;
    padding-block-end: 24px;
}

blockquote p {
    color: var(--white30);
}

.section-content img {
    margin-block-start: 40px;
    display: block;
    max-inline-size: 100%;
}

.section-content {
    counter-reset: titleList;
}

.section-content h3 {
    counter-increment: titleList;
}

.section-content h3::before {
    content: counter(titleList, decimal) ". ";
}

/* .section-content h3::after {
    content: '';
    width: 70px;
    height: 4px;
    background: var(--white30);
    display: inline-block;
} */

.main hr {
    display: none;
}

.main {
    /* border: 1px solid red; */
}

.wrapper {
    /* border: 1px solid yellow; */
    max-inline-size: 902px;

    /* block-size: 100px; */
    margin: auto;
}

.main-content {
    padding-inline: 16px;
    /* border: 1px solid blue; */
}

.slider {

}

.slider-container {
    /* block-size: 100px; */
    display: block;
    overflow: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    font-size: 0;
    overflow: hidden;
}

.video {
    margin: 0;
    display: inline-block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.slider-bullet-list {
    text-align: center;
    margin-block-start: 10px;
}

.slider-bullet {
    display: inline-block;
    inline-size: 15px;
    block-size: 15px;
    background: var(--white30);
    border-radius: 50%;
}

.form input {
    width: 100%;
    border: 1px solid var(--white30);
    background: #251F24;
    box-sizing: border-box;
    border-radius: 8px;
    padding-inline: 16px;
    padding-block: 12px;
    color: var(--white30);
    display: block;
    margin-block: 24px;
}

.form input[type="submit"] {
    background: #157EFB;
    border: none;
}


.form ::-webkit-input-placeholder {
    color: var(--white20);
}

@media screen and (min-width: 1360px) {
    .hero {
        block-size: 350px;
    }
    .header {
        position: sticky;
        inset-block-start: 0;
    }
    
    .header-content {
        position: relative;
        inset-block-start: 20px;
        padding-inline: 0;
    }
    
    header {
        font-size: 14px;
        color: var(--white);
        position: absolute;
        inset-block-start: 0;
        inset-inline-start: -208px;
        inline-size: 188px;
    }

    h1 {
        font-size: 60px;
        margin-block-start: 64px;
    }
}