@font-face {
    font-family: OpenSans-Regular;
    src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: Roboto-Regular;
    src: url(../fonts/Roboto-Regular.ttf);
}

body {
    font-family: var(--body-fonts);
    font-size: var(--body-fonts-size);
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--bold-fonts);
    line-height: 1.4;
}

p {
    font-size: 18px;
    margin: 0 0 10px !important;
    color: #111111;
}

:root {
    --bg-gray-light: #EFEFEF;
    --body-fonts-size: 16px;
    --body-sm-fonts-size: 16px;
    --bold-fonts-size: 50px;
    --menu-fonts-size: var(--body-sm-fonts-size);
    --sub-menu-fonts-size: var(--xs-fonts-size);
    --xs-fonts-size: 14px;
    --footer-heading-fonts-size: 18px;
    --backtop-icon-fonts-size: 25px;
    --body-fonts: "OpenSans-Regular", sans-serif;
    --headline-fonts: Roboto-Regular;
    --bold-fonts: Roboto-Regular;
    --icon-family: FontAwesome;
    --angle-down: "\f107";
    --black: #333;
    --danger: #dc3545;
    --white: #ffffff;
    --white-50: rgba(255, 255, 255, 0.5);
    --gray: #949494;
    --primary-color: #818285;
    --secondry-color: #1F425D;
    --button-color: #000000;
    --bg-color: #116496;
    --primary-color-light: rgba(0, 52, 77, 0.65);
    --top-bar-bg: #ffc324;
    --facebook-color: #3578E5;
    --linkedin-color: #1485BD;
    --youtube-color: #FF0000;
    --insta-gradient-color-a: #F99B4A;
    --insta-gradient-color-b: #CC439A;
    --default-border-color: #CCCCCC;
    --btn-radius: 100px;
    --radius-100: 100px;
    --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
    margin: 0;
    padding: 0;
    z-index: 2;
    position: relative;
}

h1,
h2 {
    color: var(--primary-color);
    text-transform: capitalize;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

    a:focus {
        text-decoration: none;
    }

li {
    list-style: none;
}


.container {
    max-width: 1175px;
}

section {
    padding: 50px 0;
}

/* ************************************ */
/*RESPONSIVE NAVIGATION*/
.mobile-menu {
    display: none;
}

    .mobile-menu .circle {
        /* width: 40px; */
        height: 55px;
        /* line-height: 40px; */
        color: #fff;
        /* border-radius: 50%; */
        background: #116496;
        /* margin: 0 auto; */
        font-size: 18px;
        /* position: fixed; */
        /* right: 20px; */
        /* top: 15px; */
        display: flex;
        justify-content: center;
        align-items: center;
        /* z-index: 2; */
        /* bottom: 0; */
    }

        .mobile-menu .circle i {
            width: 30px;
            font-size: 25px;
        }

.mob-main-logo-wrapper {
    text-align: center;
}

.mobile-menu .social ul li a {
    justify-content: center !important;
}

.mobile-menu .mobile-cross {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 0 auto;
    font-size: 16px;
    position: fixed;
    right: 20px;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.mobile-menu .nveMenu {
    display: none;
    top: 254px;
    left: 0;
    right: 0;
    /* width: 280px; */
    height: 100%;
    background: #116496;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateY(-320px);
    padding: 30px 0 0 0px;
    text-align: center;
    justify-content: center;
    padding-bottom: 25px;
}

    .mobile-menu .nveMenu.is-opened {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        transition-timing-function: linear;
        transition-duration: .15s;
    }

/*.mobile-menu .nveMenu h1 {
  color: #000;
  font-weight: 700;
  }*/
.mobile-menu .overlay {
    position: fixed;
    top: 0;
    right: 0;
    /* width: calc(100% - 280px);*/
    height: 100%;
    background: rgba(0, 0, 0, 0.71);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

    .mobile-menu .overlay.is-on {
        opacity: 1;
        visibility: visible;
        z-index: 990;
    }

.mobile-menu .navlinks li {
    display: block;
    padding-bottom: 20px;
}

    .mobile-menu .navlinks li a {
        text-transform: capitalize;
        color: #fff;
        /* font-weight: 700; */
    }

        .mobile-menu .navlinks li a:hover,
        .mobile-menu .navlinks li a.active {
            text-decoration: none;
            padding-bottom: 10px;
            border-bottom: 3px solid #fff !important;
        }

/* .mobile-menu .navlinks li a:hover, .mobile-menu .navlinks li {
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 3px solid #fff !important;
    width: 90%;
    margin: auto;
} */

/*RESPONSIVE NAVIGATION*/

/* PRELOADER START */
.preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-image: url('../images/preloader.gif');
    background-repeat: no-repeat;
    background-color: #FFF;
    background-position: center;
}

/* PRELOADER END */
.active-class {
    border: 2px solid #000;
}

/* ************************************ */
/* **************Header CSS start********************** */
header#header {
    /* position: absolute; */
    width: 100%;
    z-index: 100;
    background: #116496;
}

.nav-wrapper:before {
    content: "";
    position: absolute;
    background: var(--bg-color);
    width: 100%;
    display: block;
    height: 55px;
    z-index: 2;
}

.header-wrapper:before {
    content: "";
    position: absolute;
    background: rgb(219 208 208 / 90%);
    width: 100%;
    display: block;
    z-index: 2;
    height: 180px;
    top: 0px;
}

header#myHeader .top-nav {
    background: #fff;
    padding: 40px 0px;
}

    header#myHeader .top-nav .info-wrapper {
        display: flex;
    }

        header#myHeader .top-nav .info-wrapper ul.info {
            display: flex;
            justify-content: end;
        }

            header#myHeader .top-nav .info-wrapper ul.info li {
                margin: 0 40px 0 0;
            }

