*{
  box-sizing: border-box;

  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
}

body {
    background: #1d44ac;
}

h1 {
    font-family: "calibri";
}



.member-sec {
    margin-bottom: 2.5%;
    padding-top: 60px;
}
.member-sec .head-h2 {
    font-size: 36px;
    color: #000;
}
.member-slider {
    margin-top: 30px;
}
.member-slider .slick-slide>div {
    width: 97%;
    margin: auto;
}
.member-slide {
    padding: 29px;
    margin-top: 20px;
    position: relative;
}
.member-slide img {
    max-width: 100%;
}

.btn-default {
    background: #f7941d;
    color: white;
    border-radius: 0px;
    font-size: 14px;
    font-family: "Myriadpro";
    padding: 12px 32px;
}

#search .btn-default:hover {
    color: white;
    background: #1d44ac;
}

.btn-default:hover {
    color: white;
    background: #3457b4;
}

.navbar {
    margin-top: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 12px;
    padding-left: 12px;
}

.dropdown-toggle::after {
    border-top: 4px solid;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    margin-left: 2px;
}

input[type="text"],input[type="email"] {
    padding: 13px 16px;
    color: white;
    background-color: #3457b4;
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: lighter;
    font-family: "Myriadpro";
    height: auto;
}

input[type="text"]:focus,input[type="email"]:focus {
    color: white;
    background-color: #3457b4;
}

input[type="text"]::placeholder,input[type="email"]::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}

input[type="text"]:-ms-input-placeholder,input[type="email"]:-ms-input-placeholder { 
    /* Internet Explorer 10-11 */
    color: white;
}

input[type="text"]::-ms-input-placeholder,input[type="email"]::-ms-input-placeholder { 
    /* Microsoft Edge */
    color: white;
}

textarea.form-control {
    padding: 13px 16px;
    color: white;
    background-color: #3457b4;
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: lighter;
    font-family: "Myriadpro";
    min-height: 144px;
}   

textarea.form-control:focus {
    color: white;
    background-color: #3457b4;
}

textarea.form-control::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}

textarea.form-control:-ms-input-placeholder { 
    /* Internet Explorer 10-11 */
    color: white;
}

textarea.form-control::-ms-input-placeholder { 
    /* Microsoft Edge */
    color: white;
}

.show-read-more .more-text{
    display: none;
}

.navbar-nav .dropdown-menu {
    padding: 0;
    min-width: 8rem;
    font-size: 14px;
    color: #212529;
    background-color: white;
    border: 0;
    border-radius: 0;
}

.dropdown-item {
    padding: 10px;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: white;
    background-color: #1d44ac;
}

.dropdown-item.active, .dropdown-item:active {
    color: white;
    background-color: #1d44ac;
}

.header-top {
    background: #1d44ac;
    color: white;
    padding: 7px 0 10px;
}

.header-top .header-top-left i {
    margin: 0 10px 0 0;
}

.header-top a {
    color: white;
}

.header-top a:hover {
    text-decoration: none;
    color: #f7941d;
}

.header-top .header-top-right {
    text-align: right;
}

.header-top .header-top-right i {
    margin: 0 10px 0 0;
}

.header-top .header-top-left img {
    margin-right: 12px;
}

.header-top .header-top-right img {
    margin-right: 12px;
}

.header-top .header-top-right p {
    margin-bottom: 0px;
    display: inline-block;
    font-family: "Myriadpro";
    font-size: 14px;
    text-decoration: none;
}

.header-top .header-top-right a {
    font-family: "Myriadpro";
    font-size: 14px;
}

header {
    position: absolute;
    width: 100%;
    z-index: 9;
    padding: 15px 0 0;
}


header .logo {
    max-width: 244px;
}

header .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #f7941d;
}

header .navbar-light .navbar-nav .nav-link {
    color: white;
    font-family: "calibri";
    font-size: 18px;
    font-weight: lighter;
}

header .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #f7941d;
}

header .navbar {
    padding-right: 0px; 
}

header #search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    
    opacity: 0;
}

header #search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}

header #search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}
header #search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
}
header #search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 50px;
}








.main-slider .slider-caption {
    position: absolute;
    top: 45%;
    width: 100%;
    color: white;
    text-align: center;
}
.main-slider .slider-caption h1 {
    font-size: 60px;
    font-weight: bold;
}
.main-slider .slider-caption p {
    max-width: 730px;
    margin: auto;
    font-family: "Myriadpro";
    font-size: 16px;
}

.main-slider .slick-slide {
    max-height: 630px;
    position: relative;
}






.services-tabs {
    color: white;
    font-family: "Myriadpro";
    max-width: 1366px;
    margin: 0 auto;
}

.services-tabs .services-item {
    padding: 90px 50px 60px;
    text-align: center;
}

.services-tabs .services-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.services-tabs .services-item span {
    font-size: 18px;
    font-weight: normal;
    display: block;
}

