body {

    font-family: Roboto, Arial, sans-serif;

    margin: 0;
}

/*navbar*/
.navbar {

    background-color: #1F2937;

    height: 128px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-left: 100px;
    padding-right: 100px;

    padding: 10px 120px;
}

.logo {

    width: 100px;
    height: auto;

    border-radius: 50%;
}

.navbar a {

    text-decoration: none;
    color: white;

    font-size: 22px;

    margin-left: 20px;
}
/*navbar*/


/*header*/
.header {

    background-color: #1F2937;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;

    /* height: 580px; */

    padding: 90px;
}

.header-left-part {

    width: 400px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 30px;
}

.header h1 {

    color: #f9faf8;
    font-size: 60px;
    font-weight: 700;

    margin: 0;
}

.header p {

    color: #e5e7eb;
    font-size: 19px;

    margin: 0;
}

.header img {

    width: 600px;
    height: auto;

    border-radius: 1.5%;
}

.header button {

    background-color: #3882F6;
    color: white;

    padding: 15px 30px;
    
    border-radius: 8px;

    border: none;

    font-size: 19px;
}
/*header*/


/*main-content*/
.main-content {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;

    padding-top: 30px;
    padding-bottom: 30px;
}

.main-content h2 {

    font-size: 36px;
    font-weight: 700;

    color: #1f2937;
}

.main-content-pictures {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 65px;
}

.main-content-picture {

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.main-content-picture img {

    width: 280px;
    height: 280px;
    object-fit: cover;

    border-radius: 5%;

    border: 5px solid #3882f6;
}

.main-content-picture p {

    font-size: 20px;
}
/*main-content*/


/*quote section*/
.quote-section {

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 20px 300px;

    background-color: #e5e7eb;
}

.quote-section-author {

    align-self: flex-end;
}

.quote-section p {

    font-size: 36px;
    color: #1f2937;
    font-weight: 300;
    font-style: italic;
}

.quote-section .quote-section-author {

    font-size: 26px;
    font-weight: 500;
    font-style: unset;
}
/*quote section*/


/*CTA*/
.call-to-action {

    display: flex;
    justify-content: space-around;
    align-items: center;

    padding-top: 50px;
    padding-bottom: 50px;
}

.call-to-action .box {

    background-color: #3882f6;
    color: white;

    padding: 40px 130px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    border-radius: 8px;

    gap: 300px;
}

.call-to-action .text {

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.call-to-action h3 {

    font-size: 25px;

    margin: 0;
}

.call-to-action p {

    font-size: 18px;

    margin: 0;

    opacity: 0.85;
}

.call-to-action button {

    background-color: #3882F6;
    color: white;

    padding: 8px 32px;
    
    border-radius: 8px;
    border: 2px solid white;

    font-size: 19px;
}
/*CTA*/


/*footer*/
.footer {

    background-color: #1f2937;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 30px;
    padding-bottom: 30px;

    font-size: 22px;
}
/*footer*/