.header-wrapper {
    width: 100%;
    /* background: rgb(255 255 255 / 61%); */
    padding-top: 10px;
    position: absolute;
}

    .header-wrapper.contact-page {
        position: unset;
    }

        .header-wrapper.contact-page:before {
            background: rgb(255 241 241 / 90%);
        }

#header .nav-wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .logo {
    /* text-align: left; */
    /* position: relative; */
    /* z-index: 999999; */
    margin-bottom: 10px;
}

    #header .logo img {
        width: 40%;
    }

#header .social ul {
    margin: 0px;
    padding: 0 60px;
}

    #header .social ul li {
        display: flex;
        justify-content: end;
        align-items: center;
    }

        #header .social ul li a i {
            color: #818285;
            font-size: 25px;
            margin-right: 10px;
        }

#header .social input#appt {
    border: none;
    font-size: 16px;
}

#header .social ul li a {
    color: var(--secondry-color);
    font-weight: 600;
    font-size: 16px;
}

.btm-btn {
    position: absolute;
    bottom: 90px;
}

    .btm-btn a {
        transition: all 0.3s ease-in-out;
    }

    .btm-btn img {
        width: 50px;
        height: 50px;
    }

#header .social ul li a {
    font-size: 18px;
    color: #818285;
    margin: 10px 15px 0;
    display: flex;
    align-items: center;
}

    #header .social ul li a:hover {
        color: #000000;
    }

.main-nav {
    margin: 0px;
    /* padding: 14px 0px 0px; */
    /* background-color: #116496; */
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
}

.nav-menu ul.main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 85%;
}

.nav-menu ul.main-nav {
    width: auto !important;
    padding: 0;
}

.nav-menu a {
    position: relative;
    margin-right: 5px;
    transition: 0.2s;
    padding: 10px 15px 12px;
}

    .nav-menu a:hover,
    .nav-menu .drop-down ul li:hover {
        /* color: var(--primary-color); */
        border-bottom: 4px solid #fff;
    }

.nav-menu li a.active {
    border-bottom: 4px solid #fff;
    /* font-weight: 600; */
}

.nav-menu li a,
.slider-wrapper h2 {
    text-transform: capitalize;
    color: #fff;
    font-size: 18px;
}

/* .nav-menu li {
  position: relative;
} */
.nav-menu li.drop-down a i {
    padding-left: 10px;
}

li.drop-down ul {
    display: none;
    position: absolute;
    padding: 0;
    list-style: none;
}

