@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: rgb(189 208 251);
    color: rgb(12, 0, 100);
    word-spacing: 2px;
}

h1, h2, h3, h4, h5, h6, p {
    font-weight: 400;
}

img {
    display: block;
    width: 100%;
}

.d-flex {
    display: flex;
    position: relative;
    /* justify-content: space-between; */
}

.bold {
    font-weight: 700 !important;
}

.mail-container {
    width: 80%;
    max-width: 1400px;
    margin: 60px auto;
    padding-top: 50px;
}

.title-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3rem;
}

.title-logo img {
    width: 100%;
    max-width: 60px;
    margin-right: 1rem;
}

.title-logo p {
    font-size: 44px;
    font-weight: 500;
    line-height: 56px;
}

.step-container {
    width: 100%;
}

.step-container:not(:first-child) {
    margin-top: 5rem;
}

.step-container h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.step-container .step-text {
    padding-left: 7vw;
    position: relative;
}

.step-container .step-text p {
    padding: 5px 0;
    font-size: 18px;
}

.step-text span {
    font-weight: 500;
    color: black;
    padding-right: 0.5rem;
}

.step-container img {
    width: 100%;
    height: 100%;
    max-width: 400px;
}

.absolute {
    margin-top: 1rem;
    font-weight: 500;
    /* color: rgb(0, 153, 255); */
    font-size: 18px !important;
}

@media (max-width:1200px) {
    .mail-container {
        width: 90%;
    }
}

@media (max-width:975px) {
    .title-logo p {
        font-size: 36px;
        line-height: 50px;
    }

    .title-logo img {
        max-width: 50px;
    }

    .step-container h2 {
        font-size: 20px;
    }

    .step-container:not(:first-child) {
        margin-top: 3rem;
    }

    .d-flex {
        flex-direction: column-reverse;
    }

    .step-container .step-text {
        padding-left: 0.5rem;
    }

    .step-container img {
        margin-top: 1rem;
    }
}

@media (max-width:768px){
    .mail-container {
        margin: 20px auto;
    }
    .title-logo p {
        font-size: 26px;
        line-height: 34px;
    }
    .title-logo img {
        max-width: 40px;
        margin-right: 0.5rem;
    }
    .step-container h2 {
        font-size: 18px;
    }
    .step-container .step-text p {
        font-size: 16px;
    }
    .absolute {
        font-size: 16px !important;
    }
}