﻿ 
.wrapper {
    max-width: 100%;
    margin: auto;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

    .section-title:before,
    .section-title:after {
        content: '';
        height: 1px;
        background: #bdbdbd;
        flex: 1;
    }

    .section-title h2 {
        font-size: 42px;
        font-weight: 500;
        color: #222;
    }

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
    font-size: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.feature-card {
    background: #fff;
    border: 1px solid #d9d9d9;
    padding: 45px 35px;
    text-align: center;
    transition: .35s;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.08);
    }

.feature-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #bac8d3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .feature-icon img {
        width: 48px;
        height: 48px;
        stroke: #295ec8;
    }

.feature-card h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 22px;
    color: #2b2b2b;
}

.feature-card p {
    font-size: 17px;
    color: #555;
}

@media(max-width:992px) {

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.footer-info {
    background: #133d9b;
    margin-top:20px;
    border-radius:20px;
    margin-bottom:20px;
    padding: 70px 20px 35px;
}

.footer-container {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #fff;
}

    .footer-container p {
        font-size: 17px;
        line-height: 2;
        margin: 0 auto 35px;
        max-width: 760px;
        font-weight: 400;
    }

.footer-logo {
    margin: 70px 0 45px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 78px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
}

    .footer-logo span {
        display: block;
        font-size: 34px;
        margin-top: -10px;
    }

.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,.9);
    line-height: 2;
}
 
