
/* custom css for fonts */
@import "../css/fonts.css";


h1,h2,h3,h4,h5,h6 {
    font-family: "Myriadpro", sans-serif;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    color: white;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

.number {
    display: inline;
}

a {
    font-family: "Myriadpro", sans-serif;
    font-weight: normal;
    color: white;
    font-size: 16px;
}

a:hover {
    color: #25aae3;
    text-decoration: none;
}

p {
    font-family: "Myriadpro", sans-serif;
    font-weight: normal;
    color: white;
    font-size: 16px;
    line-height: 1.3;
}

label {
    color: white;
}

span {
    color: #25aae3;
    font-size: 24px;
    font-family: "Myriadpro", sans-serif;
    text-transform: uppercase;
    line-height: 0.7;
}

.btn-theme {
    font-size: 16px;
    font-family: 'Myriadpro';
    font-weight: normal;
    padding: 10px 20px;
    background: #25aae3;
    color: white;
    border-radius: 0px;
    border: 2px solid transparent;
}

.btn-theme:hover {
    background: transparent;
    color: #25aae3;
    border: 2px solid #25aae3;
}


.form-group {
    margin-bottom: 10px;
}

.grey-c {
    color: #a7a7a7;
    display: inline;
    margin: 0 10px;
}

.form-control {
    font-family: 'Roboto', sans-serif;
    padding: 13px;
    height: auto;
    border: 0px;
    font-size: 14px;
    color: white;
    background: rgba(255,255,255,0.1);
    border-radius: 0px;
}

.form-control:focus {
    color: white;
    background: rgba(255,255,255,0.1);
}

.form-control::-webkit-input-placeholder { /* Edge */
    color: white;
}
  
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
}
  
.form-control::placeholder {
    color: white;
}



body {
    font-family: "Myriadpro", sans-serif;
    font-weight: normal;
    font-size: 14px;
    color: white;
    background:url(../images/bg/main-bg.jpg);
}

.main-title {
    text-align: center;
    position: relative;
}

.main-title h1 {
    font-weight: 300;
}

.main-title .container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.main-title-bg {
    width: 100%;
}

.main-title-bg img {
    width: 100%;
}


/* Header css */

.header-shad img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
}

header span {
    color: white;
    font-size: 16px;
    text-transform: none;
    margin-left: 15px;
}

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    
    -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;
}

#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;
}

.search-inner-cont {
    position: absolute;
    top: 50%;
    width: 40%;
    left: 0;
    right: 0;
    margin: 0px auto;
    margin-top: -51px;
}

.search-inner-cont h1 {
    text-align: center;
    text-transform: capitalize;
    font-size: 48px;
}

.search-inner {
    position: relative;
}

#search input[type="search"] {
   
    color: rgb(255, 255, 255);
    font-size: 22px;
    font-weight: 300;
    text-align: left;
    border: 0px;
    outline: none;
    background: white;
    color: #2a2a2a;
    padding: 15px;
    width: 100%;
}
#search .btn {
    position: absolute;
    top: 14%;
    right: 10px;
    background: #00b5ef;
    color: white;
    border-radius: 0;
    padding: 10px 15px;
}
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
	opacity: 1;
	padding: 10px 17px;
	font-size: 27px;
}







.navbar {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 2;
    top: 0px;
}

.menuOverlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(12,23,52);
  background-color: rgba(12,23,52, 0.9);
  overflow-y: auto;
  transition: 0.5s;
	z-index: 3;
}

.overlay-content {
      position: relative;
    top: 6%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-family: 'Calibri';
}

.menuOverlay a {
  padding: 0px;
  text-decoration: none;
  font-size: 60px;
  color: #fff;
  display: inline-block;
  transition: 0.3s;
}

.menuOverlay a:hover, .menuOverlay a:focus {
  color: #f1f1f1;
}

.menuOverlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}


