/* process section */
.process {
    padding: 30px;
}

.process h1:nth-child(1) {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.process h1:nth-child(2) {
    font-size: 16px;
    font-weight: 600;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    border-bottom: solid 1px var(--text);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.step:nth-child(1) {
    border-top: solid 1px var(--text);
    padding-top: 30px;
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step h3,
.step h2 {
    margin-bottom: 0;
}

.step h3 {
    font-size: 30px;
    font-weight: 600;
    margin-right: 20px;
}

.step:nth-child(1) h3 {
    margin-right: 24px;
}

.step h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

	.process {
        padding: 40px 150px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1024px) {

    .process h1:nth-child(2) {
        display: none;
    }

	.processSteps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .step:nth-child(1) {
        border-top: none;
        padding-top: 0;
    }

}

/* Extra large devices (large laptops) */
@media only screen and (min-width: 1440px) {

	.process {
        padding: 50px 250px;
    }

}

/* Extra large devices (Desktops) */
@media only screen and (min-width: 1920px) {

    .process {
        padding: 60px 400px;
    }

    .process h1:nth-child(1) {
        font-size: 40px;
    }
    
    .process h1:nth-child(2) {
        font-size: 20px;
    }

    .step h3 {
        font-size: 30px;
    }
    
    .step:nth-child(1) h3 {
        margin-right: 25px;
    }
    
    .step h2,
    .step p {
        font-size: 20px;
    }

}

/* Extra large devices (Large Desktops) */
@media only screen and (min-width: 2560px) {

    .process {
        padding: 60px 650px;
    }

}