@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --blackColor : #000;
  --whiteColor: #fff;
  --weight: bold;
  --primaryColor: #D3EFF8;
  --secondColor : #FF0062;
  --fontSize: 14px;
}

body{
    font-family: "Poppins", sans-serif;
    color: var(--blackColor);
}

p, a{
    font-size: var(--fontSize);
    font-weight: 300;
}

.bold{
    font-weight: 600;
}

.header_595{
    background-color: var(--blackColor);
    color: var(--whiteColor);
}

.header_595 .logo_595{
    height: 55px;
}
.header_595 .nav-595 .nav-item .nav-link{
    color: var(--whiteColor);
}
.header_595 .nav-595{
    gap: 20px;
}
.header_595 h1{
    font-weight: 300;
    font-size: 75px;
    line-height: 70px;
}
.header_595 h1 span{
    font-weight: 500;
    color: var(--primaryColor);
}
.header_595 h1 span.dot{
    font-weight: 800;
    color: var(--secondColor);
}
.header_595 .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-image: url("../images/hamburger.svg");
}
/* popup css start */
.mobile-menu-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1050;
    justify-content: center;
    align-items: start;
}

.mobile-menu-popup .popup-content {
    padding: 2rem;
    text-align: left;
    width: 100%;
    position: relative;
}

.mobile-menu-popup .close-btn {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 200;
}

.mobile-menu-popup .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 18px;
}

/* popup css end */
button.button_595 {
    font-weight: 700;
    padding: 10px 100px;
    border: 0px;
    box-shadow: 0px 0px transparent;
}
button.button_595.color-s{
    background-color: var(--primaryColor);
    color: var(--blackColor);
}
.smarter-595 h3{
    border-bottom: 2px solid var(--secondColor);
}
.smarter-595 p{
    line-height: 25px;
}
.smarter-595 ul li{
    font-size: var(--fontSize);
}

.date-595{
    background-color: var(--blackColor);
    color: var(--whiteColor);
    position: relative;
}
.date-595 h1 span{
    color: var(--secondColor);
}
.date-595 .box-595 {
    text-align: center;
    background-color: #333333;
    padding: 40px 30px;
    height: 100%;
}
.date-595 .box-595 h6{
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
    background-color: var(--primaryColor);
    color: var(--blackColor);
    font-weight: 300;
    padding: 5px 20px;
    margin-top: -55px;
}
.date-595 .grid-colmn-595 .left h3 span{
    color: var(--primaryColor);
}
.date-595 .grid-colmn-595 .left p span{
    font-weight: 500;
}
button.button_595.color-p{
    background-color: var(--secondColor);
    color: var(--whiteColor);
}
.date-595 .grid-colmn-595{
    display: grid;
    grid-template-columns: 1.6fr 0.4fr 1fr;
    align-items: center;
}
.date-595 .grid-colmn-595 .center{
    border-left: 1px solid #ffffff;
    height: 100%;
    margin: auto;
}
.date-595 .grid-colmn-595 .right p{
    font-size: 24px;
}
.date-595 .grid-colmn-595 .right p.bold{
    color: var(--primaryColor);
}
.date-595::before{
    content: "";
    background-image: url("../images/champagne-595.png");
    position: absolute;
    width: 170px;
    height: 150px;
    background-size: cover;
    bottom: 0px;
    right: 0px;
    background-repeat: no-repeat;
}

.stories-595 .home-stories h6 {
    color: var(--whiteColor);
    font-style: italic;
    font-weight: 300;
}
.stories-595 h2 span{
    color: var(--secondColor);
    display: block;
}

.stories-595 .home-stories .item{
    padding: 6rem 9rem;
}
.stories-595 .home-stories .stories-p{
    background-color: var(--primaryColor);
    color: var(--blackColor);
}
.stories-595 .home-stories .stories-p h6{
    background-color: var(--primaryColor);
    color: var(--blackColor);
    font-weight: 500;
}
.stories-595 .home-stories .stories-s{
    background-color: var(--blackColor);
    color: var(--whiteColor);
}

.stories-595 .home-stories .owl-item {
    height: 300px; /* Set your desired height */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Optionally, horizontally center the content */
    overflow: hidden; /* Prevent overflow */
}

.stories-595 .home-stories .stories-p, 
.stories-595 .home-stories .stories-s {
    height: 100%; /* Make sure background color spans full height */
}

/* Owl Carousel Custom Nav Styles */
.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Distribute left and right nav */
    transform: translateY(-50%); /* Center vertically */
}

.owl-prev, .owl-next {
    background-color: transparent; /* Make the background transparent */
    color: white; /* Set text color to white */
    border: none;
    font-size: 30px; /* Adjust font size of the arrows */
    padding: 10px; /* Adjust padding around the arrows */
    transition: color 0.3s ease-in-out; /* Add smooth transition on hover */
}

.owl-prev:hover, .owl-next:hover {
    color: #fff; /* Ensure color is white on hover */
}

.owl-prev {
    left: 20px; /* Move left arrow a little */
    margin-left: 20px !important;
}

.owl-next {
    right: 20px; /* Move right arrow a little */
    margin-right: 20px !important;
}