li.drop-down:hover ul {
    display: block;
}

.nav-menu .drop-down ul {
    background: #fff !important;
    padding: 20px 5px 20px 10px;
    border: 2px solid #fff;
    border-top: 0;
    width: 160px;
    margin-top: 2px;
    -webkit-transition: ease all 0.3s;
    transition: ease all 0.3s;
    box-shadow: 0px 16px 17px 3px #00000036;
    z-index: 99;
}

li.drop-down ul li a:hover {
    color: var(--primary-color) !important;
}

li.drop-down ul li a {
    color: #000000 !important;
    font-size: 14px;
    margin: 0;
}

#header .nav-wrapper ul.social-link li {
    margin: 0px 9px 0 0px;
}

    #header .nav-wrapper ul.social-link li a i {
        color: #116496;
    }

/* **************Header CSS ENd********************** */
/* **************Hero CSS start********************** */
section#hero {
    background-image: url(../Images/banner.jpg);
    background-position: center 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: calc(75vh - 0vh);
    padding: 0;
    overflow: hidden;
    position: relative;
}

section.about-header {
    padding-bottom: 30px;
}

section.council-header {
    padding-bottom: 30px;
}

.about-us {
    background-image: url('../Images/about.jpg') !important;
    background-position: left center !important;
    background-attachment: scroll !important;
}

.service {
    background-image: url('../Images/service.jpg') !important;
    background-position: center bottom !important;
    background-attachment: scroll !important;
}

/*section#hero {
    background-attachment: scroll !important;
}
*/
.service-wrapper:before {
    position: unset !important;
}

.service-wrapper .cardwrap {
    width: 100%;
    margin-bottom: 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 725px;
}

    .service-wrapper .cardwrap .icon img {
        filter: invert(1);
    }

    .service-wrapper .cardwrap .card-body h3 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #fff;
        font-weight: 500;
    }

    .service-wrapper .cardwrap .card-body p {
        color: #fff;
    }

#hero.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .3;
    background: #000000;
}

.banner-inner {
    text-align: center;
    margin: 0 auto;
}

    .banner-inner h2 {
        text-transform: capitalize;
        color: #fff;
        font-size: 34px;
        font-weight: 500;
    }

    .banner-inner p {
        color: #fff;
        font-size: 28px;
        padding-bottom: 30px;
        text-transform: capitalize;
    }

.banner-wrap {
    position: absolute;
    height: 78vh;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .logo:before {
    content: "";
    /* position: absolute; */
    clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
    top: -26px;
    z-index: -999;
    height: 145%;
    width: 145%;
    left: -16px;
    background: #ffffff !important;
    margin: auto;
}

#header .nav-wrapper ul.social-link li a i:hover {
    color: #fff;
    background: #000;
}

.btn {
    padding: 10px 30px;
    text-transform: capitalize;
    border-radius: 0;
    z-index: 2;
    position: relative;
    border: none;
    color: #fff;
    text-decoration: none !important;
    transition: all .3s linear;
    font-size: 18px;
}

.btn-primary {
    background: var(--black);
    border-radius: 5px;
    margin-top: 10px;
}

    .btn-primary:hover {
        background: #ffffff;
        color: var(--black);
    }

.btn-secondary {
    background: var(--button-color);
    font-size: 18px;
}

    .btn-secondary:hover {
        background: var(--primary-color);
    }

#hero:after {
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    bottom: -1px;
    left: 0px;
    right: 0;
    margin: auto;
    clip-path: polygon(50% 73%, 100% 0, 100% 100%, 0 100%, 0 0);
}

/* **************Hero CSS End********************** */


/* **************image-detail CSS start********************** */

section.image-detail.text-center {
    color: #fff;
    padding: 0px;
    position: relative;
    background: var(--bg-color);
    padding-top: 100px;
    padding-bottom: 50px;
}

