/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  font-family: 'Urbanist', sans-serif;
}

body {
  font-family: 'Urbanist', sans-serif;
  color: #212529;
}

a {
  color: #eb5d1e;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
}

a:hover {
  color: #ef7f4d;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: 'Urbanist', sans-serif;
}

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: 'Urbanist', sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
  font-family: 'Urbanist', sans-serif;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#main {
  margin-top: 72px;
  font-family: 'Urbanist', sans-serif;
}

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

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  font-family: 'Urbanist', sans-serif;
}

.navbar li {
  position: relative;
  font-family: 'Urbanist', sans-serif;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
  font-size: 15px;
  color: #4e4039;
  white-space: nowrap;
  transition: 0.3s;
}

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

/* hover effect on navbar */
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s;
  font-family: 'Urbanist', sans-serif;
}

nav ul li:not(:last-child) a:hover::after {
  border-bottom-color: #f97c45;
}

.navbar-nav li:last-child a::after {
  border-bottom: none;
  /* Remove the border-bottom on the last list item */
}

.navbar-nav li a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #F97C45;
  position: relative;
}

/* end hover effect on nav bar */
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #eb5d1e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #F97C45;
  color: #fff;
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 5px;
  font-family: 'Urbanist', sans-serif;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #F97C45;
  font-family: 'Urbanist', sans-serif;
}

.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: 15px;
  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: #eb5d1e;
}

.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: #7a6960;
  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(78, 64, 57, 0.9);
  transition: 0.3s;
}

.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: #7a6960;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #eb5d1e;
  font-family: 'Urbanist', sans-serif;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  font-family: 'Urbanist', sans-serif;
}

.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);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  /* border-bottom: 2px solid #fcebe3; */
  margin: 72px 0 -72px 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
  font-family: 'Urbanist', sans-serif;
}

#hero h2 {
  color: #F97C45;
  margin: 15px 0 0 0;
  font-size: 24px;
  font-weight: 800;
  font-family: 'Urbanist', sans-serif;
}

#hero p {

  margin: 15px 0 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.7px;
  letter: 8%;
  font-family: 'Urbanist', sans-serif;
}

#hero strong {

  margin: 15px 0 0 0;
  font-size: 12px;
  line-height: 19.7px;
  letter: 8%;
  font-family: 'Urbanist', sans-serif;
}

#hero .btn-our-services {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid #F97C45;
  border-radius: 3px;
  transition: 0.5s;
  color: #000000;
  background: #F8F8F8;
  margin: 30px 20px 20px 0;
}


#hero .btn-about-us {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 3px;
  transition: 0.5s;
  color: #000000;
  background: #eb5d1e;
  margin: 30px 20px 20px 0;
}


@media (max-width: 991px) {
  #hero {
    height: calc(120vh - 72px);
  }



  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    font-family: 'Urbanist', sans-serif;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 120vh;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* choose us */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 span {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0px;
  /* Adjust the value to control the space */
  padding-bottom: 20px;
  position: relative;
  color: #000000;
  border-bottom: 2px solid #ffffff;
  font-family: 'Urbanist', sans-serif;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #fef5f1;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* cards */

.cards {
  padding: 60px 0 80px 0;
  background-image: linear-gradient(rgba(249, 124, 69), rgba(249, 124, 69)), url("../images/polygon pattern.png");
}

.cards img {
  border-radius: 0;

}

.cards .card {
  /* border: 0; */
  text-align: center;
}

.cards .card-body {
  -moz-text-align-last: center;
  text-align-last: center;
  background-color: #000000;
  margin: 0px 12px 0px 12px;
  border-radius: 5px;
  font-family: 'Urbanist', sans-serif;
}

.cards .card-title a {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  transition: 0.3s;
  font-family: 'Urbanist', sans-serif;
}

.cards .card-title a:hover {
  color: #00c1c1;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  font-family: 'Urbanist', sans-serif;
}

.services .icon-box i {
  font-size: 48px;
  float: left;
  color: #7cc576;
}

.services .icon-box p {
  font-size: 15px;
  color: #959595;
  margin-left: 60px;
  font-family: 'Urbanist', sans-serif;
}

.services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/* end */
/* services banner */
#about .services-banner {
  width: 500px;
  height: 500px;
}

