@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
    --primary-color: #779f2e;
}

* {
    margin: 0;
    padding: 0;
}

html {
    /* overflow-x: hidden !important; */
    max-width: 100%;
}

body {
    /* #f9fdff */
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-right: 0 !important;
    z-index: -1;
    font-display: swap;
}

.navbar-toggler {
    color: #ffffff;
    padding: 3px;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url('../fonts/menu.svg');
}

.theme-btn,
.theme-btn:hover {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    background: var(--primary-color);
    display: inline-block;
    text-decoration: none;
    padding: 0.65rem 1.75rem;
    border-radius: 5px;
}

h1,
h2,
h3 {
    font-weight: 600;
}

.title {
    color: rgba(0, 0, 0, 0.75); /* #1d2a40 */
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

section {
    overflow-x: clip;
}

/* ==============================================
                Header Section
=============================================== */

.navbar-brand,
.navbar-brand:hover,
.navbar-brand:active {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

header {
    padding: 0.25rem 0;
    z-index: 99999;
    /* margin-top: 10px; */
    transition: top 0.3s;
    top: -85px;
}

header.sticky-top {
    background: #ffffff;
    transition: top 0.3s;
    box-shadow: 0px 5px 15px -3px rgba(100, 149, 255, 0.075);
}

.navbar-nav {
    column-gap: 18px;
}

.navbar-nav .nav-link {
    color: #4f4f4f;
    font-weight: 500;
}

header.sticky-top .nav-link {
    color: #4f4f4f;
}

header .theme-btn {
    margin-left: 10px;
}

/* ==============================================
                 Banner Section
=============================================== */
.banner {
    background: #f2f7f5;
    min-height: calc(100vh - 80px);
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
}

.banner::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: var(--primary-color);
    border-bottom-left-radius: 60px;
    z-index: -1;
}

.banner h1 {
    color: var(--primary-color); /* #222e28 */
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.banner ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin-bottom: 25px;
    list-style: none;
}

.banner ul li {
    color: #293831;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.banner ul li img {
    height: 24px;
    width: 24px;
    margin-right: 5px;
}

.banner .review {
    max-height: 390px;
    max-width: 390px;
    border: 14px solid #11ccbe;
    border-radius: 50%;
    border-bottom-left-radius: 10px;
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.025);
    overflow: hidden;
}

/* ==============================================
                 Text Block Section
=============================================== */

.text-block {
    padding: 100px 0px 80px;
    background: #ffffff;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.text-block::before {
    position: absolute;
    content: '';
    top: 200px;
    right: 0;
    height: 500px;
    width: 500px;
    border-radius: 30%;
    background: linear-gradient(250deg, #f2f7f5, transparent);
    z-index: -1;
    transform: translateX(50%) rotate(-45deg);
    opacity: 0.85;
}

.text-block .title {
    color: #3f3f3f;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.text-block p {
    color: #555555;
    line-height: 1.5;
    margin-bottom: 14px;
}

.text-block p strong {
    font-weight: 600;
}

/* ==============================================
                  Features Section
=============================================== */
.theme-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2px;
}

.features .g-1,
.features .gy-1,
.features .gx-1 {
    --bs-gutter-y: 0.05rem;
    --bs-gutter-x: 0.05rem;
}

.features .card {
    padding: 30px 36px;
    border: none;
    height: 100%;
    border-radius: 0;
    background: var(--primary-color);
    /* box-shadow: 3px 3px 15px -4px rgba(69, 108, 192, 0.075); */
}

.features .card .icon {
    margin-bottom: 16px;
}

.features .card .icon img {
    height: 54px;
    width: 54px;
}

.features .card h4 {
    color: #fafafa;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.75px;
    margin-bottom: 8px;
}