.services-tabs .services-tabs-text {
    min-height: 100px;
}

.services-tabs .services-item p {
    font-size: 16px;
}

.services-tabs .services-item a {
    font-size: 16px;
    color: white;
    border-bottom: 5px solid white;
    padding: 0 25px 10px;
    display: block;
    width: 132px;
    margin: 30px auto 0;
}

.services-tabs .services-item a:hover {
    text-decoration: none;
    color: #f7941d;
    border-color: #f7941d;
}

.services-tabs .accounting {
    background: url(../img/bg/accounting-bg.jpg) no-repeat;
    background-size: cover;
}

.services-tabs .tax {
    background: url(../img/bg/tax-bg.jpg) no-repeat;
    background-size: cover;
}

.services-tabs .payroll {
    background: url(../img/bg/payroll-bg.jpg) no-repeat;
    background-size: cover;
}





.home-about {
    color: white;
    font-family: "Myriadpro";
    max-width: 1200px;
    margin: 0 auto;
}

.home-about .home-about-item:first-child {
    padding: 70px;
}

.home-about .home-about-item {
    padding: 70px 0;
}

.home-about h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
}

.home-about h2 span {
    font-size: 24px;
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    color: #f7941d;
}

.home-about p {
    font-size: 16px;
    margin-bottom: 65px;
}








.home-business {
    background: url(../img/bg/busniss-bg.jpg) no-repeat;
    background-size: cover;
    color: white;
    font-family: "Myriadpro";
    border-bottom: 1px solid #3359b6;
}

.home-business .home-business-item:nth-child(1) {
    padding: 80px 16px 80px 40px;
    text-align: center;
}

.home-business .home-business-item:nth-child(2) {
    padding: 80px 40px 80px 16px;
    text-align: center;
}

.home-business .home-business-item .home-business-item-text {
    padding: 50px 30px;
}

.home-business .home-business-item .home-business-item-text h2 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 46px;
    font-family: "calibri";
}

.home-business .home-business-item .home-business-item-text h2 span {
    font-size: 24px;
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    color: #f7941d;
}

.home-business .home-business-item .home-business-item-text p {
    font-size: 18px;
}







.home-serving {
    color: white;
    font-family: "Myriadpro";
    border-bottom: 1px solid #3359b6;
    padding: 100px 0 0px;
    text-align: center;
}

.home-serving h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
}

.home-serving .home-serving-item {
    padding: 40px 15px;
}

.home-serving .home-serving-item .home-serving-item-top {
    padding: 100px 0px 80px;
}

.home-serving .home-serving-item:nth-child(3) .home-serving-item-top {
    padding: 90px 0;
}

.home-serving .home-serving-item .home-serving-item-top .hex-shap {
    width: 270px;
    height: 160px;
    background: #1b3fa0;
    position: relative;
    margin: 0 auto;
    padding: 13px 20px;
}

.home-serving .home-serving-item .home-serving-item-top .hex-shap img {
    margin-bottom: 30px;
}

.home-serving .home-serving-item .home-serving-item-top .hex-shap h3 {
    font-size: 24px;
    font-weight: bold;
}

.home-serving .home-serving-item:nth-child(3) .home-serving-item-top .hex-shap {
    width: 300px;
    height: 180px;
}

.home-serving .home-serving-item .home-serving-item-top .hex-shap:before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 133px solid transparent;
    border-right: 133px solid transparent;
    border-bottom: 80px solid #1b3fa0;
}

.home-serving .home-serving-item:nth-child(3) .home-serving-item-top .hex-shap:before {
    top: -90px;
    border-bottom: 90px solid #1b3fa0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
}

.home-serving .home-serving-item .home-serving-item-top .hex-shap:after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 133px solid transparent;
    border-right: 133px solid transparent;
    border-top: 80px solid #1b3fa0;
}

.home-serving .home-serving-item:nth-child(3) .home-serving-item-top .hex-shap:after {
    bottom: -90px;
    border-top: 90px solid #1b3fa0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
}

.home-serving .home-serving-item .home-serving-item-bottom {
    padding: 50px 0px;
}

.home-serving .home-serving-item:nth-child(3) .home-serving-item-bottom {
    padding: 30px 0px;
}

.home-serving .home-serving-item .home-serving-item-bottom p {
    font-size: 18px;
}







