:root {
  --ime-orange: #f9801c;
  --ime-gray: #f2f2f2;
  --e-global-color-white: #ffffff;
  --e-global-color-very-light-gray: #e5e5e5;
      --e-global-color-secondary: #19191f;
    --e-global-color-accent: #ee4619;
}



body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Hide top bar on tablets and mobiles */
@media (max-width: 770px) {
  .top-bar {
    display: none;
  }
}

.top-bar {
  background: var(--ime-gray);
  position: relative;
  min-height: 42px;
}

/* Orange strip on right */
.social-strip {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 400px;
  background: var(--ime-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-strip a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

/* Main Header */
.main-header {
  background: #fff;
}

.main-header .navbar-brand img {
  height: 55px;
}

/* Smaller logo on mobile */
@media (max-width: 991.98px) {
  .main-header .navbar-brand img {
    height: 40px;
  }
}

.main-header .nav-link {
  color: #000;
  font-weight: 600;
  padding: 22px 18px;
}

.main-header .nav-link:hover {
  color: var(--ime-orange);
}

/* Dropdown */
.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--ime-orange);
  color: #fff;
}

/* Desktop hover */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Move toggler to right on mobile */
@media (min-width: 600px) {
  .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 10px;
  }
}

.hero-section {
  position: relative;
  height: 500px;
  background: url("https://staging-brandixsoft.co.uk/imeconstruction/wp-content/uploads/2025/10/demo-bg.jpg")
    no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.hero-content ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hero-content ul li:before {
  content: "✓";
  margin-right: 10px;
  font-weight: bold;
}

.btn-orange {
  background-color: var(--ime-orange);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btn-orange:hover {
  background-color: #e0721a;
  color: white;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content ul li {
    font-size: 14px;
  }
}
.text-orange {
  color: #f9801c;
}

.card {
  background: linear-gradient(135deg, #e8f0fa 0%, #ffffff 100%);
}

.text-orange {
  color: #f9801c;
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .position-absolute.top-50.start-50.translate-middle.w-100.px-3 {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    padding: 20px 15px;
  }

  .card {
    margin-bottom: 20px;
  }

  .bg-primary.rounded-circle.d-inline-flex.align-items-center.justify-content-center {
    width: 50px !important;
    height: 50px !important;
  }
}
.btn-orange {
  background-color: #ff7a00;
  border-color: #ff7a00;
  color: white;
}

.btn-orange:hover {
  background-color: #e06b00;
  border-color: #e06b00;
  color: white;
}

@media (max-width: 992px) {
  .card.bg-primary.text-white.p-4 {
    margin: 15px;
  }

  .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    gap: 10px !important;
  }
}
.ime-image {
  max-height: 300px;
  object-fit: cover;
}
.ime-card {
  background-color: #20409c;
}

/* Desktop overlap only */
@media (min-width: 992px) {
  .ime-card {
    margin-right: -350px; /* HALF CARD ON IMAGE */
    z-index: 1;
    max-width: 700px;
    border-radius: 12px;
  }
}

.accordion-button {
  padding: 15px 20px;
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: #0056b3;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #0056b3;
}

.accordion-button .fa-plus,
.accordion-button .fa-minus {
  font-size: 14px;
}

@media (max-width: 768px) {
  .accordion-button {
    padding: 12px 15px;
  }

  .accordion-body {
    padding: 15px;
  }
}

.footer {
  background-color: #000000;
}

.footer h6 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #f9801c;
}

@media (max-width: 768px) {
  .footer .col-md-6 {
    margin-bottom: 30px;
  }

  .footer h6 {
    font-size: 16px;
  }
}



.page_header {
    background-image: url('./images/team.webp'); 
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section */
   .about_section {
    padding: 60px 80px;
    background-color: whitesmoke;
}
/* Image */
.about_image {
    position: relative;
    border: 3px solid #1f3fa1;
    padding: 10px;
}

.about_image img{
    width: 420px;
    height: auto;
    display: block;
}

/* Experience Box */
.experience_box {
    position: absolute;
    bottom: -30px;
    left: 80%;
    transform: translateX(-50%);
    background: #f28c28;
    color: #fff;
    text-align: center;
    padding: 20px 40px 5px;
    border-radius: 6px;
    border: 2px solid #1f3fa1;
}

.experience_box h2{
    font-size: 40px;
}

.experience_box p{
    font-size: 16px;
}

/* Content */
.about_content {
    max-width: 550px;
}

.small_title {
    color: #f28c28;
    font-weight: bold;
    font-size: 18px;
}

.about_content h1{
    font-size: 44px;
    margin: 15px 0 20px;
}

.about_content p{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.content_box {
    flex: 1;
    min-width: 350px;
}
.company_name {
    color: #e67e22;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.main_heading {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 800;
}

.description {
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Feature grid */
.features_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature_item {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.feature_item i{
    color: #f77138; 
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Right side image*/
.image_box {
    flex: 1;
    min-width: 350px;
}

.image_box img{
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}



/* services */
.section-padding {
    padding: 80px 0;
}

.main-heading {
    font-size: 42px;
    font-weight: 700;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
}

.image-box img {
    border-radius: 12px;
}

.section-padding {
    padding: 80px 0;
}

/* card section */
.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all .4s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background: #f9801c;
    border-radius: 0 0 40px 40px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.service-card h5{
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p{
    color: #6c757d;
    font-size: 15px;
}

.section-padding {
    padding: 80px 0;
}

.reason-title {
    font-size: 42px;
    font-weight: 700;
}

.watch-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: #a6ff8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: .4s ease;
}

.image-card img{
    width: 100%;
    transition: .5s ease;
}

.image-card:hover img{
    transform: scale(1.08);
}

.image-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, .18);
}

/* above footer */
.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f9801c;
    padding: 15px 35px;
    font-weight: 700;
    border-top-right-radius: 16px;
}

.cta-section {
    background: linear-gradient(120deg, rgb(85, 50, 53), #0b0d0b 60%);
    color: #fff;
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

/* top & bottom accent lines */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #f9801c;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #f9801c;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
}

.cta-text {
    max-width: 520px;
    color: #d0d0d0;
    margin-top: 20px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe066;
    font-weight: 600;
    margin-top: 25px;
    text-decoration: none;
    border-bottom: 1px solid #ffe066;
    width: max-content;
}

.phone-box {
    text-align: right;
}

.phone-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #ffe066;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffd52b;
    margin-left: auto;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
}

.phone-sub {
    color: #b5b5b5;
    margin-top: 5px;
}




.blogpage-section {
    position: relative;
    padding: 130px 0 120px;
    background: var(--e-global-color-white);
}
.blogpage-section .blog_content {
    text-align: center;
}
.blogpage-section .blog_content h2 {
    margin-bottom: 46px;
}
.blogpage-section .blog-box{
    position: relative;
    background: var(--e-global-color-white);
    box-shadow: 0px 0px 50px rgb(0 0 0 / 15%);
    transition: all 0.3s ease-in-out;
    margin-bottom: 32px;
}
.blogpage-section .blog-box img{
	width: 100%;
}
.blogpage-section .blog-box .lower-portion{
    padding: 26px 30px 20px;
    /* background: var(--e-global-color-secondary); */
	border-bottom: 1px solid var(--e-global-color-very-light-gray);
}
.blogpage-section .blog-box .lower-portion .content{
	display: flex;
	align-items: center;
}
.blogpage-section .blog-box .lower-portion .admin {
    margin-right: 20px;
}
.blogpage-section .blog-box .lower-portion i{
	position: relative;
    font-size: 18px;
    top: 3px;
    margin-right: 8px;
    color: var(--e-global-color-accent);
}
.blogpage-section .blog-box .lower-portion .text{
	font-size: 14px;
    line-height: 20px;
	display: inline-block;
    margin-bottom: 20px;
}
.blogpage-section .blog-box .lower-portion span{
    font-family: 'Montserrat', sans-serif;
	color: var(--e-global-color-secondary);
}
.blogpage-section .blog-box .lower-portion h5{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
	color: var(--e-global-color-secondary);
    position: relative;
    text-transform: capitalize;
}
.blogpage-section .blog-box .button-portion {
	position: relative;
	padding: 16px 0 16px 30px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.blogpage-section .blog-box .button-portion span {
    font-family: 'Montserrat', sans-serif;
    color: var(--e-global-color-secondary);
}
.blogpage-section .blog-box .button-portion .calendar-ml {
    font-size: 22px;
    color: var(--e-global-color-accent);
    margin-right: 5px;
    margin-bottom: 28px;
}
.blogpage-section .blog-box .button-portion .read_more {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 30px 0 0 30px;
    padding: 14px 24px 14px 26px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
	border: none;
    overflow: visible;
    outline: none;
}
.blogpage-section .blog-box .button-portion .read_more:hover {
	color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}


/* sliderrrrr */
.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-size: 60% 60%;
}


/* singli blog  */



.singleblog-section .main-box{
    border-radius: 0;
    position: relative;
    background: var(--e-global-color-white);
    box-shadow: 0px 0px 50px rgb(0 0 0 / 15%);
    transition: all 0.3s ease-in-out;
    padding: 10px 15px 40px;
    width: 104%;
    margin-left: -45px;
}
.singleblog-section .main-box .singleblog-image1{
    margin-bottom: 30px;
}
.singleblog-section .main-box .image1 img{
    border-radius: 10px;
	width: 100%;
}
.singleblog-section .main-box .content1{
    margin-left: 10px;
}
.singleblog-section .main-box h4{
    font-family: 'Inter', sans-serif;
}
.singleblog-section .main-box .content1 h4{
	color: var(--e-global-color-secondary);
    margin-bottom: 18px;
}
.singleblog-section .main-box .content1 i{
    font-size: 14px;
    color: var(--e-global-color-accent);
    margin-right: 4px;
}
.singleblog-section .main-box .content1 .calendar{
    font-size: 16px;
}
.singleblog-section .main-box .content1 span{
    font-family: 'Montserrat', sans-serif;
	color: var(--e-global-color-secondary);
    display: inline-block;    
    margin-bottom: 32px;
}
.singleblog-section .main-box .content1 .text-mr{
    margin-right: 10px;
}
.singleblog-section .main-box .content1 p{
    font-weight: 600;
    margin-bottom: 35px;
}
.singleblog-section .main-box .content2{
    background: var(--e-global-color-secondary);
    padding: 20px 32px 32px;
    border-radius: 0;
    margin-bottom: 34px;
}
.singleblog-section .main-box .content2 .singleblog-quoteimage{
    margin-bottom: 22px;
}
.singleblog-section .main-box .content2 p{
    font-style: italic;
}
.singleblog-section .main-box .text{
    font-weight: 600;
    margin-bottom: 35px;
    margin-left: 15px;
}
.singleblog-section .main-box .singleblog-image2{
    margin-bottom: 30px;
}
.singleblog-section .content4{
    padding: 0 14px;
    margin-bottom: 115px;
}
.singleblog-section .content4 h5{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
    text-transform: capitalize;
	color: var(--e-global-color-secondary);
}
.singleblog-section .content4 .tag li {
    display: contents;
}
.singleblog-section .content4 .tag .button{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    background: var(--e-global-color-secondary);
    color: #ffffff;
    border-radius: 0;
    padding: 10px 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-right: 4px;
}
.singleblog-section .content4 .tag .button2{
    padding: 10px 24px;
}
.singleblog-section .content4 .tag li:last-child {
    margin-right: 0;
}
.singleblog-section .content4 .tag .button:hover{
    background: var(--e-global-color-accent);
}
.singleblog-section .content4 .icon{
    position: relative;
}
.singleblog-section .content4 .icon h5{
    float: right;
}
.singleblog-section .content4 .icon .social-icons{
    top: 46px;
    right: -8px;
}
.singleblog-section .content4 .icon .social-icons ul li {
    margin: 0 5px;
    display: inline-block;
}
.singleblog-section .content4 .icon .social-icons ul li:first-child {
    margin-left: 0;
}
.singleblog-section .content4 .icon .social-icons ul li:last-child {
    margin-right: 0;
}
.singleblog-section .content4 .middle-portion a {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.6px;
    word-spacing: 0.2px;
}
.singleblog-section .content4 .icon .social-icons ul li .social-networks {
    font-size: 16px;
    border-radius: 100px;
    color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-secondary);
	background: var(--e-global-color-secondary);
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 35px;
    height: 35px;
    line-height: 35px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .content4 .icon .social-icons ul li .social-networks:hover {
    color: var(--e-global-color-accent);
    background: transparent;
    border: 1px solid var(--e-global-color-accent);
    transform: translateY(-5px);
}
.singleblog-section .content5{
    position: relative;
    text-align: center;
    margin-bottom: 45px;
}
.singleblog-section .content5 .singleblog-review1{
    position: absolute;
    left: 0;
    right: 0;
    top: -62px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .content5 .singleblog-review1:hover{
    transform: translateY(-5px);
}
.singleblog-section .content5 .singleblog-review1 img{
    border-radius: 100px;
}
.singleblog-section .content5 .content{
    padding: 82px 65px 20px;
    background: var(--e-global-color-secondary);
    border-radius: 0;
}
.singleblog-section .content5 .content h4{
    margin-bottom: 4px;
	color: var(--e-global-color-white);
}
.singleblog-section .content5 .content span{
    font-family: 'Montserrat', sans-serif;
    display: block;
	color: var(--e-global-color-white);
    margin-bottom: 14px;
}
.singleblog-section .content5 .content .text-size-14{
	color: var(--e-global-color-white);
}
.singleblog-section .content6{
    padding: 0 15px;
    margin-bottom: 58px;
}
.singleblog-section .content6:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 92%;
    height: 6px;
    left: 26px;
}
.singleblog-section .content6 h4{
    margin-bottom: 34px;
	color: var(--e-global-color-secondary);
}
.singleblog-section .content6 h4:after{
    content: "";
    border-bottom: 1px solid var(--e-global-color-accent);
    position: absolute;
    width: 23%;
    height: 45px;
    left: 23px;
}
.singleblog-section .content6 .comment{
    display: flex;
    margin: 0 0 24px 6px;
}
.singleblog-section .content6 .comment .image img{
    border-radius: 100px;
}
.singleblog-section .content6 .comment .content{
    padding: 13px 0 0 19px
}
.singleblog-section .content6 .comment h5{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 2px;
    text-transform: capitalize;
	color: var(--e-global-color-secondary);
}
.singleblog-section .content6 .comment span{
    margin-bottom: -38px;
    display: block;
    font-family: 'Montserrat', sans-serif;
	color: var(--e-global-color-accent);
}
.singleblog-section .content6 .comment .reply{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    background: var(--e-global-color-secondary);
    color: #ffffff;
    border-radius: 0;
    padding: 12px 28px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    float: right;
    right: -18px;
    top: -28px;
}
.singleblog-section .content6 .comment .reply:hover{
    background: var(--e-global-color-accent);
}
.singleblog-section .content6 .comment .text_holder p{
    display: inline-block;
    line-height: 24px;
    margin: 0 40px 12px 0;
    word-spacing: 1.6px;
}
.singleblog-section .content7{
    padding: 0 15px;
}
.singleblog-section .content7 h4{
    color: var(--e-global-color-secondary);
    margin-bottom: 28px;
}
.singleblog-section .content7 textarea {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
	color: var(--e-global-color-text);
    background: transparent;
	border: 1px solid var(--e-global-color-very-light-gray);
    border-radius: 0;
    padding: 18px 30px 20px;
    width: 100%;
    height: 184px;
    margin-bottom: 15px;
    resize: none;
    outline: none;
    overflow: auto;
	/* border: none; */
}
.singleblog-section .content7 input {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
	color: var(--e-global-color-text);
    background: transparent;
	border: 1px solid var(--e-global-color-very-light-gray);
    border-radius: 0;
    padding: 14px 30px;
    margin-bottom: 16px;
    width: 100%;
    overflow: visible;
    outline: none;
	/* border: none; */
}
.singleblog-section .content7 .text-mb {
    margin-bottom: 26px;
}
.singleblog-section .content7 .post_comment {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    padding: 25px 38px;
    border-radius: 0;
    color: #ffffff;
    background-color: var(--e-global-color-secondary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: block;
    text-align: center;
    outline: none;
    border-style: none;
}
.singleblog-section .content7 .post_comment:hover{
    background: var(--e-global-color-accent);
    color: #ffffff
}
.singleblog-section .column{
    margin-left: -20px;
}
.singleblog-section .box1{
    border-radius: 0;
    box-shadow: 0px 0px 100px rgba(0 0 0 / 10%);
    background: var(--e-global-color-white);
    padding: 34px 30px;
    margin-bottom: 43px;
    width: 110%;
}
.singleblog-section .box1 h5{
	position: relative;
    text-align: center;
    margin-bottom: 42px;
    padding-bottom: 10px;
    text-transform: capitalize;
	color: var(--e-global-color-secondary);
}
.singleblog-section .box1 h5:after{
    content: "";
    background: var(--e-global-color-accent);
	position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}
.singleblog-section .box1 input{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: 'Montserrat', sans-serif;
    background: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-very-light-gray);
    border-radius: 0;
    padding: 0 18px;
    width: 100%;
    height: 58px;
    overflow: visible;
    outline: none;
}
.singleblog-section .box1 .form-button{
	position: relative;
}
.singleblog-section .box1 .search{
    position: absolute;
    font-size: 18px;
    right: 0;
    top: -57px;
    width: 60px;
    height: 56px;
	border: 1px solid transparent;
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    border-radius: 0;
    outline: none;
    box-shadow: none;
	transition: all 0.3s ease-in-out;
}
.singleblog-section .box1 .search:hover{
    color: var(--e-global-color-accent);
    background: transparent;
	border: 1px solid var(--e-global-color-accent);
}
.singleblog-section .box2{
    text-align: center;
}
.singleblog-section .box2 h5{
    margin-bottom: 38px;
}
.singleblog-section .box2 ul li{
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 28px;
    color: var(--e-global-color-secondary);
}
.singleblog-section .box2 ul li:hover{
    color: var(--e-global-color-accent);
}
.singleblog-section .box3{
    text-align: center;
    padding: 30px 30px 60px;
}
.singleblog-section .box3 h5{
    margin-bottom: 43px;
}
.singleblog-section .box3 .social-icons ul li {
    margin: 0 10px;
    display: inline-block;
}
.singleblog-section .box3 .social-icons ul li:first-child {
    margin-left: 0;
}
.singleblog-section .box3 .social-icons ul li:last-child {
    margin-right: 0;
}
.singleblog-section .box3 .social-icons ul li .social-networks {
    font-size: 20px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    border-radius: 100px;
    border: 1px solid var(--e-global-color-secondary);
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 45px;
    height: 45px;
    line-height: 45px;
    transition: all 0.3s ease-in-out;
}
.singleblog-section .box3 .social-icons ul li .social-networks:hover {
    background: transparent;
    color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    transform: translateY(-5px);
}
.singleblog-section .box4 h5{
    margin-bottom: 36px;
}
.singleblog-section .box4 .tag li{
    margin-right: 8px;
    display: contents;
}
.singleblog-section .box4 .tag .button{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    background: var(--e-global-color-secondary);
    color: #ffffff;
    border-radius: 0;
    padding: 15px 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-bottom: 4px;
    letter-spacing: 0.6px;
}
.singleblog-section .box4 .tag .button2{
    padding: 15px 24px;
}
.singleblog-section .box4 .tag .button:hover{
    background: var(--e-global-color-accent);
    color: #ffffff;
}
.singleblog-section .box5{
    margin-bottom: 0 !important;
}
.singleblog-section .box5 h5{
    margin-bottom: 42px;
}
.singleblog-section .box5 .feed{
    position: relative;
	display: flex;
    align-items: center;
	margin-bottom: 35px;
    padding-bottom: 35px;
}
.singleblog-section .box5 .feed:after{
    content: "";
   	background: var(--e-global-color-accent);
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
	bottom: 0;
}
.singleblog-section .box5 .feed4{
    margin-bottom: 0 !important;
}
.singleblog-section .box5 .feed4:after{
    display: none;
}
.singleblog-section .box5 .feed .feed-image{
    width: 34%;
}
.singleblog-section .box5 .feed .feed-image img{
    border-radius: 0;
}
.singleblog-section .box5 .feed a{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    width: 66%;
    padding-left: 16px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.singleblog-section .box5 .feed a:hover{
    color: var(--e-global-color-accent);
}

/* BLOG PAGES */

/* .blog-posts iframe{
    height: 288px;
} */
.hide-blog {
    display: none;
}
/* .blog-posts .blogpost-box .lower-portion {
	background: var(--e-global-color-secondary);
} */
/* .blog-posts .infinite-blog .button-portion{
    background: var(--e-global-color-secondary);
} */
.blog-posts .load-more{
	text-align: center;
}
.blog-posts .onecolumn-blog .lower-portion h5 {
    margin-bottom: 12px;
}
.blog-posts .twocolumn-blog .lower-portion {
    padding: 26px 30px 30px;
}
.blog-posts .threecolumn-blog .lower-portion {
    padding: 26px 18px 20px;
}
.blog-posts .threecolumn-blog .button-portion {
    padding: 16px 0 16px 18px;
}
.blog-posts .threecolumn-blog .button-portion .read_more{
	padding: 10px 16px 10px 20px;
}
.blog-posts .threecolumn-blog .lower-portion .text-mr {
    margin-right: 28px;
}
.blog-posts .threecolumn-blog .button-portion .calendar-ml {
    margin-left: 0;
}
.blog-posts .fourcolumn-blog .lower-portion {
    padding: 26px 20px 20px;
}
.blog-posts .fourcolumn-blog .button-portion {
    padding: 16px 0 16px 20px;
}
.blog-posts .fourcolumn-blog .button-portion .read_more{
	padding: 10px 16px 10px 20px;
}
.blog-posts .fourcolumn-blog .lower-portion .text-mr {
    margin-right: 28px;
}
.blog-posts .onecolumn-blog iframe{
    height: 540px;
}
.blog-posts .twocolumn-blog iframe{
    height: 265px;
}
.blog-posts .embed-container{
    display: flex;
}
.blog-posts .three-blog iframe{
    height: 294px;
}
.blog-posts .threecolumn-blog iframe{
    height: 216px;
}
.blog-posts .fourcolumn-blog iframe{
    height: 216px;
}