section.image-detail:before {
    content: "";
    position: absolute;
    height: 60px;
    width: 234px;
    z-index: 999;
    background: #fff;
    top: -1px;
    left: 0px;
    right: 0;
    margin: auto;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.video-section {
    background-image: url(../Images/john-bg.jpg) !important;
}

.top-headtext {
    padding: 0px 20px 40px;
    text-align: center;
}

a.link {
    color: #428bca;
    font-weight: 600;
}

.top-headtext h1 {
    font-size: 46px;
    position: relative;
    margin-bottom: 30px !important;
}

section#row1 .top-headtext h1 {
    text-transform: inherit;
}

.top-headtext h1 span {
    color: #333;
    font-size: 40px;
    font-weight: 400;
}

.top-headtext h1:before {
    content: "";
    position: absolute;
    background: #818285;
    width: 100px;
    height: 2px;
    left: 0;
    right: 0px;
    bottom: -15px;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 34px;
}

    .section-title h2:last-child {
        font-size: 34px;
        color: var(--black);
        font-weight: 500;
        margin-top: 40px;
    }

.section-title h3 {
    font-size: 40px;
    margin-bottom: 45px !important;
    color: #333;
}

    .section-title h3:before,
    #about .section-title h2:before {
        content: "";
        position: absolute;
        background-color: #818285;
        width: 100px;
        z-index: 9999;
        height: 2px;
        bottom: -35px;
        margin: auto;
        right: 0;
        left: 0;
    }

.section-title p {
    padding: 10px 0px;
    color: #333;
}

.car-wrapper {
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: auto;
}

.cardwrap {
    position: relative;
    display: block !important;
    color: #000 !important;
    height: auto !important;
    background: #fff;
    /* padding: 15px; */
    margin: 0 10px;
    /* box-shadow: 0px 5px 5px 0px #e6e6e6; */
    z-index: 2;
    /* border-radius: 10px; */
    width: 33%;
}

section.image-detail .car-wrapper .cardwrap {
    padding: 20px;
}

.cardwrap .card-body a.btn {
    margin: 20px;
}

.cardwrap .icon img {
    border-radius: 10px;
    width: 180px;
    height: 150px;
}

section.image-detail .cardwrap .icon {
    border: none;
}

.cardwrap .card-body h3 {
    color: var(--secondry-color);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 10px;
}

.cardwrap .card-body h3 {
    margin-bottom: 0;
}

.cardwrap .card-body p {
    padding-bottom: 20px;
}

section.image-detail .car-wrapper {
    width: 100%;
}

section.image-detail .cardwrap .icon img {
    width: auto;
    height: auto;
    border-radius: 0px;
}


/* **************image-detail CSS End********************** */
/* **************MArkeeting CSS start********************** */
section.marketing-section .content p {
    color: #fff;
}

section.marketing-section {
    background: url(../Images/pat1.png);
    position: relative;
    color: #fff;
}

    section.marketing-section ul.checklist {
        text-align: left;
        padding-bottom: 10px;
    }

    section.marketing-section .content h6 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px !important;
    }

.sec-2 h2 {
    color: #fff;
}

.sec-2 .content {
    padding: 20px 50px 20px 50px;
}

.content h2 {
    color: #fff;
    font-size: 34px;
}

section.marketing-section.sec-3 {
    padding-bottom: 60px;
}




section.marketing-section .media-box .figure {
    border: 4px solid;
}

section.marketing-section .media-box img {
    left: -10px;
    top: -15px;
}



/* **************MArkeeting CSS End********************** */
/* **************CTA CSS Start********************** */
.cta {
    background: var(--button-color);
    position: relative;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff !important;
}

.cta-text-inner {
    width: 60%;
}

.cta-inner h2 {
    color: #fff;
}

.cta-inner .cta-btn {
    background: var(--primary-color);
    padding: 10px 40px;
}

.cta-btn:hover {
    background: var(--secondry-color) !important;
}

/* **************CTA CSS End********************** */
/* **************Footer CSS Start********************** */

footer {
    background: #fff;
    padding: 20px 0px 0;
    border-top: 5px solid #818285;
}

.footer-info {
    text-align: center;
}

    .footer-info p {
        text-align: left;
    }

    .footer-info img {
        width: 40%;
    }

    .footer-info p {
        width: 80%;
    }