.owl-prev span, .owl-next span {
    background-color: transparent; /* Make the background transparent */
    color: var(--whiteColor); /* Set text color to white */
    border: none;
    font-size: 65px; /* Adjust font size of the arrows */
    font-weight: 200;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: transparent;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondColor) !important;
}
.owl-theme .owl-dots .owl-dot span {
    margin: 25px 3px !important;
}

.wonder-595 .accordion-item{
    border: none;
    border-bottom: 1px solid var(--blackColor);
    margin-bottom: 20px;
}
.wonder-595 .accordion-item button.accordion-button {
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-weight: 500;
    color: var(--blackColor);
    background: transparent;
    box-shadow: 0px 0px #0000;
    border-bottom: 1px solid #e1e1e1;
}
.wonder-595 .accordion-item .accordion-body{
    padding-left: 0px;
    padding-right: 0px;
    font-size: 14px;
    font-style: italic;
}
.wonder-595 .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}


.footer-595{
    background-color: var(--blackColor);
    color: var(--whiteColor);
}
.footer-595 h1 span{
    color: var(--secondColor);
}
.footer-595 li::marker {
    color: var(--secondColor);
}
.footer-595 ul{
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 12px;
    margin-bottom: 40px;
}
.footer-595 a{
    color: var(--whiteColor);
}
.footer-595 .footer-content{
    font-size: 12px;
}



/* media query start below 992 */

@media only screen and (max-width: 992px) {
    .stories-595 p.spacing_pad{
        padding: 0px 30px;
    }
    .d-mob-none{
        display: none !important;
    }
    .d-mob-block{
        display: block !important;
    }
    .header_595 .resp{
        text-align: center;
    }
    .header_595 .resp h1{
        text-align: center;
        margin-top: 3rem;
        font-size: 60px;
        line-height: 60px;
    }
    .header_595 .resp img.d-mob-block{
        width: 60% !important;
        margin: auto;
    }
    .header_595 .resp p{
        text-align: center;
        margin-top: 20px;
    }
    .smarter-595{
        text-align: center;
        margin-bottom: 0px !important;
    }
    .smarter-595 .container-fluid .col-lg-4.pe-lg-0 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .smarter-595 ul{
        margin-bottom: 15px;
        padding-left: 0px;
    }
    .smarter-595 ul li{
        width: fit-content;
        margin: auto;
    }
    .date-595{
        margin-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .date-595 .grid-colmn-595{
        text-align: center;
        display: block;
    }
    .date-595 .grid-colmn-595 .left h3 {
        border-bottom: 1px solid #fff;
        padding-bottom: 20px;
    }
    .date-595 .grid-colmn-595 .right.d-mob-block {
        margin-bottom: 30px;
    }
    .h-works-595 {
        text-align: center;
    }
    .stories-595{
        text-align: center;
    }
    .stories-595 .home-stories{
        text-align: left;
    }
    .wonder-595 h2{
        text-align: center;
    }
    .wonder-595 .accordion-button::after {
        display: none;
    }
    .wonder-595 .accordion-button::before {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 20px;
        content: "";
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform .2s ease-in-out;
    }
    .wonder-595 .accordion-button:not(.collapsed)::before {
        transform: rotate(-180deg);
    }
    .footer-595 ul{
        display: block;
    }
    .footer-595 ul li {
        width: fit-content;
        margin: auto;
        margin-bottom: 10px;
    }
    .date-595 .home-date .owl-prev {
        margin-left: 5px !important;
    }
    .date-595 .home-date .owl-next {
        margin-right: 5px !important;
    }




    .date-595 .owl-date .item {
        display: block;
        align-items: stretch;
        height: 100%;
    }
    
    .date-595 .box-595 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        text-align: center;
        background-color: #333333;
        padding: 40px 30px;
    }
    .date-595 .item h6 {
        width: fit-content;
        margin: 0 auto -10px;
        background-color: var(--primaryColor);
        color: var(--blackColor);
        font-weight: 300;
        padding: 5px 20px;
        position: relative;
        top: 5px;
    }
    
    .owl-date .owl-stage-outer {
        overflow: visible; /* allows floated/absolute elements */
    }
    .date-595::before{
        display: none;
    }
    .campaign-595{
        width: fit-content;
        display: block;
        margin-left: auto;
    }
    
}

/* media query start below 595 */

@media only screen and (max-width: 595px) {
    .header_595 .resp h1 {
        margin-top: 1rem;
        font-size: 40px;
        line-height: 43px;
    }
    .header_595 .resp p span {
        font-weight: 700;
    }
    button.button_595 {
        font-weight: 700;
        width: 100%;
        padding: 10px 30px;
    }
    .date-595 .box-595 p{
        font-size: 12px;
    }
    .date-595 .box-595 h4{
        font-size: 18px;
    }
    .date-595 .grid-colmn-595 .right p {
        font-size: 20px;
    }
    .stories-595 .home-stories .item {
        padding: 2rem 3rem;
    }
    .stories-595 .home-stories .owl-item {
        height: auto;
    }
    .owl-nav {
        position: absolute;
        top: 30%;
    }
    .wonder-595 #accordionExample {
        padding: 0px 10px;
    }
}