.nav-link{
	font-family: 'Calibri';
}
.menuOverlay .dropdown-toggle::after {
        display: inline-block;
    margin-left: .255em;
    vertical-align: -1px;
    content: "\f107";
    font: normal normal normal 28px/1 FontAwesome;
    border: 0px;
}
.nav-item ul{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.nav-item ul li a{
	font-size: 30px;
}
.navbar a{
	color: #fff;
	padding: 15px 6px 0px;
}
.header_img{
	margin-bottom:-6px;
}
.header_img h1{
	font-family: 'Calibri';
    font-size: 60px;
    margin-top: -158px;
    text-transform: none;
}
.header_img h2{
    font-family: 'Calibri';
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 40px;
}
.header_img p{
	max-width: 650px;
    margin: 0 auto;
	font-size: 18px;
}
.home_services_container{
	padding:200px 0px;
	background: url("../images/bg_left.png") no-repeat right;
	    background-size: contain;
	margin: -100px 0px;
}
.home_services_container h1{
	font-family: 'Calibri';
	    font-size: 30px;
}
.heading_separator {
    width: 80px;
    border-top: solid 4px #f99d1b;
    margin: 0px 0px 17px 0px;
}
.home_services_container a{
	    font-weight: 500;
    margin: 0px 0px 10px 0px;
    display: inline-block;
}
.remarkable_container{
	padding:200px 0px;
	background: url("../images/bg_right.png") no-repeat left;
	background-size: contain;
	margin: -200px 0px 0px 0px;
}
.remarkable_container h1{
	font-family: 'Calibri';
	    font-size: 40px;
	    margin-top: 95px;
}
.services_business_container{
	background: url("../images/services_bg.jpg") no-repeat;
	padding: 80px 0px;
	background-size: cover;
}
.services_business_container h1{
	font-family: 'Calibri';
	margin-top: 20px;
}
.services_container{
	background: url("../images/bg_bottom2.png") center top no-repeat;
	text-align: center;
}
.services_container h1{
	font-weight: 300;
	text-transform: uppercase;
	padding-top: 130px;
}
.services_container h2{
	text-transform: uppercase;
	color: #f99d1b;
	font-family: 'Calibri';
	font-size: 48px;
	margin-bottom: 50px;
}
.services_home_para{
	font-size: 16px;
	margin-bottom: 100px;
}
.services_bg_inner{
	padding: 10px;
	background: #f99d1b;
}
.services_detailBox{
	margin-bottom: 30px;
}
.about_process{
	text-align: center;
}
.about_process h1{
	font-family: 'Calibri';
	text-transform: uppercase;
	color: #fff;
	font-size: 23px;
	margin: 30px 0px;
}
.about_process p{
	font-size: 15px;
	color: #d8d8d8;
}
.about_section{
	padding: 200px 0px;
	background: url("../images/bg_left.png") no-repeat right;
	    background-size: contain;
	margin: -100px 0px;
}
.video_background_about {
    background: url(../images/video_bg.jpg) no-repeat;
    background-size: cover;
    padding: 60px 0px;
    text-align: center;
}
.bestServices{
	padding: 200px 0px;
	background: url("../images/bg_right.png") no-repeat left;
	    background-size: contain;
	margin: -100px 0px;
}
.para_bold_text{
	font-size: 18px;
	color: #f99d1b;
}
.about_section h1{
	margin-top: 100px;
}
.ebb_box{
	padding:0px 0px 80px 0px;
	text-align: center;
}
















header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #0b1530;
    height: 105px;
}

header.header-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: transparent;
    height: auto;
}

header .logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

header .navbar {
    padding: 0;
}

header .navbar-expand-md .navbar-nav .nav-link {
    padding-left: 30px;
}

header .navbar-light .navbar-nav .nav-link {
    color: white;
    padding: 30px 20px;
    font-family: "calibri";
    font-size: 18px;
}

header .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #00adef;
}

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: #00adef;
}

header .dropdown-menu {
    top: 100%;
    min-width: 8rem;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #484848;
    background-color: white;
    border: 0;
    border-radius: 0;
}

header .dropdown-item {
    padding: .50rem .75rem;
    font-weight: 400;
    color: #484848;
    border: 0;
}

header .search-cont {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: right;
}

header p {
    margin-bottom: 0px;
    display: inline-block;
    margin-right: 20px;
    font-family: "Myriadpro";
    color: white;
}

