@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --btn-font-color: #201D1E;
    --gray-color: #F5F5F5;
    --light-gray-color: #AEAEAE;
    --body-font: "Inter", sans-serif;
    --fs-xs: 0.675rem;
    --fs-sm: .875rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    font-size: 15px;
}

    body h1, body h2, body h3, body h4 {
        font-family: 'Montserrat', sans-serif;
    }


html body .container-fluid {
    max-width: 1520px;
}

body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

body .btn.btn-primary, body .btn.btn-secondary, body .btn.btn-danger {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    text-align: center;
    letter-spacing: 1.17936px;
    color: var(--btn-font-color);
    background: linear-gradient(90deg, #FF9966 0%, #FF5E62 100%);
    border-radius: 20px;
    border: none;
    padding: 16px 20px 16px 20px;
    min-width: fit-content;
    transition: 0.5s;
    text-transform: uppercase;
}

body .btn.btn-secondary {
    background: linear-gradient(90deg, #FADA89 0%, #E99665 100%);
}

body .btn.btn-danger {
    background: linear-gradient(90deg, #BEDB8C 0%, #87A667 100%);
}

    body .btn.btn-primary i, body .btn.btn-secondary i, body .btn.btn-danger i {
        margin: 0 0 0 10px;
        transition: 0.5s;
        width: 20px;
        text-align: left;
        transition: 0.5s;
        font-size: 14px;
    }

body .btn.btn-primary:focus, body .btn.btn-secondary:focus, .btn.btn-danger:focus {
    border: none;
    box-shadow: none;
}

body .btn:hover i {
    transform: translate(10px,0);
}

body .btn.btn-primary:hover {
    /* background: linear-gradient(90deg, #FF5E62 100%, #FF9966 0%); */
    transform: translateY(-2px);
}

body .btn.btn-secondary:hover {
    /* background: linear-gradient(90deg, #E99665 100%, #FADA89 0%); */
    transform: translateY(-2px);
}

body .btn.btn-danger:hover {
    /* background: linear-gradient(90deg,#87A667 100%, #BEDB8C 0%); */
    transform: translateY(-2px);
}

/* .tankk_alert */
.tankk_alert.alert {
    background-color: var(--dark-color);
    font-weight: 400;
    font-size: 16.144px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    margin-bottom: 0;
    min-height: 60px;
    border-radius: 0;
}

.tankk_alert .btn-close {
    filter: invert(1);
}

    .tankk_alert .btn-close:focus {
        outline: 0;
        box-shadow: none;
        opacity: 1;
    }

/* .navbar */
nav.tankk_header .navbar-toggler {
    border: 0;
}

    nav.tankk_header .navbar-toggler:focus {
        box-shadow: none;
    }

nav.tankk_header.navbar.navbar-expand-xl {
    background-color: var(--light-color);
    padding: 14px 0;
}

nav.tankk_header .navbar-nav {
    margin: 0 auto;
}

    nav.tankk_header .navbar-nav .nav-link {
        font-weight: 700;
        font-size: 15px;
        line-height: 1.1;
        letter-spacing: 1.17936px;
        color: var(--dark-color);
        padding: 0;
        margin: 0 10px;
        position: relative;
    }

        nav.tankk_header .navbar-nav .nav-link.active:after {
            content: "";
            position: absolute;
            width: 70%;
            right: 0;
            left: 0;
            margin: 0 auto;
            background-color: var(--dark-color);
            height: 2px;
            bottom: -7px;
        }

        nav.tankk_header .navbar-nav .nav-link:hover:after {
            width: 100%;
            left: 0;
        }

        nav.tankk_header .navbar-nav .nav-link:after {
            background: none repeat scroll 0 0 transparent;
            bottom: -7px;
            content: "";
            display: block;
            height: 2px;
            left: 50%;
            position: absolute;
            background: var(--dark-color);
            transition: width 0.3s ease 0s, left 0.3s ease 0s;
            width: 0;
        }

/* herosection */
.hero_inner {
    background-color: var(--gray-color);
    border-radius: 20px;
    min-height: 800px;
    padding: 70px 50px 40px 70px;
}

    .hero_inner .row {
        align-items: center;
    }

    .hero_inner h1 {
        font-weight: 600;
        font-size: 52.1275px;
        line-height: 1.2;
        letter-spacing: -1.37592px;
        max-width: 420px;
        margin: 30px 0 35px 0;
    }

    .hero_inner p {
        font-weight: 400;
        font-size: 23.6326px;
        line-height: 1.4;
        letter-spacing: -0.32px;
        /*max-width: 180px;*/
        margin: 0 0 45px 0;
    }

.smallshapeimg {
    display: flex;
    justify-content: space-between;
    max-width: 320px;
    margin: 0;
}
/* common css */
.sub_heading {
    font-weight: 400;
    font-size: 12.595px;
    line-height: 2;
    text-align: center;
    letter-spacing: 2.52504px;
    text-transform: uppercase;
    margin: 0 auto 50px;
    position: relative;
    width: max-content;
}

    .sub_heading:after {
        content: "";
        position: absolute;
        width: 70%;
        right: 0;
        left: 0;
        margin: 0 auto;
        background-color: var(--dark-color);
        height: 2px;
        bottom: -7px;
    }

.section_heading {
    font-weight: 600;
    font-size: 36.3725px;
    line-height: 1.3;
    letter-spacing: -0.9828px;
    text-align: center;
}

.section_upper_heading {
    margin: 0 0 50px 0;
}

    .section_upper_heading p {
        font-weight: 400;
        font-size: 15.5413px;
        line-height: 1.5;
        text-align: center;
        margin: 0 auto;
        max-width: 680px;
    }

/* tank_section */
.tank_section {
    padding: 80px 0;
}

    .tank_section .row {
        max-width: 850px;
        margin: 0 auto;
    }

    .tank_section p {
        font-weight: 400;
        font-size: 16.5413px;
        line-height: 1.5;
        text-align: justify;
        margin: 0 0 20px 0;
    }

    .tank_section .btn.btn-secondary {
        margin-left: auto;
        margin-top: 30px;
        display: flex;
        max-width: fit-content;
    }

/* smaken_section */
.smaken_section {
    padding: 0 0 100px 0;
}

    .smaken_section .section_upper_heading {
        margin: 0 0 0px 0;
    }

    .smaken_section .carousel-control-prev-icon {
        width: 3rem;
        background-size: contain;
        background-image: url(../images/left_arrow.svg);
    }

    .smaken_section .carousel-control-next-icon {
        width: 3rem;
        background-size: contain;
        background-image: url(../images/right_arrow.svg);
    }

.flavour_slide {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 100px 150px 80px 0;
}

.flavour_slide_img {
    position: absolute;
    right: -50px;
    top: 0;
    transition: 2s;
    animation: flavour 1.5s ease-in-out infinite;
    animation-direction: alternate;
    max-width: 150px;
    width: 100%;
}

    .flavour_slide_img img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

.smaken_section .carousel-item {
    position: relative;
}
/*.smaken_section .flavour_slide:after{ */
/* content: ""; */
/* position: absolute; */
/* background-image: url(../images/cactus_flavour_img.svg); */
/* width: 133px; */
/* height: 190px; */
/* background-repeat: no-repeat; */
/* top: 0; */
/* right: 0; */
/* background-position: right top; */
/* background-size: contain; */
/* transition: 2s; */
/* animation: flavour 1.5s ease-in-out infinite; */
/* animation-direction: alternate;   */
/* } */

.profile-image {
    max-width: 40px;
    max-height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes flavour {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(15px);
    }
}

/* .smaken_section .flavour_slide2:after{ */
/* background-image: url(../images/apple_bk.svg); */
/* width: 170px; */
/* } */
/* .smaken_section .flavour_slide3:after{ */
/* background-image: url(../images/lime_bk.svg); */
/* width: 170px; */
/* } */
.flavour_slide h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}

.flavour_slide p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.9;
    /*color: rgba(32, 29, 30, 0.8);*/
    text-align: justify;
}

.smaken_section .row {
    align-items: center;
}

.smaken_section h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.5;
    max-width: 200px;
    color: var(--btn-font-color);
    text-align: end;
    margin: 0 auto;
}

