@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {

    --main-color: #733736;
    --secondary-color: #512A2A;
    --footer-bg: #733736;
    --white-color: #ffffff;
    --black-color: #000000;
}

body {
    font-family: "Montserrat", sans-serif;
}
body {
    opacity: 0;
    animation: fadeInBody 1s ease-in-out forwards;
  }
  
  @keyframes fadeInBody {
    to {
      opacity: 1;
    }
  }
ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

.common-section {
    padding: 40px 0px;
}

.common-btn-white {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
    transition: all ease-in-out 0.5s;
 
}

.common-btn-white:hover {
    background: var(--white-color);
    border: 1px solid transparent;
    color: var(--black-color);
}
.common-btn-white i {
    color: var(--white-color);
    transform: rotate(-45deg);
    transition: all ease-in-out 0.5s;
    font-size: 18px;
}

.common-btn-white:hover i {
    transform: rotate(0deg);
    color: var(--black-color);
}

.common-btn-black {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: transparent;
    transition: all ease-in-out 0.5s;
    padding: 8px 20px;
}

.common-btn-black:hover {
    background: var(--main-color);
    border: 1px solid transparent;
    color: var(--white-color);
}

.common-btn-black i {
    color: var(--main-color);
    transform: rotate(-45deg);
    transition: all ease-in-out 0.5s;
    font-size: 18px;
}

.common-btn-black:hover i {
    transform: rotate(0deg);
}
header .header-fixed .common-btn-black {
    background: var(--white-color);
    border: 1px solid var(--white-color);
    color: var(--main-color);
}
/********************************* Header Section *****************************************/
header {
    position: absolute;
    inset: 0;
    width: 100%;
    height: max-content;
    z-index: 10;
    background-color: var(--white-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 10px 30px;
}

.navbar.header-fixed {
    position: fixed;
    /* background: rgba(255,240,200, 0.8); */
    background-color:var(--main-color);
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    height: 80px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    display: flex;
    gap: 10px;
    margin-right: 30px;
}

.navbar-nav .nav-item a {
    font-weight: 500;
    font-size: 18px;
    color: var(--main-color);
}

.navbar-nav .nav-item .active {
    color: var(--main-color);
}

header .header-fixed .navbar-nav .nav-item a {
    color: var(--white-color);
}


.head-brand-menu .common-btn {
    font-size: 16px;
    padding: 4px 8px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/************************************** Banner Section ************************************/
.banner-section {
    min-height: 90vh;
    height: 100%;
    position: relative;
    background: no-repeat center center / cover;
}

.banner-section::after {
    content: '';
    /*background: rgba(0, 0, 0, 0.5);*/
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3) 0%, black 90%);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    display: block;
}

.inner-banner-section {
    min-height: 60vh;
    height: 100%;
    position: relative;
}

.inner-banner-section::after {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    display: block;
}

.banner-content {
    display: flex;
    width: 100%;
    min-height: 90vh;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
    top:75px
}

.inner-banner-content {
    display: flex;
    width: 100%;
    min-height: 60vh;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.banner-content h1,
.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
    max-width: 75%;
}

.banner-content h5,
.inner-banner-content h5 {
    font-size: 28px;
    font-weight: 500;
    color: var(--main-color);
    max-width: 50%;
    line-height: 1.5;
    text-shadow: 0px 0 1px rgba(255, 255, 255, 0.942);
}

.banner-content p,
.inner-banner-content p {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.5;
    max-width: 50%;
}

.banner-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}



/********************************* About Us Section **********************************/
.inner-about-text h3 {
    font-size: 38px;
    font-weight: 700;
}

.inner-about-img {
    height: 100%;
    width: 100%;
}

.inner-about-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.inner-about-text p {
    font-size: 16px;
    font-weight: 400;
    color: #717171;
}

.about-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 20px;
}

.about-para {
    width: 50%;
}

.about-para p {
    font-size: 18px;
    font-weight: 400;
}

.about-title h5 {
    font-size: 18px;
    font-weight: 400;
    color: #747984;
    text-transform: uppercase;
}

.about-title h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--main-color);
}

.about-img {
    height: 500px;
    margin-right: 20px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-wcu {
    border-left: 3px solid var(--secondary-color);
    padding: 0px 20px;
}

.about-text {
    padding: 0px 20px;
    position: relative;
}

.about-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 110px;
    background-color: var(--secondary-color);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.about-content a {
    margin: 0px 20px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 500;
}

.about-text p {
    font-size: 16px;
    font-weight: 400;
    color: #717171;
}
.about-text p strong {
    color: var(--main-color);
}

/************************************** Approch Section ****************************/
.appch-section {
    background: var(--main-color);
}

.appch-head h3 {
    color: var(--white-color);
    font-size: 38px;
    font-weight: 700;
    width: 60%;
}

.appch-head h5 {
    color: #747984;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.appch-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0px;
}

.appch-list li {
    color: #626F8B;
    font-size: 22px;
    transition: all ease-in-out 0.5s;
    border-left: 2px solid transparent;
    padding-left: 10px;
    cursor: pointer;
}

.appch-list li:hover {
    border-left: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.appch-img {
    height: 500px;
    position: relative;
}

.appch-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.appch-img::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(6, 23, 59, 1) 100%);
}