.footer-link h4 {
    color: var(--primary-color);
    text-transform: capitalize;
    font-size: 18px;
    padding-bottom: 20px;
}

.footer-link li {
    padding: 10px 0px;
    display: flex;
    align-items: baseline;
    color: var(--bg-color);
    font-size: 18px;
}

    .footer-link li i {
        font-size: 20px;
        color: #116496;
        padding-right: 10px;
    }

    .footer-link li a {
        color: var(--bg-color);
        font-size: 18px;
        transition: 0.3s;
    }

        .footer-link li a:hover,
        .footer-social-wrapper a:hover,
        .copyrightcontent a:hover {
            color: var(--primary-color);
        }

.footer-social-wrapper a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    margin: 0 7px 7px 0px;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    height: 35px;
    width: 35px;
}

    .footer-social-wrapper a i {
        font-size: 14px;
    }

ul.social-link {
    /* padding: 10px 0px 20px; */
    display: flex;
}

.footer-btm {
    background-color: #000;
    padding: 22px 0px;
    text-align: center;
}

    .footer-btm ul li a {
        font-size: 18px;
        color: #fff;
        text-transform: capitalize;
    }

        .footer-btm ul li a:hover,
        .footer-btm ul li a:active {
            color: #818285;
        }

    .footer-btm ul {
        display: flex;
        justify-content: center;
        padding: 10px 0px;
        display: -webkit-inline-box;
    }
    ul.navbar-nav.footer-nav li a.active {
    color: var(--primary-color);
    }

        .footer-btm ul li {
            margin: 0 20px 0 0px;
        }

.social-link li a i {
    line-height: 35px;
    height: 35px;
    width: 35px;
    background: #ffffff;
    color: #000;
    font-size: 20px;
    text-align: center;
    border-radius: 100%;
}

.footer-btm .social-link li a i:hover {
    background: #818285;
    color: #fff;
}

.footer-btm ul li a.active {
    color: var(--primary-color);
}

.copyright {
    background: #f1f1f1;
    color: #2b2b2b;
    padding: 14px 0px;
}

.copyrightcontent {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: auto;
    align-items: center;
}


    .copyrightcontent p {
        font-size: 15px;
        color: #2b2b2b;
        margin: 0 !important;
    }

    .copyrightcontent a {
        color: #000;
        text-transform: capitalize;
        font-weight: 600;
        /* font-size: 14px; */
    }

/* **************Footer CSS End********************** */



/* **************About John page CSS********************** */

section#about .right-content {
    text-align: left;
    color: #ffff;
    padding-left: 40px;
}

    section#about .right-content p {
        color: #fff;
    }

    section#about .right-content h2 {
        color: #ffff;
        line-height: 0.8;
        padding-bottom: 10px;
    }

section#about {
    background-image: url(../Images/pat1.png);
    padding: 50px 0px;
}

    section#about .figure img {
        padding: 20px;
        background: #fff;
    }

section.about-img {
    background-image: unset !important;
}

section.work {
    background: #818285;
    padding: 0px 0px;
    color: #fff;
}

.work .top-headtext {
    padding: 25px 20px;
    text-align: center;
}

section.work .top-headtext h2 {
    color: #fff;
    font-size: 34px;
}

section.work .top-headtext p {
    color: #fff;
}

section.about-img h2 {
    font-size: 34px;
    color: var(--black);
}

section#about .right-content h3 {
    margin-top: 40px;
    text-transform: capitalize;
}

section#about .left-content h2 {
    color: #111111;
    text-align: left;
}

section#about .left-content p {
    color: #111111;
    text-align: left;
}

section.about-img .figure {
    background: #f3f3f3 !important;
    padding: 20px;
}

ul.checklist li {
    display: flex;
    padding-bottom: 10px;
    align-items: center;
}

    ul.checklist li i {
        margin-right: 0.5rem;
        color: #fff;
        font-size: 22px;
    }

.years h4 {
    font-size: 20px;
    display: inline-block;
    padding: 20px;
    background: #c8032b;
}

.tab-accodians {
    width: 100%;
}

.accordion h2 button {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(221, 221, 221, 0.48);
    border-radius: 0px !important;
    font-weight: 700;
    color: var(--bg-color);
}