.smaken_sliders {
    position: relative;
}

    .smaken_sliders:before {
        content: "";
        position: absolute;
        height: 80%;
        margin: 0 auto;
        width: 1px;
        background-color: var(--light-gray-color);
        left: 0px;
        top: 10%;
    }

/* branding_section */
.branding_section_inner {
    background-image: url(../images/blissd_branding_img.png);
    min-height: 980px;
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 20px;
}

    .branding_section_inner h2 {
        font-weight: 600;
        font-size: 52.1275px;
        line-height: 1.2;
        letter-spacing: -1.37592px;
        max-width: 420px;
        margin: 0px 0 35px 0;
        letter-spacing: -1.37592px;
    }

    .branding_section_inner p {
        font-weight: 400;
        font-size: 23.6326px;
        line-height: 1.4;
        letter-spacing: -0.32px !important;
        /*max-width: 180px;*/
        letter-spacing: -0.32px;
    }

.overlay_text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 820px;
    padding: 40px 30px;
    background: linear-gradient(90deg, rgba(250, 218, 137, 0.9) 0%, rgba(233, 150, 101, 0.9) 100%);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 440px;
    text-decoration: none;
    color: var(--bs-body-color);
}

    .overlay_text h3 {
        font-weight: 600;
        font-size: 49px;
        line-height: 1.3;
        letter-spacing: -1.37592px;
    }

    .overlay_text span {
        font-weight: 700;
        font-size: 25px;
        line-height: 1;
        text-align: right;
        letter-spacing: 1.17936px;
        text-decoration: none;
        color: var(--dark-color);
        transition: 0.5s;
        width: fit-content;
        margin-left: auto;
    }

    .overlay_text:hover span {
        color: #FF5E62;
    }

    .overlay_text span i {
        margin: 0 0 0 20px;
        transition: 0.5s;
    }

    .overlay_text:hover span i {
        transform: translate(10px,0);
    }

/* waarom_section */
.waarom_section {
    padding: 100px 0;
}

    .waarom_section .row {
        max-width: 1350px;
        margin: 20px auto;
    }

    .waarom_section .section_upper_heading p {
        max-width: 800px;
        margin: 20px auto 20px;
    }

.dispenser_highlights h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: right;
    color: var(--btn-font-color);
}

.dispenser_highlights p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
    color: var(--dark-color);
}

