/* 20. Blog */
.blog-area {
	padding: 30px 0 30px;
}
.blog-post-item {
	margin: 0 0 50px;
}
.blog-post-thumb {
    /* margin: 0 0 30px; */
    /* padding: 30px; */
    /* border-radius: 0px 30px;
    border: 2px solid #2E3241; */
}

.blog-post-thumb img {
	transition: .3s linear; 
	filter: grayscale(100%);   
	/* border-radius: 0px 30px; */
}

.blog-post-thumb img:hover {
    transition: .3s linear;
    filter: none;
}

.blog-post-content .title {
    margin: 0 0 15px;
    line-height: 26px;
}
.blog-post-content .title a{
    font-size: 26px;
    line-height: 26px;
	/* color: var(--e-global-color-text); */
	text-decoration: none;
	color: #011736;
}
.blog-post-content .post-date {
	display: block;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	color: var(--e-global-color-accent);
	line-height: 1;
    margin-bottom: 10px;
		margin-top: 10px;
}
.blog-active [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}
.blog-active.slick-slider .slick-track,
.blog-active.slick-slider .slick-list {
	transform: inherit !important;
}
.blog-active .slick-dots {
	margin: 20px 0 0;
	padding: 0;
	display: flex;
	list-style: none;
	line-height: 1;
	justify-content: center;
}
.blog-active .slick-dots li {
	line-height: 0;
	margin: 0 9px;
}
.blog-active .slick-dots li button {
	text-indent: -99999px;
	border: none;
	background: #192E44;
	padding: 0;
	display: block;
	line-height: 1;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.blog-active .slick-dots li.slick-active button {
	background: #3657CD;
}
.blog-two-area {
	padding: 120px 0 0;
}

.blog-post-item .read-more {
    position: relative;
    transition: .5s;
    font-size: 15px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.blog-post-item  .read-more i {
    top: 1px;
    font-size: 14px;
    line-height: 1;
    position: relative;
    display: inline-block;
    transform: rotate(304deg);
    transition: .5s;
    color: var(--e-global-color-text);
}
.blog-post-item  .read-more:hover {
    color: var(--e-global-color-hover);
}
.blog-post-item  .read-more:hover i {
    transform: unset;
    color: var(--e-global-color-hover);
}

/*  */
   /* Custom Styles */
 /* Custom Styles */
 .contact-card, .contact-form {
	border-radius: 10px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact-card {
	background-color: #ffffff;
	padding: 20px;
	margin-bottom: 20px;
}
.contact-card h3 {
	margin-bottom: 10px;
	font-weight: bold;
}
.contact-card p {
	margin-bottom: 5px;
}
.social-icons a {
	margin-right: 10px;
	color: #007bff;
	font-size: 1.2rem;
}
.contact-form {
	padding: 20px;
	background-color: #ffffff;
}
.contact-form h3 {
	margin-bottom: 20px;
	font-weight: bold;
	position:relative;
	bottom:18px;
}
.btn-primary:hover {
	background-color:#4CDFD6 !important;
}

.contact-title {
  color: #FCBD49;
}

.contact-icon {
  font-size: 1.7rem;
	color: #011736;
}
.mail-icon {
  font-size: 1.7rem;
  color: #011736;
}

.customer-support-title {
  color: #202740;
}

.contact-info {
  font-size: 1rem;
  color: #FCBD49;
}

.connect-text {
  font-size: 0.9rem;
}

.social-icon {
  font-size: 1.5rem;
  color: #011736; /* Default color */
  transition: color 0.3s; /* Transition effect */
}

.social-icon:hover {
  color: #FFD966; /* Hover color */
}

/* 4. Breadcrumb */
.breadcrumb-area {
	padding: 200px 0 100px;
	position: relative;
}
.breadcrumb-bg {
	position: absolute;
	background-position: top center;
	background-size: cover;
	left: 0;
	top: 0;
	width: 100%;
	height: 471px;
	z-index: -1;
}
.breadcrumb-content .title {
	font-size: 96px;
	line-height: 1.1;
	margin: 0 0 5px;
}
.breadcrumb-content .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 0;
	list-style: none;
	justify-content: center;
	align-items: center;
}
.breadcrumb-content .breadcrumb .breadcrumb-item {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 15px;
}
.breadcrumb-content .breadcrumb-item+.breadcrumb-item::before {
	padding-right: 13px;
	color: #99A2AC;
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	font-size: 16px;
	opacity: .5;
}
.breadcrumb-content .breadcrumb-item+.breadcrumb-item {
	padding-left: 13px;
}
.breadcrumb-content .breadcrumb .breadcrumb-item a {
	color: #99A2AC;
}

.breadcrumb > .active {
	color: #F9C747;
}

.form-control::placeholder {
  color: white; /* Change this to your desired color */
  opacity: 1; /* This is necessary in some browsers to ensure the color is applied */
}

/* For older versions of Internet Explorer */
.form-control:-ms-input-placeholder {
  color: white;
}

/* For Edge */
.form-control::-ms-input-placeholder {
  color: white;
}

/* For Mozilla Firefox */
.form-control:-moz-placeholder {
  color: white;
  opacity: 1;
}

/* For Google Chrome, Safari, Opera */
.form-control::-webkit-input-placeholder {
  color: white;
}

  .xtr-pad{
        padding: 0 145px;
    }
    /* Use a media query to add a breakpoint at 800px: */
    @media screen and (max-width: 800px) {
      .xtr-pad{
            padding: 0;
        }
    }