/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --main-color:   #eece38;
    --olive-drab:   #46412d;
    --charcoal:     #181818;
    --deep-teal:    #1f4e3d;
    --pale-lime:    #f0f88b;
    --off-white:    #f8fafe;
    --green-color:  #18a86b;
    --br-global:    10px;
}
::selection {
    background: var(--main-color);
    color: var(--olive-drab);
}
body {
    font-family: "Nunito", sans-serif;
    color: var(--charcoal);
}
h1 {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 900;
    margin: 0;
    padding: 0;
}
h2 {
    line-height: 1;
    font-weight: 900;
    color: var(--olive-drab);
}
h3 {
    line-height: 1;
    font-weight: 700;
}
h4 {
    line-height: 1;
    font-weight: 700;
}
@media (min-width: 576px) {
    h1 {
        font-size: 3rem;
    }
}
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
}
@media (min-width: 992px) {
    h1 {
        font-size: 6rem;
    }
}
a {
    text-decoration: none;
}

/* Components */
.main-btn {
    background-color: var(--main-color);
    color: var(--olive-drab);
    font-weight: bold;
    line-height: 22px;
    padding: 1rem 2rem;
    border-radius: var(--br-global);
    display: flex;
    align-items: center;
    column-gap: 10px;
    width: fit-content;
    transition: all 0.3s ease-out 0s;
}
.main-btn::after {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400;
    content: "\f35a"; 
}
.main-btn:hover {
    background-color: var(--olive-drab);
    color: var(--main-color);
}
.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-holder {
    background-color: var(--deep-teal);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--br-global);
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    padding: 10px;
}

/* Navbar */
.scrolled {
    background-color: #0d1615;
}
nav .navbar-brand img {
    max-width: 180px;
}
@media (max-width: 767px) {
    nav .navbar-brand img {
        max-width: 150px;
    }
}
nav .navbar-toggler {
    border: 0;
}
nav .navbar-toggler:focus {
    box-shadow: none;
}
nav .navbar-toggler .menu-bar {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5em;
    color: white;
}
nav .offcanvas {
    width: 300px !important;
}
nav .offcanvas-body .navbar-nav {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: var(--br-global);
}
nav .offcanvas-body .navbar-nav a.nav-link {
    color: var(--olive-drab);
}
nav .offcanvas-body .navbar-nav a.nav-link:hover {
    color: #768b55;
}
nav .offcanvas-body a.main-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    nav .offcanvas-body {
        align-items: center;
    }
    nav .offcanvas-body .navbar-nav {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
    }
    nav .offcanvas-body .navbar-nav a.nav-link {
        color: white;
    }
    nav .offcanvas-body .navbar-nav a.nav-link:hover {
        color: #ffffff80;
    }
    nav .offcanvas-body a.main-btn {
        margin-top: 0;
        margin-left: auto !important;
    }
}
nav .dropdown a#navbarDropdownMenuLink::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
    font-size: 13px;
}
nav .dropdown .dropdown-menu {
    transition: opacity 0.3s ease;
    opacity: 0;
    border-radius: var(--br-global);
    box-shadow: 0 0 10px #0000000a;
    width: 14rem;
    border: none;
    padding: 1rem 1.5rem;
}
@media (max-width: 992px) {
    nav .dropdown .dropdown-menu {
        box-shadow: none;
    }
}
nav .dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 1;
}
nav .dropdown .dropdown-menu .dropdown-item {
    text-transform: capitalize;
    background-image: url(../img/svg/arrow-corner-dark.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 0 34px;
    width: 100%;
    padding: 8px 8px 8px 0;
    font-size: 16px;
    transition: all .3s;
    display: flex;
}
nav .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    background-size: 10px 34px;
    padding-left: 25px;
    color: #768b55;
}
nav .dropdown .dropdown-menu .dropdown-item.active, .dropdown-item:active {
    color: inherit !important;
    background-color: inherit !important;
}

/* Hero Header Carousel*/
.carousel-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.carousel {
    width: 100%;
    height: 100vh;
}
.carousel .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    display: none;
}
.carousel .carousel-slide.active {
    opacity: 1;
    animation: flashEffect 0.5s ease-in-out;
    display: block;
    pointer-events: none;
}
.carousel .carousel-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
}
.carousel .carousel-content h1 > span {
    color: var(--main-color);
}
.carousel .carousel-content p {
    max-width: 70%;
    line-height: 1.5;
}
.carousel .carousel-content a.main-btn {
    margin-top: 4rem;
}
.carousel .carousel-slide.active a.main-btn {
    pointer-events: auto;
    z-index: 1;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f2f2f2;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 1.5px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s;
}
.carousel-btn:hover {
    color: var(--main-color);
}
.prev-btn {
    left: 7.5%;
}
.next-btn {
    right: 7.5%;
}
.carousel-btn:focus {
    outline: none;
}
@media (max-width: 768px) {
    .carousel-btn {
    display: none;
    }
    .carousel-content h1 {
    font-size: 2rem;
    }
    .carousel-content p {
    font-size: 1rem;
    }
}