.dispenser_highlights {
    position: relative;
    /* max-width: 450px; */
    padding: 0 215px 0 0;
}

    .dispenser_highlights:after {
        position: absolute;
        content: "";
        background-image: url(../images/dis_higharrow.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 200px;
        height: 90px;
        top: 0;
        right: -10px;
        z-index: -1;
    }

.d_h_right:after {
    background-image: url(../images/dis_higharrow2.svg);
    top: 0;
    left: -10px;
}

.d_h_right h4 {
    text-align: left;
}

.d_h_right p {
    text-align: left;
}

.d_h_right {
    padding: 0 0px 0 215px;
}

.dis_high_row {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
    max-width: 515px;
    margin-left: auto;
}

.dis_high_row_right {
    margin-right: auto;
    margin-left: 0;
}

.waarom_section .btn.btn-danger {
    margin: 30px 0 0 0;
}

.dispenser_img {
    position: relative;
}

    .dispenser_img:after {
        content: '';
        position: absolute;
        width: 20%;
        height: 10%;
        z-index: -1;
        left: 0%;
        bottom: 20px;
        transform: translate(-55%, -49%);
        background: rgba(0, 0, 0, 0.2);
        filter: blur(13.5px);
        opacity: 0.8;
    }

/* ///////////////////////////////////////// */
.oplo_section {
    padding: 0 0 80px 0;
    overflow: hidden;
}

    .oplo_section .row {
        align-items: center;
    }

.oplo_col {
    position: relative;
}

.oplo_col_inner {
    padding: 0 0 0 30px;
}

.oplo_col:before {
    content: "";
    position: absolute;
    height: 80%;
    margin: 0 auto;
    width: 1px;
    background-color: var(--light-gray-color);
    left: 0px;
    top: 10%;
}

.oplo_section h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.5;
    max-width: 533px;
    color: var(--btn-font-color);
    text-align: end;
    margin: 0 auto;
}

.oplo_section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.9;
    /*color: rgba(32, 29, 30, 0.8);*/
}

.oplo_section .btn.btn-danger {
    margin-left: auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

.flavour_shapes {
    text-align: center;
}

    .flavour_shapes img:hover {
        transform: scale(1.1);
        /* transition: all 0.2s; */
    }

    .flavour_shapes img:hover {
        transition: 0.5s ease-in-out;
        /* animation: rotation 5s ease-in-out infinite; */
        /* animation-direction: alternate;  */
    }

.oplo_btn {
    display: flex;
    justify-content: end;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.flavour_shapes h4 {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--btn-font-color);
    margin: 40px 0 0 0;
}

/* Caffeine boost — same layout as the oplo section, with an intensity card per level. */
.caffeine_level {
    background: #fff;
    border-radius: 20px;
    padding: 36px 26px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.caffeine_bolt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--btn-bg-color) 14%, transparent);
    color: var(--btn-bg-color);
    font-size: 22px;
    margin-bottom: 22px;
}

.caffeine_level h4 {
    margin: 0 0 14px 0;
    letter-spacing: 4px;
}

.caffeine_level p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(32, 29, 30, 0.75);
    margin: 0;
    letter-spacing: normal;
    text-transform: none;
}

/* Smart management & eco — feature grid, same intensity-card look as the caffeine block. */
.manage_feature {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    text-align: left;
}

.manage_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--btn-bg-color) 12%, transparent);
    color: var(--btn-bg-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.manage_feature h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    color: var(--btn-font-color);
    line-height: 1.2;
}

.manage_feature p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(32, 29, 30, 0.75);
    margin: 0;
    letter-spacing: normal;
    text-transform: none;
}

/* .van_section */
.van_section {
    padding: 80px 0;
}

    .van_section .row {
        align-items: center;
    }

.van_inner {
    background-color: var(--gray-color);
    border-radius: 20px;
    padding: 25px 30px 25px 40px;
}

.van_section h3 {
    font-weight: 600;
    font-size: 55.1275px;
    line-height: 1.1;
    letter-spacing: -1.37592px;
    margin: 0 0 30px 0;
    max-width: 470px;
}

.van_img {
    text-align: center;
}

.van_section img {
    border-radius: 20px;
}

.van_inner_imgs {
    display: flex;
    justify-content: end;
    column-gap: 15px;
}
/* software_section */
.software_section {
    padding: 0 0 80px 0;
}

    .software_section .section_upper_heading p {
        max-width: 100%;
        margin-bottom: 20px;
    }

.soft_bottom {
    margin: 0px 0 100px 0;
    text-align: center;
}

    .soft_bottom h5 {
        font-weight: 400;
        font-size: 11.8087px;
        line-height: 1.5;
        letter-spacing: 1.17936px;
        margin: 30px 0 0 0;
    }

    .soft_bottom .smallshapeimg {
        margin: 0 auto;
    }

.smallshapeimg img {
    transition: 0.5s;
    animation: smallflavour 1.3s ease-in-out infinite;
    animation-direction: alternate;
    max-width: 70px;
}

.smallshapeimg .small2 {
    animation: smallflavour2 1s ease-in-out infinite;
    animation-direction: alternate;
}

.smallshapeimg img:hover {
    transform: translateY(-8px);
}

@keyframes smallflavour {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(15px);
    }
}

@keyframes smallflavour2 {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(15px);
    }
}