div#accordionExample .accordion-button:not(.collapsed) {
    background-color: var(--bg-color);
    color: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

div#accordionExample .accordion-button:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Pro';
    color: #666666;
    float: right;
    font-size: 25px;
    background-image: none;
    text-align: center;
    font-weight: 900;
    height: auto;
    margin-left: 15px;
}

div#accordionExample .accordion-button:not(.collapsed):after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f107";
    color: #fff;
    float: right;
    font-size: 25px;
    text-align: center;
    font-weight: 900;
}

.accordion-body {
    background: rgba(221, 221, 221, 0.48);
    margin-bottom: 10px;
    color: #111111;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.council-header .section-title p {
    font-size: 18px;
    padding-top: 10px;
}

section#about .right-content a {
    font-size: 34px;
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

section#about .right-content p.italic {
    font-style: italic;
    font-weight: 700;
}

section#about .right-content a:hover {
    color: #fff;
    /* transition: all .3s linear; */
}

section#about .right-content p:last-child a {
    font-size: 18px;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive iframe {
        width: 100%;
        height: 655px;
    }

.content h3 {
    font-size: 24px;
    color: #12689b;
}

section.sec-2 .content a.btn {
    background: #818285;
}

    section.sec-2 .content a.btn:hover {
        background: #111111;
        color: #fff;
    }

section.sec-2 .sub-heading {
    padding-top: 50px;
}

    section.sec-2 .sub-heading h3 {
        color: #111111;
        font-size: 24px;
        padding-top: 50px;
        font-weight: 500;
    }

    section.sec-2 .sub-heading:before {
        content: "";
        position: absolute;
        background: #12689b;
        width: 100%;
        height: 4px;
        left: 0;
    }

section.post-cast-section h3 {
    font-size: 22px;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.sec-2 .content ul.checklist li {
    color: #12689b;
    font-size: 18px;
    text-align: left;
    align-items: baseline;
}

    .sec-2 .content ul.checklist li i {
        color: #12689b;
        font-size: 22px;
        font-weight: 400;
        margin-right: 10px;
    }

hr {
    border-top: 5px solid !important;
}

div#Ciafone-Endorsed-By-COBA img {
    width: 100%;
    margin-bottom: 20px;
}

div#Ciafone-Endorsed-By-COBA {
    padding: 50px 0px;
}

section.post-cast-section a {
    color: var(--bg-color);
    font-weight: 600;
    /* text-decoration: underline; */
}

section.post-cast-section i {
    font-weight: 600;
}

.blog-wrapper {
    padding: 0 0 30px 0px;
}

    .blog-wrapper img {
        width: 100%;
        height: 246px;
    }

    .blog-wrapper p {
        padding-bottom: 10px;
    }

section.post-cast-section a.btn-secondary {
    color: #fff;
}

section.post-cast-section .blog-align {
    margin: auto;
    display: flex;
    justify-content: center;
}

.pad {
    padding: 50px 0px;
}

section.public-wrapper {
    background: var(--bg-color);
}

#about .embed-responsive iframe {
    width: 100%;
    height: 400px;
}

.box .inner-box h3 {
    font-size: 22px;
}

.box .inner-box p {
    color: #000;
}

.box .inner-box {
    margin: 0;
    background: #f6f6f6;
    position: absolute;
    z-index: 99;
    transition: all .25s ease-in-out;
    text-align: center;
}

div#box-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: baseline;
}

section.public-wrapper .box {
    background-color: #fff;
    max-height: revert !important;
    color: #000;
    border-radius: 0px;
    border: 0px;
    width: 33.3%;
    margin-right: 30px;
    position: relative;
}

.inner-head .accordion-button:not(.collapsed) {
    background-color: #e5e5e5 !important;
    color: #333;
}

.inner-head .accordion-button {
    text-align: center;
    display: block;
}

.inner-head i {
    color: #000 !important;
    text-align: center;
    font-size: 22px !important;
    margin: 0px !important;
}

.inner-head h3 {
    font-size: 22px;
    padding: 20px 0px;
    text-align: center;
}

