﻿:root {
    --primary: #1b2863;
    --primary-hover: #0d1741;
    --secondary: #953d87;
    --secondary-hover: #642159;
    --headers-font: 'Poppins', sans-serif;
    --general-font: 'Roboto', sans-serif;
    --btn-font: 'Poppins', sans-serif;
    --nav-font: 'Poppins', sans-serif;
    --font-gen-color: #6A7C92;
}

/*==================================================
GENERAL
==================================================*/

* {
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

html {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    html {
        font-size: 1rem;
    }
}

a {
    text-decoration: none;
}

    a:hover {
        transition: all 0.3s;
    }

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

html {
    position: relative;
    min-height: 100%;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--general-font);
    color: var(--font-gen-color);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: var(--headers-font);
}

h1 {
    font-size: 4.5rem;
}

p {
    line-height: 1.8em;
}

.bg-lgrey {
    background: #efefef;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary);
}

.color-white {
    color: #fff !important;
}

.btn {
    font-family: var(--btn-font);
    padding: .75rem .75rem;
    font-size: 1rem;
    border-radius: 50px;
}

.btn-block {
    width: 100%;
}

.pl-100 {
    padding-left: 100px;
}

.pr-100 {
    padding-right: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.list-check {
    margin: 10px 0 25px;
    padding: 0;
}

    .list-check li {
        padding-top: 5px;
        padding-bottom: 5px;
        list-style-type: none;
    }

        .list-check li i {
            margin-right: 10px;
            color: var(--secondary);
            font-size: 1.25rem;
        }

ol, ul {
    padding-left: unset;
}


/* Header
-------------------------------------------------- */
.navlinkitem {
    cursor: pointer
}

.main-header {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    padding: 15px 10vw;
    color: #000;
    z-index: 1;
    -webkit-transition: .4s ease-out;
    transition: .4s ease-out;
}



    .main-header a {
        text-decoration: none;
        color: inherit;
    }

    .main-header .nav-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        list-style: none;
        margin: unset;
        padding: unset;
    }

        .main-header .nav-links .nav-link {
            -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

            .main-header .nav-links .nav-link:nth-of-type(2) {
                -webkit-transition-delay: .1s;
                transition-delay: .1s;
            }

            .main-header .nav-links .nav-link:nth-of-type(3) {
                -webkit-transition-delay: .2s;
                transition-delay: .2s;
            }

            .main-header .nav-links .nav-link:nth-of-type(4) {
                -webkit-transition-delay: .3s;
                transition-delay: .3s;
            }

        .main-header .nav-links .nav-link {
            padding: 0.5rem;
        }

            .main-header .nav-links .nav-link a {
                padding: 1rem;
                color: #fff;
                font-family: var(--btn-font);
                cursor: pointer;
            }

                .main-header .nav-links .nav-link a:hover {
                    background: rgba(255, 255, 255, 0.2);
                }

    .main-header .menu-icon {
        position: relative;
        padding: 26px 10px;
        cursor: pointer;
        z-index: 1;
        display: none;
    }

    .main-header .menu-icon__line {
        display: block;
        position: relative;
        background: #fff;
        height: 2px;
        width: 20px;
        border-radius: 4px;
        -webkit-transition: background 0.8s ease;
        transition: background 0.8s ease;
    }

        .main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
            content: '';
            position: absolute;
            height: 100%;
            width: 100%;
            border-radius: 4px;
            background: #fff;
            -webkit-transition: background 0.8s ease;
            transition: background 0.8s ease;
        }

        .main-header .menu-icon__line::before {
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
        }

        .main-header .menu-icon__line::after {
            -webkit-transform: translateY(5px);
            transform: translateY(5px);
        }

    .main-header .menu-btn {
        position: absolute;
        top: -100px;
    }

        .main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::before {
            -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
        }

        .main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::after {
            -webkit-transform: translateY(7px);
            transform: translateY(7px);
        }

    .main-header.scrolled {
        background-color: var(--primary);
        box-shadow: 0 0 0 1px rgb(0 0 0 / 10%), 0 2px 4px 1px rgb(0 0 0 / 18%);
        padding: 10px 10vw;
    }

        .main-header.scrolled .logo {
            height: unset;
        }

    .main-header .logo a {
        text-decoration: none;
        display: flex;
        align-items: center;
        max-height: 50px;
        color: #fff;
        font-family: var(--headers-font);
    }

        .main-header .logo a img {
            height: 50px;
        }

        .main-header .logo a span {
            margin-left: 10px;
            font-size: 1.5rem;
        }