/* footer */
footer {
    padding: 0 0 40px 0;
}

    footer img {
        max-width: 270px;
        object-fit: contain;
    }

    footer ul li a, footer p {
        font-weight: 400;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: -0.85px;
        color: var(--light-gray-color);
        text-decoration: none;
        transition: 0.5s;
        position: relative;
    }

        footer ul li a:hover {
            color: var(--dark-color);
        }

        footer ul li a:after {
            bottom: -5px;
            content: "";
            display: block;
            height: 2px;
            left: 50%;
            position: absolute;
            background: var(--dark-color);
            transition: width 0.3s ease 0s, left 0.3s ease 0s;
            width: 0;
        }

        footer ul li a:hover:after {
            width: 100%;
            left: 0;
        }

    footer a {
        display: inline-block;
        margin: 0 0 10px 0;
    }

    footer p {
        margin: 10px 0 0 0;
    }

    footer h5 {
        font-weight: 700;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: -0.85px;
        margin: 10px 0 0 0;
    }

    footer h3 {
        font-weight: 600;
        font-size: 31px;
        line-height: 1.5;
        letter-spacing: -0.85px;
        margin: 20px 0 10px 0;
    }

.footer_col {
    margin: 0 auto;
}

footer .col-md-3 {
    border-left: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
    padding: 0 10px 80px 20px;
}

