html {
    scroll-behavior: smooth;
    scroll-padding: 10rem;
}
.bg-theme {
    background: #e7d9b6;
}
.section {
    width: 100%;
    height: 100vh;
}

a {
    text-decoration: none;
}

.home-section {
    background-color: #dafff4;
    height: calc(100vh - 50px);
    padding: 20px 0;
}
.about-section {
    /* background-color: #9fa0a0; */
    margin-top: 10px;
}
.about-section h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}
h2 {
    font-weight: 800;
}
.home-image {
    max-height: 550px;
}
/* .container {
    max-width: 960px;
  } */

p,
ol {
    font: 1em;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
/* Custom CSS for the animated line */
.animated-line {
    height: 4px; /* Set the height of the line */
    width: 60%; /* Set the initial width of the line */
    background: linear-gradient(
        to right,
        #e7d9b6,
        #b19c67
    ); /* Set the gradient background */
    position: absolute;
    bottom: 0%; /* Center the line vertically */
    left: 50%; /* Center the line horizontally */
    transform: translate(-50%, -50%); /* Center the line precisely */
    animation: expandLine 2s ease-in-out infinite alternate; /* Animation settings */
}

/* Animation keyframes */
@keyframes expandLine {
    to {
        width: 100%; /* Set the width to 100% at the end of the animation */
    }
}

.bg-about {
    background-image: url("../images/img/nfes-logo.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-attachment: fixed;
}

.about-page {
    background-color: rgba(
        255,
        255,
        255,
        0.8
    ); /* Adjust the alpha value for the desired transparency */
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.site-header {
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
    color: #8e8e8e;
    transition: color 0.15s ease-in-out;
}
.site-header a:hover {
    color: #fff;
    text-decoration: none;
}

/*
   * Dummy devices (replace them with your own or something else entirely!)
   */

.product-device {
    position: absolute;
    right: 10%;
    bottom: -30%;
    width: 300px;
    height: 540px;
    background-color: #333;
    border-radius: 21px;
    transform: rotate(30deg);
}

.product-device::before {
    position: absolute;
    top: 10%;
    right: 10px;
    bottom: 10%;
    left: 10px;
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.product-device-2 {
    top: -25%;
    right: auto;
    bottom: 0;
    left: 5%;
    background-color: #e5e5e5;
}

.slide {
    max-height: 500px;
}
.social-btn {
    font-size: 20px;
}

.h-title {
    font-weight: 700;
    color: orange;
}
.g-card {
    position: relative;
    max-height: 200px;
    overflow: hidden;
}


.g-card img {
    object-fit: contain;
    width: 100%;
    height: 160px;
    object-fit: fill;
}
.g-card .g-caption{
  position: absolute;
  bottom: -50%;
  padding-top: 0.8rem;
  padding-left: 5px;
  height: 40%;
}
.g-card:hover .g-caption {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 500ms ease-in-out;
    bottom: 0;
}
.swiper {
    width: 100%;
    height: 85%;
}

.swiper-slide-s {
    /* text-align: center; */
    background: #dafff4;
    display: flex;
    /* align-items: center; */
    width: 100%;
    height: 90%;
}

.swiper-slide-s img {
    display: block;
    width: 100%;
    height: 95%;
    object-fit: contain;
}

/*
   * Extra utilities
   */

.flex-equal > * {
    flex: 1;
}
@media (max-width: 767px) {
    .flex-md-equal > * {
        flex: 1;
    }
    .min-height {
        max-height: 450px;
        height: 450px;
        overflow-y: auto;
    }

    .home-section {
        /* background-color: #dafff4; */
        height: calc(100vh - 40px);
       
    }

    .about-section {
        /* background-color: #9fa0a0; */
        margin-top: 10px;
    }
    .h-title {
        font-size: 0.9rem;
    }

    .swiper {
        height: 85%;
    }
}