/*---buttons ---*/

.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.2s
}

    .btn-primary:hover {
        color: #fff;
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
        box-shadow: 0 0 0 0.25rem rgba(255, 94, 21, 0.5);
    }

    .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

        .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 94, 21, 0.5);
        }

    .btn-primary:disabled, .btn-primary.disabled {
        color: #fff;
        background-color: #ff7e44;
        border-color: #ff7e44;
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    transition: all 0.2s
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 94, 21, 0.5);
    }

    .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

        .btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 94, 21, 0.5);
        }

    .btn-outline-primary:disabled, .btn-outline-primary.disabled {
        color: var(--primary);
        background-color: transparent;
    }

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
    transition: all 0.2s
}

    .btn-outline-light:hover {
        color: var(--primary);
        background-color: #f8f9fa;
        border-color: #f8f9fa;
    }

    .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
        box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
    }

    .btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
        color: #000;
        background-color: #f8f9fa;
        border-color: #f8f9fa;
    }

        .btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
        }

    .btn-outline-light:disabled, .btn-outline-light.disabled {
        color: #f8f9fa;
        background-color: transparent;
    }

.btn-light {
    color: var(--primary);
    background-color: #f9f9f9;
    border-color: #f9f9f9;
    transition: all 0.2s
}

    .btn-light:hover {
        color: var(--primary);
        background-color: #e9e9e9;
        border-color: #e9e9e9;
    }

    .btn-check:focus + .btn-light, .btn-light:focus {
        color: var(--primary);
        background-color: #e9e9e9;
        border-color: #e9e9e9;
        box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
    }

    .btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
        color: var(--primary);
        background-color: #e9e9e9;
        border-color: #e9e9e9;
    }

        .btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
        }

    .btn-light:disabled, .btn-light.disabled {
        color: var(--primary);
        background-color: #e9e9e9;
        border-color: #e9e9e9;
    }



/*--- flex row image flush to side ---*/
.fr-img-flush {
    display: flex;
}

.fc-col {
    flex: 1;
}

.fc-copy-left {
    padding: 80px 100px 80px 310px;
}

.fc-img {
    margin: -100px 0;
}
/*==================================================
SECTIONS
==================================================*/
section {
    padding-top: 60px;
    padding-bottom: 40px;
}

.section-title {
    padding-bottom: 20px;
}

    .section-title h3 {
        font-size: 0.875rem;
        font-weight: 600;
        padding: 0;
        line-height: 1px;
        margin: 0 0 15px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary);
        font-family: "Poppins", sans-serif;
    }

        .section-title h3::before {
            content: "";
            width: 120px;
            height: 2px;
            display: inline-block;
            background: var(--primary);
            margin: 4px 10px 4px 0;
        }

    .section-title h2 {
        margin: 0;
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 15px;
        font-family: "Poppins", sans-serif;
        color: var(--secondary);
    }


/* Section - Home
-------------------------------------------------- */

.home {
    background: #ccc url('../img/BusinessHome.jpg') no-repeat center center;
    background-size: cover;
    min-height: 800px;
}

    .home .grad-overlay {
        background: linear-gradient( 135deg, rgba(251,200,148,0.3) 0%, rgba(213,126,235,0.3) 100%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .home h1,
    .home p {
        color: #fff;
    }

.home-info-blocks {
    background: var(--primary);
}

.hib-white {
    margin: -220px -10px 0 -10px;
    display: flex;
}

    .hib-white li {
        margin: 0 10px;
        flex: 1;
        list-style-type: none;
    }

        .hib-white li a {
            background-color: #fff;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            border-radius: 5px;
            font-size: 1.125rem;
            display: block;
            min-height: 200px;
            color: var(--primary)
        }

            .hib-white li a:hover {
                background: var(--secondary);
                box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
                transition: all 0.3s;
                color: #fff;
            }

.hib-icon {
    display: flex;
    height: 140px;
    justify-content: center;
    align-items: center;
}

.hib-white li a .hib-icon i {
    font-size: 5.5rem;
    display: block;
}

.hib-name-arrow {
    display: flex;
    border-top: 1px var(--primary) dotted;
    padding: 0 25px;
    height: 60px;
    align-items: center;
    justify-content: space-between;
}

    .hib-name-arrow h5 {
        font-size: 1.125rem;
        margin-bottom: 0;
    }




/* Section - Services
-------------------------------------------------- */

.services .section-title {
    padding-bottom: 20px;
}

    .services .section-title h3 {
        color: #fff;
    }

        .services .section-title h3::before {
            background: #fff;
        }

    .services .section-title p {
        color: rgba(255,255,255,0.6);
    }

.services .accordion-button {
    color: #fff;
    background-color: var(--primary);
}

    .services .accordion-button::after {
        background-image: url('../img/accordion-arrow.svg');
    }

.services .accordion-body {
    background: #323e73;
    color: rgba(255,255,255,0.7);
}

.services .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.services .accordion-item {
    background-color: rgba(255,255,255,0.3);
}

/* Section - Pricing
-------------------------------------------------- */




.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgb(20 45 100 / 10%);
    height: 100%;
    border-top: 4px solid transparent;
    border-radius: 5px;
}

.pricing h4 {
    font-size: 48px;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 25px;
}

    .pricing h4 sup {
        font-size: 28px;
    }

    .pricing h4 span {
        color: #47b2e4;
        font-size: 18px;
        display: block;
    }

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

    .pricing ul li {
        padding: 10px 0 10px 30px;
        position: relative;
        color: var(--font-gen-color);
    }

    .pricing ul i {
        color: #28a745;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: 6px;
    }

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: var(--secondary);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid var(--secondary);
}

    .pricing .buy-btn:hover {
        background: var(--secondary);
        color: #fff;
    }