section#about .interview-wrap a {
    font-size: 18px;
}

.tab-accodians h2 {
    font-size: 34px;
}

section.faqs-wraper .container-fluid {
    width: 1700px;
}

.tab-accodians .figure {
    padding: 0 20px;
}

    .tab-accodians .figure img {
        width: 100%;
        height: 830px;
    }

.accordion h2 button:hover {
    background: var(--bg-color);
    color: #fff;
}

.accordion h2:hover .accordion-button:after {
    color: #ffffff !important;
}

.header-wrapper.contact-header {
    position: unset;
    background: #fff;
}

section.contact-section {
    background-image: url(../Images/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 15%;
}

    section.contact-section:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        opacity: 0.8;
        background: rgb(17 17 17 / 85%);
    }

.contact-form {
    z-index: 999;
    background: #fff !important;
}

    .contact-form p {
        color: var(--black) !important;
        margin-bottom: 20px !important;
    }

    .contact-form .form-group {
        padding-bottom: 15px;
    }

        .contact-form .form-group label {
            margin-bottom: 5px;
        }

label.error {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 80%;
    color: #fff;
    background-color: var(--danger);
}

.z-index {
    z-index: 999;
}

.contact-form h2 {
    color: #000 !important;
}

.contact-section .z-index h2 {
    font-size: 34px;
    color: #fff;
}

section.contact-section .z-index p {
    color: #fff;
}

.row.contact-wrap {
    padding: 30px 0px;
}

.contact-wrap .box {
    padding: 28px;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
}

.contact-info {
    padding: 33px;
    z-index: 99;
}

.z-index iframe {
    min-height: 715px;
    border: 15px solid #fff;
}

.contact-info .box i {
    color: #fff;
    width: 100%;
    font-size: 35px;
    margin-bottom: 15px;
    height: 50px;
    margin: 0;
}

.box p {
    text-align: center;
    color: #fff;
}

.box a, .box span {
    color: #fff;
    font-weight: 700 !important;
    font-size: 18px;
}

    .box a:hover {
        color: #e0e0e0;
    }

.video-section .right-content {
    padding-left: 30px !important;
}

.center-align .icon-video {
    margin-right: -50px;
}

.icon-video {
    width: 80px;
    height: 80px;
    background: #c8032b;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    margin-right: -40px;
}

    .icon-video span {
        font-size: 20px;
        color: #fff;
    }

.popup-overlay {
    visibility: hidden;
}

.popup-content {
    visibility: hidden;
}

.popup-overlay.active {
    visibility: visible;
}

.popup-content.active {
    visibility: visible;
}

.bouncingball {
    border-radius: 100%;
    animation: bounce 1s;
    transform: translateY(0px);
    animation-iteration-count: 2;
}

@keyframes bounce {
    0% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }

    50% {
        top: 30px;
        -webkit-animation-timing-function: ease-out;
    }

    100% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
}



.contact-form .btn {
    background-color: var(--bg-color);
    padding: 11.5px 20px;
    width: 200px;
    border-radius: 5px;
}

    .contact-form .btn:hover {
        background: #818285;
    }

.contact-form .btn-wrapper {
    margin-top: 30px !important;
    text-align: center;
}

.Law-Office .content ul li {
    list-style: disc;
}

.Law-Office .content ul {
    padding-left: 20px;
    padding-bottom: 20px;
}

    .Law-Office .content ul li {
        text-align: left;
    }

.video h2 {
    font-size: 30px;
}







.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active {
    color: #fff;
    border-bottom: 4px solid #fff;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-size: 15px;
    padding-top: 0.9rem;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    font-weight: 400;
    opacity: 1 !important;
    position: relative;
}
ul.navbar-nav.ml-auto {
    display: -webkit-inline-box;
}



ul.list-style-hiphen li {
    display: flex;
    align-items: baseline;
    font-size: 14px;
}

ul.list-style-hiphen li i {
    font-size: 8px;
    color: #000000;
    margin: 0 10px 0 0px;
}

.list-right-cstelm {
    justify-self: end;
}

@media only screen and (max-width: 767.89px) {
    .list-right-cstelm {
        justify-self: start;
    }
}