/* Features */
    /* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-container .marquee-track {
    display: inline-flex;
    white-space: nowrap;
    position: relative;
    animation: none;
}
.marquee-container .marquee-track h1 {
    margin-right: 2rem;
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--main-color);
    padding: 0px 10px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--main-color);
}
@media (min-width: 992px) {
    .marquee-container .marquee-track h1 {
        font-size: 7rem;
    }
}

    /* Legacy Title */
.features .legacy-head h3 {
    font-size: 10rem;
    font-weight: 900;
    color: var(--main-color);
    opacity: 0.3;
}
.features .legacy-head h2 {
    width: 100%;
    margin-top: -150px;
    position: absolute;
    z-index: 10;
}
.features h3.features-heading {
    font-weight: 700;
}

@media (min-width: 992px) {
    .features .legacy-head h3 {
        font-size: 15rem;
    }
    .features .legacy-head h2 {
        font-size: 3rem;
    }
}

.features .features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}
@media (min-width: 768px) {
    .features {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
.features .feat {
    background-color: var(--off-white);
    padding: 1rem;
    border-radius: var(--br-global);
    transition: 20s;
}

.features .feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 10px rgba(136, 136, 136, 0.1);
}

.features .icon-holder .icon {
    color: var(--pale-lime);
}
.features .feat h4 {
    color: var(--olive-drab);
    font-size: 18px;
}
.features .feat:hover h4 {
    color: var(--main-color);
}
.features .feat p {
    margin-bottom: 0 !important;
}

/* About Us */
.about-us .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.about-us p {
    color: var(--olive-drab);
    font-size: 14px;
}
.about-us .section-content {
    line-height: 1.8;
    position: relative;
    z-index: 2;
}
.about-us .section-content .section-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}
.about-us .section-content .section-wrapper .about-item h4 {
    font-size: 20px;
}
.about-us img {
    max-width: 100%;
}
.about-us img.about-img {
    animation: up-down 3s ease-in-out infinite;
}
.about-us > img {
    display: none;
}
@media (min-width: 768px) {
    .about-us {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
@media (min-width: 992px) {
    .about-us .container {
        flex-direction: row;
        gap: 4rem;
        margin: 0;
        padding: 0;
        flex: 1;
    }
    .about-us .section-content {
        flex: 1;
    }
    .about-us .section-content  h2 {
        font-size: 35px;
        margin-bottom: 1rem;
    }
    .about-us > img {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        opacity: 0.3;
    } 
    
}

/* Synergy */
.synergy {
    color: var(--olive-drab);
    line-height: 1.8;
}
.synergy h1 {
    color: var(--main-color);
}
.synergy h1 span {
    font-weight: 500;
    color: var(--olive-drab);
}
.synergy p {
    margin: 0 auto 0px;
    max-width: 700px;
}
@media (min-width: 768px) {
    .synergy {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
@media (min-width: 992px) {
    .synergy p {        
        font-size: 1.5rem;    
    }
}

/* Our Products */
.our-products {
    height: 628px;
    background-image: url('../img/our-products/products-back-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--main-color);
}
.our-products::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/our-products/products-back-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: back-effect 5s infinite;
}
@media (min-width: 768px) {
    .our-products {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
.our-products .container {
    z-index: 2;
}
.our-products p {
    max-width: 700px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Statistics */
.statistics {
    min-height: 300px;
    color: var(--olive-drab);
}
.statistics h2 {
    font-size: 70px;
    color: transparent;
    background: url(../img/01.webp) no-repeat center;
    background-size: cover;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}
.statistics h2::selection {
    color: black;
    background: transparent;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
}
@media (min-width: 768px) {
    .statistics {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .statistics h2 {
        font-size: 120px;
    }
}
@media (min-width: 1200px) {
    .statistics h2 {
        font-size: 200px;
    }
}
.statistics .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.statistics .box {
    background-color: var(--off-white);
    padding: 15px;
    border-radius: var(--br-global);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: 0.35s;
}
.statistics .box .icon {
    background-color: var(--deep-teal);
    color: var(--pale-lime);
    font-size: 1.25rem;
    border-radius: var(--br-global);
    padding: 15px;
}
.statistics .box .number {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}
.statistics .box .text {
    color: var(--charcoal);
    font-style: italic;
    font-size: 15px;
    font-weight: bold;
}

/* Growth */
.growth {
    background-image: url('../img/growth/growth-back-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--main-color);
}
.growth::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/growth/growth-back-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: back-effect-2 5s infinite;
}
@media (min-width: 768px) {
    .growth {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
.growth .container {
    z-index: 2;
}
.growth h2 {
    max-width: 850px;
    font-size: 40px;
    line-height: 1.25;
    color: var(--main-color);
}
.growth p {
    max-width: 700px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Testimonials */
@media (min-width: 768px) {
    .testimonials {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .testimonials::before {
        content: "";
        width: 150px;
        height: 140%;
        top: 0px;
        right: 0;
        background: linear-gradient(270deg, rgb(255, 255, 255) 20%, rgba(255, 248, 203, 0) 100%);
        position: absolute;
        z-index: 1;
    }
    .testimonials::after {
        content: "";
        width: 150px;
        height: 140%;
        top: 0px;
        left: 0;
        background: linear-gradient(90deg, rgb(255, 255, 255) 20%, rgba(255, 248, 203, 0) 100%);
        position: absolute;
        z-index: 1;
    }
    .testimonials h2 {
        margin-bottom: 6rem !important;
        padding: 0 !important;
    }
}
.testimonials .tst-wrapper {
    display: grid;
    grid-auto-flow: column;
    gap: 30px;
    animation: scroll-right 10s linear infinite;
}
.testimonials .box {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--br-global);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: 0.35s;
    position: relative;
    box-shadow: 0px 0px 18px 2px rgba(4, 1, 17, 0.08);
    transition: 400ms ease;
    width: 320px;
}
@media (min-width: 768px) {
    .testimonials .box {
        width: 420px;
        padding: 2rem;
    }
}
.testimonials .box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
}
.testimonials .box .rate {
    color: var(--main-color);
    margin-bottom: 10px;
}
.testimonials .box .customer {
    display: flex;
    align-items: center;
    gap: 20px;
}
.testimonials .box p{
    font-size: 15px; 
}
.testimonials .box .customer h4{
    font-size: 20px;   
}
@media (min-width: 768px) {
    .testimonials .box p{
        font-size: 17px; 
    }
    .testimonials .box .customer h4{
        font-size: 1.5rem;   
    }
}
.testimonials .box .customer img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Certified Quality */
.certified  .cert-wrapper {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    animation: scroll-left 10s linear infinite;
}

/* Footer */
    /* Footer General */
    footer h4 {
        margin-bottom: 1.5rem;
    }
    footer a {
        color: #a6a6a6;
        transition: 0.3s;
    }
    footer a:hover {
        color: var(--main-color);
    }
    
footer {
    background-color: var(--charcoal);
    color: #a6a6a6;
    line-height: 1.7;
}

@media (min-width: 768px) {
    footer .footer-head {
        flex-direction: row;
    }
}
footer .footer-head > div {
    padding: 40px 30px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color:rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}
@media (min-width: 992px) {
    footer .footer-head > div:first-child,
    footer .footer-head > div:nth-child(2)
    {
        border-right: none;
    }
}
footer .footer-head .logo img {
    max-width: 250px;
}
@media (max-width: 767px) {
    footer .footer-head img {
        max-width: 200px;
    }
}
footer .footer-head .info-icon .svg-inline--fa {
    color: var(--olive-drab);
    font-size: 1.5rem;
}
footer .footer-head .info span {
    font-size: 13px;
    color: white;
    display: inline-block;
    line-height: 1.5;
}
footer .social a svg {
    padding-left: 0 !important;
    padding-bottom: 0 !important;
}
footer .links a::before {
    content: "\f054";
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    margin-right: 10px;
}
footer .links > ul > li:last-of-type a::before {
    content: "\f078";
}
footer .links .sub-list {
    margin-left: 2rem;
}

/* About Us Page */
.about-header {
    height: 70vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-header .content {
    position: relative;
    z-index: 2;
    color: white;
}
.about-header .content h4 {
    margin-top: 5px;
    color: var(--main-color);
}
@media (min-width: 768px) {
    .our-vision,
    .our-principles {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
@media (min-width:992px) {
    .our-vision .container,
    .our-principles .container {
        width: 66.66% !important;
    }
}
.our-vision .content p,
.our-principles .content p {
    font-size: 18px;
}
@media (max-width: 768px) {
    .our-vision .content p,
    .our-principles .content p {
        font-size: 16px;
    }
}

/* Our Journey */
.our-journey {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
}
@media (min-width: 768px) {
    .our-journey {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
.our-journey .container {
    z-index: 2;
}
.our-journey h1 {
    font-size: 3rem;
    line-height: 1.25;
    padding: 16px 24px 0 0;
    margin-bottom: 12rem;
}
.our-journey .feat h3 {
    line-height: 1.25;
    margin-bottom: 20px;
}
.our-journey .feat .svg-inline--fa {
    color: var(--main-color);
}
.our-journey .feat p {
    line-height: 1.5;
}
@media (min-width: 991px) {
    .our-journey .feat:nth-child(2) {
        margin-top: -10rem;
    }
    .our-journey .feat p {
        max-width: 360px;
    }
}

/* Products Page */
.products-header {
    height: 70vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.products-header .content {
    position: relative;
    z-index: 2;
    color: var(--olive-drab);
}

/* contact Us Page */
/* Contact Header */
.contact-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70dvh;
}
.contact-header .content {
    z-index: 2;
    color: #f2f2f2;
}
.contact-header .content h4 {
    margin-top: 5px;
    color: var(--main-color);
}

/* Contact Information Section */
@media (min-width: 768px) {
    .contact-info {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}
.contact-info .text-area h2 {
    max-width: 550px;
    line-height: 1.5;
    font-size: 40px;
    font-weight: 800;
    color: var(--charcoal);
}
@media (max-width: 767px) {
    .contact-info .text-area h2 {
        font-size: 30px;
    }
}
.contact-info .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (min-width: 992px) {
    .contact-info .info-cards {
        width: 80%;
    }
}
.contact-info .info-cards .card {
    border: none;
    border-radius: var(--br-global);
    box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
    padding: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}
.contact-info .info-cards .card:hover {
    background-color: #2c2c22;
}
.contact-info .info-cards .card::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    position: absolute;
    top: -16px;
    right: 24px;
    font-size: 126px;
    color: rgba(44, 44, 44, 0.08);
    z-index: -1;
    transition: 0.01s;
}
.contact-info .info-cards .card:hover::before {
    color: rgba(255, 255, 255, 0.02);
}
.contact-info .info-cards .card:first-child::before {
    content: "\f3c5";
}
.contact-info .info-cards .card:nth-child(2)::before {
    content: "\f0e0";
    font-weight: 500;
}
.contact-info .info-cards .card:last-child::before {
    content: "\f879";
}
.contact-info .info-cards .card:hover .info-icon {
    background-color: transparent;
    border: 1px solid #767676;
}
.contact-info .info-cards .card .info-icon .svg-inline--fa {
    color: var(--olive-drab);
    font-size: 1.5rem;
}
.contact-info .info-cards .card:hover .svg-inline--fa {
    color: var(--main-color);
}
.contact-info .info-cards .card h3 {
    margin-top: 1.5rem;
    font-size: 22px;
    font-weight: 800;
}
.contact-info .info-cards .card:hover h3 {
    color: white;
}
.contact-info .info-cards .card p {
    margin: 0 !important;
}
.contact-info .info-cards .card a {
    color: var(--olive-drab);
}
.contact-info .info-cards .card:hover p,
.contact-info .info-cards .card:hover a {
    color: #767676;
}
.contact-info .img-holder {
    position: absolute;
    top: -1rem;
    right: 18%;
    width: 420px;
}
.contact-info .img-holder img {
    max-width: 100%;
    border-radius: 0px 260px 260px 260px;
}

/* Contact Form Section */
.contact-holder {
    margin-bottom: 11rem !important;
}
.form-holder {
    background-color: white;
    margin-top: -450px;
    position: relative;
    z-index: 100;
    box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
    width: fit-content;
}
.form-holder h2 {
    font-size: 3rem;
    margin-right: 6rem;
    line-height: 0.5;
}
.form-holder > span {
    font-size: 1.25rem;
    font-weight: 800;
    color: rgb(149, 139, 95);
    
}
.form-holder form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-holder .form-control {
    border-radius: 7px;
    border: 1px solid rgba(31, 30, 23, 0.1);
    font-size: 20px;
    font-weight: 700;
    color: var(--olive-drab);
    padding: 0 2rem;
    height: 4rem;
    outline: none;
}
.form-holder .form-control:focus {
    background-color: #f8f6ef;
    border-color: transparent;
    box-shadow: none;
}
.form-holder textarea.form-control {
    height: 150px;
}
.form-holder form .main-btn {
    padding: 15px 28px;
    border: none;
}

@media (max-width: 767px) {
    .form-holder  {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .form-holder h2 {
        font-size: 2rem;
        margin-right: 4rem;
    }
    .form-holder > span {
        font-size: 1rem;
    }
    .form-holder form {
        gap: 1.25rem;
    }
    .form-holder .form-control {
        padding: 0 1.5rem;
        height: 3rem;
    }
}

/* Animations */
@keyframes flashEffect {
    0% {
        filter: brightness(1.25);
    }
    50% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1);
    }
}
@keyframes up-down {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(1rem);
    }
}
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}
@keyframes back-effect {
    0%, 49.9% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    50.1%, 100% {
        opacity: 0;
    }
}

@keyframes back-effect-2 {
    0%, 49.9% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    50.1%, 100% {
        opacity: 0;
    }
}