header .search-cont .login {
    margin-right: 20px;
    font-family: "Myriadpro";
}

header .search-cont a:hover {
    color: white;
}

header .dropdown-item:focus, .dropdown-item:hover {
    color: white;
    background-color: #00b5ef;
}

header .dropdown-toggle::after {
    display: none;
}

header .navbar-light .navbar-nav .nav-link.dropdown-toggle {
    content: "";
    background: url(../images/icons/down.png) no-repeat;
    background-position: 90% 43px;
}

header .navbar-light .navbar-nav .nav-link.dropdown-toggle:hover {
    background: url(../images/icons/down-w.png) no-repeat;
    background-position: 90% 43px;
}

header .navbar-light .navbar-nav .nav-link.dropdown-toggle[aria-expanded="true"] {
    background: url(../images/icons/down-w.png) no-repeat;
    background-position: 90% 43px;
}

/* Home Page css */

.header_slider{
	height: 650px;
	overflow: hidden;
}

.main-slider .main-slide {
    height: 690px;
}

.main-slider .slick-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.home-services {
    text-align: center;
    padding: 60px 0 40px;
}

.home-services h2 {
    margin-bottom: 60px;
}

.home-services h2 span.line {
    margin: 5px auto 0;
    
}

.home-services .hs-item-cont {
    padding: 0px 10px;
}

.home-services .hs-item span {
    font-size: 36px;
    font-weight: 300;
}

.home-services .hs-item img {
    margin-bottom: 45px;
}

.home-services .hs-item h3 {
    min-height: 42px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.home-services .hs-item p {
    min-height: 100px;
    max-width: 335px;
    margin: 0 auto 5px;
}


.home-title {
    position: relative;
}

.home-title .container {
    max-width: 875px;
    padding: 40px 75px 30px;
    text-align: center;
    position: absolute;
    top: -38px;
    left: 0;
    right: 0;
}



.home-bg-1 {
    background: url(../images/bg/home-left-bg.png) no-repeat left top;
}
.home-bg-2 {
    background: url(../images/bg/home-right-bg.png) no-repeat right top;
}
.home-bg-3 {
    background: url(../images/bg/home-center-bg.png) no-repeat center bottom;
}

.home-bg-4 {
    background: url(../images/bg/home-left-2-bg.png) no-repeat left top;
}
.home-bg-5 {
    background: url(../images/bg/home-right-2-bg.png) no-repeat right center
}



.home-remark {
    padding: 60px 0px;
}

.home-remark .hr-item-1 {
    padding-top: 120px;
    padding-bottom: 100px;
}

.home-remark .hr-item-2{
    text-align: right;
}

.home-remark .hr-item-2 img {
    
}

.home-remark h3 {
    font-weight: normal;
}

.home-remark h2 {
    margin-bottom: 20px;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: lighter;
}

.home-remark p {
    min-height: 130px;
}


.menu .navbar-brand img {
    max-width: 150px;
}

.navbar-brand img {
	height: auto !important;
}
.menu.home-logo .navbar-brand img {
    max-width: 50px;
}

.home-accounting {
    padding: 60px 0px;
}

.home-accounting .hc-item-cont {
    padding: 0px;
}

.home-accounting .hc-item-cont .hc-item-2 {
    padding: 120px 45px 10px;
    background: rgba(0, 0, 0, 0.1);
    height: 100%;
}

.home-accounting .hc-item-cont .hc-item-3 {
    padding: 120px 45px 10px;
    background: rgba(0, 0, 0, 0.1);
    height: 100%;
    text-align: right;
}

.home-accounting h2 {
    text-transform: none;
    font-weight: bold;
}

.home-accounting p {
    font-size: 20px;
}


.home-business {
    padding: 40px 0 0px;
    text-align: center;
    background: url(../images/bg/bussiness-bg.jpg) repeat;
}

.home-business img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px;
}

.home-business h2 {
    min-height: 66px;
    padding: 0 10px;
    margin-bottom: 0px;
}

.home-business p {
    min-height: 70px;
    padding: 0 10px;
    margin-bottom: 40px;
}



