@import url('https://fonts.cdnfonts.com/css/general-sans');

html {
    scroll-behavior: smooth;
}

:root {
    --main-color: black;
    --secondary-color: rgb(111 118 126);
    --color_mode: white;
    --button_blue: rgb(17, 0, 255);
    --transparent: 1;
    margin: 0px;
    padding: 0px;
    width: 100%;

    .filter-svg {
        filter: invert(0%) sepia(93%) saturate(0%) hue-rotate(235deg) brightness(107%) contrast(107%);
    }

    .loading-screen {
        background-image: linear-gradient(-65deg, #ffc8b9 0%, #b3e3ff 100%);
    }
}

:root.dark {
    --main-color: white;
    --secondary-color: rgb(150, 150, 150);
    --color_mode: #12122d;
    --button_blue: rgb(17, 0, 255);
    --transparent: 0.1;
    margin: 0px;
    padding: 0px;
    width: 100%;

    .filter-svg {
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(298deg) brightness(102%) contrast(102%);
    }

    /* .spinner { */
    /* background-image: url('/imgs/lucagency_whitemode.png'); */
    /* } */

    /* .loading-screen {
        background-image: linear-gradient(-65deg, #ffc8b9 0%, #62abd4 100%);
    } */
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -ms-overflow-style: none !important;
    /* IE and Edge */
    font-family: 'General Sans', sans-serif;
    line-height: 1.5;
    color: var(--main-color);
}

*::-webkit-scrollbar {
    display: none !important;
}

body {
    margin: 0px;
}

section {
    padding: 100px 100px;
}

.container {
    padding: 0px 50px;
    width: 100%;
}


ul {
    list-style-type: none;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 64px;
}

h3 {
    font-size: 48px;
}


.primary_title {
    font-style: normal;
    line-height: 84px;
    font-weight: 600;
}

.secondary_title {
    font-style: normal;
    line-height: 72px;
    font-weight: 600;
}

.sub_title {
    font-style: normal;
    line-height: 62px;
    font-weight: 600;
}

.primary_content {
    color: var(--main-color);
    font-size: 24px;
    line-height: 32px;
    font-style: normal;
    font-weight: 500;
}

.sub_content {
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 28px;
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 992px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 32px;
    }

    .primary_title {
        font-style: normal;
        line-height: 72px;
        font-weight: 600;
    }

    .secondary_title {
        font-style: normal;
        line-height: 48px;
        font-weight: 600;
    }

    .sub_title {
        font-style: normal;
        line-height: 40px;
        font-weight: 600;
    }

    .primary_content {
        font-size: 20px;
        line-height: 28px;
    }

    .sub_content {
        font-size: 16px;
        line-height: 24px;
    }
}


.bg {
    background-color: var(--color_mode);
    transition: 0.2s ease-in-out;
}

button {
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 100px;
    background-color: var(--color_mode);
    color: var(--main-color);
    font-size: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease-in-out;
}

button.blue {
    background-color: var(--button_blue);
    color: white;
}

button:hover {
    opacity: 0.6;
}

p,
a {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0;
}

dl,
ol,
ul {
    margin: 0;
    padding: 0px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.flex-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*------------- menu-page -------------*/
#main {
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -10vh;
    position: relative;
    z-index: 0;
}

#home-hero {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 30px;
    z-index: 1;
}

#home-hero>h1 {
    font-size: 80px;
    max-width: 750px;
}

#home-hero>p {
    max-width: 672px;
}

#home-hero>div {
    display: flex;
    gap: 20px;
}

#bg-gradient {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-sizing: border-box;
    background-image: url('/imgs/bg_luca.png');
    background-size: 110%;
    background-position: center;
    opacity: var(--transparent);
}

.bg-shape {
    pointer-events: none;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
    box-sizing: border-box;
    left: 0px;
    overflow: hidden;
}

