@import url('https://fonts.googleapis.com/css2?family=Barlow: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');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poetsen+One&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #26225c;
    --secondary-color--: #428dbe;
    --third-color--: #9adaf3;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    background: var(--primary-color--);
}

h1,h2,h3,h4,h5,h6{
    color: #000;
}

section{
    overflow: hidden;
}


img{
    border-radius: 5px;
}

header{
    /* background: var(--primary-color--); */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    overflow-x: clip;
    transition: 0.3s;
}

header.active{
    background: var(--primary-color--); 
}

header .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 ;
}

header .header .logo{
    width: 100px;
}

header .header .logo img{
    transition: 0.3s;
}
header.active .header .logo img{
    width: 50px;
}

header .header nav ul{
    display: flex;
    gap: 20px;
}

header .header nav ul li a{
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

header .header nav ul li a:hover{
    color: var(--third-color--);
    /* box-shadow: var(--third-color--) 0px 7px 29px 0px; */
    text-shadow: 0px 0px 20px var(--third-color--);
}

header .header .cart{
    width: 100px;
    text-align: end;
}

header .header .cart a{
    color: #fff;
    display: inline-block;
    /* justify-content: center;
    align-items: center;
    gap: 10px; */
    font-weight: 600;
    transition: 0.3s;
    background: var(--primary-color--);
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid var(--primary-color--);
}

header.active .header .cart a{
    background: #fff;
    border: 1px solid #fff;
    color: var(--primary-color--);
}

header .header .cart a:hover{
    color: #fff;
    background: none;
}

header .header .cart a i{
    color: #fff;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: 0.3s;
}

header .header .cart a:hover i{
    color: #fff;
    border-color: var(--secondary-color--);
}

header .menu_btn{
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 100;
    cursor: pointer;
    /* background: var(--primary-color--); */
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
  
header .menu_btn span{
    width: 25px;
    height: 3px;
    background: #fff;
    display: inline-block;
    transition: 0.3s;
}

header.active .menu_btn span{
    transition: 0.3s;
    background: #fff;
}
  
header .menu_btn.active span{
    background: none;
}
  
header .menu_btn span.cross{
    position: relative;
}
  
header .menu_btn span.cross::before,header .menu_btn span.cross::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    /* transform: rotate(-45deg); */
    opacity: 0;
    transition: 0.3s;
}

/* header.active .menu_btn span.cross::before, header.active .menu_btn span.cross::after{
    background: #fff;
} */
  
header .menu_btn.active span.cross::before{
    transform: rotate(-45deg);
    opacity: 1;
}
  
header .menu_btn.active span.cross::after{
    transform: rotate(45deg); 
    opacity: 1;
}

.banner img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0%;
}

.fizz_beer_bg{
    background: var(--primary-color--);
    position: relative;
}