.testimonial-slider {
    background: url(../img/bg/testimonial-bg.jpg) no-repeat;
    color: white;
    background-size: cover;
    text-align: center;
    padding: 90px 0; 
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider h2 {
    margin-bottom: 20px;
    font-size: 48px;
    font-family: "calibri";
    font-weight: bold;
}

.testimonial-slider .testimonial-inner {
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-slider .testimonial-inner h3 {
    color: #f7941d;
    font-style: italic;
    font-size: 24px;
    font-family: "Myriadpro";
    font-weight: bold;
}

.testimonial-slider .testimonial-inner p {
    position: relative;
    margin: 20px 0 30px;
    font-size: 16px;
    font-family: "Myriadpro";
}

.testimonial-slider .testimonial-inner p::before {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: -22px;
    left: -30px;
    font-weight: 600;
    content: "\f10d";
    font-size: 25px;
}

.testimonial-slider .testimonial-inner p::after {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    bottom: -22px;
    right: -30px;
    font-weight: 600;
    content: "\f10e";
    font-size: 25px;
}

.testimonial-prev, .testimonial-next {
    position: absolute;
    font-size: 40px;
    top: 45%;
}

.testimonial-prev{
    left: 25px;
}

.testimonial-next {
    right: 25px;
}


/* about Us page */

.aboutus {
    background: url(../img/banners/aboutus.jpg) no-repeat;
    background-size: cover;
    padding: 200px 0 125px;
    color: white;
    text-align: center;
}

.aboutus h1 {
    font-size: 60px;
    font-weight: bold;
    font-family: "calibri";
    text-transform: uppercase;
}






.about-services-tabs {
    color: white;
    font-family: "Myriadpro";
    max-width: 1366px;
    margin: 0 auto;
}

.about-services-tabs .about-services-tabs-item {
    padding: 160px 90px 100px;
    text-align: center;
}

.about-services-tabs .about-services-tabs-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-services-tabs .about-services-tabs-item span {
    font-size: 18px;
    font-weight: normal;
    display: block;
}

.about-services-tabs .about-services-tabs-text {
    min-height: 100px;
}

.about-services-tabs .about-services-tabs-item p {
    font-size: 16px;
}

.about-services-tabs .growth {
    background: url(../img/bg/aboutus-1.jpg) no-repeat;
    background-size: cover;
}

.about-services-tabs .strategy {
    background: url(../img/bg/aboutus-2.jpg) no-repeat;
    background-size: cover;
}

.about-services-tabs .finance {
    background: url(../img/bg/aboutus-3.jpg) no-repeat;
    background-size: cover;
}



.about-remark {
    background: url(../img/bg/remark-bg.jpg) no-repeat;
    background-size: cover;
    color: white;
    font-family: "Myriadpro";
    padding: 160px 0 200px;
}

.about-remark-item {
    padding: 60px 30px 50px;
    background: #1d44ac;
}

.about-remark-item h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
}

.about-remark-item h2 span {
    font-size: 24px;
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.about-remark-item p {
    font-size: 16px;
    margin-bottom: 10px;
}


.about-video {
    background: url(../img/bg/about-video.jpg) no-repeat;
    background-size: cover;
    padding: 60px 0;
}





.about-best {
    color: white;
    max-width: 1366px;
    margin: 0 auto;
    font-family: "Myriadpro";
} 

.about-best .about-best-item:first-child {
    padding: 90px 50px 80px 70px;
    background: #1d44ac;
}

.about-best .about-best-item:nth-child(2) {
    padding: 0px;
}

.about-best .about-best-item h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
}

.about-best .about-best-item h2 span {
    font-size: 24px;
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    color: #f7941d;
}

.about-best .about-best-item p {
    font-size: 16px;
    margin-bottom: 10px;
}

.about-best .about-best-item p b {
    font-size: 18px;
    margin-bottom: 10px;
}

.about-best .about-best-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.about-brand {
    background: url(../img/bg/about-brand.jpg) no-repeat;
    background-size: cover;
    padding: 70px 0;
    color: white;
}

.about-brand-item {
    border: 1px solid #425db7;
    text-align: center;
    padding: 25px 30px;
    border-bottom: 3px solid #425db7;
}

.about-brand-item:nth-child(2) {
    border-right: none;
    border-left: none;
}

.about-brand-item img {
    margin-bottom: 40px;
}

.about-brand-item h3 {
    margin-bottom: 15px;
}


.video-link {
    position: relative;
    text-align: center;
}

.video-link img {
    min-height: 395px;
    object-fit: cover;
}

.video-link h3 span {
    display: block;
    font-weight: lighter;
    font-size: 24px;
    margin-bottom: 10px;
}

.video-link h3 {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    font-family: "Myriadpro";
    width: 100%;
}


/* Staff profiles page */

.staff-main {
    padding: 65px 0 90px;
    font-family: "Myriadpro";
}

.staff-main .staff-main-item:first-child {
    max-width: 850px;
    margin:  0 auto;
    text-align: center;
}

.staff-main .staff-main-item:first-child h3 {
    font-weight: normal;
    font-size: 30px;
    color: white;
    margin-bottom: 30px;
}

.staff-main .staff-main-item {
    text-align: center;
    padding: 0 40px;
}

.staff-main .staff-main-item .card {
    border: none;
    border-radius: 0;
    margin-top: 30px;
}

.staff-main .staff-main-item .card img {
    max-height: 290px;
    object-fit: cover;
}

.staff-main .staff-main-item .card .card-body {
    padding: 25px;
    border: 1px solid #d9d9d9;
}

.staff-main .staff-main-item h4 {
    font-weight: bold;
    font-size: 18px;
    color: #444444;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.staff-main .staff-main-item span {
    font-weight: normal;
    font-size: 12px;
    color: #444444;
    margin-top: 10px;
    display: block;
    text-transform: capitalize;
}




/* Services pages */


.services-help {
    padding: 50px 0 40px;
    color: white;
    text-align: center;
    font-family: "Myriadpro";
}

.services-help .services-help-item {
    max-width: 700px;
    margin: 0 auto;
}

.services-help .services-help-item h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: "calibri";
    text-transform: uppercase;
}