#about .container .section-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  font-family: 'Urbanist', sans-serif;
}

#about .container .section-header button {
  background-color: #F97C45;
  padding: 2px 5px 2px 5px;
  border-radius: 5px;
  border: 1px solid #F97C45;
  font-family: 'Urbanist', sans-serif;
}

/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
  padding-top: 40px;
  font-family: 'Urbanist', sans-serif;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
  font-family: 'Urbanist', sans-serif;
}

#about .about-container p {
  line-height: 26px;
  font-family: 'Urbanist', sans-serif;
}

#about .about-container p:last-child {
  margin-bottom: 0;
  font-family: 'Urbanist', sans-serif;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
}

#about .about-container .icon-box .icon img {
  display: flex;
  justify-content: flex-start;
  color: #007bff;
  width: 90px;
  height: 90px;
  border: 1px solid #F97C45;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 7px;
  margin-top: 25px;
}



#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
  font-family: 'Urbanist', sans-serif;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
  font-family: 'Urbanist', sans-serif;
}

#innovation {
  background: rgba(249, 124, 69, 0.61);
  font-family: 'Urbanist', sans-serif;
}

.about-extra {
  padding-top: 60px;
  font-family: 'Urbanist', sans-serif;
}

.about-extra-content p {
  font-family: 'Urbanist', sans-serif;
}

.about-extra h4 {
  padding: 20px;
  font-weight: 600;
  font-size: 24px;
  color: #FFF;
  font-family: 'Urbanist', sans-serif;
}

.about-extra img {
  width: 200px;
  height: 200px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #212529;
  font-size: 14px;
  background: #fef8f5;
}


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

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5c5c5c;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-contact strong {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5c5c5c;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f39e7a;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-links ul a {
  color: #5c5c5c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-family: 'Urbanist', sans-serif;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #eb5d1e;
}


#footer .copyright {
  text-align: center;
  float: left;
  font-family: 'Urbanist', sans-serif;
}

#footer .copyright span {
  font-family: 'Urbanist', sans-serif;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #000000;
  font-family: 'Urbanist', sans-serif;
}


@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

/*--------------- services.html ----------------------------------*/
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url("../images/pexels-kindel-media-7688336.jpg") top center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
}


.cta .cta-btn {
  font-family: 'Urbanist', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #F97C45;
  border: 2px solid #F97C45;
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
}

#services-intro .container {
  padding: 0 15px;
}

.services-div {
  text-align: left;
}

.services-div h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 39px;
  letter-spacing: 1.39px;
  font-family: 'Urbanist', sans-serif;
}

.services-div p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.96px;
  font-family: 'Urbanist', sans-serif;
}

@media (min-width: 576px) {
  #services-intro .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  #services-intro .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  #services-intro .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  #services-intro .container {
    max-width: 1140px;
  }
}

#services-cards .card {
  max-width: 400px;
}

#services-cards .card-img-top {
  display: flex;
  justify-content: space-around;
  width: 200px;
  height: auto;
}

#cards-section {
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#services-cards .card-body {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  height: 200px;
  padding: 20px;
}

#services-cards .card-title {
  margin-bottom: 10px;
  font-weight: 800;
  font-family: 'Urbanist', sans-serif;
}

#services-cards .card-text {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.72px;
  font-family: 'Urbanist', sans-serif;
}

#services-cards .card-title span {
  background-color: #000000;
  color: #ffffff;
  font-weight: 200;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 8px;
  font-family: 'Urbanist', sans-serif;
}

