body {
  color: #333;
  font-family: 'Work Sans',Verdana;
}

a {
  color: #192a53;
  text-decoration: none;

  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #192a53;
  outline: none;
  text-decoration: none;
}

p {
  font-size: 16px;
    font-family: 'Work Sans',Verdana;
    letter-spacing: 0.4px;
    text-align: justify;
    line-height: 30px;
}

ol, ul{font-family: 'Work Sans',Verdana;
font-size:16px; line-height:30px;}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Work Sans',Verdana;


  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

h1{font-size: 38px;
    color: #192a53;
    font-weight: 700;}
h2{font-size: 30px;
    color: #192a53;
    font-weight: 700;
    }
h3{font-size: 25px;
    color: #192a53;
    font-weight: 700;
    padding: 15px 0;}
h4{font-size:20px;}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #192a53;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled {
  height: 60px;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  width:200px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
/*   padding: 10px 0 10px 30px; */
  font-family: 'Work Sans',Verdana;
  font-size: 16px;
  color: #000;
	letter-spacing:1px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
	background: #192a53;
	
}

.text-dark {
    color: #000 !important;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #007bff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #283d50;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(23, 35, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #004289;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #007bff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #007bff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.entry-tags .post_tags {
    display: inline;
}
.entry-tags a {
    display: inline-block;
    margin: 5px;
    color: #fff!important;
    background: #ffcc00;
    padding: 5px 10px;
    border-radius: 22px;
}
.entry-category .label-primary {
    background-color: #ffcc00;
    font-size: 12px;
    color: #000!important;
    border-radius: 30px;
    padding: 8px;
    margin-left: 10px;
}
.single-blog ul, .single-blog ol{padding-left:20px;}
.single-blog p{text-align:justify;}
.hero-banner{padding: 80px 0 0px 0;}
.banner .row{margin:0px;}
.p-0{padding:0px;}