.bg-shape>div {
    position: absolute;
    background-image: url('/imgs/bubble.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: fit-content;
    height: fit-content;
}

.bg-shape>div>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#bubble-1 {
    right: 15%;
    top: 25%;
    width: 180px;
    height: 180px;
}

#bubble-1>img {
    width: 150px;
    height: 150px;
}

#bubble-2 {
    right: 25%;
    bottom: 10%;
    width: 130px;
    height: 130px;
}

#bubble-2>img {
    width: 80px;
    height: 80px;
}

#bubble-3 {
    left: 15%;
    bottom: 30%;
}

#bubble-3>img {
    width: 140px;
    height: 140px;
}

.circle-shape {
    display: block;
    position: absolute;
    background: black;
    border-radius: 100%;
    margin: 0;
    background: radial-gradient(circle at 30% 30%, #e4d3ff, #9268d6, #000);
}

.sticky-div {
    margin-top: 35%;
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

article {
    align-items: flex-start;
}

.solid-line {
    height: 1px;
    width: 100%;
    background-image: radial-gradient(circle, #535353, transparent);
    margin: 0px;
}

div#about-company {
    background-color: rgb(244 244 244 /var(--transparent));
    border-radius: 30px;
    padding: 60px;
    align-items: center;
}

div#about-company>div {
    max-width: 709px;
    ;
}

.grid {
    display: grid;
    gap: 20px;
}

.col-1fr {
    grid-template-columns: 1fr 1fr;
}

.col-2fr {
    grid-template-columns: 2fr 1fr;
}

.col-1-2fr {
    grid-template-columns: 1fr 2fr;
}

#company-table {
    max-width: calc(100% - 64px);
    background-image: linear-gradient(87deg, #fdb99b, #72bdc6 51.04%, #17778d);
    margin: auto;
    padding: 40px 20px;
    flex-wrap: wrap;
    justify-content: space-around;
    border-radius: 0px 0px 30px 30px;
}

#company-table>div>h2 {
    font-size: 72px;
    color: black;
    font-weight: 600;
    font-style: normal;
    position: relative;
    text-align: center;
}

#company-table>div>div {
    background-color: white;
    border-radius: 20px;
    padding: 5px 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

#company-table>div>div>p {
    text-align: center;
    font-size: 12px;
    color: black;
}

#company-table>div>h2>span {
    color: black;
    font-size: 34px;
    font-weight: 600;
    line-height: 48px;
    top: 0px;
    position: absolute;
}

.slider-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.slider {
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}


div.left {
    z-index: 100;
    height: 64px;
    width: 64px;
    background-image: url('/imgs/btn-slider-left.svg');
    cursor: pointer;

    border-radius: 100%;
    background-color: white;
}

div.right {
    z-index: 100;
    height: 64px;
    width: 64px;
    background-image: url('/imgs/btn-slider-left.svg');
    rotate: 180deg;
    cursor: pointer;

    border-radius: 100%;
    background-color: white;
}

.img-slider {
    width: 100%;
    border-radius: 30px;
    border: 1px;
    margin: auto;
}

#campaing-carousel {
    width: 100%;
}


#campaing-carousel div.carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}


div.carousel-item>div.white-shape {
    height: 100%;
    width: 90%;
    position: absolute;
    border-radius: 30px;
    /* background-color: #000; */
    border: 2px solid red;
    transform: translate(8%, 0%);
    opacity: 0.5;
    z-index: -1;
}

div.carousel-item>img.img-slider {
    width: 90%;
    object-fit: contain;
    border-radius: 30px;
    margin: auto;
    transform: translate(0%, 4%);
}

.img-feedback {
    /* max-width: 35vw; */
    border-radius: 30px;
    border: 1px;
    margin-left: 0px;
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}

#carousel-feedback {
    grid-template-areas:
        'img mess'
}

#carousel-feedback>div.feedback-caption {
    justify-content: space-between;
}

.button-abs {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 90px;
}

.button-abs>div {
    border-radius: 64px;
    background-color: white;
}

