/* ---------- GLOBAL ----------  */
* {
    margin: 0;
}
body {
    font-family: roboto;
}
.container {
    width: 1000px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* ---------- HEADER ----------*/
header {
    padding: 15px;

    color: #E5E7EB;
    background-color: #1F2937;

    display: flex;
    justify-content: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #F9FAF8;
}
.links {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---------- HERO BLOCK ---------- */
.hero-block {
    min-height: 475px;

    font-weight: 900;
    color: #F9FAF8;
    background-color: #1F2937;

    display: flex;
    justify-content: center;
}
.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.left-side h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}
.left-side p {
    color: #E5E7EB;
    font-weight: normal;
    padding-bottom: 10px;
    padding-right: 50px;
}
.left-side button {
    width: 125px;
    height: 37px;
    border: none;
    border-radius: 7px;
    background-color: #3882f6;

    font-size: 17px;
    color: white;
    font-weight: bold;
}
.right-side {
    flex: 1;
}
#hero-image {
    height: 230px;
    background-color: #6d747d;

    font-weight: normal;
    
    display:flex;
    justify-content: center;
    align-items: center;
}

/* ---------- INFRORMATION BLOCK ---------- */
.information-block {
    min-height: 495px;
    
    display: flex;
    justify-content: center;
}
.information-block .container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 50px;
}
.cards-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 60px;
}
.card {
    width: 170px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.information-block h2 {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;

    margin-top: 50px;
}
.card .img {
    width: 160px;
    height: 160px;
    border: 5px #3882f6 solid;
    border-radius: 15px;
}
.card p {
    text-align: center;
    color: #6d747d;
    font-weight: 450;
}

/* ---------- QUOTE BLOCK ---------- */
.quote-block {
    background-color: #E5E7EB;
    min-height: 430px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.quote-holder {
    width: 1000px;

    display: flex;
    flex-direction: column;
}
.quote {
    font-size: 36px;
    font-style: italic;
    color: #1F2937;
    font-weight: 300;

    padding-left: 110px;
    padding-right: 110px;
}
.signature {
    font-size: 24px; 
    font-weight: bold;
    text-align: right;

    padding-right: 150px;
}

/* ---------- CALL TO ACTION BLOCK ---------- */
.call-to-action-block {
    min-height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;
}
.blue-block {
    font-size: 20px;
    color: white;

    width: 1000px;
    height: 150px;
    border-radius: 10px;
    background-color: #3882f6;

    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
.blue-block p {
    font-size: 18px;
    font-weight: 350;
}
.blue-block button {
    width: 140px;
    height: 40px;

    background-color: #3882f6;
    border: white 3px solid;
    border-radius: 10px;
    padding: 3px;

    font-size: 17px;
    color: white;
    font-weight: bolder;
}

/* ---------- FOOTER BLOCK ---------- */
footer {
    background-color: #1F2937;
    height: 100px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}