.services-help .services-help-item h2 span {
    font-size: 24px;
    font-weight: 300;
    display: block;
    text-transform: uppercase;
    color: #f7941d;
}

.services-help .services-help-item p {
    font-size: 16px;
    margin-bottom: 10px;
}



.services-services-tabs {
    color: white;
    font-family: "Myriadpro";
    max-width: 1366px;
    margin: 0 auto;
}

.services-services-tabs .services-services-tabs-item {
    padding: 130px 80px 80px;
    text-align: center;
}

.services-services-tabs .services-services-tabs-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0px;
    min-height: 52px;
    text-transform: uppercase;
}

.services-services-tabs .services-services-tabs-text {
    min-height: 100px;
}

.services-services-tabs .services-services-tabs-item p {
    font-size: 16px;
}

.services-services-tabs-item:nth-child(1) {
    background: url(../img/bg/services-1.jpg) no-repeat;
    background-size: cover;
}

.services-services-tabs-item:nth-child(2) {
    background: url(../img/bg/services-2.jpg) no-repeat;
    background-size: cover;
}

.services-services-tabs-item:nth-child(3) {
    background: url(../img/bg/services-3.jpg) no-repeat;
    background-size: cover;
}

.services-services-tabs-item:nth-child(4) {
    background: url(../img/bg/services-4.jpg) no-repeat;
    background-size: cover;
}

.services-services-tabs-item:nth-child(5) {
    background: url(../img/bg/services-5.jpg) no-repeat;
    background-size: cover;
}

.services-services-tabs-item:nth-child(6) {
    background: url(../img/bg/services-6.jpg) no-repeat;
    background-size: cover;
}



.services-indi-sec {
    background: url(../img/bg/ser-sec-bg.jpg) no-repeat;
    background-size: cover;
    color: white;
    font-family: "Myriadpro";
    border-bottom: 1px solid #3359b6;
}

.services-indi-sec .services-indi-sec-item:nth-child(1) {
    padding: 60px 0px 0px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.services-indi-sec-inner {
    max-width: 850px;
    margin: 0 auto;
}

.services-indi-sec .services-indi-sec-inner .services-indi-sec-item {
    padding: 40px 15px 40px;
    text-align: center;
}

.services-indi-sec .services-indi-sec-inner .services-indi-sec-item .services-indi-sec-item-text {
    padding: 50px 0px 0px;
    max-width: 380px;
    margin: 0 auto;
}

.services-indi-sec .services-indi-sec-inner .services-indi-sec-item h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
    text-transform: uppercase;
}

.services-indi-sec .services-indi-sec-inner .services-indi-sec-item h2 span {
    font-size: 24px;
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    color: #f7941d;
}

.services-indi-sec-item h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
    text-transform: uppercase;
}

.services-indi-sec-item h2 span {
    font-size: 24px;
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    color: #f7941d;
}

.services-indi-sec .services-indi-sec-item img {
    height: 270px;
    object-fit: cover;
}

.services-indi-sec .services-indi-sec-inner .services-indi-sec-item h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "calibri";
    text-transform: uppercase;
}





.account-ser {
    color: white;
    font-family: "Muli";
}

.account-ser .account-ser-item:nth-child(1) {
    padding: 40px 20px 40px 0px;
}

.account-ser .account-ser-item:nth-child(2) {
    padding: 100px 0px 100px 30px;
}

.account-ser .account-ser-item h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
    font-family: "Montserrat";
    text-transform: uppercase;
}



.detail-sec {
    color: white;
    font-family: "Myriadpro";
    padding: 50px 0 120px;
}

.detail-sec .detail-sec-item {
    padding: 20px 30px 15px;
    border: 2px solid white;
    text-align: center;
}

.detail-sec .detail-sec-item:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.detail-sec .detail-sec-item:nth-child(2) {
    border-bottom: none;
}

.detail-sec .detail-sec-item:nth-child(3) {
    border-right: none;
    border-bottom: none;
}

.detail-sec .detail-sec-item:nth-child(4) {
    border-bottom: none;
}

.detail-sec .detail-sec-item:nth-child(5) {
    border-right: none;
}

.detail-sec .detail-sec-item img {
    margin-bottom: 25px;
}