.appch-des {
    position: relative;
    margin-top: -120px;
    padding: 0px 40px;
}

.appch-des p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    color: #D4D4D4;
}

.appch-des a {
    color: var(--secondary-color);
    padding: 0px;
}

.appch-des a:hover {
    color: var(--white-color);
}

.custom-bx {
    display: inline-block;
    width: 100%;
}

.app-inr-img {
    float: left;
    padding-right: 40px;
    margin-bottom: 25px;
    width: 45%;
}

.app-inr-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.appch--inr-list li {
    font-size: 16px;
    margin-bottom: 5px;
}

/***************************************** Services Sectioin **************************/
.services-section{

    background: var(--main-color);
}
.service-head h5 {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.service-head h3 {
    color: #FFF;
    font-size: 38px;
    font-weight: 700;
    width: 70%;
}

.service-head a {
    margin: 20px 0px;
}

.service-text h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary-color);
}

.service-text p {
    font-size: 15px;
    font-weight: 400;
    color:#FFF;
}
.service-text .btn:hover{
    color:var(--secondary-color);
}

.service-slider.owl-carousel .owl-item.center .service-card>*:first-child .service-img {
    width: 250px;
    height: 350px;
}

.service-slider.owl-carousel .owl-item.center .service-card>.service-text {
    display: block;
}

.service-slider.owl-carousel .owl-item.center .service-card {
    width: calc(100% + 60%);
    margin-right: -70%;
    margin-left: 0%;
    margin-top: 0%;
}

.service-slider.owl-carousel .owl-item.center+.owl-item.active .service-card {
    margin-right: -10%;
    margin-left: 10%;
}

.service-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 15px;
    margin-right: -40%;
    margin-left: 40%;
    margin-top: 13.9%;
    transition: all ease-in-out 0.5s;
}

.service-card>*:first-child {
    width: 100%;
}

.service-img {
    height: 300px;
    width: 100%;
    width: 250px;
    transition: all ease-in-out 0.5s;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    display: none;
    text-align: left;
    transition: all ease-in-out 0.5s;
}

.service-text h3 {
    font-size: 22px;
    font-weight: 500;
}

.service-text p {
    font-size: 15px;
    font-weight: 400;
}

.service-slider {
    margin: 20px 0px;
}

.service-text a {
    color: #FFF;
    padding: 0%;
}

.service-slider {
    position: relative;
}

.service-slider.owl-carousel .owl-nav {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    position: absolute;
    left: 60%;
    top: 80%;
}

.service-slider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--black-color);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-slider.owl-carousel .owl-nav button.owl-prev i,
.service-slider.owl-carousel .owl-nav button.owl-next i {
    font-size: 20px;
}

.service-slider.owl-carousel .owl-nav button.owl-prev {
    display: none;
}

.service-inr-img {
    height: 350px;
}

.service-inr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-inr-text a {
    padding: 0%;
    color: var(--secondary-color);
}

.service-inr-text a:hover {
    color: var(--main-color);
}

.service-inr-text {
    box-shadow: 1px 0px 10px -4px rgba(0, 0, 0, 0.75);
    padding: 10px;
    min-height: 180px;
    height: 100%;
}

.service-inr-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.service-inr-text p {
    font-size: 14px;
    font-weight: 400;
}

.service-list-head h3 {
    font-size: 38px;
    font-weight: 700;
}

.service-list-head p {
    font-size: 18px;
    font-weight: 400;
}

.service-inr-dtl-img {
    width: 100%;
    height: 300px;
}

.service-inr-dtl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/************************************* Challenge Section ********************************/
.chal-section {
    background: var(--secondary-color);
}

.chal-section .common-btn-white {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: var(--white-color);

}

.chal-section .common-btn-white:hover {
    background: var(--white-color);
    color: var(--black-color);
}
.chal-section .common-btn-white i {
    color: var(--white-color);
   
}

.chal-section .common-btn-white:hover i {
    transform: rotate(0deg);
    color: var(--black-color);
}

.chal-img-one,
.chal-img-two {
    width: 100%;
    margin-left: -12px;
    height:500px;
}

.chal-img-one img,
.chal-img-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chal-head h3 {
    color: var(--white-color);
    font-size: 21px;
    line-height: 1.7;
}