/* .inner_banner_commom */
.inner_banner {
    background-color: var(--gray-color);
    border-radius: 20px;
    min-height: 180px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .inner_banner h2 {
        font-weight: 600;
        font-size: 36.3725px;
        line-height: 1.3;
        text-align: center;
        letter-spacing: -0.9828px;
        margin: 0 0 7px 0;
        text-align: center;
    }

    .inner_banner p {
        font-weight: 400;
        font-size: 15.5413px;
        line-height: 1.7;
        margin: 0;
        text-align: center;
    }

/* contact_page */
.contact_section {
    padding: 80px 0 100px 0;
}

    .contact_section form {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact_section .input_custm {
        border: 1px solid var(--dark-color);
        border-radius: 20px;
        font-weight: 400;
        font-size: 18px;
        /* line-height: 45px; */
        color: var(--btn-font-color);
        min-height: 50px;
        text-indent: 20px;
        width: 100%;
    }

        .contact_section .input_custm::placeholder {
            font-weight: 400;
            font-size: 18px;
            /* line-height: 45px; */
            color: rgba(32, 29, 30, 0.4);
        }

    .contact_section button {
        margin: 10px auto 0;
        max-width: 240px;
        width: 100%;
        justify-content: space-between;
    }

/* brengt_section */
.brengt_section {
    padding: 80px 0 100px 0;
}

.brengt_price_row {
    align-items: center;
    margin: 0 0 20px 0;
}

.pr_divide {
    border-left: 1px solid var(--light-gray-color);
}

.brengt_price_row h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.5;
    color: var(--btn-font-color);
    text-align: end;
    max-width: 350px;
    margin: 0 auto;
}

.brengt_price input {
    border: 1px solid var(--dark-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: var(--btn-font-color);
    min-height: 80px;
    width: 100%;
    max-width: 300px;
    margin: 0 0 10px 0;
    text-align: center;
}

.brengt_price {
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

    .brengt_price input::placeholder {
        color: var(--btn-font-color);
    }

    .brengt_price p {
        font-weight: 400;
        font-size: 14px;
        line-height: 1.6;
        color: rgba(32, 29, 30, 0.8);
        margin: 0;
    }

    .brengt_price .text-success::placeholder {
        color: #198754;
    }

    .brengt_price .text-danger::placeholder {
        color: #ff0000;
    }


@media screen and (max-width: 1600px) {
    .hero_inner {
        min-height: 500px;
        padding: 20px 50px 20px 70px;
    }

    .hero_img {
        margin: 0 auto;
        text-align: center;
    }

    .hero_inner .hero_img img {
        height: 500px;
        object-fit: contain;
    }

    .branding_section_inner {
        min-height: 600px;
    }

    .overlay_text {
        min-height: 300px;
        max-width: 620px;
    }

        .overlay_text h3 {
            font-weight: 600;
            font-size: 32px;
        }

    body .contact_section {
        padding: 60px 0 80px 0;
    }

    body .brengt_section {
        padding: 60px 0 80px 0;
    }
}

@media screen and (max-width: 1199px) {

    nav.tankk_header.navbar.navbar-expand-xl {
        padding: 10px 0;
    }
    /* .navbar-nav */
    .hero_inner {
        min-height: auto;
        padding: 30px 30px 30px 30px;
    }
        /* .hero_inner .hero_img img{
        height: auto;
    } */
        .hero_inner h1 {
            font-size: 42px;
            line-height: 1.2;
            max-width: 320px;
            margin: 30px 0 25px 0;
        }

        .hero_inner p {
            font-size: 20.6326px;
            line-height: 1.4;
            letter-spacing: -0.32px;
            max-width: 160px;
            margin: 0 0 30px 0;
        }

    /* branding_section */
    .overlay_text h3 {
        font-size: 28px;
        line-height: 1.3;
    }

    .overlay_text span {
        font-size: 20px;
    }

    .overlay_text {
        max-width: 500px;
        padding: 20px 20px;
        min-height: 220px;
    }

    .branding_section_inner {
        min-height: 450px;
        padding: 20px;
        background-size: cover;
    }

        .branding_section_inner h2 {
            font-size: 37px;
            max-width: 270px;
            margin: 0px 0 10px 0;
        }

        .branding_section_inner p {
            font-size: 18px;
        }


    /* waarom_section */
    .dispenser_highlights {
        padding: 0 150px 0 0;
    }

    .d_h_right {
        padding: 0 0px 0 150px;
    }

    .dispenser_highlights:after {
        width: 140px;
    }

    /* .footer */
    footer h3 {
        font-size: 22px;
        line-height: 1.5;
    }

    footer .col-md-3 {
        padding: 20px 10px 50px 20px;
    }

    .footer_col img {
        max-width: 200px;
        object-fit: contain;
    }
    /* .van_section */


    .van_section h3 {
        font-size: 25px;
        line-height: 1.4;
        margin: 0 0 20px 0;
    }
    /* .oplo_section */
    .oplo_section h3 {
        font-size: 25px;
        max-width: 410px;
    }
    /* .smaken_section */
    .smaken_section .carousel-control-next, .smaken_section .carousel-control-prev {
        width: 4%;
    }

    .flavour_slide {
        max-width: 550px;
        padding: 50px 100px 50px 0;
    }

    .smaken_section .flavour_slide:after {
        width: 100px;
        height: 140px;
    }

    .smaken_section .flavour_slide2:after {
        width: 120px;
        height: 140px;
    }

    .smaken_section .flavour_slide3:after {
        width: 120px;
        height: 140px;
    }

    .smaken_section h3 {
        font-size: 30px;
        max-width: 240px;
    }

    /* common/ */
    .section_heading {
        font-size: 30px;
    }
    /* .navbar-nav */
    nav.tankk_header .navbar-nav .nav-item {
        display: inline-flex;
        margin: 0 0 20px 0;
    }

    html body nav.tankk_header .navbar-nav {
        margin: 20px 0 5px 0;
    }

    #navbarSupportedContent {
        padding: 0 0 15px 0;
    }
}

@media screen and (max-width: 991px) {
    /* .hero */
    .hero_inner h1 {
        font-size: 40px;
        line-height: 1.2;
        max-width: 320px;
        margin: 30px 0 25px 0;
    }

    .hero_inner .hero_img img {
        height: 400px;
        object-fit: contain;
    }
    /* waarom_section */
    .dispenser_highlights {
        padding: 0 0px 0 0;
    }

    .d_h_right {
        padding: 0 0px 0 0px;
    }

    .dis_high_row {
        flex-direction: row;
        column-gap: 20px;
        margin: 20px 0;
        max-width: 100%;
    }

    .waarom_section .col-lg-2 {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .dispenser_highlights p {
        text-align: left;
    }

    .dispenser_highlights h4 {
        text-align: left;
        margin-bottom: 5px;
        font-size: 18px;
    }

    .dispenser_highlights:after {
        content: none;
    }

    .dispenser_img {
        text-align: center;
        margin: 0 0 20px 0;
    }

        .dispenser_img img {
            height: 300px;
            object-fit: contain;
        }

    .waarom_section .btn.btn-danger {
        margin: 0px 0 0 0;
    }

    /* .soft */
    .soft_bottom {
        margin: 0px 0 40px 0;
    }

    /* common_css */
    .section_upper_heading {
        margin: 0 0 20px 0;
    }

    .sub_heading {
        margin: 0 auto 25px;
    }

    .section_heading {
        font-size: 25px;
    }

    /* .oplo_section */
    .oplo_section h3 {
        font-size: 25px;
        max-width: 450px;
    }
    /* .smaken_section */
    .smaken_sliders:before {
        content: none;
    }

    .smaken_section h3 {
        font-size: 23px;
        max-width: 100%;
        text-align: center;
        margin: 15px 0 0 0;
    }

    .flavour_slide {
        max-width: 500px;
        padding: 50px 100px 50px 0;
    }

    /* branding_section */
    .overlay_text h3 {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    body .container {
        padding-right: var(--bs-gutter-x,1rem);
        padding-left: var(--bs-gutter-x,1rem);
    }
    /* hero */
    .hero_inner h1 {
        font-size: 35px;
        line-height: 1.2;
        max-width: 320px;
        margin: 30px 0 25px 0;
    }

    .branding_section_inner {
        min-height: 390px;
        padding: 20px;
    }

    .overlay_text {
        max-width: 575px;
        padding: 20px 20px;
        min-height: 170px;
        bottom: 0px;
        right: 0px;
    }

    .branding_section_inner h2 {
        font-size: 27.1275px;
        max-width: 220px;
        margin: 0px 0 15px 0;
        text-shadow: 3px 3px #dfeaec;
    }

    .branding_section_inner p {
        font-size: 18.6326px;
    }
    /* waarom_section */
    .waarom_section {
        padding: 50px 0;
    }

    .van_section .row {
        flex-direction: column-reverse;
    }

    .van_img {
        margin: 0 0 20px 0
    }

        .van_img img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }

    .van_inner {
        padding: 20px 20px 20px 20px;
    }

    .van_section {
        padding: 40px 0;
    }

    .van_inner_imgs {
        justify-content: start;
        margin: 0 0 20px 0;
    }
    /* oplo_section */
    .oplo_col_inner {
        padding: 20px 0 0 0px;
    }

    .oplo_col:before {
        content: none;
    }

    .oplo_section .btn.btn-danger {
        margin: 10px auto;
        min-width: auto;
    }

    .oplo_section {
        padding: 0 0 50px 0;
    }

        .oplo_section h3 {
            font-size: 20px;
            max-width: 450px;
            text-align: center;
        }
    /* software_section */
    .software_section {
        padding: 0 0 50px 0;
    }
    /* .smaken_section */
    .smaken_section {
        padding: 0 0 50px 0;
    }
    /* tank_section */
    .tank_section {
        padding: 40px 0;
    }

    .flavour_slide p {
        line-height: 1.5;
    }
    /* footer */
    footer h3 {
        margin: 0 0 5px 0;
    }

    .flavour_slide_img {
        max-width: 100px;
        right: 0;
        opacity: 0.5;
    }
}

@media screen and (max-width: 575px) {
    .section_upper_heading p {
        text-align: justify;
    }

    .overlay_text {
        max-width: 575px;
        padding: 20px 20px;
        min-height: 170px;
        bottom: 0px;
        right: 0px;
    }

        .overlay_text h3 {
            font-size: 20px;
            line-height: 1.3;
        }

        .overlay_text span {
            font-size: 14px;
        }

    footer .col-md-3 {
        padding: 20px 10px 20px 20px;
    }

    footer h3 {
        font-size: 20px;
        line-height: 1.5;
        margin: 0 0 5px 0;
    }

    footer ul li a, footer p {
        font-weight: 400;
        font-size: 15px;
        margin: 0 0 5px 0;
    }

    footer .col-md-3 {
        border-left: 0;
    }

    /* waarom_section */
    .dis_high_row {
        display: block;
        margin: 0px 0;
    }

    .smaken_section h3 {
        font-size: 20px;
    }
    /* .van_section */
    .van_section h3 {
        font-size: 20px;
        line-height: 1.4;
        margin: 0 0 20px 0;
    }

    .van_section {
        padding: 0px 0 40px 0;
    }

    .van_inner_imgs {
        flex-direction: column;
        column-gap: 0;
        row-gap: 15px;
    }
    /* oplo_section */
    .flavour_shapes h4 {
        font-weight: 600;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 10px;
        text-transform: uppercase;
        color: var(--btn-font-color);
        margin: 15px 0 0 0;
    }

    .flavour_shapes img {
        height: 200px;
        object-fit: contain;
    }

    .oplo_col_inner {
        padding: 10px 0 0 0px;
    }
    /* software_section */
    .software_section {
        padding: 0 0 20px 0;
    }

    /* common */
    .section_heading {
        font-size: 20px;
        line-height: 1.4;
    }

    body .btn.btn-primary, body .btn.btn-secondary, body .btn.btn-danger {
        font-size: 12px;
        padding: 16px 12px 16px 14px;
        /* min-width: 200px; */
    }

    /* .smaken_section */
    .smaken_section .carousel-control-next, .smaken_section .carousel-control-prev {
        align-items: end;
    }

    .smaken_section .flavour_slide:after {
        opacity: 0.4;
    }

    .flavour_slide {
        padding: 30px 0;
    }

    .smaken_section .carousel-control-next, .smaken_section .carousel-control-prev {
        width: 30px;
    }
    /* .hero */
    .hero_inner .hero_img {
        text-align: center;
    }

        .hero_inner .hero_img img {
            height: 250px;
            object-fit: contain;
            margin: 20px 0 0 0;
        }

    .hero_inner h1 {
        font-size: 40px;
        max-width: 100%;
        margin: 20px 0 15px 0;
        text-align: center;
    }

    .hero_section .smallshapeimg {
        margin: 0 auto;
    }

    .hero_inner p {
        font-size: 18.6326px;
        max-width: 150px;
        margin: 0 auto 20px;
    }

    .hero_inner {
        min-height: 600px;
        padding: 30px 20px 30px 15px;
    }

    .hero_section {
        text-align: center;
    }
}

@media screen and (max-width: 400px) {
    .hero_inner h1 {
        font-size: 28px;
        /* max-width: 200px; */
        margin: 20px 0 15px 0;
    }

    .hero_inner p {
        font-size: 18px;
    }

    .footer_col img {
        max-width: 150px;
        object-fit: contain;
    }
}

@media screen and (max-width: 991px) {
    /* commmon_inner_banner */
    .inner_banner h2 {
        font-size: 28px;
    }

    .inner_banner p {
        font-size: 14px;
    }
    /* brengt_section */
    .brengt_price_row h3 {
        font-size: 22px;
        max-width: 310px;
    }

    .brengt_price input {
        font-size: 20px;
        min-height: 60px;
    }
}

@media screen and (max-width: 767px) {
    .contact_section {
        padding: 40px 0 50px 0;
    }
    /* brengt_section */
    .brengt_section {
        padding: 40px 0 50px 0;
    }

    .brengt_price_row h3 {
        text-align: inherit;
        max-width: 350px;
    }

    .brengt_price {
        padding: 5px 0;
    }

    .pr_divide {
        border-left: none;
    }
}

@media screen and (max-width: 575px) {
    /* commmon_inner_banner */
    .inner_banner {
        min-height: 140px;
    }

        .inner_banner h2 {
            font-size: 22px;
        }
    /* brengt_section */
    .brengt_price_row h3 {
        font-size: 20px;
    }

    .brengt_price input {
        font-size: 18px;
        min-height: 50px;
    }

    body .hamburger .line {
        width: 30px;
        height: 3px;
        margin: 5px auto;
    }

    .navbar-brand img {
        max-width: 130px;
        object-fit: contain;
    }

    body #hamburger-6.is-active .line:nth-child(1) {
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        -o-transform: translateY(8px);
        transform: translateY(8px);
    }

    body #hamburger-6.is-active .line:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(90deg);
        -ms-transform: translateY(-8px) rotate(90deg);
        -o-transform: translateY(-8px) rotate(90deg);
        transform: translateY(-8px) rotate(90deg);
    }
}

/* ///////////script css////////////////////////////// */
/*
#navbar.scrolled{
    position: fixed;
    width: 100%;
    top: 0;
}*/
#navbar.scrolled {
    background: var(--gray-color);
    z-index: 99;
}