.wrap {
    flex-wrap: wrap;
}

.card-inner {
    justify-content: flex-start;
    width: max-content;
}

.meta-card {
    justify-content: space-between;
    margin-bottom: 10px;
}

.card {
    width: 320px;
    border: 0px;
    border-radius: 16px;
}

div.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.read-article {
    margin-top: 10px;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.1s ease-in-out;

    &:hover {
        color: var(--button_blue);
    }
}

.contact-contain {
    padding: 20px 40px;
    border-radius: 30px;
}

.contact-card {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
}

.contact-card>.contact-icon {
    padding: 10px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    background-color: white;
}

.contact-card>.contact-info {
    padding: 10px;
}

.contact-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 28px;
    overflow-wrap: anywhere;
    max-width: 300px;
}

.bg1 {
    background-color: rgb(244 244 244/var(--transparent));
}

.contact-input {
    padding: 10px 20px;
    border: 0px;
    border-radius: 10px;
    background-color: rgb(250, 250, 250);
    font-size: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease-in-out;
    color: black;
}

#illustration-abt {
    width: 650px;
    /* transform: translate(20%, -20%); */
}

#circle-1 {
    width: 100px;
    height: 100px;
    top: 25%;
    left: 6%
}

#circle-2 {
    width: 180px;
    height: 180px;
    bottom: 5%;
    right: 6%
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);

}

@media (max-width: 992px) {
    .container {
        padding: 0px;
        ;
    }

    .col-1fr {
        grid-template-columns: 1fr;
    }

    .col-2fr {
        grid-template-columns: 1fr;
    }

    .col-1-2fr {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 48px;
    }


    .sticky-div {
        margin-top: 0px;
    }

    #illustration-abt {
        width: 70vw;
        transform: none;
    }

    #bubble-1 {
        right: 15%;
        top: 15%;
        width: 180px;
        height: 180px;
    }

    #bubble-2 {
        right: 25%;
        bottom: 15%;
        width: 140px;
        height: 140px;
    }

    #bubble-3 {
        left: 25%;
        bottom: 25%;
    }

    #bubble-3>img {
        width: 165px;
        height: 165px;
    }

    #circle-1 {
        width: 80px;
        height: 80px;
        left: 2%
    }

    #circle-2 {
        width: 130px;
        height: 130px;
    }

    #carousel-feedback {
        grid-template-areas:
            'img'
            'mess'

    }

    .img-feedback {
        max-width: 100%;
    }



}

@media (max-width: 576px) {
    body {
        margin: 0px;
    }

    section {
        padding: 50px 20px;
    }

    .container {
        padding: 0px;
    }

    button {
        font-size: 16px;
    }


    #home-hero>h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }
    h4{
        font-size: 18px;
    }

    .primary_title {

        line-height: 42px;
    }

    .secondary_title {

        line-height: 30px;
    }

    .sub_title {
        line-height: 28px;
        font-weight: 600px;
    }

    .sub_content {
        font-size: 14px;
        font-weight: 500;
    }

    div#about-company {
        padding: 60px 20px;
    }

    .contact-contain {
        gap: 5px;
        padding: 10px 20px;
    }

    .contact-info {
        max-width: 280px;
        overflow-wrap: anywhere;
    }

    .contact-card>.contact-icon {
        padding: 10px;
        border-radius: 100px;
        border: 0px;
        background-color: lightgray;
    }

    .contact-icon>svg {
        width: 24px;
        height: 20px;
    }

    .contact-text {
        font-size: 16px;
        font-weight: 600;

    }

    .contact-input {
        font-size: 14px;
    }

    nav.navbar {
        display: none;
    }

    .spin-fade>img {
        width: 100%;
    }

    #bubble-1 {
        right: 7%;
        top: 15%;
        width: 90px;
        height: 90px;
    }

    #bubble-1>img {
        width: 70px;
        height: 70px;
    }

    #bubble-2 {
        right: 13%;
        bottom: 15%;
        width: 80px;
        height: 80px;
    }

    #bubble-2>img {
        width: 50px;
        height: 50px;
    }

    #bubble-3 {
        left: 25%;
        bottom: 25%;
    }

    #bubble-3>img {
        width: 95px;
        height: 95px;
    }

    #circle-1 {
        width: 50px;
        height: 50px;
        ;
        top: 40%
    }

    #circle-2 {
        width: 60px;
        height: 60px;
        right: 2%;
    }

    .service-card {
        flex: 1;
    }
}

