.form-control:focus {
    color: var(--black);
    background-color: var(--white);
    border-color: var(--secondarycolor);
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--lightprimarycolor);
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0px;
    box-shadow: 0 0 0 0.25rem var(--lightprimarycolor);
}

.mw-700{
    max-width: 700px;
}

.mw-800{
    max-width: 600px;
}

.mw-900{
    max-width: 900px;
}

.z-index-n-1 {
    z-index: -1;
}

.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1 !important;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

.w-20 {
    width: 20%;
}

.big-title {
    font: 120px;
}

.medium-title {
    font-size: 60px;
}

.rounded-top-20 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rounded-start-10 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.rounded-start-20 {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.rounded-bottom-20 {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.rounded-end-20 {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.rounded-start-20 {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.border-main {
    border: solid 2px var(--primarycolor);
}

.border-bottom-main {
    border-bottom: solid 2px var(--black);

}

.text-grey{
    color: var(--primarycolor);
}

.text-small {
    font-size: 12px;
}

.bg-white {
    background-color: var(--white);
}

.bg-main {
    background-color: var(--primarycolor);
}

.bg-second {
    background-color: var(--secondarycolor);
}

.bg-pink {
    background: var(--tertiarycolor);
}

.bg-beige {
    background-color: var(--tertiarycolor);
}

.bg-grey {
    background-color: var(--grey);
}

ul.navbar-nav.me-auto.mb-2.mb-lg-0.me-lg-5 {
    text-transform: uppercase;
}
.bg-gradient {
    background: linear-gradient(to bottom, var(--secondarycolor), var(--primarycolor)) !important;
}

.text-white {
    color: var(--white);
}

.text-main {
    color: var(--primarycolor);
    font-weight: 600;
}

.text-second {
    color: var(--secondarycolor);
    font-weight: 600;
}

.text-beige {
    color: var(--tertiarycolor);
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-bottom-10 {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.rounded-20 {
    border-radius: 10px !important;
}

.btn-main {
    color: var(--primarycolor);
    border: solid 2px var(--primarycolor);
    background-color: var(--white);
    transition: 0.4s;

}

.btn-main:hover {
    color: var(--white);
    border: solid 2px var(--white);
    background-color: var(--primarycolor);
}

.btn-outline-main {
    color: var(--white);
    border: solid 2px var(--white);
    transition: 0.4s;
}

.btn-outline-main:hover {
    color: var(--primarycolor);
    background-color: var(--white)
}

img {
    max-width: 100%;
    max-height: 100%;
}

.text-medium {
    font-size: 45px;
}

.text-big {
    font-size: 90px;
}

/*==================*/
/*== Header Start ==*/
/*==================*/
.navbar-light .navbar-nav .nav-link.active {
    font-weight: bold;
}

.header-seperator {
    height: 48px;
}

/* @media screen and (max-width: 991px) {
    .header-seperator {
        height: 56px;
    }
} */

/*==================*/
/*=== Header End ===*/
/*==================*/

/*==========================*/
/*=== Main Banner Start ===*/
/*=========================*/
.main-banner {
    background: linear-gradient(to bottom, var(--lightsecondarycolor), var(--lightprimarycolor));;
    padding-bottom: 50px;
    margin-bottom: 150px
}

.main-banner-separator {
    height: 100px;
}

@media screen and (max-width:991px) {
    .main-banner-separator {
        height: 20px;
    }
}

.main-banner .item {
    position: relative
}

.main-banner .item-2 {
    position: relative;
    bottom: -140px;
    z-index: 1;
}

@media screen and (max-width: 488px) {
    .main-banner .item-2 {
        bottom: -165px;
        width: 90%;
        margin-left:17px;
    }
}


.main-banner .item a i {
    transition: 0.4s;
}

.main-banner .item a:hover i {
    margin-left: 10px;
}

.main-banner .item img {
    width: 100px;
    position: absolute;
    bottom: 20px;
    right: 0;
    /* border: solid 1px blue; */
}

@media screen and (max-width:991px) {
    .main-banner .item img {
        right: -10px;
    }
}

@media screen and (max-width:767px) {
    .main-banner .item img {
        right: 25px;
    }
}

@media screen and (max-width:540px) {
    .main-banner .item img {
        bottom: 0;
        right: 10px;
    }
}

.main-banner .main-banner-image {
    position: relative
}

.main-banner .main-banner-image img {
    position: absolute;
    /* border: solid 1px yellow; */
    bottom: -140px;
    z-index: 1;
}

/*========================*/
/*=== Main Banner End ===*/
/*=======================*/

/*====================*/
/*=== Traits Start ===*/
/*====================*/

.traits icon-container {}

.traits img {
    width: 150px;
    margin-top: 30px;
    /* margin-right: 60px; */
}

@media screen and (max-width: 991px) {
    .traits img {
        margin-top: 10px;
    }
}

/*====================*/
/*=== Traits End ===*/
/*====================*/

.grow-your-tiktok {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 450px;
    margin-top: -115px;
    overflow: hidden;
    margin-bottom: -40px;
}

.getting-started-on-instagram {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 450px;
    margin-top: -220px;
}

.grow-your-tiktok .grow-your-tiktok-img {
    position: absolute;
    z-index: 0;
    width: 450px;
    right: 50px;
}

.getting-started-on-instagram .getting-started-on-instagram-img {
    position: absolute;
    z-index: 0;
    width: 450px;
    left: -38px;
}

@media screen and (max-width:1400px) {

    .grow-your-tiktok .grow-your-tiktok-img,
    .getting-started-on-instagram .getting-started-on-instagram-img {
        right: 0;
    }
}

@media screen and (max-width:1200px) {

    .grow-your-tiktok .grow-your-tiktok-img,
    .getting-started-on-instagram .getting-started-on-instagram-img {
        right: -45px;
    }
}

@media screen and (max-width:991px) {

    .grow-your-tiktok,
    .getting-started-on-instagram {
        margin-top: 0;

    }
}

@media screen and (max-width:767px) {

    .grow-your-tiktok .grow-your-tiktok-img {
        position: relative;
        right: 0;
    }

    .getting-started-on-instagram .getting-started-on-instagram-img {
        position: relative;
        left: 0;
    }

}

.reviews img {
    position: absolute;
    left: -60px;
    top: -40px;
    z-index: -1;
}

.reviews .item {
    text-align: center;
}

.reviews .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews .owl-theme .owl-dots .owl-dot.active div,
.reviews .owl-theme .owl-dots .owl-dot:hover div {
    background-color: var(--primarycolor);
    width: 15px;
    height: 15px;
}

.got-a-question {
    /* border: solid 1px red; */
}

.accordion-button:not(.collapsed) {
    color: var(--primarycolor);
    box-shadow: none;
    background-color: var(--white);
}

.accordion-button:focus {
    border-color: var(--secondarycolor);
    box-shadow: none;
    border-color: none;
}

.accordion-button:not(.collapsed) {
    color: var(--secondarycolor);
    box-shadow: none;
    background-color: var(--white);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;

}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.buy-tiktok-likes {
    background: linear-gradient(to bottom, var(--secondarycolor), var(--primarycolor));
    color: var(--white);
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.start-boosting .list-group {
    background-color: var(--lightgrey);
}

.special-list {
    border-radius: 20px;
}

.special-list a {
    border-radius: 20px !important;
    text-align: center;
    border: none;
    background-color: var(--lightgrey);
    transition: 0.2s;
}

.special-list a:hover {
    color: var(--primarycolor);
}

.special-list a.active {
    background: linear-gradient(to bottom, var(--secondarycolor), var(--primarycolor));
}

.special-list a.active:hover {
    color: var(--white);
}

.start-boosting .item {
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 .5rem 1rem var(--lightblack) !important;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 80px;
    transition: 0.4s;
    border: solid 2px var(--white);
}

.start-boosting label input[type="radio"]:checked+.item {
    border: solid 2px var(--primarycolor);

}

.start-boosting .item strong {
    margin-bottom: 1.5rem;
    display: block;
}

.start-boosting .item h1 {
    color: var(--primarycolor);
    font-weight: bold;
    margin: 1.25rem 0;
}

.start-boosting .item a {
    text-decoration: none;
    color: var(--white);
    padding: 10px 20px;
    margin-top: 30px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: linear-gradient(to bottom, var(--secondarycolor), var(--primarycolor));
    position: absolute;
    left: 0;
}

.start-boosting .item div {
    margin-top: 2.5rem;
}

@media screen and (max-width: 575px) {
    .start-boosting .item div {
        margin-top: 0;
    }
}

.start-boosting .item img {
    position: absolute;
    right: -45px;
}

@media screen and (max-width:576px) {
    .start-boosting .item img {
        right: -25px;
    }
}

.we-know-what-were-doing {
    /* border: solid; */
}

.we-know-what-were-doing .item {
    margin: 1.5rem;
}

.we-know-what-were-doing .item p {
    position: relative;
    padding-top: 30px;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
}

.we-know-what-were-doing .item p.quotes::before {
    content: '``';
    position: absolute;
    top: -15px;
    left: 0;
    color: var(--secondarycolor);
    font-size: 50px;
    letter-spacing: -15px;
    /* transform: rotate(15deg); */
}

.we-know-what-were-doing .item p.quotes::after {
    content: '``';
    position: absolute;
    top: -15px;
    right: 15px;
    color: var(--secondarycolor);
    font-size: 50px;
    letter-spacing: -15px;
    /* transform: rotate(15deg); */
}

.we-know-what-were-doing .owl-theme .owl-nav {
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem
}

.we-know-what-were-doing .owl-theme .owl-nav .owl-prev div {}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
}

.rating>input {
    display: none;
}

.rating>label {
    position: relative;
    width: 1.1em;
    font-size: 40px;
    color: var(--secondarycolor);
    cursor: pointer;
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0;

}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important;
}

.rating>input:checked~label:before {
    opacity: 1;
    color: var(--primarycolor);
}

.rating:hover>input:checked~label:before {
    opacity: 0.4;
    /* color: rgba(243, 98, 42, 0.5); */
}

.form-control {
    border-radius: 10px;
    box-shadow: 0 .125rem .25rem var(--lightblack);
}

.raiting-range {
    border-radius: 20px;
    height: 18px;
    width: calc(100% - 180px);
    background: var(--lightgrey);
    margin: 0 auto;
}

.raiting-range div {
    border-radius: 20px;
    background-color: var(--black);
    height: 100%;
}

.reviews .text-outline-second {
    color: var(--secondarycolor);
    opacity: 0.25;
}

.social-boosting-blog a {
    width: 100%;
    padding-bottom: 10px;
}

.social-boosting-blog a.active {
    border-bottom: solid 2px var(--secondarycolor);
    font-weight: bold;
}

.second-image {
    padding: 1rem !important;
    position: absolute;
    border-radius: 20px;
    right: 260px;
    top: 30%;
    background-color: var(--white);
    box-shadow: 0 .5rem 1rem var(--lightgrey);
}

@media screen and (max-width: 991px) {
    .second-image {
        position: unset;
        margin-top: 30px;
    }
}

@media screen and (min-width: 992px) {
    .position-lg-absolute {
        position: absolute;
    }
}

.increase-followers {
    position: relative;
    padding-top: 120px;
}

.text-divider {
    margin: 2em 0;
    line-height: 0;
}

.text-divider span {
    background-color: var(--white);
    padding-right: 1em;
}

.text-divider:before {
    content: " ";
    display: block;
    border-top: 2px solid var(--secondarycolor);
    border-bottom: 2px solid var(--secondarycolor);
}

.accounts{
    background: linear-gradient(to bottom, var(--lightsecondarycolor), var(--lightprimarycolor));
}
.accounts .dot{
    width: 13px;
    height: 13px;
    background-color: var(--secondarycolor);
    display: inline-block;
    border-radius: 100%;
    margin: 0 3px;
}
.accounts .dot.active{
    width: 20px;
    height: 20px;
}