.chal-head h5 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.chal-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0px;
    width: 80%;
}

.chal-list li {
    color: #626F8B;
    font-size: 22px;
    transition: all ease-in-out 0.5s;
    border-bottom: 1px solid #222C40;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;

}

.chal-list li i {
    transition: all ease-in-out 0.5s;
    color: var(--secondary-color);
    transform: rotate(0deg);
    visibility: hidden;
    opacity: 0;
}

.chal-list li:hover {
    color: var(--secondary-color);
}

.chal-list li:hover i {
    visibility: visible;
    opacity: 1;
    transform: rotate(-45deg);
}

.chal-content {
    padding: 50px 20px;
}

.chal-content a {
    margin-top: 20px;
}

.chal-img-inr {
    width: 100%;
    height: 500px;
}

.chal-img-inr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chal-inr-content {
    padding: 20px 0px;
}

.chal-inr-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 20px 0px;
}

.chal-inr-list li {
    position: relative;
    padding-left: 30px;
}

.chal-inr-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 free';
    font-weight: 600;
    font-size: 20px;
    color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0%;
}

.chal-inr-list li strong {
    font-size: 24px;

}

.chal-inr-list li i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 10px;
}

.chal-inr-list li p {
    font-size: 16px;
}

.chal-inr-content h5 {
    font-size: 20px;
}
/************************************* Non Profit Section ********************************/
.nonprofit-section {
    background: #FFF;
    padding: 40px;
}

.nonprofit-img-one,
.nonprofit-img-two {
    width: 100%;
    height:500px;
}

.nonprofit-img-one img,
.nonprofit-img-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nonprofit-head h3 {
    font-size: 38px;
    font-weight: 700;
}

.nonprofit-head h5 {
    font-size: 18px;
    font-weight: 400;
    color: #747984;
    text-transform: uppercase;
}


/*********************************** FAQ Section *********************************/
.faq-section {
    position: relative;
}

.faq-section::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 40%;
    height: 100%;
    display: inline-block;
    /* background: #8AD459; */
    z-index: -1;
}

.faq-img {
    height: 600px;
    margin-left: 120px;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-heading {
    margin: 20px 0px;
}

.faq-heading h3 {
    font-weight: 700;
    font-size: 38px;
}

.faq-accordion-box {
    margin-top: 20px;
}

.accordion-header {
    margin-bottom: 0;
}

.faq-accordion-box .accordion-header button {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    box-shadow: none;
}

.faq-accordion-box .accordion-body {
    font-size: 15px;
    font-weight: 400;
    color: var(--black-color);
}

.faq-accordion-box .accordion-body p:last-child {
    margin-bottom: 0px;
}

.faq-accordion-box .accordion-item {
    border: none;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-accordion-box .accordion-button:not(.collapsed) {
    color: var(--white-color);
    background: var(--main-color);
}

.faq-accordion-box .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.faq-accordion-box .accordion-button::after {
    content: "\2b";
    font-weight: 600;
    font-family: 'font awesome 6 free';
    background-image: none;
    transform: none;
}
/********************************* Products Section **********************************/
.product-row {
    min-height: 400px;
  }
  .product-title {
    font-size: 24px;
    color: var(--main-color);
    text-align: center;
  }
  .product-image-col {
    padding: 0;
  }
  .product-image-col img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .subproduct-image {
    max-width: 125px;
    height: auto;
    margin: 0 auto;
  }
/***************************************** Contact Us Page *******************************/
.contact-form {
    box-shadow: 1px 0px 10px -4px rgba(0, 0, 0, 0.75);
    padding: 20px;
}

.iframe-box {
    width: 100%;
    height: 530px;
    display: none;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
}

.form-text {
    margin-top: 0.25rem;
    font-size: .875em;
    color: #717171;
}

.form-text h3 {
    font-weight: 700;
    font-size: 38px;
    color: var(--black-color);
}

.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-weight: 400;
}

/******************************** Footer Section *********************************************/
footer {
    background: no-repeat center center / cover;
}

.footer-logo {
    height: 50px;
}

.footer-logo img {
    width: 100%;
    height: 90px;
    object-fit: contain;
}

.footer-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-main {
    background: var(--footer-bg);
}

.footer-top {
    padding: 40px 0px;
}

.footer-box .footer-box-para p {
    font-family: 'Merriweather', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #668A84;
}

.footer-box .footer-follow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-box .footer-follow li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    background: #242224;
    padding: 12px;
    border-radius: 50%;
    transition: all ease-in-out 0.5s;
}

.footer-box .footer-follow li a:hover {
    background: var(--white-color);
    color: #242224;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-box-head h5 {
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
}