.pricing .featured {
    border-top-color: var(--secondary);
}

    .pricing .featured .buy-btn {
        background: var(--secondary);
        color: #fff;
    }

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}


/* Section - Call to action
-------------------------------------------------- */

.call-to-action {
    background: #ccc url('../img/istockphoto-641068394-612x612.jpg') no-repeat center center;
    height: 350px;
    max-height: 500px;
}

    .call-to-action .row {
        height: 150px;
        align-items: center;
        align-content: center;
    }

    .call-to-action .section-title h2,
    .call-to-action .section-title h3,
    .call-to-action .section-title p {
        color: #fff;
    }

        .call-to-action .section-title h3::before {
            background: #fff;
        }




/*==================================================
FOOTER
==================================================*/

/*--- Footer ---*/
.footer {
    position: relative;
    background: #111;
    color: #fff;
    font-weight: 300;
    padding-top: 100px;
    padding-bottom: 60px;
}

    .footer p {
        color: rgba(255,255,255,0.5);
    }

.footer-inner .footer-desc {
    line-height: 30px;
}

.footer-inner h5 {
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-links li {
    list-style-type: none;
}

    .footer-links li a {
        color: rgba(255,255,255,0.5);
        display: block;
        line-height: 30px;
        transition: all .3s;
    }

        .footer-links li a:hover {
            color: var(--primary);
        }

.footer-contact i {
    color: rgba(255,255,258,0.5);
    padding-right: 15px;
}

.footer a {
    color: rgba(255,255,258,0.5);
}

    .footer a:hover {
        color: var(--primary)
    }

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

.footer p {
    margin-bottom: 0;
}

.footer .copyright-area {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 35px 0 0 0;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

    .footer .copyright-area p {
        text-align: right;
    }

.footer-social-links ul {
    justify-content: flex-start;
}

    .footer-social-links ul li {
        display: inline-block;
    }

        .footer-social-links ul li a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            background: rgba(70, 70, 70, 0.3);
            display: block;
            font-size: 18px;
            color: rgba(255,255,255,0.5);
            margin-right: 15px;
        }

            .footer-social-links ul li a:hover {
                background: var(--primary);
                color: #fff;
            }

.footer-contact {
    display: flex;
    margin-bottom: 10px;
}

/*---Sub Page Styling ---*/
.sp-header {
    background: var(--primary) url('../img/logo-ab.svg') no-repeat right top;
    background-size: auto 110%;
    padding-top: 100px;
}

    .sp-header .container {
        display: flex;
        justify-content: center;
    }

    .sp-header h1 {
        margin-bottom: unset;
        font-weight: 700;
        color: #fff;
    }

.about-spage .left-wrapper .image-item {
    margin-bottom: 20px;
}

    .about-spage .left-wrapper .image-item img {
        width: 100%;
    }

.about-spage .right-wrapper {
    overflow: hidden;
}

    .about-spage .right-wrapper img {
        width: 100%;
    }

.about-spage img {
    border-radius: 5px;
}

.single-team {
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
}

    .single-team:hover {
        box-shadow: 0px 5px 25px rgb(47 128 237 / 30%);
    }

.team-style-2 .single-team .image {
    overflow: hidden;
    margin: auto;
}

.single-team .image img {
    width: 100%;
}

.single-team .info {
    padding: 30px;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .socials li {
        list-style-type: none;
    }

        .socials li a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary);
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 3px 8px;
        }