.detail-sec .detail-sec-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Montserrat";
    text-transform: capitalize;
}

.detail-sec .detail-sec-item p {
    font-size: 14px;
    font-family: "Muli";
}

.detail-sec .detail-sec-item:nth-child(5) p {
    max-width: 830px;
    margin: 0 auto;
}



.tax-ser {
    color: white;
    font-family: "Muli";
}

.tax-ser .tax-ser-item:nth-child(1) {
    padding: 40px 20px 40px 0px;
}

.tax-ser .tax-ser-item:nth-child(2) {
    padding: 90px 0px 120px 30px;
}

.tax-ser .tax-ser-item h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Montserrat";
    text-transform: uppercase;
}




.tax-detail-sec {
    color: white;
    font-family: "Myriadpro";
    padding: 50px 0 260px;
}

.tax-detail-sec .tax-detail-sec-item {
    padding: 20px 30px 15px;
    border: 2px solid white;
    text-align: center;
}

.tax-detail-sec .tax-detail-sec-item:nth-child(1) {
    border-right: none;
}

.tax-detail-sec .tax-detail-sec-item:nth-child(2) {
    border-right: none;
}


.tax-detail-sec .tax-detail-sec-item img {
    margin-bottom: 40px;
}

.tax-detail-sec .tax-detail-sec-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Montserrat";
}

.tax-detail-sec .tax-detail-sec-item p {
    font-size: 14px;
    font-family: "Muli";
}

.tax-detail-sec .tax-detail-sec-item:nth-child(5) p {
    max-width: 830px;
    margin: 0 auto;
}



.tax-detail-sec2 {
    color: white;
    font-family: "Myriadpro";
    padding: 50px 0 320px;
}

.tax-detail-sec2 .tax-detail-sec2-item {
    padding: 20px 30px 15px;
    border: 2px solid white;
    text-align: center;
}

.tax-detail-sec2 .tax-detail-sec2-item:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.tax-detail-sec2 .tax-detail-sec2-item:nth-child(2) {
    border-bottom: none;
}

.tax-detail-sec2 .tax-detail-sec2-item:nth-child(3) {
    border-right: none;
}


.tax-detail-sec2 .tax-detail-sec2-item img {
    margin-bottom: 25px;
}

.tax-detail-sec2 .tax-detail-sec2-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Montserrat";
    text-transform: capitalize;
}

.tax-detail-sec2 .tax-detail-sec2-item p {
    font-size: 14px;
    font-family: "Muli";
}

.tax-detail-sec2 .tax-detail-sec2-item:nth-child(5) p {
    max-width: 830px;
    margin: 0 auto;
}






/* Tax Resources */

.tax-res {
    padding: 70px 0 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.tax-res h2 {
    text-align: center;
    font-size: 36px;
    font-weight: lighter;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto;
}





.tax-detail-sec3 {
    color: white;
    font-family: 'Muli', sans-serif;
    padding: 20px 0 40px;
}

.tax-detail-sec3 .row {
    margin-left: 0px;
    margin-right: 0px;
}

.tax-detail-sec3 .tax-detail-sec3-item {
    padding: 25px;
    border: 2px solid white;
}

.tax-detail-sec3 .tax-detail-sec3-item:nth-child(1) {
    border-right: none;
    border-bottom: none;
}

.tax-detail-sec3 .tax-detail-sec3-item:nth-child(2) {
    border-bottom: none;
}

.tax-detail-sec3 .tax-detail-sec3-item:nth-child(3) {
    border-right: none;
}


.tax-detail-sec3 .tax-detail-sec3-item h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.tax-detail-sec3 .tax-detail-sec3-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
    text-transform: uppercase;
}

.tax-detail-sec3-item ul {
    padding-left: 30px;
    margin-bottom: 0px;
}

.tax-detail-sec3-item ul li {
    list-style: url(../img/icons/bullet.png);
    text-decoration: underline;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.tax-detail-sec3-item ul li a {
    color: white;
}

.tax-detail-sec3-item ul li:last-child {
    margin-bottom: 0px;
}

.tax-detail-sec3 .tax-detail-sec3-item p {
    font-size: 14px;
}


.text-res-next {
    padding-bottom: 160px;
    color: white;
}

.text-res-next h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.text-res-next h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.text-res-next ul li {
    list-style: url(../img/icons/bullet.png);
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.text-res-next ul li a {
    color: white;
}

.text-res-next p {
    font-size: 14px;
    font-family: 'Muli', sans-serif;
}


/* Contact us page */

.contact-sec {
    padding: 40px 0;
}

.contact-sec .contact-sec-item:nth-child(1) {
    padding: 30px 50px;
}

.contact-sec .contact-sec-item:nth-child(1) h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: "calibri";
    text-transform: capitalize;
    color: white;
}

.contact-sec .contact-sec-item:nth-child(1) h2 span {
    font-size: 24px;
    font-weight: 300;
    display: block;
    text-transform: uppercase;
    color: #f7941d;
}

.contact-sec .contact-sec-item:nth-child(1) .form-group {
    margin-bottom: 10px;
}

.contact-sec .contact-sec-item:nth-child(1) .btn-default {
    padding: 12px 42px;
    margin-top: 10px;
}

.contact-sec .contact-sec-item:nth-child(2) {
    background-color: #0e2a75;
    padding: 60px 30px;
    max-height: 419px;
}

.contact-sec .contact-sec-item:nth-child(2) h3 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 50px;
    font-family: "calibri";
    color: #f7941d;
}