.home-devoted {
    padding: 150px 0 70px;
    text-align: center;
}

.home-devoted h2 {
    font-size: 48px;
    margin-bottom: 25px;
    text-transform: none;
    font-family: 'Calibri';
}

.home-devoted p {
    margin-bottom: 80px;
}

.hd-item-cont {
    position: relative;
}

.hd-item-cont .hd-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 312px;
    margin-bottom: 30px;
}

.hd-item-cont .hd-item img {
    margin-bottom: 20px;
}

.home-devoted .hd-item-cont p {
    font-size: 18px;
    margin-bottom: 0px;
}

.hd-polygon {
    position: absolute;
    left: 0;
    right: 0px;
}


.slick-prev, .slick-next {
    top: 70%;
}


.home-testimonial {
    text-align: center;
    padding: 60px 0 60px; 
    background-size: cover;
    color: white;
}

.home-testimonial h2 {
    margin-bottom: 70px;
    font-size: 48px;
    font-family: 'Calibri';
}

.home-testimonial .testimonial-inner span.line {
    margin: 0 auto;
}

.home-testimonial .testimonial-inner h3 {
    font-style: italic;
    text-transform: capitalize;
    color: #25aae3;
}

.home-testimonial p {
    margin-bottom: 40px;
    color: white;
}

.home-testimonial .testimonial-inner .testimonial p {
    position: relative;
    margin: 20px 125px 30px;
    font-size: 16px;
    color: white;
}

.home-testimonial .testimonial-inner .testimonial  p::before {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    left: -50px;
    content: "";
    background: url(../images/icons/quot-left.png) no-repeat;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

.home-testimonial .testimonial-inner .testimonial  p::after {
    position: absolute;
    bottom: -60px;
    transform: translateY(-50%);
    right: -40px;
    content: "";
    background: url(../images/icons/quot-right.png) no-repeat;
    width: 50px;
    height: 50px;
}

.home-testimonial .slick-prev
{
    left: 0px;
    height: auto;
    width: 25px;
}

.home-testimonial .slick-next
{
    right: 0px;
    height: auto;
    width: 25px;
}

.home-title h1 {
    font-weight: 900;
    text-transform: capitalize;
    font-size: 48px;
    margin-bottom: 20px;
}

/* About us page */

.about-services {
    padding: 0px 0 40px;
    text-align: center;
    background: url(../images/bg/about-us-bg.jpg) no-repeat;
    background-size: cover;
}

.about-services .col-md-4:first-child {
    padding: 10px 10px 10px 0;
}

.about-services .col-md-4:nth-child(2) {
    padding: 10px;
}

.about-services .col-md-4:last-child {
    padding: 10px 0px 10px 10px;
}

.about-services .col-md-4 .bg-grey {
    padding: 15px 15px 10px;
}

.about-services img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 45px;
    height: 380px;
}

.about-services span {
    font-size: 36px;
    font-weight: 300;
}

.about-services h4 {
    min-height: 36px;
    margin-bottom: 5px;
}

.about-services p {
    max-width: 230px;
    margin: 0 auto;
}


.about-bg-1 {
    background: url(../images/bg/about-right-bg.png) no-repeat right top;
}

.about-bg-2 {
    background: url(../images/bg/about-left-bg.png) no-repeat bottom left;
}

.about-bg-3 {
    background: url(../images/bg/about-center-bg.png) no-repeat bottom center;
}


.about-remark {
    padding: 50px 0;
    background: url(../images/bg/about-remark-bg.jpg) no-repeat;
    background-size: cover;
}

.about-remark .ar-item-cont-1 {
    padding: 0 2px 0 0;
}

.about-remark .ar-item-cont-2 {
    background: #25aae3;
}

.about-remark .ar-item-cont-2 .ar-item {
    padding-top: 60px;
}

.about-remark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-remark h2 {
    font-family: 'Myriadpro';
    color: white;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: bold;
}

.about-remark h3 {
    font-weight: 300;
}



.about-video {
    padding: 90px 0;
}



.about-tailor {
    padding: 50px 0 100px;
    text-align: center;
}

.about-tailor .col-md-6:last-child {
    padding-top: 10px; 
}

