@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {

    --color-primary: #000000;
    --color-secondary: #3A4F66;


    --background-primary: #ffffff;
    --background-secondary: #f3f5f7;
    --background-body: #fafbfc;


    --theme-highlight-color: #10A6C0;

    --theme-max-view-with: 1400px;


    --theme-header-height: 120px;
    --theme-header-padding: 60px;

    --theme-body-padding: 60px;

    --theme-content-spacing: 30px;

    --theme-footer-height: 280px;
    --theme-footer-padding: 60px;

}

*::selection {
    color: #ffffff;
    background-color: var(--theme-highlight-color);
}

/* ON MOBILE */

@media only screen and (max-width: 1500px) {
    /* OVERRIDE THEME MAX VIEW WIDTH */
    body {
        overflow-x: hidden;
        --theme-max-view-with: 800px;
    }
    /* MOBILE MENU TOGGLE BUTTON */
    .top-header .mobile {
        display: block;
    }
    /* DISABLE MAIN MENU */
    .top-header .social, .top-header .menu {
        display: none;
    }
    .top-header .con {
        padding: 0 calc(var(--theme-header-padding) / 2);
    }
    .top-header .nav {
        padding-right: calc(var(--theme-header-padding) / 2);
    }
    /* ADJUST BANNER WRAPPER WIDTH */
    .banner-wrapper {
        max-width: 100%;
    }
    /* CENTER THE BANNER WRAPPER HEADING */
    .banner-wrapper h2 {
        text-align: center;
    }
    /* ADJUST CENTERED POSITION */
    .content h2.heading {
        text-align: center;
        width: auto;
    }
    /* ADJUST CENTERED POSITION */
    .content .wrapper .split-2 h4.subheading {
        text-align: center;
    }
    /* ADD PADDING TO CONTENT TEXT */
    .content.side-spacing {
        padding: 0 var(--theme-body-padding);
    }
    /* ADJUST CENTERED POSITION */
    .content .heading {
        width: auto;
        text-align: center;
    }
    /* BADGE ROW - ! INLINE */
    .content .badge-row {
        display: block;
        --theme-max-view-with: 550px;
        margin: 0 auto;
    }
    /* BADGE ROW ENTRY ADJUST WIDTH AND POSITIONING */
    .content .badge-row .entry {
        margin: 0 auto;
        margin-bottom: 50px;
        width: calc(100% - (var(--theme-content-spacing) * 4));
    }
    /* TEXT / IMAGE WRAPPER - ! INLINE */
    .content .wrapper {
        display: block;
    }
    .content .wrapper .split-2:first-child {
        margin: 0 auto;
        padding-bottom: 100px;
    }
    .content .wrapper .split-2 {
        margin: 0 auto;
        width: calc(100% - (var(--theme-content-spacing) * 4));
    }
    .content .wrapper .img.type-1 {
        width: 250px;
        margin: 0 auto;
    }
    .content .wrapper .img .bg {
        width: 250px;
        height: 100%;
        background-color: var(--theme-highlight-color);
        border-top-left-radius: 25px;
        border-bottom-right-radius: 25px;
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(-25px, 25px);
        z-index: -1;
    }
    .content .wrapper .img img {
        width: 250px;
    }
    /* PARTNER WRAPPER - ! INLINE */
    .content .partner-wrapper .con {
        display: block;
    }
    /* FOOTER ITEM LISTED */
    .bottom-footer .con {
        flex-direction: column;
    }
    /* ALIGN SPLIT CONTENT */
    .bottom-footer .split {
        align-items: center;
        width: 100%;
    }
    /* ADJUST WIDTH OF COPYRIGHT */
    .bottom-footer .split:nth-child(2) {
        width: 100%;
    }
    /* CENTER Y POS OF COPYRIGHT P */
    .bottom-footer p.copyright {
        margin: 0;
    }
}
