@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    height: 100vh;
    width: 100vw;
    margin: 0px;
    font-family: 'Roboto','Segoe UI', Tahoma, Verdana, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
   /* padding: 3px 0px 3px 0px;*/
    background-color: #1F2937;
}

.header-content {
    width: 1020px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 24px;
    font-weight: 900;
    color: #F9FAF8;
}

ul {
    display: flex;
    gap: 25px;
    padding: 0px;
    list-style: none;
    color: #E5E7EB;
    font-size: 18px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1F2937;
    height: 472px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 52px;
    margin-bottom: 35px;
}

.hero-right-side {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 522px;
    height: 236px;
    background-color: #6d747e;
    color: white;
    font-size: 18px;
}

.hero-left-side {
    display: flex;
    flex-direction: column;
    width: 450px;
}

.hero-title {
    margin: 0px;
    font-size: 48px;
    font-weight: 900;
    color: #F9FAF8;
}

.hero-subtext {
    color: #E5E7EB;
    margin: 0px 0px 12px 0px;
    font-size: 18px;
}

.hero-button {
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 18px;
    width: 130px;
    height: 37px;
    border-radius: 7px;
    border: 0px;
    font-weight: 550;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
}

.info-header {
    text-align: center;
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    margin-bottom: 50px;
}

.box-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}

.box {
    width: min-content;
    text-align: center;
    color: #1F2937;
    font-size: 18px;
}

.border {
    width: 163px;
    height: 163px;
    border: 4px solid #3882F6;
    border-radius: 15px;
    margin-bottom: 8px;
}

.quote {
    height: 428px;
    background-color: #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1F2937;
}

.quote-text {
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    width: 788px;
}

.quote-author {
    display: flex;
    justify-content: flex-end;
    width: 660px;
    font-size: 24px;
    font-weight: 700;
}

.call-to-action {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.cta-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1022px;
    height: 149px;
    background-color: #3882F6;
    border-radius: 10px;
}

.cta-header, .cta-sentence {
    color: #F9FAF8;
    margin: 0px;
}

.cta-header {
    font-size: 24px;
}

.cta-sentence {
    color: #E5E7EB;
    font-size: 18px;
}

.cta-button {
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 18px;
    width: 130px;
    height: 37px;
    border-radius: 7px;
    border: 2px solid #F9FAF8;
    font-weight: 550;
}

.footer {
    background-color: #1F2937;
    color: #F9FAF8;
    height: 100px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}