.contact-sec .contact-sec-item:nth-child(2) h3 span {
    font-size: 24px;
    font-weight: 300;
    display: block;
    text-transform: uppercase;
    color: white;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info {
    padding: 0px 0 0 25px;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li {
    margin-bottom: 10px;
    padding: 0 0 0px 10px;
    list-style: none;
    color: white;
    font-weight: 300;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li:before {
    font-family: "Font Awesome 5 Free";
    position: relative;
    left: -10px;
    color: white;
    font-weight: 600;
    margin-right: 10px;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li:nth-child(1) img {   
    width: 10px;
    margin-left: 5px;
    margin-right: 15px;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li:nth-child(2) img {
    width: 15px;
    margin-left: 3px;
    margin-right: 15px;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li:nth-child(3) img {
    width: 15px;
    margin-left: 3px;
    margin-right: 15px;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li:last-child {
    border-bottom: none;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li i {
    margin-right: 10px;
    color: #666666;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li a {
    color: #999999;
}

.contact-sec .contact-sec-item:nth-child(2) ul.info li a:hover {
    color: #999999;
    text-decoration: none;
}




/* Blog Page */

.blogpage_container{
    padding: 0px;
    color: white;
}
.blog_detail_box:first-child  {
    padding: 50px 20px 0px;
}

.blog_detail_box{
    padding: 30px 20px 0px;
}

.blog_detail_box img {
    max-height: 356px;
    width: 100%;
    object-fit: cover;
}

.blog_detail_box .blog_detail_box_inner {
    padding: 0 5px;
}

.blog_detail_box .blog_detail_box_inner img {
    width: 16px;
    margin-right: 5px;
}

.blog_detail_box h2{
    font-weight: bold;
    font-size: 30px;
    margin: 30px 0px 10px 0px;
    font-family: "calibri";
}
.blog_date_author{
    color: #f7941d;
}

.blog_date_author.share {
    color: white;
}

.blog_date_author.share a:first-child {
    color: #f7941d;
    margin-left: 10px;
}

.blog_date_author a{
    color: #f7941d;
    margin-right: 10px;
}

.blog_date_author i{
    margin-right: 5px;
}
.blog_detail_box p{
    color: white;
    font-size: 14px;
    font-family: "calibri";
}
.blog_date_author{
    margin-bottom: 20px;
    font-size: 14px;
}
.blog_btn{
    background: #f7941d;
    border: 0px;
    border-radius: 6px;
    color: white;
    padding: 10px 20px;
    font-size: 13px;
}

.blog_search {
    padding: 50px 0 20px;
}


.blog_navigation {
    margin-top: 30px;
}
.blog_navigation .page-link{
    border: 0px;
    color: #4b4f54;
}
.blog_navigation .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #f7941d;
    border-color: #f7941d;
}
.blog_search input[type="text"] {
    padding: 9px 15px;
    border: solid 1px #e7e7e7;
    background: white;
    width: 100%;
    padding-right: 30px;
    font-size: 14px;
    font-family: "calibri";
    color: #6a6a6a;
}

.blog_search input[type="text"]::placeholder {
    color: #6a6a6a;
    opacity: 1; /* Firefox */
}

.blog_search input[type="text"]:-ms-input-placeholder { 
    /* Internet Explorer 10-11 */
    color: #6a6a6a;
}

.blog_search input[type="text"]::-ms-input-placeholder { 
    /* Microsoft Edge */
    color: #6a6a6a;
}

.blog_search button{
    position: absolute;
    right: 20px;
    background: none;
    border: 0px;
    color: #312c2a;
    top: 56px;
}

.blog_border_box{
}

.blog_border_box h3 {
    padding: 15px 20px;
    font-weight: bold;
    border-bottom: solid 1px #3255b2;
    font-size: 24px;
    margin: 0px;
    font-family: "calibri";
}

.blog_border_box h4 {
    font-weight: bold;
    font-size: 16px;
    color: #f7941d;
}

.blog_border_box_body{
    font-size: 13px;
    color: #616161;
    
}

.blog_border_box_body_inner {
    padding: 15px;
}

.blog_border_box_body a svg{
    width: 25px;
}
.recient_Article a{
    color: #f7941d;
    display: inline-block;
}
.recient_Article p {
    color: white;
    display: block;
    margin-bottom: 10px;
    font-family: "calibri";
    font-size: 14px;
}



.recient_Article hr{
    margin: 5px 0px;
    border-top: 1px solid #3255b2;

}
.blog_date_author a svg{
    width: 25px;
    background-color: white;
}
.author_box{
    border-top: solid 1px #3154b1;
    padding: 20px;
    margin-bottom: -1px;
    padding-left: 80px;
    position: relative;
}
.author_box h4{
    font-size: 20px;
    color: white;
    font-size: 16px;
    font-weight: normal;
    font-family: "calibri";
}
.author_box h2{
    font-size: 24px;
    font-weight: normal;
    font-family: "calibri";
    margin: 0px 0px 10px 0px;
}
.author_box p{
    color: white;
    font-size: 14px;
    font-family: "calibri";
    margin-bottom: 10px;
}
.author_box a{
    color: #f7941d;
}

.author_box a.see {
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: underline;
}

.author_box .blog_date_author{margin-bottom: 0px;}

.author_box .author_avatar {
    position: absolute;
    left: 14px;
    top: 20px;
    border-radius: 50%;
    height: 55px;
    width: 55px;
}
.blog_comment_box{
    border-top: solid 1px #3154b1;
    padding: 60px 0;
}
.blog_comment_box h2 {
    font-weight: bold;
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 40px;
    font-family: "calibri";
}

.blog_comment_box h2.leave {
    font-weight: bold;
    font-size: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
    font-family: "calibri";
}



ul.comments {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.comments li {
    clear: both;
    padding: 10px 0 0 115px;
}
ul.comments li .comment {
    margin-bottom: 10px;
}
.img-thumbnail {
    border-radius: 4px;
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 0px;
    line-height: 1.42857143;
    background-color: transparent;
    border: 1px solid #c1c0c6;
    border-radius: 50px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
ul.comments li .img-thumbnail {
    margin-left: -85px;
    margin-top: 15px;
    position: absolute;
}
ul.comments li img.avatar {
    height: 55px;
    width: 55px;
    border-radius: 50px;
}
ul.comments .comment-block {
    background: #3457b4;
    border-radius: 0px;
    padding: 20px 20px 30px;
    position: relative;
}
ul.comments .comment-arrow {
    border-bottom: 15px solid transparent;
    border-right: 15px solid #3457b4;
    border-top: 15px solid transparent;
    height: 0;
    left: -15px;
    position: absolute;
    top: 28px;
    width: 0;
}
ul.comments .comment-block .comment-by {
    display: block;
    font-size: 1em;
    line-height: 21px;
    margin: 0;
    padding: 0 0 5px 0;
}

ul.comments .comment-block .comment-by a {
    color: #f7941d;
}

ul.comments .comment-block .comment-by a:hover {
    color: #f7941d;
    text-decoration: none;
}

.blog-content .fa {
    color: #00aeef;
    font-size: 13px;
    margin: 10px 0px 30px 0px;
}
ul.comments .comment-block .date {
    color: #f7941d;
    font-size: 14px;
}
ul.comments li ul.reply {
    margin: 0;
}
.btn-comment {
    color: #fff;
    background-color: #00aeef;padding: 8px 30px;
}
.btn-comment:hover {
    color: #fff;
}
.comment-block p{
    font-size: 14px;
}
.staff_section{
    padding: 50px 0px;
}
.staff_section{
    text-align: center;
}
.user_Box_staff{
    width: 311px;
    display: inline-block;
    margin:0px 20px 30px 20px;
}
.shadow_staff_Box{
    background: #fff;
        box-shadow: 0px -8px 4px rgba(0,0,0,0.1);
    padding: 15px 5px;
}
.shadow_staff_Box h2 {
    font-family: 'Calibri';
    color: #444444;
    font-size: 20px;
    font-weight: bold;
}
.shadow_staff_Box p {
    font-size: 13px;
    color: #757575;
}
.blogpaging{
    margin: 50px 0 25px;
}
.blogpaging ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.blogpaging li{
    display: inline-block;
}
.blogpaging li .page-numbers{
    display: inline-block;
    padding: 8px 16px;
    color: white;
    background: #3457b4;
    font-size: 18px;
    font-family: "calibri";
}

.blogpaging li .page-numbers:hover {
    color: white;
    background: #f7941d;
    text-decoration: none;
}

.blogpaging .page-numbers.current{
    color: white;
    background: #f7941d;
}

.blog_category{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.blog_category li{
    padding: 10px 15px;
        border-bottom: solid 1px #e7e7e7;
}
.blog_category li a{
    color: #555555;
}
.blog_category li:last-child{
    border-bottom: 0px;
}



@media (max-width: 534px){
    ul.comments li img.avatar {    max-width: 100%;height: auto;}
    .comment-block .pull-right{float: none;}
    ul.comments li .img-thumbnail {display: none;}
    ul.comments li {    padding: 10px 0 0 0px;}
    ul.comments .comment-arrow{display: none;}
    .reply{margin-left: 15px !important;}
}





/* Privacy Policy */

.privacy-sec {
    padding: 60px 0 300px;
    color: white;
}

.privacy-sec .privacy-sec-item {
    
}

.privacy-sec .privacy-sec-item h2 {
    font-size: 36px;
    font-weight: bold;
    font-family: "calibri";
    margin: 30px 0px;
}

.privacy-sec .privacy-sec-item p {
    font-size: 16px;
    font-family: "Myriadpro";
}




footer {
    background: url(../img/bg/footer-bg.jpg) no-repeat;
    color: white;
    background-size: cover;
}

footer .footer-top {
    padding: 30px 0;
}

footer .logo {
    /* max-width: 144px; */
    margin: 0 0 30px 0;
}

footer .footer-top p {
    font-size: 14px;
    font-family: "Myriadpro";
}

footer .footer-top h3 {
    font-size: 30px;
    font-family: "Myriadpro";
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 20px; 
}

.footer-top ul.links {
    padding: 0 0 0 15px;
}  
  
.footer-top ul.links li {
    list-style: none;
    margin-bottom: 15px;
    font-family: "Myriadpro";
    font-size: 14px;
}

.footer-top ul.links li a {
    color: white;
    text-decoration: none;
}

.footer-top ul.info {
    padding: 0px;
}

.footer-top ul.info li {
    margin-bottom: 10px;
    padding: 0px;
    list-style: none;
}

.footer-top ul.info li .col-1 {
    padding-right: 24px;
    padding-left: 0;
}

.footer-top ul.info li:before {
    font-family: "Font Awesome 5 Free";
    color: #666666;
    position: relative;
    left: -10px;
    color: #f7941d;
    font-weight: 600;
}

.footer-top ul.info li img {   
    margin-right: 20px;
}

.footer-top ul.info li:nth-child(1) img  {   
    width: 10px;
    margin-left: 5px;
}

.footer-top ul.info li:nth-child(2) img  {
    width: 15px;
    margin-left: 3px;
}

.footer-top ul.info li:nth-child(3) img  {
    width: 15px;
    margin-left: 3px;
}

.footer-top ul.info li:last-child {
    border-bottom: none;
}

.footer-top ul.info li i {
    margin-right: 10px;
    color: #666666;
}

.footer-top ul.info li a {
    color: #999999;
}

.footer-top ul.info li a:hover {
    color: #999999;
    text-decoration: none;
}
  
footer .footer-bottom {
    padding: 10px 0;
    background: rgba(255,255,255, 0.1);
}  

.footer-bottom .copyright p {
    margin: 10px 0;
    font-size: 14px;
}

.footer-bottom .powerby p {
  display: inline-block;
  margin: 9px 11px 9px 0;
}

.footer-bottom .powerby {
    text-align: right;
  }

.footer-bottom .powerby img {
  width: 20%;
}




/*  ADA STYLING */


.yellow-link {
    color: yellow !important; 
}
.bigger-font_ada {
    font-size: 30x !important; 
}

.increase-word-spacing p {
    word-spacing: 15px;
}
.increased-line-height {
    line-height: 2; 
}

.extra-increased-line-height {
    line-height: 2.5; 
}

.super-increased-line-height {
    line-height: 3; 
}
.read-btn, .header_paragraph, h2 {
    color: #000000; 
}

/*  ADA STYLING MORE*/

.magnify-hover {
    font-size: 24px;
    transition: font-size 0.3s ease-in-out;
}

.magnify-hover:hover {
    font-size: 36px; 
}

.button-boxxxx {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    z-index: 999;
    right: 0;
/*    bottom: 165px;*/
}


.button-boxxxx a {
    background: red;
    color: #fff;
    padding: 7px 7px;
    border-radius: 50%;
    text-decoration: none;
    margin: 6px 6px 0px 0px;
}
.button-box_modal .modal-body button {
    float: right;
}
.button-link-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
.button-box_modal .modal-content {
    background-color: #eff1f5;
    margin-right: 15px;
}
.buttonn-main {
    background-color: #0048ff;
    padding: 10px 10px;
    text-align: center;
    margin: 6px 0px;
    border-radius: 6px;
    width: 100%;
}
.buttonn-main a {
    color: #fff;
    text-decoration: none;
}
.button-box_modal .modal-body h2 {
    text-align: center;
}
.button-box_modal .modal-dialog {
    margin-right: unset;
}



@media screen and (max-width:820px)   {
    .button-box_modal .modal-dialog {
        margin-right: auto !important; 
    }
    .button-box_modal .modal-content {
        margin-right: 8px;
    }
}

.qwerty {
    padding: 5px !important;
    border: 1px solid black !important;
    width: fit-content !important;
    color: rgb(203, 58, 58);
    margin: 10px;
}

/*  ADA STYLING */