.about-tailor h4 {
    text-transform: none;
    margin-top: 10px;
}

.about-tailor img {

}

.about-tailor h2 {
    font-family: 'Calibri';
    margin-bottom: 30px;
    text-transform: capitalize;
    font-size: 48px;
    font-weight: 300;
}

.about-tailor h3 {
    font-family: 'Calibri';
    margin-bottom: 0px;
}


h3.ab-tra {
    color: #00adef;
}

.about-tailor a {
    font-weight: bold;
    font-size: 16px;
    color: #25aae3;
}

.about-tailor a:hover {
    font-weight: bold;
    font-size: 16px;
    color: #696969;
}



.about-expert {
    padding: 110px 0 0;
    text-align: center;
}

.about-expert .img-cont {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-expert h3 {
    margin-bottom: 20px;
    text-transform: capitalize;
}

.about-expert p {
    min-height: 44px;
    margin-bottom: 0px;
}



/* Staff profiles page */

.staff-main {
    padding: 30px 0 60px;
}

.staff-main-title {
    text-align: center;
}

.staff-main-title span {
    font-size: 30px;
    font-weight: bold;
}

.staff-main-title h2 {
    font-size: 30px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 50px;
    text-transform: none;
}

.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 .card-hover {
    background: rgba(50, 48, 147, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity .5s ease-out;
}

.staff-main .staff-main-item .card:hover .card-hover {
    position: absolute;
    z-index: auto;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.staff-main .staff-main-item .card .card-img-cont {
    height: 290px;
}

.staff-main .staff-main-item .card img {
    height: 290px;
    object-fit: cover;
}

.staff-main .staff-main-item .card .card-body {
    padding: 25px;
    width: 100%;
    bottom: 0px;
    background: #25aae3;
    border: 1px solid white;
}

.staff-main .staff-main-item h4 {
    font-weight: bold;
    font-size: 18px;
    color: white;
    margin-bottom: 0px;
    text-transform: uppercase;
    min-height: 66px;
}

.staff-main .staff-main-item span {
    font-weight: normal;
    font-size: 12px;
    color: white;
    margin-top: 10px;
    display: block;
    text-transform: capitalize;
}


/* Services page */


.services-deserve {
    text-align: center;
    padding: 60px 0 20px;
}

.services-deserve h2 {
    margin-bottom: 50px;
    font-size: 48px;
    max-width: 850px;
    margin: 5px auto 20px;
    font-weight: 300;
}

.services-deserve p {
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}




.services-devoted {
    padding: 30px 0px 20px;
    text-align: center;
}

.services-devoted span {
    font-size: 36px;
    font-weight: 300;
}

.services-devoted .devoted-item {
    padding: 20px;
    min-height: 375px;
}

.services-devoted .devoted-item h4 {
    margin-bottom: 30px;
}

.services-devoted .col-md-12 p {
    min-height: 70px;
    margin-bottom: 40px;
    max-width: 930px;
    margin: 0 auto;
}

.services-devoted img {
    margin-bottom: 40px;
}

.services-devoted p {
    min-height: 70px;
    margin-bottom: 0px;
    max-width: 250px;
    margin: 0 auto;
}


.services-2 {
    padding-bottom: 0px;
}

.services-best {
    text-align: center;
    padding: 30px 0 50px;
}

.services-best h2 {
    font-size: 48px;
    font-weight: 300;
    margin-top: 7px;
    margin-bottom: 30px;
}

.services-best h2 span {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.services-best p {
    font-size: 16px;
    font-family: "Myriadpro";
    max-width: 540px;
    margin: 0 auto;
}



.services-business {
    padding: 0px;
    text-align: center;
}

.services-business .container {
    max-width: 880px;
}

.services-business img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 50px;
}

.services-business h2 {
    min-height: 66px;
    padding: 0 10px;
    margin-bottom: 0px;
    font-size: 36px;
}

.services-business p {
    min-height: 70px;
    max-width: 380px;
    margin: 0 auto 40px;
}


/* privacy page */

.privacy-deserve {
    text-align: center;
    padding: 80px 0 0px;
}

.privacy-deserve h2:first-child {
    margin-bottom: 0px;
    font-size: 29px;
    color: white;
    text-transform: none;
    font-weight: 300;
    font-family: 'Roboto';
}

.privacy-deserve h2:nth-child(2) {
    margin-bottom: 0px;
    font-size: 29px;
    color: white;
    text-transform: none;
    font-weight: bold;
    font-family: 'Roboto';
}

.privacy-deserve p {
    font-size: 18px;
    color: #444444;
    font-family: 'Montserrat';
    margin-bottom: 80px;
}

.privacy-type {
    padding-top: 40px;
    padding-bottom: 180px;
}

.privacy-type h2 {
    margin-bottom: 40px;
    text-transform: capitalize;
}

.privacy-type p:first-child {
    margin-bottom: 90px;
    text-align: center;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 400;
}

.privacy-type p {
    margin-bottom: 40px;
    color: white;
    line-height: 1.1;
}

.account-good.tax-good  h2 {
    margin: 0 auto 40px;
}

.account-good.tax-good  p:last-child {
    margin-bottom: 80px;
}




.account-good {
    padding: 40px 0 0;
}

.account-good .ag-item-2 {
    padding-top: 50px;
}

.account-good .col-md-5 {
    padding-left: 0px;
}

.account-good .col-md-7 {
    padding-top: 50px;
}

.account-good .col-md-7.p-60 {
    padding-top: 60px;
}

.account-good img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-good h2 {
    margin-bottom: 40px;
}

.account-good p {
    color: white;
}

.account-report .col-md-6 {
    margin-bottom: 30px;
}

.account-report .btn {
    padding: 12px 50px;
    border-radius: 5px;
}

.account-report .col-md-4 {
    margin-bottom: 30px;
}

.acc-rep {
    padding: 0px 45px;
    height: 100%;
}

.acc-rep p {
    font-size: 14px;
    color: white;
}

.acc-rep.client-res {
    padding: 20px 45px;
}

.account-report {
    text-align: center;
    padding: 70px 0 100px;
}


.account-report .img-cont {
    height: 80px;
    margin-bottom: 50px;
}

.account-report h3 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tak-rep {
    padding: 40px 25px 10px;
    margin-bottom: 30px;
    height: 100%;
}

.tak-rep p {
    color: white;
}

.portal-secure {
    text-align: center;
    padding: 60px 0 40px;
}

.portal-secure h2 {
    font-weight: 300;
    font-family: 'Montserrat';
}

.expad {
    padding: 13px 50px;
}

.expad1 {
    padding: 11px 37px;
}


.account-bg-1 {
    background: url(../images/bg/about-right-bg.png) no-repeat right bottom;
}

.account-bg-2 {
    background: url(../images/bg/accouning-left-bg.png) no-repeat left top;
}

.payroll-bg {
    background: url(../images/bg/payroll-top-bg.png) no-repeat top 17% left;
}


.tax-bg-1 {
    background: url(../images/bg/tax-left-bg.png) no-repeat left center;
}

.tax-bg-2 {
    background: url(../images/bg/tax-right-bg.png) no-repeat right bottom 10%;
}

.client-bg-1 {
    background: url(../images/bg/client-left-bg.png) no-repeat left bottom;
}

/* Tax resources page */

.tax-best {
    padding: 70px 0 0px;
    text-align: center;
}

.tax-best h2 {
    font-weight: 300;
    font-family: 'Montserrat';
    max-width: 700px;
    margin: 0 auto;
}

.tax-box {
    padding: 30px 0 0px;
}

.tax-box a {
    font-size: 14px;
}

.tax-text p {
    font-size: 14px;
}

.tax-box .col-md-6 {
    margin-bottom: 30px;
}

.tax-box .box {
    padding: 30px 30px 20px;
    height: 100%;
    background: #25aae3;
}

.tax-box .box h3 {
    margin-bottom: 20px;
}

.tax-box .box ul.arrow li a {
    color: white;
    border-color: white;
    text-decoration: underline;
}

.tax-box .box ul.arrow li a:hover {
    color: white;
    border-color: white;
}

ul.arrow {
    padding-left: 30px;
}

ul.arrow li {
    list-style: url(../images/icons/arrow.svg);
    margin-bottom: 10px;
}

ul.arrow2 {
    padding-left: 35px;
}

ul.arrow2 li {
    list-style: none;
    margin-bottom: 10px;
    background: url(../images/icons/arrow2.svg) no-repeat;
    padding-left: 25px;
    background-position: 0px 5px;
}

ul.arrow li a:hover {
    border-bottom: 0px;
}


ul.arrow2 li a:hover {
    border-bottom: 0px;
    color: #00adef;
}


.tax-text {
    padding: 20px 0 40px;
}

.tax-text h2 {
    color: #25aae3;
}

.tax-text h3 {
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.tax-text p {
    margin-bottom: 40px;
}

.tax-text span {
    color: white;
    font-size: 16px;
}

.cc-item-2-cont {
    padding: 0px;
}

.cc-item-2 {
    background: rgba(0,0,0,0.1);
    padding: 50px 15px 40px 40px;
}

.cc-item-2 h3 {
    font-family: 'Calibri';
    font-weight: 300;
    margin-bottom: 0px;
}

.cc-item-2 h2 {
    font-family: 'Calibri';
    font-weight: bold;
    margin-bottom: 40px;
}

/* Blog Page */

.blogpage_container{
    padding: 60px 0px;
    font-family: 'Calibri';
}

.blogpage_container p, .blogpage_container h1, .blogpage_container h2, .blogpage_container h3, .blogpage_container h4, .blogpage_container h5, .blogpage_container h6 {
    font-family: 'Calibri';
}

.blog_detail_box{
	margin-bottom: 20px;
}

.blog_detail_box p{
	line-height: 1;
}

.blog_detail_box h1{
	font-weight: bold;
	font-size: 30px;
    margin: 15px 0px 10px 0px;
    text-transform: capitalize;
    font-family: 'Calibri';
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_date_author img {
	margin: 0 5px;
}
.blog_date_author a{
	color: #00b5ef;
}
.blog_date_author{
	margin-bottom: 20px;
    font-size: 13px;
    color: #00b5ef;
}
.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: #c6262e;
    border-color: #c6262e;
}
.blog_search input[type="text"] {
    padding: 8px;
    border: solid 1px white;
    width: 100%;
    padding-right: 30px;
    background: white;
    color: #6a6a6a;
}

.blog_search input[type="text"]::-webkit-input-placeholder { /* Edge */
    color: #6a6a6a;
}
  
.blog_search input[type="text"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #6a6a6a;
}
  
.blog_search input[type="text"]::placeholder {
    color: #6a6a6a;
}

.blog_search button{
	position: absolute;
    right: 20px;
    background: none;
    border: 0px;
    color: #312c2a;
    top: 7px;
}
.blog_border_box{
	margin-top: 20px;
}
.blog_border_box h1{
	padding: 15px;
	font-weight: bold;
	border-bottom: solid 1px #222c46;
	font-size: 24px;
    margin: 0px;
    font-family: 'Calibri';
    text-transform: capitalize;
}
.blog_border_box_body{
	padding: 15px;
	font-size: 13px;
	color: #616161;
	
}
.blog_border_box_body a svg{
	width: 25px;
}
.recient_Article a{
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    font-family: 'Calibri';
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #00adef;
}
.recient_Article a.read{
	color: #00adef;
    margin: 0 0 10px 10px;
    font-size: 14px;
    text-transform: capitalize;
    font-family: 'Calibri';
    display: inline;
    border: none;
}
.recient_Article hr{
    margin: 20px -15px;
    border-top: 1px solid #222c46;
}

.recient_Article p {
    line-height: 1;
    color: white;
}

.blog_date_author a svg{
    width: 25px;
    margin-left: 5px;
    background: white;
}
.author_box{
    border-top: 1px solid #222c46;
    border-bottom: 1px solid #222c46;
    padding: 20px;
    margin-bottom: -1px;
    padding-left: 85px;
    position: relative;
}
.author_box h5{
	font-size: 16px;
    text-transform: none;
    font-weight: normal;
}
.author_box h3{
	font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
    color: #00b5ef;
}
.author_box p{
	font-size: 13px;
}
.author_box a{
    color: #00adef;
    text-decoration: underline;
    margin-left: 5px;
}
.author_box .blog_date_author{margin-bottom: 0px; color: #a7a7a7;}
.author_avatar{position: absolute;
left: 14px;top: 20px;border-radius: 50%;height: 55px;}
.blog_comment_box{
	padding: 60px 0 20px;
    margin-bottom: 50px;
    margin-bottom: 50px;
}
.blog_comment_box h1{
	font-weight: normal;
	font-size: 30px;
    margin-bottom: 20px;
    color: white;
    text-transform: none;
}




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: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -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: -115px;
    position: absolute;
}
ul.comments li img.avatar {
    height: 80px;
    width: 80px;
}
ul.comments .comment-block {
    background: rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 20px 20px 30px;
    position: relative;
}
ul.comments .comment-arrow {
    border-bottom: 15px solid transparent;
    border-right: 15px solid rgba(0,0,0,0.1);
    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;
}
.blog-content .fa {
    color: #00aeef;
    font-size: 13px;
    margin: 10px 0px 30px 0px;
}
ul.comments .comment-block .date {
    color: #999;
    font-size: 0.9em;
}
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: 13px;
}
.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: white;
}
.blogpaging{
	margin-top: 30px;
}
.blogpaging ul{
	margin: 0 0 50px;
	padding: 0px;
	list-style: none;
}
.blogpaging li{
	display: inline-block;
}
.blogpaging li .page-numbers{
    display: inline-block;
    padding: .5rem 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.2);
}
.blogpaging .current{
	color: #fff !important;
    background: #00b5ef !important;
}
.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;
}