/* Responsive Styling */
@media (max-width: 576px) {

  #services-cards .card,
  #services-cards .card-body {
    max-width: 100%;
    width: 100%;
  }
}

/* about us.html */
/*--------------------------------------------------------------
# details section
--------------------------------------------------------------*/
#details h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 10%;
  padding-bottom: 30px;
  font-family: 'Urbanist', sans-serif;
}

#details p {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 10%;
  font-family: 'Urbanist', sans-serif;
}

#details .content img {
  float: right;
  width: 400px;
  height: 400px;
}

/* black about section */
#about-black {
  background-color: #242424;
}

#about-black .container p {
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
}

#about-black .container span {
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
}

/* end black about section */
/* team section */
#team .container .member img {
  display: flex;
  justify-content: space-between;

}

.member img {
  box-shadow: 10px 10px #F97C45;
}

.member-info-content h4 {
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  margin-top: 8px;
  font-family: 'Urbanist', sans-serif;
}

.member-info-content span {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: 'Urbanist', sans-serif;
}

/* contact.html */

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #313030;
  padding: 3px;
}

.contact .info-box i {
  font-size: 25px;
  color: #292D32;
  border-radius: 50%;
  padding: 5px;
  float: left;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #F97C45;
  font-weight: 600;
  line-height: 40px;
  margin: 10px 0 10px 30px;
  font-family: 'Urbanist', sans-serif;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 30px;
  font-family: 'Urbanist', sans-serif;
}

.info-box strong {
  font-family: 'Urbanist', sans-serif;
}

.contact-section-title {
  text-align: center;
}

.contact-section-title h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 39px;
  font-family: 'Urbanist', sans-serif;
}

.contact-section-title p {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  font-family: 'Urbanist', sans-serif;
}

.contact-section-title span {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  font-family: 'Urbanist', sans-serif;
}

/* Blogs.html */
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.blogs-hero {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.3)), url("../images/istockphoto-1285395672-612x612 1.png") top;
  background-size: cover;
  padding: 120px 0;
}

.blogs-hero h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
}

/* blogs main */
/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Caudex&display=swap");

* {
  font-family: "Caudex", serif;
}

#blog {
  padding: 5rem 2rem;
}

#blog .blog-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 6rem;
}

#blog .blog-box .blog-image {
  width: 40%;
  overflow-x: hidden;
}

#blog .blog-box .blog-image img {
  /* width: 100%; */
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

#blog .blog-box h1 {
  position: absolute;
  top: -7.5rem;
  left: 0;
  font-size: 5rem;
  font-weight: 500;
  color: #4cb0b0;
  font-family: 'Urbanist', sans-serif;
}

#blog .blog-details {
  width: 50%;
  padding: 0 1rem;
}

#blog .blog-details a {
  text-decoration: none;
  /* color: #046969; */
  position: relative;
  /* background-image: linear-gradient(90deg, #F97C45, #F97C45); */
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: left bottom;
  -webkit-transition: background-size 300ms ease;
  transition: background-size 300ms ease;
}

#blog .blog-details a::after {
  content: "";
  width: 3rem;
  height: 2px;
  background-color: #004e4e;
  position: absolute;
  top: 10px;
  right: -4rem;
}

#blog .blog-details h4 {
  font-family: 'Urbanist', sans-serif;
}

#blog .blog-details p {
  font-family: 'Urbanist', sans-serif;
}

#blog .blog-details a:hover {
  background-size: 100% 3px;
}

#blog .blog-details a:hover::after {
  background-image: linear-gradient(90deg, #F97C45, #F97C45);
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: left bottom;
  -webkit-transition: background-size 300ms ease;
  transition: background-size 300ms ease;
  background-size: 100% 3px;
}

@media screen and (max-width: 992px) {
  #blog .blog-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #blog .blog-box .blog-image {
    width: 100%;
    padding: 0;
  }

  #blog .blog-details {
    width: 100%;
    padding: 0;
  }

  #more {
    display: none;
  }
}