.fizz_beer_bg::before, .fizz_beer_bg::after{
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    background: url(../images/bubbles-2.png) no-repeat;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

.fizz_beer_bg::before{
    top: 0;
    left: 0;
    background-position: right top;
}
.fizz_beer_bg::after{
    top: 0;
    right: 0;
    background-position: left top;
}

.fizz_beer_info h2{
    font-size: 42px;
    color: #fff;
    /* font-weight: 600; */
    font-family: "Poetsen One", sans-serif;
}

.fizz_beer_info p{
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.order_btn{
    display: inline-block;
    background: var(--secondary-color--);
    border: 1px solid var(--secondary-color--);
    padding: 10px 20px;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

.order_btn:hover{
    color: #fff;
    background: none;
}

.timeline_1{
    position: relative;
    padding: 10vh 0 10vh;
    background: var(--primary-color--);
}

.timeline_1_shadow{
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    background: #000;
    z-index: 6;
}

.steps {
    position: relative;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.steps::after {
    /* content: "";
    position: absolute;
    width: 5px;
    background-color: white; */
    /* opacity: 0.4; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 50%; */
    /* height: 100%; */
}
.steps .steps-container {
    position: relative;
}
.steps .steps_line {
    position: absolute;
    width: 5px;
    /* background-color: white; */
    background: linear-gradient(0, var(--secondary-color--) 30%, #fff 70%);
    /* top: 0; */
    /* height: 100%; */
    top: 30px;
  height: 100%;
  right: 30px;
}

.steps .steps-container:nth-child(even) .steps_line{
    background: linear-gradient(0, #beb2b2 30%, var(--secondary-color--) 70%);
}
  
.steps .content p {
    color: #fff;
    font-size: 16px;
}
  
.steps .content h2 {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}
  
.steps-container {
    position: relative;
    background-color: inherit;
    width: calc(50% + 32px);
    align-self: baseline;
}
  
.steps-container .content {
    padding: 32px;
    /* background: linear-gradient(90deg, var(--secondary-color--) 0%, var(--third-color--) 50%); */
    background: #d8860a;
    position: relative;
    border-radius: 0px 0px 0 80px;
    box-shadow: 0px 16px 27px rgb(0 11 30 / 10%);
    width: 100%;
    display: flex;
    flex-shrink: 1;
}

.steps-container .content img{
    width: 100px;
    object-fit: contain;
}
  
.steps .steps-container:nth-child(even) {
    left: calc(50% - 32px);
    flex-direction: row-reverse;
    align-self: baseline;
}

.steps .steps-container:nth-child(even) .content{
    border-radius: 0px 0 80px 0;
    /* background: linear-gradient(90deg, var(--third-color--) 0%, #fff 50%); */
    /* background: linear-gradient(90deg, #0f0d33 0%, var(--secondary-color--) 50%); */
}

.steps .steps-container:nth-child(even) .content h2{
    color: #fff;
}
.steps .steps-container:nth-child(even) .content p{
    color: #fff;
}

.steps .steps-container:nth-child(even) .steps_line {
    position: absolute;
    width: 5px;
    background-color: white;
    /* top: 0; */
    /* height: 100%; */
    top: 30px;
  height: 100%;
  left: 29px;
}
  
.steps-container {
    display: flex;
}
  
.steps .steps-container .date {
    font-weight: 900;
    font-size: 16px;
    color: var(--primary-color--);
    margin-bottom: 10px;
    width: 62px;
    height: 62px;
    /* background-color: #37a9e1; */
    /* background: linear-gradient(180deg, var(--secondary-color--) 0%, #fff 50%); */
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.steps .steps-container .date img{
    aspect-ratio: 2/2;
    object-fit: contain;
    display: none;
}

.steps .steps-container:nth-child(even) .date{
    /* background: linear-gradient(180deg, var(--secondary-color--) 15%, var(--third-color--) 50%); */
    background: #fff;
    color: #fff;
}
  
.step-line {
    width: 40px;
    background-color: #fff;
    height: 1px;
    margin-top: 31px;
    opacity: 0.4;
    flex-shrink: 0;
}
  
@media (max-width: 767px) {
    .steps::after {
      left: 32px;
    }
    .steps-container {
      left: 0;
      flex-direction: row-reverse;
      width: auto;
      margin-bottom: 16px;
    }
    .steps .steps-container:nth-child(even) {
      left: 0;
    }
}

.z-index-2{
    z-index: 2;
}

.heading h2{
    color: #fff;
    font-weight: 600;
    font-family: "Poetsen One", sans-serif;
}

.sol_heading h2{
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    color: orange;
    font-family: "Poetsen One", sans-serif;
}
.solution_bg{
    background: var(--primary-color--);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.smooth_scroll::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
.smooth_scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.fizz_pro{
    position: relative;
}

.fizz_pro .opa{
    opacity: 0;
}

.fizz_pro span{
    position: absolute;
    width: 50%;
    height: 50%;
    overflow: hidden;
}

.fizz_pro span img{
    object-fit: cover;
    width: 200%;
}

.fizz_pro span.fizz_pro_top_left{
    /* background: url(../images/fizz-product.png) no-repeat;
    background-size: 100% 100%; */
    background-position: top left;
    left: 0;
    top: 0;
}

.fizz_pro span.fizz_pro_top_left img{

}

.fizz_pro span.fizz_pro_top_right{
    /* background: url(../images/fizz-product.png) no-repeat;
    background-size: 100% 100%; */
    background-position: top right;
    right: 0;
    top: 0;
}

.fizz_pro span.fizz_pro_top_right img{
    margin-left: -100%;
}

.fizz_pro span.fizz_pro_bottom_left{
    /* background: url(../images/fizz-product.png) no-repeat;
    background-size: 100% 100%; */
    background-position: bottom right;
    left: 0;
    bottom: 0;
}

.fizz_pro span.fizz_pro_bottom_left img{
    margin-top: -77.2%;
    margin-right: -100%;
}

.fizz_pro span.fizz_pro_bottom_right{
    /* background: url(../images/fizz-product.png) no-repeat;
    background-size: 100% 100%; */
    background-position: bottom left;
    right: 0;
    bottom: 0;
}

.fizz_pro span.fizz_pro_bottom_right img{
    margin-top: -77.2%;
    margin-left: -100%;
}


.hang_bg{
    background: #fff;
}

.hang_heading h2{
    color: var(--primary-color--);
    font-size: 28px;
    font-weight: 600;
}

.hang_heading h2 span{
    font-weight: 400;
}

.hang_list ul{
    list-style: disc;
    margin-left: 20px;
}

.social_icons ul{
    display: flex;
    gap: 20px;
}

.social_icons ul li a{
    width: 40px;
    height: 40px;
    /* display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color--);
    border: 2px solid var(--primary-color--);
    border-radius: 50%;
    transition: 0.3s; */
    border-radius: 5px;
}

.social_icons ul li a img{
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.social_icons ul li a:hover{
    color: #fff;
    background: var(--primary-color--);
}

.hang_content p{
    color: var(--primary-color--);
    font-weight: 500;
}

.hang_menu ul li a{
    width: 250px;
    background: var(--primary-color--);
    color: #fff;
    border: 1px solid var(--primary-color--);
    padding: 10px 0;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
    transition: 0.3s
}

.hang_menu ul li a:hover{
    color: var(--primary-color--);
    background: none;
}

.inner_banner{
    padding: 150px 0 60px;
    background: var(--secondary-color--);
    background-size: cover;
    background-position: center right;
}

.inner_banner h1{
    color: #fff;
    font-weight: 600;
    font-size: 36px;
}

.bread_crumb{
    display: flex;
    align-items: center;
    gap: 10px;
}

.bread_crumb a{
    color: #fff;
}

.bread_crumb span.line{
    width: 20px;
    height: 1px;
    background: #fff;
}

.bread_crumb span{
    color: #fff;
    font-weight: 400;
}


.symptoms{
    text-align: center;
}

.symptoms img{
    width: 50%;
    aspect-ratio: 2/2;
    object-fit: contain;
}

.symptoms h3{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.list_view ul{
    list-style: disc;
    margin-left: 15px;
}

.table_color table thead{
    background: #0f0d33;
    color: #fff;
}

.table_color table tbody tr{
    /* background: #dfeacf; */
    background: #f7f7f7;
    color: #000;
    border-color: var(--secondary-color--);
}

.table_color table tbody tr:nth-child(even){
    background: #f0f5e9;
    /* background: var(--third-color--); */
}


.blog {
    margin-bottom: 20px;
    box-shadow: 0 3px 10px #fff2;
    background: #fff2;
    backdrop-filter: blur(10px);
}

.blog .blog-img{
    width: 100%;
    height: auto;
    position: relative;
}

.blog .blog-img img{
    width: 100%;
}

.blog .blog-img .blog-date{
    position: absolute;
    padding: 8px 10px;
    background: var(--secondary-color--);
    border-radius: 5px;
    bottom: 8%;
    left: 5%;
    z-index: 1;
}

.blog .blog-img .blog-date span{
    color: #fff;
    font-weight: 600;

}

.blog  .blog-content{
    width: 100%;
    padding: 15px;
}

.blog  .blog-content .name{
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.blog  .blog-content .name a{
    color: #fff;
}

.blog  .blog-content .name a i{
    color: var(--red--);
    padding-right: 5px;
}

.blog  .blog-content .content h2{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.blog  .blog-content .content p{
    padding-bottom: 5px;
    color: #fff;
}
.blog  .blog-content .content a{
    font-size: 18px;
    color: var(--third-color--);
    transition: .3s;
}

.blog  .blog-content .content a:hover{
    color: var(--secondary-color--);
}

.blog-page{
    width: 100%;
    /* padding: 20px;
    box-shadow: 0 0 10px #0004; */
    border-radius: 3px;
}

.blog-page .blog-heading h2{
    font-size: 22px;
    padding: 10px 0 5px;
    color: #fff;
}

.blog-page .blog-date ul{
    border-bottom: 1px solid var(--secondary-color--);
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.blog-page .blog-date ul li{
    display: inline-block;
    margin-right: 10px;
}

.blog-page .blog-date ul li i{
    color: #fff;
    padding-right: 5px;
}

.blog-page .blog-date ul li a{
    color: #fff;
}

.blog-page .blog-content{
    color: #fff;
}

.blog-page .blog-content p{
    padding-bottom: 10px;
}

.blog-sidebar{
    width: 100%;
    height: auto;
    /* position: sticky;
    top: 85px;
    box-shadow: 0 0 10px #0004;
    border-radius: 3px;
    padding: 20px; */
}

.blog-sidebar h3{
    color: #fff;
}

.recent-blog {
    border-bottom: 1px solid var(--secondary-color--);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.recent-blog img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-blog:last-child{
    border-bottom: none;
    margin-bottom: 0; 
    padding-bottom: 0;
}

.recent-blog a h2{
    /* font-size: 16px; */
    font-size: 12px;
    margin-bottom: 0;
    color: #fff;
}

.recent-blog time{
    font-size: 12px;
    color: var(--secondary-color--);
}

.symptoms_bg{
    background: #0f0d33;
}

.main_content p{
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}

.main_content p strong{
    font-size: 32px;
    color: orange;
    font-weight: 700;
}

.content p{
    color: #fff;
}

.caused_by{
    background: #fff;
    padding: 5px;
}

.caused_by h3{
    color: #000;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 5px 0;
}

.banner_bg{
    position: relative;
}

.scroll_down{
    position: absolute;
    z-index: 2;
    color: #fff;
    bottom: 10px;
    left: 50%;
    font-size: 22px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
    animation: bounce2 2s ease infinite;
}

.scroll_down:hover{
    color: var(--third-color--);
    animation: none;
}

@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-30px) translateX(-50%);}
    60% {transform: translateY(-15px) translateX(-50%);}
}

.fizz_beer_video video{
    width: 100%;
}

.text-red{
    color: red;
}

.text-green{
    color: #0ed20e;
}


.testimonials_slider .slick-track{
    display: flex;
}

.testimonial{
    /* background: #fff;
    box-shadow: #ffffff33 0px 7px 29px 0px; */
    box-shadow: 0px 0px 20px #fff4;
    background: #d8860a;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.testimonial .content p{
    color: #fff;
    margin-bottom: 10px;
}

.testimonial .name p{
    font-weight: 600;
    font-size: 18px;
    text-align: end;
    color: #fff;
}

.testimonials_slider{
    position: relative;
}

.testimonials_slider .slick-list{
    padding: 40px 0;
}

.testimonials_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--secondary-color--);
    color: var(--secondary-color--);
    background: none;
    border-radius: 50%;
    z-index: 2;
}

.testimonials_slider .slick-arrow.slick-next{
    right: 0;
}

.testimonials_slider .slick-arrow.slick-prev{
    left: 0;
}
