html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip; /* use hidden if clip not supported */
}
.heading-top{margin-top:25px;}
.navbar-light .navbar-toggler{
	border:none !important;
	color:transparent;
}
.spinner-border{
	border:.25em solid #FF5722 !important;
}
a {
    color: #f3f3f3 !important;
    text-decoration: none;
	font-size:15px;
}
a:hover, .fa, .fas, .footer .btn.btn-link::before {
    color: #ff5722 !important;
    text-decoration: none;
	font-size:15px;
}
h3 a {
    font-size: 1.75rem;
    color: #000 !important;
}
h3 a:hover {
    font-size: 1.75rem;
}
.navbar-nav a {
    color: #000 !important;
}
.logo{
    width:40%;
}
.listing{
    color: #000;
line-height: 30px;
}
.text p{
    color: #000;
    line-height: 27px;
    font-size: 15px;
}
.page-body p{
    color: #000;
    line-height: 27px;
    font-size: 15px;
	padding:2px;
}
.text-justify{
    text-align:justify;
}
.x-heading{
    color: #ff6600;
}
.bg-black{
    background: #222;
}
.bg-center{
    position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.project .nav .nav-link{
	border-bottom:5px solid #fff;
}
.w-90{
    width: 90%;
}
.footer p{
    color: #f3f3f3;
}
.btn-outline-body:hover {
    background: #000;
}
/*lift*/
.lift-box{
    width:100%;
    height:500px;
    background:#111;
    border-radius:12px;
    border:6px solid #444;
    position:relative;
    box-shadow:0 0 20px rgba(0,0,0,0.6);
    overflow:hidden;
}

/* Indicator */
.indicator{
    position:absolute;
    top:8px;
    width:100%;
    text-align:center;
    color:#00ff88;
    font-size:18px;
    font-weight:bold;
    z-index:10;
}

/* Cabin Inside */
.cabin{
    width:100%;
    height:100%;
    background:linear-gradient(#333,#111);
    position:absolute;
}

/* Doors */
.door{
    width:50%;
    height:100%;
    background:linear-gradient(
        90deg,
        #aaa,
        #eee,
        #999
    );
    position:absolute;
    top:0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.4);
}

/* Left Door */
.left-door{
    left:0;
    border-right:1px solid #555;
    animation:openLeft 5s infinite;
}

/* Right Door */
.right-door{
    right:0;
    border-left:1px solid #555;
    animation:openRight 5s infinite;
}

/* Door Lines (Real Look) */
.door::after{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:2px;
    height:100%;
    background:#666;
}

/* Animation */
@keyframes openLeft{
    0%,25%{transform:translateX(0);}
    50%,75%{transform:translateX(-100%);}
    100%{transform:translateX(0);}
}

@keyframes openRight{
    0%,25%{transform:translateX(0);}
    50%,75%{transform:translateX(100%);}
    100%{transform:translateX(0);}
}
/*end*/
.advantages {
      padding: 15px 5%;
      background: url("images/background.jpg") center/cover no-repeat;
      position: relative;
    }

    .advantages::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.85);
    }

    .advantages-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    /* Title */
    .advantages h2 {
      font-size: 36px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .advantages h2 span {
      position: relative;
      padding-bottom: 8px;
    }

    .advantages h2 span::after {
      content: "";
      width: 60px;
      height: 3px;
      background: #f1c40f;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
.advantages h4{
	margin-bottom:25px;
	font-size:30px;
}
    /* Cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }

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

    .card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .card-content {
      padding: 5px;
      text-align: left;
		margin-top:-10px;
    }

    .card-content h3 {
      font-size: 22px;
      color: #333;
		text-align:center;
    }

    .card-content p {
      font-size: 14px;
      line-height: 1.7;
      color: #000;
      margin-bottom: 20px;
	text-align:center;
    }


    /* Responsive */
    @media (max-width: 768px) {
      .advantages h2 {
        font-size: 30px;
      }
    }
/*Blog*/
.card.muse_threeblock_card img {
    width: 100%;
    height: auto;
}
.post-featured-image img, .archive-thumbnail img {
    width: 100%;
    object-fit: cover;
    height: auto;
}
/*Blog*/