:root {
    --xxl-width: 330px;
    --xl-width: 270px;
    --lg-width: 293px;
}

body {
    background-image: var(--main-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#v-pills-tab {
    background-color: #ffffff;
    padding: 1rem;
    flex-basis: var(--xxl-width);
    max-width: var(--xxl-width);
    border-radius: 6px;
    height: fit-content;
}

#v-pills-tabContent {
    flex-basis: calc(100% - var(--xxl-width));
    max-width: calc(100% - var(--xxl-width));
}

.nav-pills .nav-link {
    font-size: 19px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.32;
    letter-spacing: normal;
    color: #000000;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: none;
    color: var(--color);
    font-weight: bold;
}

.card {
    height: 210px;
    border-radius: 6px;
    border: none;
}

.card-img-top {
    margin: auto;
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
    border-radius: 0;
}
.mw-80 {
    max-width: 80% !important;
}
.partner-img {
    position: absolute;
    margin: auto;
    bottom: 15px;
    right: 0;
    left: 0;
    max-width: 128px;
}

@media (min-width: 1200px) {
    .integrations-col {
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
}

@media (max-width: 1439px) {
    #v-pills-tab {
        flex-basis: var(--xl-width);
        max-width: var(--xl-width);
    }

    #v-pills-tabContent {
        flex-basis: calc(100% - var(--xl-width));
        max-width: calc(100% - var(--xl-width));
    }
}

@media (max-width: 1199px) {
    #v-pills-tab {
        flex-basis: var(--lg-width);
        max-width: var(--lg-width);
    }

    #v-pills-tabContent {
        flex-basis: calc(100% - var(--lg-width));
        max-width: calc(100% - var(--lg-width));
    }
}

@media (max-width: 969px) {
    #v-pills-tabContent {
        flex-basis: 100%;
        max-width: 100%;
    }

    .integrations-dropdown .dropdown-toggle {
        width: 100%;
        height: 59px;
        border-radius: 6px;
        border: solid 1px var(--color);
        font-size: 19px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.32;
        letter-spacing: normal;
        color: #000000;
        text-align: left;
        position: relative;
        padding-left: 1.5rem;
    }

    .integrations-dropdown .dropdown-toggle .collapse-icon {
        width: 20px;
        height: 10px;
        object-fit: contain;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 20px;
    }

    .integrations-dropdown .dropdown-menu {
        width: calc(100% - 20px);
        border: 1px solid var(--color);
    }

    .integrations-dropdown .dropdown-item {
        font-size: 19px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.32;
        letter-spacing: normal;
        color: #000000;
    }


    .integrations-dropdown .dropdown-item:hover {
        background-image: var(--gradient);
        color: #FFFFFF;
    }

    .integrations-dropdown .dropdown-item:focus,
    .integrations-dropdown .dropdown-item.active,
    .integrations-dropdown .dropdown-item:active {
        background-color: transparent;
    }
}