.features .card p {
    color: #f1f1f1;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ==============================================
                How it Works Section
=============================================== */

.how-it-works {
    padding: 110px 0 0;
}

.how-it-works .title {
    text-align: center;
    margin-bottom: 60px;
}

.hover-card {
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    background: var(--primary-color);
}

.hover-card::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(transparent, transparent, #00105a);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.5s;
    z-index: 1;
}

.hover-card:hover::before {
    border-radius: 15px;
    transform: scale(1.25);
    transition: all 0.5s;
    z-index: 0;
}

.hover-card::after {
    position: absolute;
    content: '';
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
    opacity: 1;
    transform: rotate(-45deg);
    transition: all 0.5s;
    border-top: 1px double #ffffff;
    border-bottom: 1px double #ffffff;
    z-index: 1;
}

.hover-card:hover::after {
    opacity: 0;
    transition: all 0.5s;
}

.hover-card:hover {
    border-radius: 15px;
    transition: all 0.5s;
    transform: scale(1.1);
}

.hover-card img {
    opacity: 1;
    transition: all 0.5s;
}

.hover-card:hover img {
    opacity: 0;
    transition: all 0.5s;
}

.hover-card .text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 25px;
    transition: all 0.5s;
    transform: translateY(100%);
    opacity: 0;
}

.hover-card:hover .text {
    opacity: 1;
    transition: all 0.5s;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hover-card .text p {
    color: #f1f1f1;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
    letter-spacing: 0.35px;
}

/* ==============================================
                Before & After Section
=============================================== */
.before-after {
    padding: 80px 0 90px;
    background: #ffffff;
}

.before-after .beer-slider {
    border-radius: 15px;
}

/* ==============================================
                Testimonial Section
=============================================== */
.testimonial .title {
    margin-bottom: 30px;
}

.testimonial .ratings {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 2px;
}

.testimonial .ratings li i {
    font-size: 16px;
    color: #ffa600;
}

.slick-slide {
    margin: 10px 15px;
}

.slick-list {
    margin: 0 -15px;
}

.testimonial .card {
    padding: 24px;
    border-color: #e8ecea;
    border-radius: 15px;
}

.testimonial .card .customer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial .card .customer img {
    max-width: 70px;
    border-radius: 24px;
}

.testimonial .card p {
    color: #555555;
    font-size: 15px;
    margin: 0;
}

.slick-dots {
    bottom: -35px;
}

.slick-dots li {
    margin: 2px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.slick-dots li button:hover:before {
    opacity: 0.25;
    transition: all 0.3s;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: var(--primary-color);
    transition: all 0.3s;
}

/* ==============================================
                  CTA Section
=============================================== */
.call-to-action {
    padding: 40px 0 30px;
    margin: 15px 0;
    background: var(--primary-color);
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.call-to-action::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 130px;
    width: 105%;
    background-color: #ffffff;
    transform: translateY(-25%) translateX(-5px);
    border-radius: 45%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: -1;
}

.call-to-action::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 130px;
    width: 105%;
    background-color: #ffffff;
    transform: translateY(25%) translateX(-5px);
    z-index: -1;
}

.call-to-action .title {
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
}

button,
button:focus {
    outline: none;
    border: none;
}

.cta-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px 36px;
    box-shadow: 0px 2px 20px -5px rgb(34 53 142 / 16%);
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 99;
}