.services-sp-icon {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .services-sp-icon i {
        font-size: 8rem;
        color: #fff;
    }

    .services-sp-icon.icon-purple {
        background-color: #9f5093;
    }

    .services-sp-icon.icon-turq {
        background-color: #15c6ab;
    }

    .services-sp-icon.icon-blue {
        background-color: #2f78fb;
    }

    .services-sp-icon.icon-yellow {
        background-color: #ee9c32;
    }
    .services-sp-icon.icon-grey {
        background-color: #6A7F8C;
    }

.contact {
    display: flex;
    margin-bottom: 10px;
}

    .contact i {
        color: var(--primary);
        padding-right: 15px;
        font-size: 1.5rem;
    }

    .contact p {
        margin-bottom: unset;
    }

    .contact .detail {
        padding-top: 5px;
    }

    .contact a {
        color: #FFA40D;
    }

        .contact a:hover {
            color: var(--primary)
        }

/*--- forms ---*/
label {
    margin-bottom: 10px;
}

.input-setup {
    position: relative;
    margin-bottom: 20px;
}

    .input-setup i {
        position: absolute;
        right: 5px;
        top: 42.5px;
    }

.form-control {
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    padding: 12px 50px 12px 20px;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: 0px 5px 25px rgb(218 211 211 / 30%);
    transition: all 0.3s ease-out 0s;
}


/*==================================================
MEDIA QUERIES
==================================================*/
@media (max-width:1680px) {
}

@media (max-width:1440px) {
}

@media (max-width:1366px) {
}

@media (max-width:1280px) {
}

@media(max-width:1024px) {
    .main-header {
        padding: 10px 2vw;
    }

        .main-header.scrolled {
            padding: 10px 2vw;
        }
}


@media (max-width:768px) {
    h1 {
        font-size: 3.5rem;
    }

    .main-header {
        padding: 10px 8vw;
    }

        .main-header.scrolled {
            padding: 8px 8vw;
        }

        .main-header .menu-icon {
            display: block;
        }

        .main-header .menu-icon__line {
            -webkit-animation: closeMid 0.8s backwards;
            animation: closeMid 0.8s backwards;
            animation-direction: reverse;
        }

            .main-header .menu-icon__line::before {
                -webkit-animation: closeTop 0.8s backwards;
                animation: closeTop 0.8s backwards;
                animation-direction: reverse;
            }

            .main-header .menu-icon__line::after {
                -webkit-animation: closeBtm 0.8s backwards;
                animation: closeBtm 0.8s backwards;
                animation-direction: reverse;
            }

        .main-header .nav-links {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 6rem 0;
            width: 100vw;
            height: 100vh;
            font-size: 1.65rem;
            color: #fff;
            background: var(--primary);
            -webkit-transition: opacity .8s .5s, -webkit-clip-path 1s .5s;
            transition: opacity .8s .5s, -webkit-clip-path 1s .5s;
            transition: opacity .8s .5s, clip-path 1s .5s;
            transition: opacity .8s .5s, clip-path 1s .5s, -webkit-clip-path 1s .5s;
            -webkit-clip-path: circle(200px at top right);
            clip-path: circle(200px at top right);
        }

            .main-header .nav-links .nav-link {
                opacity: 0;
                -webkit-transform: translateX(100%);
                transform: translateX(100%);
                width: 100%;
                text-align: center;
            }

                .main-header .nav-links .nav-link a {
                    display: block;
                    padding: 2rem 0;
                }

        .main-header .menu-btn:checked ~ .nav-links {
            opacity: 1;
            -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
            display: block;
        }

            .main-header .menu-btn:checked ~ .nav-links .nav-link {
                opacity: 1;
                -webkit-transform: translateX(0);
                transform: translateX(0);
                -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transition: opacity 0.4s ease-in-out, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                padding: 0;
            }

                .main-header .menu-btn:checked ~ .nav-links .nav-link a {
                    margin: unset;
                    color: #fff;
                }

                .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
                    -webkit-transition-delay: .7s;
                    transition-delay: .7s;
                }

                .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
                    -webkit-transition-delay: .8s;
                    transition-delay: .8s;
                }

                .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
                    -webkit-transition-delay: .9s;
                    transition-delay: .9s;
                }

                .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
                    -webkit-transition-delay: 1s;
                    transition-delay: 1s;
                }

        .main-header .menu-btn:checked ~ .menu-icon {
            border-radius: 50%;
            -webkit-animation: pulse 1s;
            animation: pulse 1s;
        }

            .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
                background: #fff;
                -webkit-animation: openMid 0.8s forwards;
                animation: openMid 0.8s forwards;
            }

                .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
                    background: #fff;
                    -webkit-animation: openTop 0.8s forwards;
                    animation: openTop 0.8s forwards;
                }

                .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
                    background: #fff;
                    -webkit-animation: openBtm 0.8s forwards;
                    animation: openBtm 0.8s forwards;
                }

        .main-header .logo .logo {
            position: absolute;
            z-index: 10;
            top: 10px;
        }        
   

    section {
        padding: 50px 25px;
    }

    .home {
        height: unset;
        background: #ccc url(../img/BusinessHome.jpg) no-repeat center top;
        padding-top: 100px;
        min-height: 600px;
    }

        .home .col-sm-5 {
            width: 100% !important;
        }

        .home h1 {
            font-size: 3.5rem;
            font-weight: 700;
            padding: 0 20px;
        }

        .home p {
            padding: 0 20px;
        }

        .home .btn {
            margin-bottom: 15px;
        }

        .home .btns {
            padding: 0 20px;
        }

        .home .ms-5 {
            margin-left: unset !important;
        }

    .hib-white {
        margin: -150px -10px 0 -10px;
        flex-direction: column;
    }

        .hib-white li {
            margin-bottom: 15px;
        }

    .about .offset-1 {
        margin: 0;
    }

    .about img {
        width: 100%;
    }

    .pt-100 {
        padding-top: unset;
    }

    .p-5 {
        padding: 3em 0 !important;
    }

    .pricing .offset-1 {
        margin: 0;
    }

    .pricing .col-sm-6 {
        width: 100%;
    }

    .call-to-action {
        height: unset;
        max-height: unset;
    }

        .call-to-action .offset-3 {
            margin: 0;
        }

        .call-to-action .col-sm-6,
        .call-to-action .col-sm-3 {
            width: 100%;
        }

        .call-to-action .pr-100 {
            padding: unset;
        }

        .call-to-action .row {
            height: unset;
        }

    .footer {
        padding: 50px 25px;
    }

        .footer .offset-1 {
            margin-left: unset;
        }

        .footer .col-sm-3,
        .footer .col-sm-2 {
            margin-bottom: 25px;
        }

        .footer .copyright-area p {
            text-align: center;
        }

    /*---Sub Page Styling ---*/
    .sp-header {
        padding-top: 100px;
        background: var(--primary);
        background-image: unset;
        background-size: auto 110%;
    }

    .card {
        margin-bottom: 15px;
    }
}

