@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-RegularItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Hellix';
    src: url('https://assets.codepen.io/6060109/Hellix-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

body, html {
    min-width: 100%;
    min-height: 100vh;
    font-family: Hellix;
    background: linear-gradient(45deg, #eef5ff 0%, #ffffff 100%);
}

.all-container {
    max-width: 500px;
    margin: auto;
}

.strong {
    font-weight: 700;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    box-shadow: 0px 0px 1px rgba(0,0,0,0.04),
                0px 2px 6px rgba(0,0,0,0.04),
                0px 10px 20px rgba(0,0,0,0.04);
}

.header-menu {
    display: none;
}

h1 {
    font-size: 36px;
    font-weight: 500;
    color:#111235;
}

a {
    text-decoration: none;
    color: #111235;
}

.container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #111235;
    margin: 30px 0 100px;
}

h2 {
    font-size: 64px;
    line-height: 75px;
    font-weight: 500;
}

h3 {
    font-size: 48px;
    font-weight: 500;
    line-height: 57px;
}

p {
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line;
}

img {
    width: 100%;
}

h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
}

h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.text-container {
    width: 100%;
    padding: 0 15px;
}

.all-btn {
    width: 250px;
    height: 60px;
    border: none;
    border-radius: 35px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.all-btn.purple {
    background-color: #4B5092;
    color:#ffffff;
}

.all-btn.white {
    background-color: #ffffff;
    color:#436BAA;
}

.container.first {
    text-align: center;
}

.container.first h2 {
    margin: 30px 0;
}

.container.first p {
    margin-bottom: 30px;
}

.container.first .all-btn {
    margin: auto;
}

.container.second .text-container{
    background-color: #f2f8ff;
    padding-top: 60px;
    padding-bottom: 50px;
}

.container.second h3 {
    margin-bottom: 20px;
}

.container.third {
    background: linear-gradient(135deg, #bad4ff 0%, #6487bf 100%);
    text-align: center;
}

.container.third h3 {
    margin-top: 80px;
}

.container.third h6 {
    margin: 20px 0 35px;
}

.container.third .all-btn {
    margin: 30px auto 80px;
}

.container.fourth h3 {
    margin: 50px 15px;
}

.panels {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.panel {
    width: 100%;
    height: 270px;
    border-radius: 30px;
    padding: 60px 40px;
}

.panel > p {
    margin-top: 30px;
}

.panel:nth-of-type(1), .panel:nth-of-type(4) {
    background: #e4f0ff
}

.panel:nth-of-type(2), .panel:nth-of-type(3) {
    background: rgba(114,122,239,0.1);
}

footer {
    border-top: 1px solid rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content h1 {
    padding: 50px 0;
}

.footer-navi {
    display: flex;
    flex-direction: column;
    gap: 35px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.footer-content form {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
}

.footer-content form label {
    font-size: 18px;
    font-weight: 600;
    padding-left: 50px;
}

#email-submit {
    margin: 15px 0;
    padding: 17px;
    border-radius: 8px;
    width: 255px;
    border: none;
    background-image: url('assets/paper\ plane\ icon.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    outline: 0;
}

#email-submit::placeholder {
    color: #111235;
}

.footer-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-bottom: 60px;
}

.footer-icons button {
    border: none;
    width: 32px;
    height: 32px;
    background: rgba(128, 173, 245, 0.1);
    border-radius: 100%;
}

.footer-icons button .icon {
    display: block;
    margin: auto;
    width: 53%;
    height: 53%;
    background-repeat: no-repeat;
    background-position: center;
}

.insta-icon {
    background: url("assets/insta\ icon.svg");
}

.basketball-icon {
  background: url('assets/basket\ icon.svg');
}

.twitter-icon {
    background: url('assets/twitter\ icon.svg');
}

.youtube-icon {
    background: url("assets/youtube\ icon.svg");
}

.copyright {
    font-weight: 500;
}

@media only  screen and (min-width: 1000px) {
    .all-container {
        max-width: 1550px;
    }

    .header-menu {
        display: flex;
        gap: 45px;
        font-size: 16px;
        font-weight: 500;
        align-items: center;
    }
    
    header {
        justify-content: space-between;
        padding: 35px 140px;
        box-shadow: none;
        height: 120px;
    }

    .container {
        padding: 0 140px;
        flex-direction: row-reverse;
    }

    .all-btn {
        width: 200px;
    }

    .container.first {
        text-align: left;
    }

    .container.first .all-btn {
        margin: 0;
    }

    .container.first img {
        width: 80%;
    }

    .container.second {
        flex-direction: row;
    }

    .container.second .text-container {
        border-radius: 50px;
        padding: 80px 50px;
        margin-left: 40px
    }

    .container.third {
        text-align: left;
    }

    .container.third img {
        align-self: flex-end;
    }

    .container.third .text-container {
        padding: 0 100px;
    }

    .container.third .all-btn {
        width: 230px;
        margin-left: 0;
    }

    .container.fourth {
        display: grid;
        grid-template-columns: 65% 35%;
    }

    .container.fourth h3{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .container.fourth .all-btn {
        grid-column: 2 / 2;
        grid-row: 1 / 2;
        justify-self: flex-end;
    }

    .container.fourth img {
        grid-column: 2 / 2;
        grid-row: 2 / 2;
    }

    .panels {
        padding:0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: fit-content;
    }
    
    .panel {
        max-width: 370px;
        overflow: hidden;
    }

    .container.fifth {
        flex-direction: column;
        align-items: flex-start;
    }

    .container.fifth h1 {
        padding: 0;
    }

    .container.fifth .footer-content{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 70px;
    }

    .container.fifth .footer-navi {
        margin-left: 10%;
        flex-wrap: wrap;
        width: 300px;
        height: 130px;
        gap: 25px;
        text-align: left;
    }

    .container.fifth form {
        padding: 0;
    }

    .container.fifth form label {
        padding: 0;
    }

    .container.fifth .footer-icons {
        display: none;
    }
}