.cta-form h6 {
    position: absolute;
    top: 22px;
    right: 40px;
    color:  rgb(4 153 143);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-form span {
    color: #ff2828;
    font-size: 15px;
    letter-spacing: 0.35px;
    margin-top: 5px;
}

.cta-form .failed-msg {
    color: #fa0000;
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 1;
    font-weight: 600;
}

.cta-form .success-msg {
    color: #04a20f;
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 1;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: rgba(255, 255, 255, 0.75);
    background-clip: padding-box;
    border: 1px solid #dcdfe1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 3px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

label {
    color: #888888;
    margin-bottom: 5px;
}

.cta-form button {
    width: 100%;
    margin-top: 5px;
}

.cta-form button img {
    margin-left: 8px;
}

/* ==============================================
                  Contact Section
=============================================== */
.contact-us {
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

.contact-us::before {
    position: absolute;
    content: '';
    top: 50px;
    left: 0;
    height: 500px;
    width: 500px;
    border-radius: 30%;
    background: linear-gradient(-250deg, #f2f7f5, transparent);
    z-index: -1;
    transform: translateX(-50%) rotate(45deg);
    opacity: 0.85;
}

.contact-us .title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-us p {
    color: #555555;
    line-height: 1.6;
}

.contact-us strong {
    color: #555555;
    font-weight: 500;
}

.contact-us ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-us ul li {
    color: #454545;
    font-weight: 600;
}

.contact-us ul li a {
    color: #555555;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-us ul li a:hover {
    color: var(--primary-color);
    transition: all 0.3s;
}

/* ==============================================
                  Footer Section
=============================================== */
footer {
    padding: 25px;
    border-top: 1px solid rgba(69, 108, 192, 0.15);
    background: #ffffff;
}

footer p {
    color: #454545;
    font-size: 15px;
    text-align: center;
    margin-bottom: 0;
}

footer p strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* ==============================================
                Modal Style
=============================================== */
.modal {
    padding-right: 0 !important;
    background: rgba(0, 0, 0, 0.2);
}

.modal-content {
    position: relative;
    overflow: hidden;
}

.modal-content .btn-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 9999;
}

.modal-body {
    padding: 0;
}

.modal .cta-form {
    background: #ffffff;
    padding: 25px 35px 15px;
    box-shadow: none;
    border-radius: 10px;
    border: none;
    backdrop-filter: none;
    position: relative;
    z-index: 99;
}

.modal .cta-form h6 {
    position: relative;
    top: 0;
    left: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.modal .modal-left-bg {
    background: radial-gradient(#ffffff, #eeeeee);
    padding: 24px;
    display: flex;
    align-items: center;
    position: relative;
}

.modal .theme-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    height: auto;
    width: 115px;
    z-index: 1;
}

.modal .ratings {
    position: absolute;
    top: 30px;
    left: 30px;
}

.modal .ratings ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 2px;
}

.modal .ratings ul li i {
    font-size: 16px;
    color: #ffa600;
}

.modal .ratings p {
    color: #666666;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .modal-dialog {
        max-width: 820px;
    }
}

/* ==============================================
                Responsive Codes
=============================================== */
@media screen and (max-width: 1200px) {
    .banner h1 {
        font-size: 2.4rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .navbar-nav {
        column-gap: 10px;
    }

    .banner .review {
        max-height: 350px;
        max-width: 350px;
    }

    .banner ul li {
        font-size: 1rem;
    }

    .hover-card:hover {
        min-height: 380px;
    }
}

@media screen and (max-width: 991.98px) {
    .navbar-brand,
    .navbar-brand:hover,
    .navbar-brand:active {
        font-size: 1.6rem;
    }

    header {
        padding: 0.2rem 0;
    }

    .navbar-nav .nav-item {
        text-align: center;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 5px 0;
    }

    .navbar-nav .nav-item button {
        margin: 5px auto;
    }

    .banner {
        padding: 60px 0 75px;
        text-align: left;
    }

    .banner .review {
        border-width: 10px;
        max-height: 250px;
        max-width: 250px;
    }

    .banner::before {
        width: 43%;
    }

    .text-block {
        padding: 60px 0px;
    }

    .text-block .title {
        text-align: center;
    }

    .features .g-1,
    .features .gy-1,
    .features .gx-1 {
        --bs-gutter-y: 0.1rem;
        --bs-gutter-x: 0.1rem;
    }

    .how-it-works {
        padding: 60px 0 0;
    }

    .how-it-works h5 {
        font-size: 1rem;
    }

    .before-after {
        padding: 70px 0;
    }

    .testimonial {
        padding-bottom: 70px;
    }

    .testimonial .title {
        text-align: center;
    }

    .call-to-action {
        padding: 70px 0 15px;
        margin: 0;
    }

    .call-to-action::before {
        display: none;
    }

    .call-to-action::after {
        height: 40%;
        transform: rotate(-5deg) scaleX(1.5) translateY(15%);
    }

    .call-to-action .title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-us {
        padding: 60px 0;
        text-align: center;
    }

    .contact-us img {
        display: none;
    }
}

@media screen and (max-width: 767.98px) {
    header {
        padding: 0.15rem 0;
    }

    .banner h1,
    .title,
    .contact-us .title {
        font-size: 2rem;
    }

    /* New Codes */
    .banner {
        background: linear-gradient(145deg, #779f2e, #64d9d0);
        overflow: hidden;
        position: relative;
    }

    .banner::after {
        position: absolute;
        content: '';
        top: 0%;
        left: -35%;
        width: 100%;
        height: 130%;
        background: linear-gradient(0deg, var(--primary-color), transparent);
        transform: rotate(15deg);
        border-radius: 30%;
        opacity: 0.9;
        border-top-left-radius: 0;
        z-index: -1;
    }

    .prod-img img {
        transform: scale(1) translateX(15px);
        filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.15));
    }

    /* New Codes End */

    .banner h1,
    .banner ul li {
        color: #ffffff;
    }

    .banner ul li img {
        filter: brightness(10);
    }

    .banner .theme-btn,
    .banner .theme-btn:hover {
        font-size: 15px;
        color: var(--primary-color);
        background: #ffffff;
    }

    .banner::before {
        display: none;
    }

    .banner p {
        font-size: 16px;
    }

    .text-block::before {
        top: 50%;
    }

    .text-block ul li {
        font-size: 14px;
    }

    .how-it-works .title {
        margin-bottom: 25px;
    }

    .how-it-works h5 {
        color: #4d496d;
        font-size: 1rem;
        font-weight: 500;
    }

    .before-after {
        padding: 60px 0;
        text-align: center;
    }

    .hover-card,
    .hover-card:hover {
        padding: 34px 28px;
        border-radius: 24px;
        background: #0b998f;
        transform: none;
        min-height: auto;
    }

    .hover-card::before,
    .hover-card::after {
        display: none;
    }

    .hover-card img,
    .hover-card:hover img {
        border-radius: 50%;
        height: 100px;
        width: 100px;
        opacity: 1;
        border: 2px solid #779f2e;
        margin-bottom: 14px;
    }

    .hover-card .text {
        position: relative;
        transform: none;
        background: none;
        padding: 0;
        opacity: 1;
    }
}

@media screen and (max-width: 575.98px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding: 0 20px;
    }

    .theme-btn,
    .theme-btn:hover {
        font-size: 14px;
        padding: 0.6rem 1.7rem;
        border-radius: 4px;
    }

    .navbar-brand,
    .navbar-brand:hover,
    .navbar-brand:active {
        font-size: 1.4rem;
    }

    header {
        padding: 0;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 400;
    }

    .banner {
        min-height: 480px;
        padding: 50px 0 60px;
    }

    .banner h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        letter-spacing: 0;
    }

    .prod-img img {
        width: 80px;
        transform: scale(1.65) translateX(-7px);
        z-index: -1;
    }

    .title,
    .contact-us .title {
        font-size: 1.4rem;
        letter-spacing: 0;
    }

    .banner ul {
        gap: 8px;
        margin-bottom: 5px;
    }

    .banner p {
        margin-bottom: 10px;
    }

    .banner p {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 400;
    }

    .banner ul {
        margin-bottom: 20px;
    }

    .banner ul li {
        color: #fafafa;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.5px;
        line-height: 1.35;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .banner img {
        margin-top: 10px;
        max-width: 100%;
    }

    .banner ul li img {
        height: 22px;
        margin: 0;
    }

    .text-block {
        padding: 60px 0;
    }

    .text-block::before {
        height: 300px;
        width: 300px;
    }

    .text-block p {
        font-size: 15px;
    }

    .features .card {
        padding: 24px;
    }

    .features .card h4 {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .features .g-1,
    .features .gy-1,
    .features .gx-1 {
        --bs-gutter-y: 1px;
        --bs-gutter-x: 1px;
    }

    .wrapper {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .timeline::after {
        width: 1px;
        left: -9px;
    }

    .left::after,
    .right::after {
        width: 14px;
        height: 14px;
        left: -16px;
    }

    .content {
        padding: 18px 20px;
    }

    .how-it-works .card {
        padding: 20px 24px 24px;
    }

    .how-it-works span {
        font-size: 24px;
        height: 44px;
        width: 44px;
    }

    .hover-card .text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .before-after {
        padding: 60px 0;
    }

    .testimonial .title {
        margin-bottom: 15px;
    }

    .testimonial .card .customer img {
        max-width: 60px;
        border-radius: 18px;
    }

    .testimonial .card .customer {
        gap: 14px;
        margin-bottom: 16px;
    }

    .call-to-action .title {
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .cta-form h6 {
        display: none;
    }

    .cta-form {
        padding: 20px 24px 16px;
        border-radius: 10px;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .form-control {
        font-size: 15px;
    }

    .cta-form button img {
        display: none;
    }

    .cta-form .failed-msg,
    .cta-form .success-msg {
        font-size: 16px;
        letter-spacing: 0.25px;
    }

    .modal .cta-form {
        background: #ffffff;
        padding: 25px 24px 15px;
        box-shadow: none;
        border-radius: 10px;
        border: none;
        backdrop-filter: none;
        position: relative;
        z-index: 99;
    }

    .modal .cta-form h6 {
        font-size: 1.2rem;
        text-align: left;
        display: block;
    }

    .modal .ratings {
        top: 18px;
        left: 18px;
        transform: scale(0.85);
    }

    .modal .modal-left-bg {
        padding: 20px 20px 14px;
    }

    .modal .theme-badge {
        top: 24px;
        right: 35px;
        width: 80px;
    }

    .contact-us {
        padding: 50px 0;
    }

    .contact-us .title {
        margin-bottom: 15px;
    }

    .contact-us p,
    .contact-us ul li {
        font-size: 15px;
    }

    footer {
        padding: 20px;
    }

    footer p {
        font-size: 13px;
    }

    .hover-card,
    .hover-card:hover {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .hover-card img,
    .hover-card:hover img {
        height: 80px;
        width: 80px;
    }
}
.tag {
    display: inline-block;
  
  width: auto;
    height: 38px;
    
    background-color: #ffff;
    -webkit-border-radius: 3px 4px 4px 3px;
    -moz-border-radius: 3px 4px 4px 3px;
    border-radius: 3px 4px 4px 3px;
    
    border-left: 1px solid #0000;

    /* This makes room for the triangle */
    margin-left: 19px;
    
    position: relative;
    
    color: black;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 38px;
    font-display: swap;

    padding: 0 10px 0 10px;
}

/* Makes the triangle */
.tag:before {
    content: "";
    position: absolute;
    display: block;
    left: -19px;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-right: 19px solid #ffff;
}

/* Makes the circle */
.tag:after {
    content: "";
    background-color: black;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    left: -9px;
    top: 17px;
}



.tag2 {
    display: inline-block;
  
  width: auto;
    height: 38px;
    
    background-color: #09d3c4;
    -webkit-border-radius: 3px 4px 4px 3px;
    -moz-border-radius: 3px 4px 4px 3px;
    border-radius: 3px 4px 4px 3px;
    
    border-left: 1px solid #09d3c4;

    /* This makes room for the triangle */
    margin-left: 19px;
    
    position: relative;
    
    color: white;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 38px;
font-display: swap;
    padding: 0 10px 0 10px;
}

/* Makes the triangle */
.tag2:before {
    content: "";
    position: absolute;
    display: block;
    left: -19px;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-right: 19px solid #09d3c4;
}

/* Makes the circle */
.tag2:after {
    content: "";
    background-color: white;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    left: -9px;
    top: 17px;
}

.center {
  display: inline;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