.hamburger .line {
    width: 45px;
    height: 4px;
    background-color: var(--dark-color);
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-6.is-active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

    #hamburger-6.is-active .line:nth-child(2) {
        width: 0px;
    }

    #hamburger-6.is-active .line:nth-child(1),
    #hamburger-6.is-active .line:nth-child(3) {
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    #hamburger-6.is-active .line:nth-child(1) {
        -webkit-transform: translateY(12px);
        -ms-transform: translateY(12px);
        -o-transform: translateY(12px);
        transform: translateY(12px);
    }

    #hamburger-6.is-active .line:nth-child(3) {
        -webkit-transform: translateY(-12px) rotate(90deg);
        -ms-transform: translateY(-12px) rotate(90deg);
        -o-transform: translateY(-12px) rotate(90deg);
        transform: translateY(-12px) rotate(90deg);
    }


body::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(0, 0, 0);
    background-color: #000;
}


.cs_section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 500px;
}

    .cs_section h2 {
        font-weight: 600;
        font-size: 40px;
        line-height: 1.3;
        color: #876f6f;
    }

/* 20-3-2023 */
.ln_btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

    .ln_btn .btn.btn-primary {
        font-size: 15px;
        padding: 0.7rem 1rem;
    }

    .ln_btn .btn-check:focus + .ln_btn .btn, .ln_btn .btn:focus {
        outline: 0;
        box-shadow: none;
    }

    .ln_btn .dropdown-item.active, .ln_btn .dropdown-item:active {
        color: #000;
        text-decoration: none;
        background: linear-gradient(90deg, #FF9966 0%, #FF5E62 100%);
    }

    .ln_btn .dropdown-menu {
        border: 0;
        box-shadow: 0 0px 5px rgba(0,0,0,0.10);
        width: 120px;
        padding: 10px 0px;
    }

        .ln_btn .dropdown-menu[data-bs-popper] {
            top: 100%;
            margin-top: 1.125rem;
            left: auto;
            right: 0px;
        }

.lan_drop a {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: var(--dark-color);
    padding: 5px 0 5px 0;
    display: block;
    padding: 7px 12px;
}

.ln_btn .dropdown-menu:after {
    right: 10px;
    content: " ";
    position: absolute;
    top: -12px;
    border-top: none;
    border-right: 11px solid transparent;
    border-left: 11px solid transparent;
    border-bottom: 11px solid rgb(243 243 243);
}

body::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
}