.overview {
	 width: 100%;
    height: 500px;
    transition: all .3s;
    
	position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0px;
    left: 0;
   
    background: linear-gradient(to bottom,rgba(255,255,255,0.3),#1e2024);
    z-index: 1;

}

.overview .category a {background:#fff500; color:#000; padding:10px 20px; border-radius:20px; font-size:20px; line-height:auto; letter-spacing:1px; font-weight:800;}
.overview .title h2 a{  font-size: 36px;
    line-height: 45px;
    margin-top: 10px;
    font-weight: 600; font-weight:700; color:#fff; }
.overview .title h2 {width: 75%;margin:40px 0px;}

.overview .date .date-b{padding-top:30px;color:#fff; font-size:20px;}

.overview.side h2 a{font-size:27px!important; color:#fff; line-height:auto;}
.overview.side h2 {width:100%; margin:10px;}


.about-img-area {
    position: relative;
    padding: 30px;
}
.about-img-area::before {
    content: '';
    width: 25%;
    height: 25%;
    border-radius: 0 0 0 10px;
    -webkit-clip-path: polygon(0% 0%,100% 100%,0% 100%);
    clip-path: polygon(0% 0%,100% 100%,0% 100%);
    background-color: #fff500;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.about-img-area .main-img {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    width: 90%;
}
.about-img-area .small-img {
    max-width: 40%;
    border-radius: 4px;
    border-top: 10px solid #fff;
    border-left: 10px solid #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.row{margin-right:0px;}

.about{padding-bottom:30px;}
.about .title h2{    font-size: 60px;
    color: #192a53;
    font-weight: 700;
    padding: 15px 0;}
.about .content p{font-size:16px;     font-family: 'Work Sans',Verdana; letter-spacing:0.4px; text-align:justify; line-height:30px;}

.heading-sec {
	display: contents;
    align-items: center;
    margin:0 auto;
    align-items: center;
    font-size: 40px;
}

.heading-sec:after, .heading-sec:before {
    content: "";
    flex: 1;
    height: 30px;
    margin-top: 2rem;
	position:relative;
	top:20px;
    border-top: 1px solid #192a53;
}
.heading-sec:before {
    margin-right: 1rem;
    border-left: 1px solid #192a53;
}
.title-sec span {
    font-size: 50px;
	font-family:'Work Sans',Verdana;
    color: #192a53;
    font-weight: 700;
    padding: 15px 0;
}
.title-sec span i {
    font-size: 10px;
    position: relative;
    top: -15px;
    color: #192a53;
}


.heading-sec:after {
    border-right: 1px solid #192a53;
    margin-left: 1rem;}
	
	
.title-sec {
    padding-bottom: 30px;
}	


.blog-section .blog-content .author-sec img{width:50px; height:50px; border-radius:40px; margin:-10px 0px;}



.blog-section .blog-content .author-sec .author-name .name{margin-left:30px; text-transform:capitalize; font-size:18px; color:#000; position:relative; top:-25px; left:35px;}

.blog-section .blog-content .author-sec author-name{padding-top:20px;}

.blog-content{padding: 17px 14px;  margin-bottom:20px;}

.cate-tag a{color:#fff;}
.cate-tag {
    position: absolute;
    top: 15px;
    background: #000;
    border-radius: 30px;
    padding: 3px 14px;
    z-index: 99;
}


.cate-tag .date-b{color:#192a53;}
.blog-section .box-item{box-shadow:1px 2px 5px #000; border-radius:10px;}

.footer .disclaimer p{font-size:20px; font-family:normal; text-align:justify;}


.blog-section{padding-bottom:0px;}
.footer_bottom{margin-bottom:0px;}


.blog-content p.title{font-size:23px; padding-top:25px; font-weight:700;}
#main {
    margin-top: 82px;
}



.single-blog  .post-meta .post-author .avatar-96 {
    width: 32px;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 50%;
}
.post-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px -10px;
}

.single-blog .post-content .post-meta .post-author, .post-date, .post-view {
    padding: 5px 10px 0;
}
.single-blog .post-content .post-meta .post-author .avatar-96 {
    width: 32px;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 50%;
}

.blog .blog-box:hover{background:#1a2a5424; transition:0.2s ease-in-out;}
.box-item:hover{box-shadow:1px 2px 12px #000; transition:0.2s; background:#f2f2f2;}
.design-2 .blog-img::after{content: "";
    z-index: -1;
    width: 95%;
    height: 210px;
    position: absolute;
    top: 0.625rem;
    left: 10px;
    border: 2px solid #ff5000;}
	
	
	.site-colu-3 {border:1px solid #ccc; padding:10px; border-radius:10px; margin-bottom:20px;}
	
	.site-colu-3:hover{box-shadow:1px 2px 12px #000; transition:1s; background:#f2f2f2;}
	
	.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ff0000;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #010483;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0205a1;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #192a53;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #000;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #192a53;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
#hero h2{font-size:30px; color:#fff;}
#hero h1{
    font-size: 25px;
    font-weight: 900!important;
    line-height: 56px;
    color: #fff;
	
	text-shadow:2px 1px 4px #000;
}

.blog .blog-box {min-height:530px;}
.blog .blog-content{padding-left:0px; padding-top:0px; padding:0px; margin:0px;}

.blog .blog-heading h3 a{color:#000; font-weight:800; font-size:24px;}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #3a3a3a;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #192a53;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;

  color: #fff;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

#footer .footer-top p{text-align:justify;}

#footer .footer-top .footer-info p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  font-family: 'Work Sans',Verdana;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
}

#footer .footer-top .social-links a:hover {
  background: #fff;
  color: #192a53;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 4px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
	font-size:18px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}


.blog .blog-box .blog-heading h3{padding:0px!important;}

.errorsdoc_home {
    width: 100%;
	height:100%;
    padding: 230px 0 100px;
    background: url(https://www.monktech.net/wp-content/uploads/2023/04/banner-monk4.webp);
    background-position: inherit;
	    align-items: center;
    background-size: cover;
}

.single-blog .blog-img img{min-width:100%;}
.errorsdoc_home_in {
    width: 80%;
    margin: 0 auto;
}
.errorsdoc_home_in h1 {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 30px;
    text-transform: capitalize;
    font-family:'Poppins', sans-serif;
    font-weight: 400!important;
}

.errorsdoc_home .errorsdoc_home_in .asl_w_container {
    width: 60%;
    margin: 0 auto;
}


.search  .form-control{height:50px;border-radius:10px!important;	}
.search .search-btn{    position: absolute;
    top: 13px;
    right: 40px; }
	
	
	@media(max-width:767px){
		.errorsdoc_home {padding: 50px 0 50px!important;}
		.title-sec span{font-size:25px;}
		
	}



 .single-blog .sidebar {
    padding: 30px;
	 position:sticky;
	 top:85px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.single-blog .sidebar .sidebar-title {
border-bottom: 2px solid #ff0000;
    display: inline-flex;
    font-size: 20px;
    font-weight: 700;
    padding-bottom:10px;
    margin: 0 0 15px 0;
    color: #111111;
    position: relative;
}
.single-blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}
.single-blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}
.single-blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
.single-blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #192a53;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}
.single-blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}
.single-blog .sidebar .recent-posts img {
    width: 80px;
	height:70px;
    float: left;
}
.single-blog .sidebar .recent-posts .side-head a{color:#192a53;}
.single-blog .sidebar .recent-posts .side-head {
    font-size: 18px;
	color:#192a53;
	margin-bottom:5px;
    margin-left: 95px;
    font-weight: bold;
}

.single-blog .post-detail .post-author a{color:#192a53!important;}
.single-blog .post-detail .post-author{text-transform:capitalize; }
.single-blog .sidebar .post-item {border-bottom:1px solid #ccc; margin-bottom:10px;}
.single-blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}

.single-blog .author h2{border-bottom:2px solid #ff0000; display: inline-block;
    padding-bottom: 18px;}

.single-blog .author {    border: 1px solid #ccc;
    padding: 20px;
    border-top: 2px solid #ff0000;}

.copyright a{color:#fff!important;}

#ez-toc-container a.ez-toc-toggle {border-bottom:none!important;}

div#ez-toc-container ul{padding-left:25px;}
.site-colu-3 {min-height:380px;}
.blog-section .box-item{min-height:445px;}

.single-blog .post-detail a{color:#ff0000!important; font-weight:700;}


.category{position:absolute; bottom:10%;}
.box-item .title{min-height:150px;}


#ui-id-1{padding-left:10px; list-style:none; background:#fff; color:#000; max-width:550px; box-shadow:1px 3px 12px #000; border-radius:0px 0px 20px 20px;}
#ui-id-1 li{border-bottom:1px solid #ccc; padding-bottom:10px; }

div#ez-toc-container ul li:before { 
    margin: 17px -15px;
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #192a53;
    border-radius: 50px;}
#ez-toc-container a{border-bottom:1px solid #ddd!important; padding:8px 0px!important; color:#000!important;}
#ez-toc-container{background:#fff!important; border-left:5px solid #192a53!important;}

#rank-math-faq{background:#f1f1f1; padding:14px;}
.rank-math-question {font-size:17px!important; padding:0px!important;}

.single-blog #setting img{position: absolute;
    margin: -45px 65px;	}

.blog .blog-content{min-height:110px;}


.rating {position:absolute; right:80px; padding-top:110px;}
.rating {padding-right:10px;}
.rating ul{padding-left:30px;}
.rating ul a img{width:180px;}


@media(max-width:767px){
	.rating {
    position: relative;
    right: 12px;
    padding-top: 10px;
}
	
	
}








/*  new css */

.navbar a, .navbar a:focus{font-size:18px!important; font-weight: 700!important;}


.errorsdoc_home {
    width: 100%;
    height: 100%;
    padding: 150px 0 150px;
    background: url(https://www.monktech.net/wp-content/uploads/2024/03/main-banner.jpg)!important;
    background-position: inherit;
    align-items: center;
    background-size: cover;
}

#hero h1{font-size:30px!important; font-weight: 400!important;}
.search .form-control{border-radius: 50px!important;}
.about .title h2 {font-size:42px!important;}
.about .title:after {
    content: '';
    width: 100px;
    height: 3px;
    background: #192a53;
    position: absolute;
    right: 0px;
    top: 45px;}

    .about .content p{font-size:18px!important; letter-spacing: 0px!important; line-height: 28px;}
   .home-titlee h2{    background: #192a53;
    border-radius: 10px;
    display: inline-block;
    font-size: 32px !important;
    color: #fff !important;
    padding: 5px 12px;}  

    .home-titlee h2:after{
        content: '';
        width: 75%;
        height: 3px;
        background: #192a53;
        position: absolute;
        right: 0px;
        top: 25px;}

      .latest-post .blog-img img{border-radius:15px;}  
      .latest .blog-content{padding: 0px!important; margin-bottom: 5px!important;}
      .latest .blog-content .title h2{padding-top: 0px!important; font-size: 18px!important; margin-bottom: 10px!important;}
      .latest .category{    position: relative;
        padding-top: 0px;
        bottom: 0px !important;
        padding-bottom: 11px;}

        .latest .category p{background: #1b2b54;
            font-size: 14px;}
        .latest .blog-content p{font-size:12px; letter-spacing: 0px!important; line-height: normal!important; margin-bottom: 5px!important; border-radius: 7px!important;}    

        .latest .entry-meta ul {
            padding-left: 0
        }
        
        .latest .entry-meta ul li {
            display: inline-flex;
            font-size:12px;
        }
        
        
        .latest .entry-meta ul{    display: flex;
            justify-content: space-around;}

            .blog-section .box-item {box-shadow: none!important; min-height: auto!important;}

        .blog-content .title h2{font-size: 24px!important;}   
        .blog-content {padding: 0px!important;}     
        .blog-section .box-item img{border-radius: 15px!important;}
        .box-item .title{min-height: auto!important;}

        .writer-info .entry-meta ul {
           list-style: none;
           padding-left: 0px;
           display: flex;
    justify-content: space-between;}

    .box-item:hover{background:transparent;}
.review{background: #303030!important;}         
.review .rating{position: relative!important; padding-top: 0px!important;}   

.review .rating ul{padding-left: 70px!important; margin-bottom: 0px!important;}
.review .social-links a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #fff;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  .review .social-links a i {
    line-height: 0;
  }
  
  .review .social-links a:hover {
    background: #fff;
    color: #192a53;
  }
  

  .review .social-links .twitter {
    color: #1d9bf0 !important;
}
.review .social-links .facebook {
    color: #1877f2 !important;
}
.review .social-links .instagram {
    color: #DD2A7B !important;
}

.review .social-links .linkedin {
    color: #0A66C2 !important;
}

.footer-top .ftr-menu{padding-left: 0px; list-style: none; display:flex;     flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;}
.footer-top .ftr-menu li a{color: #fff !important; padding: 0px 15px;
    border-right: 1px solid;}

@media (max-width:767px){
	.about .title h2{font-size:25px!important;}
	.about .title:after{top:30px;}
	.home-titlee h2:after {width:100px;}
	#hero h1{font-size:25px!important; line-height:35px;}
	#main{margin-top:30px;}
	.review .rating ul {margin-bottom:20px!important; text-align:center;}
	.review .social-links{text-align:center!important;}
	.rating ul a img {margin-bottom:20px!important;}


	
}



.breadcumsingle{padding: 5px 80px;}
.single-blog .post-detail .post-author {
    text-transform: capitalize;
    margin-left: 15px;
}

@media(max-width:767px){
	.single-blog .post-detail{    padding-left: 0px!important;}
	.breadcumsingle{padding:60px 15px 0px 15px;}
	.single-blog .article-share-btn-list {
    position: relative!important;
    flex-direction: row!important;
    display: flex;
    padding-left: 0;
		left:10px;
    top: -62px!important;
		bottom: 56px!important;}
	
	.single-blog .px-5{    padding-left: 1.5rem!important;  padding-right: 1.5rem!important;}
	
	.single-blog .post-detail h1{font-size: 28px;
    color: #192a53;
    font-weight: 600;}
	.single-blog .post-detail .post-author{margin-left:20px!important;}
	.single-blog .sidebar{margin:0 0 60px 0px!important;}
}


#ez-toc-container .eztoc-hide{display:none!important}


@media (max-width:767px){
	
	.table{    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;}
}





/* about */
@media only screen and (max-width: 575px) {
    .thumbnail-img-10 .small-img {
        max-width: 70%;
    }
}


@media only screen and (max-width: 575px) {
    .thumbnail-img-10 .small-img-2 {
        left: 0;
        max-width: 60%;
    }
}


.thumbnail-img-10{position:relative;}
.thumbnail-img-10 .small-img {
    position: absolute;
    bottom: -130px;
    right: -50px;
    animation: jump-1 5s linear infinite;
}

.thumbnail-img-10 .small-img-2 {
    position: absolute;
    bottom: -190px;
    left: 120px;
}

@keyframes jump-1 {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    40% {
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }

.thumbnail-img-10 {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
/* new css end */








.fondo li {
    overflow: hidden;
    transition: .4s;
    margin-bottom: 30px
}

.fondo .item_header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
    cursor: pointer;
    border: 1px solid #ddddddab
}

.fondo .pregunta {
    color: #333;
    display: inline-block;
    font-size: 18px;
    padding-left: 20px;
    font-weight: 400;
    margin-left: 30px
}

.badge {
       background-color: #192a53;
    position: absolute;
    left: 10px;
    color: #fff;
}

.fondo .parrafo ol li {
    color: #000;
    list-style: inside
}

.fondo .icon {
    color: #333;
    transition: transform 1s
}

.fondo .active>.item_header>.icon {
    transform: rotate(180deg)
}

.fondo .parrafo {
    color: #000;
    line-height: 23px;
    position: relative;
    transition: top 1s,opacity 1s;
    z-index: 1;
    background-color: transparent;
    border-radius: 25px;
    margin-top: -20px;
    padding: 35px 25px 0
}

.fondo .item_header, .fondo li {
    height: 54px;
    box-shadow: 2px 4px 14px 4px rgb(0 0 0 / 10%);
}

.fondo li {
    background: #f5f5f5 !important;
}

.fondo .parrafo ul li {
    list-style: inside;
    display: list-item
}




/* why-choose */


.whychoose .service-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whychoose .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whychoose .icon-circle {
    width: 60px;
    height: 60px;
	    float: left;
	margin-right:25px;
    background: #192a53;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.whychoose .icon-circle i {
    font-size: 1.75rem;
}



.whychoose .service-card p {display: inline-flex;}

.whychoose .service-card h5{margin-top: 15px;}



/*  */


.whychoose .col-lg-6{display: flex
;
        align-items: stretch;
        margin-bottom: 20px;}




/* oofer */


.single-business-solution-2 {
      margin-left: 28px;
    background: #FFF;
    box-shadow: 0 2px 20px rgba(24, 16, 16, .07);
    padding: 21px;
    position: relative;
    border-left: 8px solid transparent;
    transition: 0.3s;
    margin-bottom: 13px;
}



.single-business-solution-2 .icon {
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
}

.single-business-solution-2 .content {
    padding-left: 30px;
}

.single-business-solution-2 .title {
    font-size: 22px;
    margin-bottom: 5px;
}

.single-business-solution-2:hover{border-left:3px solid #192a53; transform: translateY(-5px)}




/* mission */


.mission-card {
    background: #ffffff;
    border: none;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    
}

.mission-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.3);
}

.mission-card h2 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}


.missioncardd .missionimg{display:flex; align-items:stretch; }

.missioncardd .col-md-6{ display: flex;
	    padding: 0px!important;
        align-items: stretch;}

.about .title h2{position:relative;writing-mode
}

.about .title:after{    right: 48%!important;
    top: 45px;}




@media (max-width: 767px) {
    .about .title:after {
        top: 30px;
        right: 0px!important;
    }
}




.single-blog .post-detail .post-content img{    text-align: center;
    /*margin: 0 auto;*/
    width: 70%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
	    border: 2px solid #1877f2;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;}

.single-blog .post-detail .post-content .wp-caption{width:auto!important;}


.single-blog blockquote {
    background: #1a2a543d;
    margin: 0 0 1rem;
    padding: 20px;
    border-radius: 10px;
}


.innertext {    background: #ffffffcc;
    display: inline-block;
    padding: 10px 12px;}


.table-striped tbody tr:nth-of-type(odd) td h2{color:#fff!important;}