.footer-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all ease-in-out 0.5s;
    /*text-transform: capitalize;*/
}

.footer-list li a:hover {
    color: var(--white-color);
}

.footer-list li a i {
    color: #FFF;
}

.footer-copyright {
    padding: 10px 0px;
    background: var(--black-color);
    text-align: center;
}

.footer-copyright p {
    font-weight: 400;
    font-size: 13px;
    color:#FFF;
    margin-bottom: 0px;
}


/********************************************** Media query ***********************************/
@media (max-width: 1400px) {}

@media (max-width: 1200px) {

    .banner-content h1,
    .inner-banner-content h1 {
        font-size: 54px;
    }

    .banner-content h5,
    .inner-banner-content h5 {
        font-size: 24px;
    }

    .banner-content p,
    .inner-banner-content p {
        font-size: 15px;
    }

    .banner-content {
        gap: 5px;
    }

    .about-para p {
        font-size: 16px;
    }

    .about-wcu p,
    .about-text p {
        font-size: 15px;
    }

    .about-img {
        height: 500px;
        margin-right: 0px;
    }

    .appch-head h3 {
        width: 80%;
    }

    .appch-des {
        padding: 0px 25px;
    }

    .appch-des p {
        font-size: 15px;
    }

    .service-head h3 {
        width: 50%;
    }

    .service-slider.owl-carousel .owl-nav {
        left: 62%;
    }

    .chal-head h3 {
        font-size: 28px;
    }

    .chal-list {
        width: 100%;
    }

    .inner-about-img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: #FFF;
        width: 100%;
        left: 0;
        top: 90%;
        padding: 15px;

    }
    header .header-fixed .navbar-nav .nav-item a {
        color: var(--main-color);
    }
    header .header-fixed .common-btn-black {
        border: 1px solid var(--main-color);
        color: var(--main-color);
        background: transparent;
        transition: all ease-in-out 0.5s;
        padding: 8px 20px;
    }
    header .header-fixed .common-btn-black:hover {
        background: var(--main-color);
        border: 1px solid transparent;
        color: var(--white-color);
    }

    .service-slider.owl-carousel .owl-item.center .service-card>.service-text {
        padding-right: 70px;
    }

    .service-slider.owl-carousel .owl-nav {
        left: 68%;
    }

    .chal-img-one,
    .chal-img-two {
        width: 100%;
        height: auto;
        margin-left: 0px;
    }

}

@media (max-width: 768px) {

    .banner-content h1,
    .inner-banner-content h1 {
        font-size: 36px;
    }

    .banner-content h5,
    .inner-banner-content h5 {
        font-size: 20px;
    }

    .banner-content p,
    .inner-banner-content p {
        font-size: 12px;
    }

    .about-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-para {
        width: 100%;
    }

    .service-head h3 {
        width: 100%;
    }

    .service-text {
        display: block;
    }

    .service-card {
        margin: 0%;
    }

    .service-slider.owl-carousel .owl-nav {
        left: 52%;
    }
}

@media (max-width: 580px) {
    .navbar-brand {
        height: 60px;
    }

    .appch-head h3 {
        width: 100%;
    }

    .banner-content h1,
    .inner-banner-content h1 {
        font-size: 28px;
    }

    .appch-head h3 {
        font-size: 28px;
    }

    .service-head h3 {
        font-size: 30px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-img {
        height: auto;
        width: 100%;
    }

    .service-slider.owl-carousel .owl-nav {
        display: flex;
        flex-direction: row-reverse;
        gap: 15px;
        position: absolute;
        left: 0%;
        top: 100%;
    }

    .chal-content {
        padding: 30px 5px;
    }

    .chal-head h3 {
        font-size: 20px;
    }

    .chal-head h5 {
        font-size: 15px;
    }

    .chal-list li {
        font-size: 16px;
    }

    .service-text h3 {
        font-size: 18px;
    }

    .service-head h5 {
        font-size: 15px;
    }

    .service-head h3 {
        font-size: 20px;
    }

    .service-head a {
        margin: 10px 0px;
    }

    .appch-head h3 {
        font-size: 20px;
    }

    .appch-head h5 {
        font-size: 15px;
    }

    .about-title h3 {
        font-size: 30px;
    }

    .common-section {
        padding: 20px 0px;
    }

}

@media (max-width: 330px) {}

/* Adjusting logo size specifically for smaller screens */
@media (max-width: 576px) { /* Adjust this breakpoint as needed */
  .navbar-brand img {
    max-height: 40px; /* Adjust the size as needed */
  }
}

.stack-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
  }
  
  .stack-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /************************************* Bootstrap Override *********************************/
  .navbar .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(115, 55, 54, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  /* Update the button border */
 .navbar .navbar-toggler {
    border-color: #733736;
  }