.lange-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0px 0px 30px;
    border: 1px solid rgb(160, 160, 160);
}

.lange-blog-card {
    gap: 20px;
    border-radius: 0px 30px 30px 0px;
    padding: 40px;
    background-color: rgb(244 244 244 / var(--transparent));
    border: 1px solid rgb(160, 160, 160);
    overflow: hidden;
}

@media (max-width: 992px) {
    .lange-blog-img {
        border-radius: 30px 30px 0px 0px;
    }

    .lange-blog-card {
        border-radius: 0px 0px 30px 30px;
    }
}

/* ----------blog-page---------- */
.blog-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 30%;
    grid-template-areas: 'detail detail topics';
    width: 100%;
}

.grid-detail {
    grid-area: detail;
    width: 100%;
}

.grid-topics {
    grid-area: topics;
    width: 100%;
}

.topics-inner {
    position: sticky;
    top: 108px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-body {
    margin-top: 40px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.post-body img {
    max-width: 100%;
    object-fit: contain;

}

.post-body>p {
    text-align: justify;
}

.post-img {
    margin: 20px 0px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.post-img-topics {
    width: 100%;
    /* min-width: 140px; */
    height: 100px;
    background-position: 50%;
    background-repeat: no-repeat;
    object-fit: cover;
    border-radius: 8px;
    background-size: 100%;

}

.post-metadata {
    width: 100%;
}

.topics-wid {
    padding: 10px;
    background-color: rgb(244 244 244/var(--transparent));
    border-radius: 8px;
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-areas:
            'detail'
            'topics';
        grid-template-columns: 100%;
        grid-template-rows: 1fr;
    }
}

.blog-img {
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 240px;
    width: 100%;
    border-radius: 16px 16px 0px 0px;
}

#tableOfContents {
    margin: 20px 0px;
    padding: 20px;
    background-color: rgb(244 244 244/var(--transparent));
    border-radius: 8px;
}

#tableOfContents>ul>li {
    font-weight: 600;
    margin: 10px 0px;
}

.toc-item {
    font-weight: 600;
}

.toc-item:hover {
    color: var(--button_blue);
}

@media (max-width: 576px) {
    #toc-table {
        display: none;
    }
}

.back-btn {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: rgb(244 244 244/var(--transparent));
    width: 150px;
}

/* ----------services-page---------- */