@media (max-width:640px) {
}

@media (max-width:600px) {
}

@media (max-width:568px) {
}

@media (max-width:480px) {
}

@media (max-width:360px) {
    .section-title h2 {
        font-size: 1.75rem;
        font-weight: 600;
        line-height: 1.6em;
    }
}

@media (max-width:320px) {
    .home h1 {
        font-size: 3rem;
    }

    .pricing .box {
        padding: 30px 20px;
    }

    .pricing h4 {
        font-size: 36px;
    }
}
/*-- max height for iphone 6+, 7+ and 8+ --*/
@media screen and (max-width: 812px), screen and (max-height: 375px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .container, .container-md, .container-sm {
        max-width: 100% !important;
    }

    .nav div.logo a img {
        height: 40px;
    }

    h1 {
        font-size: 3rem;
    }

    .home {
        min-height: 650px;
    }

        .home .col-sm-5 {
            flex: 0 0 auto;
            width: 60%;
        }

    .hib-name-arrow h5 {
        font-size: 1rem;
    }

    .sh-content h1 {
        font-size: 2.5rem;
        line-height: 50px;
    }

    .pt-100 {
        padding-top: unset;
    }

    .pr-100 {
        padding-right: unset;
    }

    .section-title h2 {
        margin: 0;
        font-size: 2rem;
        font-weight: 600;
    }

    .pricing .box {
        padding: 30px 20px;
    }

    .pricing .offset-1 {
        margin-left: 0;
    }

    .pricing h4 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .call-to-action {
        height: unset;
    }

    .sp-header {
        background: var(--primary);
        background-image: none;
        padding-top: 100px;
    }

    .services .offset-1 {
        margin-left: 0;
    }

    .footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
