@charset "UTF-8";

/*
Theme Name: Ontario-wealth Theme
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Ontario-wealth Theme is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Ontario-wealth Theme elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.3
Requires PHP: 5.6
Version: 1.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Ontario-wealth Theme WordPress Theme, (C) 2020 WordPress.org
Ontario-wealth Theme is distributed under the terms of the GNU GPL.
*/
thead {
    background: #c40f2e;
    color: #fff;
}
thead tr{
	border:4px solid #c40f2e;
}
tbody{
	    background: var(--blue-color);
	color: var(--white-color);
	border:4px solid #c40f2e;
}
/* =========================================
   WHAT WE OFFER TABS
========================================= */

.what-we-offer-section {
    padding-top: 30px;
    padding-bottom: 50px;
}

.offer-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.offer-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 5px;
    background: #f4f5f7;
    border-radius: 50px;
}

.offer-tabs .nav-link {
    border: 0;
    border-radius: 40px;
    padding: 12px 32px;
    font-size: 17px;
    font-weight: 600;
    color: #172b5d;
    background: transparent;
    transition: all 0.3s ease;
}

.offer-tabs .nav-link:hover {
    color: #d71920;
}

.offer-tabs .nav-link.active {
    background: #d71920;
    color: #ffffff;
}

.offer-tab-content {
    margin-top: 10px;
}

.offer-description {
    max-width: 950px;
    margin: 0 auto 35px;
    text-align: center;
}

.offer-description p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


/* Tab animation */
.offer-tab-content .tab-pane {
    animation: offerFadeIn 0.35s ease;
}

@keyframes offerFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Mobile */
@media (max-width: 767px) {

    .offer-tabs {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }

    .offer-tabs .nav-link {
        padding: 10px 18px;
        font-size: 15px;
    }

    .offer-description {
        margin-bottom: 25px;
    }

    .offer-description p {
        font-size: 15px;
        line-height: 1.7;
    }
}