﻿@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
}


.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section, .section-1 {
    padding-bottom: 1rem;
    min-height: 100vh !important;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

    .container .row {
        display: grid;
        margin: 0 -15px;
        grid-template-columns: repeat(1, 1fr);
    }

.section .container .row .box {
    order: 2;
    padding: 0 15px;
    text-align: center;
}

.section-1 .container .row .box {
    padding: 0 15px;
    text-align: center;
}

.container .row .box .title {
    line-height: 1.3;
    font-weight: 600;
    margin: 3rem 0 0.5rem 0;
    font-size: calc(1.375rem + 1.5vw);
}

    .container .row .box .title span {
        color: #0648b3 !important;
    }

.container .row .box .paragraph {
    font-size: 1rem;
    margin: 1.5rem 0;
    font-weight: 400;
    line-height: 1.6;
}

.container .row .box .paragraph {
    margin: 1.5rem 0;
}

.container .row .box .btn {
    color: #fff;
    display: flex;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 600;
    width: fit-content;
    border-radius: 8px;
    padding: 0.4em 1.2em;
    align-items: center;
    border-color: #0648b3;
    background-color: #0648b3;
    box-shadow: 0 0.125rem 0.25rem rgba(13,20,49,.07);
}

    .container .row .box .btn:hover {
        background-color: #05398e;
        border-color: #043482;
    }


    .container .row .box .btn i {
        margin-right: 0.5rem;
        font-size: 1.8rem;
        transition: transform 0.2s linear;
    }

    .container .row .box .btn:hover i {
        transform: translateX(-3px);
    }

.section .container .row .image {
    order: 1;
}

.container .row .image img {
    width: 71%;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.section-1 .container .row .image img {
    width: 53%;
}

@media (min-width: 768px) {
    .container {
        max-width: 95%;
    }
}

@media (min-width: 992px) {
    .section .container .row {
        grid-template-columns: repeat(2, 1fr);
    }

        .section .container .row .box {
            order: 1;
            text-align: left;
        }

        .section .container .row .image {
            order: 2;
        }

    .container .row .box .paragraph {
        font-size: 1.25rem;
    }

    .section .container .row .box .btn {
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .section .container .row .box .title {
        font-size: 2.5rem;
    }
}