.image-widget {
    border-radius: 16px;
    background-image: linear-gradient(180deg, #b3b6d6, #fbab93 103.09%);
    position: relative;
}
.hello-cash .image-widget>img{
}
.image-widget>img {
    width: 1000px;
    transition: 0.5s ease-in-out;
    transform: translate(-6px, -6px);
}

.image-widget>img:hover {
    transform: translate(-14px, -14px);
}

.f-start {
    align-items: flex-start;
}

.f-end {
    width: 100%;
    align-items: flex-end;
}

.j-center {
    justify-content: center;
}

.j-between {
    justify-content: space-between;
}

.a-center {
    align-items: center;
}

.a-betwwen {
    align-items: space-between;
}


.service-card {
    padding: 20px;
    border-radius: 16px;
    background-color: rgb(244 244 244/var(--transparent));
}

.service-card p {
    color: var(--main-color);
}

.img-shape-1 {
    width: 150px !important;
}

.img-shape-2 {
    width: 200px !important;
}

@media (max-width: 992px) {
    .image-widget>img {
        width: 500px;
    }

    .img-shape-1 {
        width: 100px !important;
    }

    .img-shape-2 {
        width: 150px !important;
    }
}

@media (max-width: 576px) {
    .image-widget>img {
        width: 100%;
    }

    .img-shape-1 {
        width: 70px !important;
    }

    .img-shape-2 {
        width: 90px !important;
    }

    .image-widget>div {
        top: auto !important;
        left: auto !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}

/* ----------gg-rental-page---------- */

.ads-txt {
    font-style: normal;
    font-weight: 600;
    transition-duration: 0.1s;
}

.gg-ads-no {
    background: var(--Icon-Dark-Linear, linear-gradient(-18deg, #6f767e 37.55%, #c7c7c7 50.22%, #6f767e 62.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    font-weight: 600;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    flex-shrink: 0;
}

.golden-mate {
    background: var(--Icon-Dark-Linear, linear-gradient(-49deg, #d3b500 36.55%, #ffee6a 46.22%, #ff8a00 60.55%));
    background-clip: text;
}

.gg-ads-no.lange {
    font-size: 82px;
    line-height: 102px;
}

.grid-form-ads {
    grid-gap: 1px;
    /* Set the gap size */
    background: rgb(224 224 224/var(--transparent));
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgb(224 224 224/var(--transparent));
}

.grid-form-ads>div {
    /*background: var(--color_mode);*/
    padding: 60px;
}

.grid-form-ads img {
    width: 33%;
}

.img-ads {
    width: 100%;
}

@media (max-width: 992px) {
    .gg-ads-no {
        font-size: 48px;
        line-height: 56px;
    }

    .gg-ads-no.lange {
        font-size: 65px;
        line-height: 72px;
    }

    .grid-form-ads>div {
        padding: 40px;
    }

    .img-ads {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .grid-form-ads>div {
        padding: 30px;
    }
}

.gg-ads-card {
    padding: 30px;
    background-color: rgb(244 244 244/var(--transparent));
    border: 1px solid rgb(224 224 224/var(--transparent));
    border-radius: 20px;
}

.gg-ads-card>h3 {
    margin-bottom: 20px;
}

.ads-img-card {
    width: 150px;
    position: absolute;
    top: -8vh;
    right: 0px;
}

@media (max-width: 992px) {
    .ads-img-card {
        width: 100px;
    }
}

.fb-rental-img {
    position: absolute;
    right: -15%;
    width: 50vw;
}

@media (max-width: 992px) {
    .fb-rental-img {
        position: relative;
        width: 100%;
        right: 0;
    }
}

.tab-drop>p {
    padding: 20px 0px;
}

.square-ads-tab {
    /* width: 340px;
    height: 360px; */
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgb(224 224 224);
    flex-basis: 32%;
    background-color: rgb(244 244 244 / var(--transparent));
}

.square-ads-tab>img {
    width: 36%;
    /* margin-bottom: 20px; */
}

.square-ads-tab>.ads-txt {
    padding-top: 35px;
}

@media (max-width: 992px) {
    .square-ads-tab {
        flex-basis: 65%;
    }
}

@media (max-width: 576px) {
    .square-ads-tab {
        flex-basis: 100%;
    }
}

#img-mkt {
    flex-basis: 50%;
}

.sqr-mkt {
    flex-basis: 30%;
    text-align: center"

}

#img-mkt2 {
    width: 100%;
    object-fit: contain;
    display: none;
}

@media (max-width: 992px) {
    #img-mkt {
        display: none;
    }

    .sqr-mkt {
        flex-basis: 50%;
    }

    .sqr-mkt>div {
        width: 100%;
        height: 0;
    }

    #img-mkt2 {
        display: block;
    }
}

@media (max-width: 576px) {
    .sqr-mkt {
        flex-basis: 100%;
    }

    .sqr-tab {
        flex-wrap: wrap;
    }
}

.custom-w-60vw {
    width: 60vw;
}

@media (max-width: 992px) {
    .custom-w-60vw {
        width: 100%;
    }
}

.table-wrap {
    overflow-x: scroll;
}

.table thead th {
    border: none;
    padding: 10px;
    font-size: 16px;
    color: var(--main-color);
    font-weight: 700;
}

/* .table thead tr {
    background-color: rgb(224 224 224 / 0.4);
}

.table tbody tr {
    background-color: rgb(224 224 224 / 0.4);
} */

.table tbody th,
.table tbody td {
    border: none;
    padding: 15px 10px;
    vertical-align: middle;
    color: var(--main-color);
}

.table tbody td .close span {
    font-size: 12px;
    color: #dc3545;
}

.table>:not(caption)>*>* {
    background-color: transparent !important
}

.contact-ico {
    padding: 10px;
    border-radius: 100%;
    background-color: var(--color_mode);
    transition: 0.2s ease-in-out;

    border: 1px solid var(--color_mode);
}

.contact-ico:hover {
    margin: 0px 20px;
    border: 1px solid var(--main-color);
}

.ico-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(298deg) brightness(102%) contrast(102%);
}


@media (max-width: 992px) {

    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    tbody {
        padding-bottom: 20px;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tbody tr {
        border-top: 1px solid #ccc;
    }

    .table tbody td {
        /* Behave  like a "row" */
        position: relative;
        padding: 5px 20px;

    }
    .table tbody th {
        padding: 5px 20px;
    }


    td:before {
        font-weight: 500;
        padding-right: 10px;
        white-space: nowrap;
    }

    /*
	Label the data
	*/
    td:nth-of-type(1) {
        font-weight: bold;
    }

    td:nth-of-type(1):before {
        content: "Service Charge";
    }

    td:nth-of-type(2):before {
        content: "Total Spend per Month";
    }

    td:nth-of-type(3):before {
        content: "Minimum Deposit";
    }

    td:nth-of-type(4):before {
        content: "Setup Free";
    }

    td:nth-of-type(5):before {
        content: "Free Change Ads Account";
    }

    td:nth-of-type(6):before {
        content: "Time Wait To Change Account";
    }

    td:nth-of-type(7):before {
        content: "Free Fanpage (old)";
    }

    td:nth-of-type(8):before {
        content: "Free Pixel"
    }
    td:nth-of-type(9):before {
        content: "Endurance"
    }
    td:nth-of-type(10):before {
        content: "Support"
    }
}

.gap-50 {
    gap: 50px;
}

.gap-30 {
    gap: 30px;
}

.gap-10 {
    gap: 10px;
}

.openAccount {
    background: linear-gradient(129deg, #ebbc00 32%, #ffec87 47%, #edbe05 67%);
    box-shadow: 9px 8px 15px #0000002e;
    /*height: 9vh;*/
    border: 0px;
    margin: auto;
    width: 70%;
}

.openAccount>p {
    font-size: 18px;
    font-weight: 700;
    color: black;
    font-style: oblique;
}

@media (max-width: 992px) {
    .openAccount {
        width: 100%;
    }
}
.carousel-indicators{
    /*background-color: white;*/
    /*border-radius: 50px;*/
    /*!* border: 1px solid black; *!*/
    /*box-shadow: 1px 2px 2px 3px lightgray*/
}
.carousel-indicators li{
    background-color: black;
    border-radius: 100%;
    height: 10px;
    width: 10px;
}

.carousel-inner{
    border-radius: 25px;
    box-shadow: 20px 15px 0px #00000026;
}

.grid-policy{
    background-color: transparent;
    background-image: linear-gradient(180deg, #EAEAEA 0%, #D1FFE8BD 100%);
}
.grid-policy .ads-txt{
    color: #7A7A7A;
    font-size: 1.5rem;
}
.gg-ads-nomate i{
    color: #098DC5B3;
}
