.main{
    display:flex;
    background: #11587D;
    padding-top: 80px;
    text-align: center;
    padding-bottom: 100px;
}

.main .container{
    max-width: 780px;
}

h1{
    color: white;
}

.main p{
    color: white;
    font-size: 1.4em;
    margin-bottom: 60px;
}

.main .btn:first-of-type{
    background-color: white;
    border-color: white;
    color: #11587D;
}

.main .btn:last-of-type{
    border-color: white;
    color:white;
}

.problems {
    display: flex;
    background: white;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.problems span{
    color:#c10007;
    background-color: #fef2f2;
    padding: 12px 18px 12px 18px;
    border-radius: 18px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
}

.problem{
    border-radius: calc(0.625rem + 4px);
    border-style: solid;
    border-width: 1px;
    border-color: #ececec;
    padding: calc(0.25rem * 6);
    background: #ececec;
    margin-top: 30px;
    text-align: left;
}

.problem > i{
    display: block;
    width:56px;
    height:56px;
    background-color: rgba(252, 0, 0, 0.15);
    color: #e7000b;
    font-size: 1.7em;
    text-align: center;
    align-items: center;
    line-height: 56px;
    border-radius: 0.625rem;
}

.solution{
    display: flex;
    background: #11587D;
    color: white;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.solution span{
    background-color: rgba(255,255,255,0.1);
    padding: 12px 18px 12px 18px;
    border-radius: 18px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
}

.solution-step{
    border-radius: calc(0.625rem + 4px);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255,255,255,0.2);
    padding: calc(0.25rem * 6);
    background: rgba(255,255,255,0.1);
    margin-top: 30px;
    text-align: left;
}

.solution-step > i{
    display: block;
    width:56px;
    height:56px;
    background-color: rgba(252, 255, 255, 0.2);
    font-size: 1.7em;
    text-align: center;
    align-items: center;
    line-height: 56px;
    border-radius: 0.625rem;
}

.solution-step p {
    color: #dadada;
}

.method{
    display: flex;
    background: white;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.method-step {
    text-align: left;
    margin-top: 60px;
}

.method-step span{
    font-size: 4em;
    color: #11587D;
    font-weight: 700;
    opacity: 0.1;
    display: block;
}

.method-step i{
    display: block;
    width:56px;
    height:56px;
    background-color: #11587D;
    color: white;
    font-size: 1.7em;
    text-align: center;
    align-items: center;
    line-height: 56px;
    border-radius: 0.625rem;
}

.why{
    display: flex;
    background: #ececec;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.why-explanation {
    border-radius: calc(0.625rem + 4px);
    border-style: solid;
    border-width: 1px;
    border-color: #f0f0f0;
    padding: calc(0.25rem * 6);
    background: white;box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-top: 60px;
    text-align: left;
}

.why-explanation i{
    display: block;
    width: 56px;
    height: 56px;
    background-color: rgba(17, 88, 125, 0.25);
    color: #11587D;
    font-size: 1.7em;
    text-align: center;
    align-items: center;
    line-height: 56px;
    border-radius: 0.625rem;
}

.second-cta{
    display: flex;
    background: #11587D;
    color: white;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.second-cta i{
    display: inline-block;
    width:56px;
    height:56px;
    background-color: rgba(252, 255, 255, 0.2);
    font-size: 1.7em;
    text-align: center;
    align-items: center;
    line-height: 56px;
    border-radius: 100%;
}

.second-cta p{
    color:white;
}

.second-cta .btn:first-of-type{
    background-color: white;
    border-color: white;
    color: #11587D;
}

.second-cta .btn:last-of-type{
    border-color: white;
    color: white;
}

.second-cta .btn{
    margin-top: 40px;
    display: inline-block;
}

@media screen and (min-width: 800px) {
    .main .btn:first-of-type{
        margin-right: 20px;
    }

    .problem{
        width: calc(33% - 60px);
        float: left;
        margin-right: 20px;
    }

    .problem:last-of-type{
        margin-right: 0px;
    }

    .solution-steps{
        display: flex;
        flex-wrap: wrap;
    }

    .solution-step{
        width: calc(50% - 70px);
        float:left;
        margin-right: 30px;
    }

    .solution-step:nth-child(2n){
        margin-right: 0px;
    }
    
    .method-step{
        width: calc(25% - 25px);
        float: left;
        margin-right: 30px;
    }

    .method-step:last-of-type{
        margin-right: 0px;
    }

    .why-explanations{
        display: flex;
        flex-wrap: wrap;
    }

    .why-explanation{
        float: left;
        width: calc(25% - 80px);
        margin-right: 30px;
    }

    .second-cta .btn:first-of-type{
        margin-right: 30px;
    }
}