/*05-09-2023*/
.brengt_section_new {
    padding: 80px 0 100px 0;
}

body .brengt_section_new .container {
    max-width: 1373px !important;
    margin: 0 auto;
}

.form_group_new {
    margin: 0 0 24px 0;
}

    .form_group_new label {
        color: #000;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0 0 8px 0;
    }

.mpo {
    position: relative;
}

    .mpo::before {
        position: absolute;
        content: "€";
        top: 22px;
        left: 15px;
        font-size: 24px;
        font-weight: 700;
    }

    .mpo input {
        text-indent: 25px;
    }

.form_group_new input {
    border: 1px solid #000000;
    border-radius: 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #201d1e;
    min-height: 80px;
    margin: 0 0 10px 0;
    width: 100%;
    background-color: #F5F5F5;
    max-width: 300px;
    padding: 15px;
}

    .form_group_new input::placeholder {
        color: #201d1e;
        font-weight: 700;
    }

.form_group_new p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(32, 29, 30, 0.8);
    margin: 0;
    max-width: 300px;
}

.green_box {
    border-radius: 20px;
    text-align: center;
    height: 100%;
    padding: 30px 15px;
}

.green_box_inner {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
}

.gb_inner {
    margin: 0 0 25px 0;
}

.green_box .gb_inner:last-child {
    margin: 0;
}