/* Contact us page */

.contact-content {
    padding: 80px 0;
}

.contact-content .col-md-7 {
    padding-bottom: 40px;
    padding-right: 40px;
}

.contact-content .col-md-5 p {
    line-height: 1;
}

.contact-content h2 {
    font-family: 'Calibri';
    text-transform: none;
}

.contact-content .col-md-7 h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-content .btn {
    font-weight: lighter;
    padding-right: 40px;
    padding-left: 40px;
}

.contact-content ul {
    padding: 0px;
}

.contact-content ul li {
    margin-bottom: 0px;
    padding-left: 25px;
    min-height: 30px;
    list-style: none;
    font-weight: 300;
}

.contact-content ul li:first-child {
    background: url(../images/icons/location-c.svg) no-repeat;
}

.contact-content ul li:nth-child(2){
    background: url(../images/icons/mail-c.svg) no-repeat;
}

.contact-content ul li:last-child {
    background: url(../images/icons/phone-c.svg) no-repeat;
}




/* Footer css */

.footer-bg img {
    width: 100%;
}

footer {
    padding: 0px 0 20px;
    background: #070f26;
}

footer .f-logo {
    margin-bottom: 25px;
    max-width: 200px;
}


footer ul {
    padding: 0px;
}

footer ul li {
    color: white;
    font-size: 16px;
    list-style: none;
    margin-bottom: 10px;
}

footer h2 {
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 30px;
}

footer p {
    font-size: 14px;
}

footer ul.icon-menu li:first-child {
    background: url(../images/icons/location.png) no-repeat;
    background-position: center left;
}

footer ul.icon-menu li:nth-child(2) {
    background: url(../images/icons/email.png) no-repeat;
    background-position: center left;
}

footer ul.icon-menu li:last-child {
    background: url(../images/icons/phone.png) no-repeat;
    background-position: center left;
    border-bottom: 0px;
}

footer ul.icon-menu li {
    padding: 10px 0 10px 25px;
    margin: 0px;
    word-break: break-all;
    font-weight: 300;
}

.footer-bottom {
    padding: 10px 0px;
    background: #060d22;
}

.footer-bottom p {
    color: white;
    font-size: 14px;
    margin: 12px 0px;
}

.footer-bottom .col-7:last-child {
    text-align: right;
}


[data-object-fit='cover'] {
    object-fit: cover
  }