.vpn-faq-section {
    background: #f6f8f8;
}
.vpn-faq-section h3 {
    color: #464a5e;
    font-weight: 700;
    font-size: 44px;
    text-align: center;
}
.faq {
    background: #fff;
    box-shadow: 5px 9px 40px 0px rgba(182, 200, 192, 0.3);
    padding: 22px 49px;
    margin-top: 30px;
    border: 2px solid #e4f4ed;
    transition: all 0.5s ease;
}
.faq h3 {
    color: #464a5e;
    font-weight: 700;
    font-size: 22px;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    transition: all 0.5s ease;
}
.faq h3:hover {
    color: #00b388;
    cursor: pointer;
    transition: all 0.5s ease;
}
.faq h3:after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0px;
    width: 15px;
    height: 15px;
    border: 4px solid #00b388;
    border-top: 0;
    border-right: 0;
    transform: rotate(-46deg);
    transition: all 0.5s ease;
}
.active-faq h3:after {
    transform: rotate(134deg);
    transition: all 0.5s ease;
}
.faq .content {
    display: none;
}
.faq .content a {
    color: #00b187;
}
.faq .content a:hover, .faq .content a:focus {
    color: #464a5e;
}

.faq p {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 0;
}
@media (min-width: 993px) {
    .vpn-faq-section .container {
        max-width: 970px !important;
    }
}
@media (max-width: 767px) {
    .vpn-faq-section h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .faq {
        padding: 20px 15px;
        margin-top: 10px;
    }
    .faq h3 {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .faq p {
        font-size: 15px;
    }
    .faq h3:after {
        top: 4px;
        width: 10px;
        height: 10px;
        border: 2px solid #00b388;
        border-top: 0;
        border-right: 0;
    }
}