.gb_inner h5 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.gb_inner span {
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

.bgn_inner h5 {
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.bgn_inner span {
    font-size: 60px;
    font-weight: 700;
}

.gb_inner p {
    color: rgba(0, 0, 0, 0.80);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.main_brengt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 970px;
    margin: 0 auto;
}

.colbrengt1 {
    max-width: 500px;
    width: 100%;
}

@media only screen and (max-width: 1400px) {
    .brengt_section_new {
        padding: 50px 60px 0;
    }

    .gb_inner span {
        font-size: 25px;
    }

    .gb_inner h5 {
        font-size: 17px;
    }

    .bgn_inner h5 {
        font-size: 24px;
    }

    .bgn_inner span {
        font-size: 45px;
    }

    .form_group_new label {
        font-size: 16px;
    }

    .form_group_new input {
        font-size: 20px;
        min-height: 60px;
    }

    .mpo::before {
        top: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .brengt_section_new {
        padding: 40px 0 40px 0;
    }

    .gb_inner span {
        font-size: 20px;
    }

    .gb_inner h5 {
        font-size: 16px;
    }

    .bgn_inner h5 {
        font-size: 20px;
    }

    .gb_inner p {
        font-size: 16px;
    }

    .bgn_inner span {
        font-size: 30px;
    }

    .bgn_inner span {
        font-size: 25px;
    }
}
/* .terms_section */
.terms_section {
    padding: 50px 0;
}

    .terms_section .container {
        max-width: 1373px !important;
        margin: 0 auto;
    }

    .terms_section h3 {
        color: #000;
        font-size: 18px;
        font-weight: 700;
        margin: 20px 0 8px 0;
    }

    .terms_section p {
        color: #000;
        font-size: 16px;
        font-weight: 400;
        margin: 0 0 6px 0;
    }

@media only screen and (max-width: 1199px) {
    .terms_section {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 575px) {
    .main_brengt {
        flex-direction: column;
    }

    .mpo {
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }

    .form_group_new {
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }

    .colbrengt .row {
        gap: 10px
    }
}
/*18june2026*/
.tankk_header .member-menu .btn {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

table thead {
    background-color: #1e1e1e;
    color: #f5f5f5;
}

#ingredient_html table thead {
    background-color: #FFFFFF;
    color: #f5f5f5;
}
.tankk_header .navbar-collapse {
    flex-grow: 0;
}

.confirm_screen {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    background: #f7f8fb;
}

.confirm_col {
    max-width: 640px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 55px 45px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

    .confirm_col::before {
        content: "";
        width: 180px;
        height: 180px;
        background: linear-gradient(135deg, #ff9264, #ff5b68);
        opacity: 0.12;
        border-radius: 50%;
        position: absolute;
        top: -70px;
        right: -70px;
    }

    .confirm_col img {
        width: 90px;
        margin-bottom: 25px;
    }

    .confirm_col h4 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1f2933;
    }

    .confirm_col small {
        display: block;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #111;
    }

    .confirm_col span {
        display: inline-block;
        font-size: 22px;
        margin: 12px 0 22px;
        padding: 10px 22px;
        border-radius: 999px;
        background: #fff2ee;
        color: #ff5b3f;
        font-weight: 700;
    }

    .confirm_col p {
        font-size: 17px;
        line-height: 1.6;
        color: #555;
        max-width: 520px;
        margin: 0 auto 30px;
    }

    .confirm_col .btn {
        min-width: 260px;
        height: 58px;
        border-radius: 14px;
        font-size: 18px;
        font-weight: 700;
        background: linear-gradient(90deg, #ff9666, #ff5b68);
        border: 0;
        box-shadow: 0 12px 24px rgba(255, 91, 104, 0.25);
        transition: all 0.25s ease;
    }

        .confirm_col .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 30px rgba(255, 91, 104, 0.35);
        }

/* solutions_section */
.solutions_section {
    padding: 0 0 100px 0;
    overflow-x: hidden;
}

.solution_card {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 45px 40px;
    border-radius: 24px;
    overflow: visible;
}

    .solution_card.solution_card_amber {
        background: #FBF3E0;
    }

    .solution_card.solution_card_darkorange {
        background: #FBEAE0;
    }

.solution_card_img {
    flex: 0 0 auto;
    width: 52%;
    margin: -70px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .solution_card_img img {
        max-height: 480px;
        width: 100%;
        object-fit: contain;
        filter: drop-shadow(15px 25px 20px rgba(0, 0, 0, 0.3));
    }

.solution_card_amber .solution_card_img {
    margin-left: -25px;
}

.solution_card_darkorange .solution_card_img {
    margin-right: -25px;
}

    .solution_card_darkorange .solution_card_img img {
        filter: drop-shadow(-15px 25px 20px rgba(0, 0, 0, 0.3));
    }

.solution_card_content {
    flex: 1 1 auto;
}

    .solution_card_content h3 {
        font-weight: 700;
        font-size: 28px;
        margin: 0 0 8px 0;
    }

.solution_card_tag {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.solution_card_amber .solution_card_tag {
    color: #B8860B;
}

.solution_card_darkorange .solution_card_tag {
    color: #C1440E;
}

.solution_card_content p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 20px 0;
}

.solution_card_features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
    margin: 0 0 10px 0;
}

    .solution_card_features li i {
        font-size: 16px;
    }

.solution_card_amber .solution_card_features li i {
    color: #B8860B;
}

.solution_card_darkorange .solution_card_features li i {
    color: #C1440E;
}

.solution_card_link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 25px 0 0 0;
}

    .solution_card_link i {
        margin: 0 0 0 10px;
        font-size: 13px;
        transition: 0.5s;
    }

    .solution_card_link:hover i {
        transform: translate(5px, 0);
    }

.solution_card_amber .solution_card_link {
    color: #B8860B;
}

.solution_card_darkorange .solution_card_link {
    color: #C1440E;
}

@media screen and (max-width: 991px) {
    .solution_card {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }

        .solution_card.solution_card_darkorange {
            flex-direction: column-reverse;
        }

    .solution_card_img {
        width: 65%;
        margin: 0 0 25px 0;
    }

    .solution_card_amber .solution_card_img,
    .solution_card_darkorange .solution_card_img {
        margin-left: 0;
        margin-right: 0;
    }

    .solution_card_img img {
        max-height: 340px;
    }

    .solution_card_features li {
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    .solution_card_img {
        width: 82%;
    }

    .solution_card_img img {
        max-height: 260px;
    }
}

    .confirm_col .smallshapeimg {
        justify-content: center;
        margin-top: 35px;
    }