/**
*   Contents
    --------
    * Vars

    * Genel Etiketler / Resets

    * Header & Nav
        * Nav

    * Footer

    * Homepage
        * Hero
        * Best Features Section
        * Benefits Section
        * About App Section
        * Features Section
        * Reviews Section
        * Categories Section
        * Blog Section
        * Download Section
        * Modal

    * Pricing Page
    * About Page
    * Blog Page
    * Sign Up & Sign In Page
    * Category Page
    * How To Page
    * Contact Page
    * FAQ Page
    * Instagram Page
    * Features Page
    * Campaign Code Page
    * Contracts
    * Video Support Page
    * Tespih Page

    * Support Modal

    * Components
    * Genel Amaçlı Class'lar


    * Animations
    * Media Queries
*/

/**
*
* Vars
*
*/

:root {
    /* Colors */
    --color-1: #f7c0c3;
    --color-2: #264143;
    --color-3: #fef2f2;
    --color-4: #d0217e;
    --color-5: #333;
    --color-6: #ad48d6;
    --text-muted: #999999;
    --color-success: #5cb85c;
    --color-danger: #d9534f;
    --gradient: linear-gradient(to right, #ed1e79 0%, #85298b 100%);

    /* --color-1: #ffa000;
    --color-2: slateblue;
    --color-3: #1e90ff; */

    /* Font */
    /* --font-main: 'Roboto', sans-serif; */
    --font-main: "Mulish", sans-serif;
    --font-heading-2: "Barlow Semi Condensed", sans-serif;
    --font-heading-3: "Karla", sans-serif;

    /* Box Shadowing */
    --box-shadow: rgba(71, 67, 67, 0.25) 0.1rem 0.1rem 0.8rem;

    /* Animasyon */
    --transition: 0.25s ease-in-out all;
    --transition-fast: 0.15s ease-in-out all;
}

/*
*
* Genel Etiketler
*
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    margin: 0;
    overflow-x: hidden;
    color: var(--color-5);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

textarea {
    max-width: 100%;
    min-width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.main,
.other-hero .best-feature-card p {
    font-size: 1.2rem;
}
.package-name,
.main h2 {
    font-size: 2.5rem;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.row {
    display: flex;
}

.col {
    display: flex;
    flex-direction: column;
}

.heading-wrapper {
    text-align: center;
    margin-bottom: 3%;
}
.heading-wrapper h2 {
    /* display: inline-flex;
    align-items: baseline; */
    margin: auto;
}

/* .glide__arrows.custom-style {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 100%;
} */
.glide__arrow.custom-style {
    background-color: #85298b;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--box-shadow);
    border: none;
    cursor: pointer;

    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.glide__arrow--left.custom-style {
    left: 0;
}
.glide__arrow--right.custom-style {
    right: 0;
}

/* For International dial code selection libraray */
.iti--separate-dial-code .iti__selected-flag {
    background-color: unset;
}
.phone-error-container .iti {
    width: 100%;
}

label.error {
    font-size: 0.9rem;
    color: orangered;
    margin-bottom: 0.5rem;
    display: block;
    margin-top: -0.3rem;
}

/*
*
* Header & Nav
*
*/

.header-bg {
    /* background-color: #f1ecec; */
    /* background-color: #ebdedc; */
    background-color: var(--color-1);
    /* background-color: #244145; */
    padding: 1rem 0;
    position: relative;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: 0.5rem; */
    padding: 0.5rem 0;
}

.logo-wrapper {
    /* max-width: 4.5rem; */
    display: block;
    /* max-width: 5rem; */
    position: relative;
}

.nav-header .logo-wrapper {
    width: 10rem;
}

.logo-wrapper img {
    width: 100%;
}

/*
* Nav
*/

.nav-wrapper {
    display: flex;
    align-items: center;
    list-style: none;
    transition: var(--transition);
}

.nav-item a {
    /* color: #244145; */
    position: relative;
    color: black;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-wrapper .nav-item {
    margin-right: 1rem;
}

.nav-wrapper .sign-in {
    border: 2px solid var(--color-4);
    padding: 0.5rem;
    padding-bottom: 0.6rem;
    border-radius: 1.5rem;
    margin-left: 3rem;
    transition: var(--transition);
}

.nav-hover a:after {
    content: "";
    background: none repeat scroll 0 0 transparent;
    bottom: -0.5rem;
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: var(--color-2);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    z-index: 6;
}
.nav-hover a:hover:after {
    width: 100%;
    left: 0;
}

.dropdown-btn {
    position: relative;
}

.dropdown {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -0.9rem;
    z-index: 666;
    display: flex;
    flex-direction: column;

    width: max-content;
    padding: 0.5rem;
    padding-bottom: 1rem;
    border-radius: 0.3rem;
    /* background-color: var(--color-1); */
    background: linear-gradient(to bottom, #f7c0c3 0%, #f2d9d7 100%);
    transition: var(--transition);
    box-shadow: rgba(71, 67, 67, 0.25) 0.1rem 1rem 0.8rem;
}

.dropdown li {
    margin: 0.5rem;
}

.dropdown-btn:hover .dropdown {
    visibility: visible;
    opacity: 1;
}

.nav-toggle {
    display: none;
}

/* Main Sidenav */

.main-sidenav {
    position: fixed;
    z-index: 666;
    display: none;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 1rem;
    margin: auto;
    height: 100%;
    transition: var(--transition);
}
.show-main-sidenav {
    /* display: flex;
    align-items: center; */
    opacity: 1;
    visibility: visible;
}

.main-sidenav li {
    margin-bottom: 1rem;
}

.main-sidenav a {
    color: black;
    padding: 0.5rem;
    transition: var(--transition);
}

.main-sidenav i {
    width: 2rem;
}

.main-sidenav-text {
    display: inline-block;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-120%);
    transition: var(--transition);
}

.main-sidenav a:hover {
    box-shadow: var(--box-shadow);
    border-radius: 2rem;
}

.main-sidenav ul:hover .main-sidenav-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/*
*
* Footer
*
*/

.footer {
    /* background-color: var(--color-3); */
    color: #244145;
    /* padding: 3rem; */
}

.footer a {
    color: #244145;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer a,
.footer h2 {
    white-space: nowrap;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    width: 100%;

    /*  */
    flex-wrap: wrap;
}

.footer .col {
    margin: 1rem;
}

.footer-section-0 {
    padding: 2rem 0;
    /* background-color: #eccfcf; */
    background-color: #fef2f2;
    box-shadow: 0 17px 23px -4px #dbdbdb;
    position: relative;
    z-index: 1;
}

.footer-about {
    position: relative;
    padding-left: 1rem;
}
.footer-about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0.3rem;
    background-color: var(--color-4);
}

.footer-contact-container .col {
    margin: 0;
    margin-right: 1rem;
}

.footer-section-1 {
    position: relative;
    background-color: var(--color-3);
    padding: 3rem 0;
    box-shadow: 0 17px 23px -4px #dbdbdb;
}

@media screen and (min-width: 558px) {
    .footer-section-1 .row {
        justify-content: space-around;
    }
}

.footer-logo-container {
    /* align-items: center; */
    align-items: flex-start;
}

.footer .logo-wrapper,
.footer .footer-about {
    max-width: 20rem;
}

.footer-section-2 {
    padding: 2rem 0;
    background-color: #f2ebe9;
}
.footer-section-2 .row {
    align-items: center;
}
.footer-section-2 a {
    color: dodgerblue;
    margin: 0.5rem;
}
.footer-section-2 p {
    margin: 0.5rem;
}
.footer-section-2 a:hover {
    text-decoration: underline;
}

.footer hr {
    color: var(--text-muted);
    opacity: 0.5;
    margin: 2rem auto;
}

.footer h2 {
    margin-top: 0;
}

.site-map a:hover {
    transform: translateX(0.5rem);
}

.social-media {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    margin: auto !important; */
}

.social-media .row {
    /* justify-content: center; */
    justify-content: flex-start;
}

.social-media li {
    margin: 0.2rem;
}

.social-media a {
    padding: 1rem;
    border-radius: 50%;
    color: whitesmoke;
    background-color: #2d394d;
    margin-right: 0.5rem;
}
.social-media a:hover {
    transform: scale(1.1);
}

.footer .fa-instagram:hover {
    color: var(--color-4);
}
.footer .fa-twitter:hover {
    color: #1da1f2;
}
.footer .fa-youtube:hover {
    color: #ff0000;
}
.footer .social-media a {
    color: var(--color-3);
}

/* .footer-contact-container {
    display: flex;
    align-items: center;
    width: 68%;
} */
.footer-contact-item {
    display: flex !important;
    align-items: center;
    /* font-size: 1.2rem;
    margin: 1rem 2rem;
    font-weight: bold; */
}
.footer .contact-icon-wrapper {
    width: 2rem;
    height: 2rem;
    background-color: #2d394d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition);
}
.footer-contact-item:hover .contact-icon-wrapper {
    transform: scale(1.2);
}
.footer-contact-item:hover .contact-icon-wrapper i {
    color: var(--color-1);
}
.footer-contact-item:hover .whatsapp {
    color: #29ac00 !important;
}
.footer-contact-item:hover .telegram {
    color: #35a9eb !important;
}

/* .footer-contact-item i {
    width: 2rem;
    height: 2rem;
    background-color: var(--color-4);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
} */
/* .footer-contact-icon {
    transition: var(--transition);
}
.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.1);
} */

.pay-with-img {
    max-width: 25rem;
    width: 100%;
}

.footer-review-container {
    text-align: center;
}

.footer-review-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-review-link {
    max-width: 10rem;
    margin-bottom: 0 !important;
}
.footer-review-img {
    width: 100%;
}
.footer-award-link {
    max-width: 4.5rem;
    margin-bottom: 0 !important;
}
.footer-award-img {
    width: 100%;
}

.footer-review-link:hover,
.footer-award-link:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 400px) {
    .footer-review-container {
        text-align: left;
    }
    .footer-review-row {
        justify-content: flex-start;
    }
}

/*
*
* Hero
*
*/

.hero-container {
    background-color: var(--color-1);
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    padding-top: 2rem;
    box-shadow: rgba(71, 67, 67, 0.25) 0.1rem 0.1rem 4.8rem;
}

.landing-main .hero-container,
.pricing-main .hero-container,
.how-to-main .hero-container,
.about-main .hero-container,
.blog-index-main .hero-container,
.form-main .hero-container,
.faq-main .hero-container,
.contact-main .hero-container,
.features-main .hero-container {
    padding-top: 4rem;
}

.home-hero {
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    justify-content: center;
    margin: auto 0.5rem;
    /* max-width: 75%; */
    /* padding-top: 5rem; */
}

.hero-img-wrapper {
    display: flex;
    align-items: flex-end;
    border-radius: inherit;
}

.home-hero .hero-img-wrapper {
    width: 30rem;
    /* min-width: 30rem; */
}

.hero-img-wrapper img {
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading-3);
    max-width: 100%;
    margin-bottom: 5rem;
}
.hero-text h1 {
    font-size: 6rem;
}
.hero-text p {
    font-size: 2.8rem;
    text-align: center;
    /* font-weight: bold; */
}

.home-hero h1 {
    font-family: var(--font-main);
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 0.7rem;
}

.category-main .hero-text {
    width: auto;
    padding: 0;
    margin: 1rem;
    margin-right: 5%;
}
.other-hero .hero-text h1 {
    font-family: var(--font-heading-2);
    font-size: 4rem;
    text-align: center;
    margin: 0;
}
.other-hero .hero-text p {
    font-size: 2rem;
}

/*
* Best Features Section
*/

.best-feature-text {
    color: var(--text-muted);
    transition: var(--transition);
}

.best-features-container .row {
    justify-content: space-evenly;
    margin-bottom: 0.5rem;
}
.best-features-container .col {
    align-items: center;
    width: 30%;
}
.best-feature-card:hover .best-feature-text {
    color: black;
}

.best-features-container i {
    display: grid;
    place-items: center;
    width: 6rem;
    height: 6rem;
    color: #bd528e;
    font-size: 3.5rem;

    border-radius: 50%;
    background: #ffffff;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
}

/*
* Benefits Section
*/

.benefits-card {
    width: 100%;
    height: 100%;
    border: 2px solid #8d288a;
    padding: 1rem;
    border-radius: 1rem;
    align-items: center;
}
.benefits-container .col p {
    color: var(--text-muted);
}

.benefits-text {
    transition: var(--transition);
}

.benefits-container .col:hover .benefits-text {
    color: black;
}

.benefits-icon {
    font-size: 3rem;
    width: 5rem;
    height: 5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffabb8;
    color: #bd528e;
    box-shadow: var(--box-shadow);
}

.glide-benefits {
    position: relative;
    display: block;
}

.glide-benefits .glide__slide {
    height: auto;
}

/*
* About App Section
*/

.about-app {
    /* background-color: var(--color-3); */
    position: relative;
}

.about-app-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 80%;
    background-color: var(--color-3);
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 10% 10% 10% 10%;
}

.about-app-item-1 .row {
    align-items: flex-end;
}
.about-app-item-2 .row {
    align-items: flex-start;
}

.about-app-text {
    padding: 1rem;
    padding-right: 3rem;
    padding-left: 3rem;
    width: 50%;
}

.about-app-item-1 .about-app-text {
    text-align: right;
}

.about-app-img-wrapper {
    max-width: 50%;
}
.about-app-img-wrapper img {
    box-shadow: var(--box-shadow);
    border-radius: 0.8rem;
    width: 100%;
}

.about-app-btn {
    padding: 1rem;
    border: 2px var(--color-4) solid;
    color: black;
    font-weight: bold;
    transition: var(--transition);
    border-radius: 5rem;
}
.about-app-btn:hover {
    background-color: var(--color-4);
    color: white;
}

.btn-wrapper {
    display: flex;
    /* justify-content: right; */
}

/*
* Features Section
*/

.features {
    position: relative;
}
.features:after {
    content: "";
    position: absolute;
    /* width: 70rem;
    height: 70rem; */
    width: 59%;
    height: 120%;
    background-color: var(--color-1);
    top: 0;
    right: 0;
    /* border-radius: 50%; */
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
    z-index: -1;
    bottom: 0;
    margin: auto;
}

.features-home.row {
    justify-content: space-around;
    align-items: flex-start;
}

.features-home li {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    cursor: pointer;

    justify-content: space-between;
}
.features-home li:hover .feature-icon {
    transform: scale(1.1);
}

.features-home li > i {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: antiquewhite; */
    border-radius: 50%;
    /* margin-right: 0.5rem; */
    margin-left: 0.5rem;
    box-shadow: var(--box-shadow);
}

.feature-icon {
    transition: var(--transition);
}

.features-home .appointment i {
    background-color: #8a2557;
    color: #ffabd5;
}
.features-home .invoice i {
    background-color: #a34e78;
    color: #ffd9e4;
}
.features-home .staff i {
    background-color: #ea2964;
    color: #ffd9e4;
}
.features-home .accountancy i {
    background-color: #e85884;
    color: #e8d5da;
}
.features-home .customer i {
    background-color: #ea82a7;
    color: #ff005b;
}
.features-home .mobileapp i {
    background-color: #f68e9d;
    color: #ff0025;
}
.features-home .feedback i {
    background-color: #f7b5be;
    color: #ff0023;
}
.features-home .website i {
    background-color: #f9a269;
    color: #ff6500;
}
.features-home .url i {
    background-color: #ff8333;
    color: #ffc198;
}
.features-home .mail i {
    background-color: #f36f63;
    color: #ffd4d0;
}
.features-home .service i {
    background-color: #de7b3f;
    color: #ffd4ba;
}

.feature-content-container {
    width: 50%;
    align-items: flex-start;
}

.feature-img-wrapper {
    width: 69rem;
}
.feature-img-wrapper img {
    width: 12rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.feature-desc {
    /* margin-right: 1rem; */
    margin: 0 1rem;
}

@media screen and (max-width: 800px) {
    .feature-content-container {
        width: 67%;
    }
    .features::after {
        width: 71%;
    }
}
@media screen and (max-width: 588px) {
    .feature-img-wrapper {
        display: none;
    }
    .features-home.row {
        justify-content: space-between;
    }
    .features::after {
        width: 67%;
    }
    .feature-desc {
        margin: 0;
        margin-left: 2rem;
    }
}
@media screen and (max-width: 468px) {
    .features::after {
        width: 67%;
    }
}
@media screen and (max-width: 414px) {
    .features::after {
        width: 57%;
    }
}

/*
* Reviews Section
*/

.review-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.reviews .col {
    /* width: 20%; */
    margin-right: 1.2rem;

    width: 93%;
    align-items: center;
}

.reviews .col:nth-child(even) {
    flex-direction: column-reverse;
}

.review-text:nth-child(odd) {
    margin: 1rem auto;
}

.review-text {
    /* margin-bottom: 1rem; */
    box-shadow: var(--box-shadow);
    padding: 1rem;
    border-radius: 5px;
}

.review-img-wrapper {
    /* display: flex;
    justify-content: center; */
    display: grid;
    padding: 0 0.5rem;
    /* max-width: 15rem; */
    width: 100%;
    border-radius: 0.5rem;
}
.reviewer-1 .review-img-wrapper {
    background-color: aliceblue;
}
.reviewer-2 .review-img-wrapper {
    background-color: wheat;
}
.reviewer-3 .review-img-wrapper {
    background-color: cadetblue;
}
.reviewer-4 .review-img-wrapper {
    background-color: papayawhip;
}

.review-img-wrapper img {
    margin-top: -20%;
    max-width: 100%;
}

.reviews .glide .glide__track {
    padding-left: 0.5rem;
}
.reviews .glide .glide__slides {
    padding-top: 3.5rem;
    padding-left: 0.5rem;
    align-items: flex-start;
}
.reviews .glide .glide__slide {
    width: 25%;
}
.reviews .glide__arrows {
    display: none;
}

/*
* Categories Section
*/

.categories .row {
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1023px;
    margin: auto;
}

.category {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: var(--color-4); */
    background-color: #d25b9b;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    font-weight: bold;
    color: white;
}

.category img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* The flip card container - set the width and height to whatever you want. */
.flip-card {
    width: 15rem;
    height: 15rem;
    margin: 0.5rem;
    border-radius: 50%;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

.flip-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip {
    transform: rotateY(360deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
/* .flip-card-front {
    border-radius: 50%;
    background-color: #bbb;
    color: black;
} */

/* Style the back side */
.flip-card-back {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transform: rotateY(180deg);
}
.flip-card-back.flip-hair {
    background-color: #d25b9b;
}
.flip-card-back.flip-barber {
    background-color: #48434c;
}
.flip-card-back.flip-nail {
    background-color: #3c9b63;
}
.flip-card-back.flip-other {
    background-color: #cf7f4e;
}
.flip-card-back.flip-spa {
    background-color: #a99d91;
}

/*
* Blog Section
*/

.home-page-blog .row {
    flex-wrap: wrap;
    justify-content: center;
}

.home-page-blog .card {
    transition: var(--transition);
    width: 22rem;
    justify-content: flex-start;
    border-radius: 1rem;
}
.home-page-blog .card:hover {
    box-shadow: var(--box-shadow);
}

.mockup {
    box-shadow: none !important;
}

.blog-card-text .link i {
    transform: rotate(-45deg);
}

/*
* Download Section
*/

.download {
    position: relative;
    padding-bottom: 3rem;
}

.home-main .download:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 60%;
    background-color: var(--color-3);
}

.download .row {
    justify-content: space-between;
    align-items: flex-end;
}

.download .col {
    max-width: 45%;
}

.download p {
    text-align: center;
}

.download-link-container {
    display: flex;
    justify-content: center;
}
.mobil .download-link:not(:last-child) {
    margin-right: 1rem;
}

.download-img-wrapper {
    position: relative;
    /* display: flex;
    justify-content: center; */
    /* max-width: 100%;   */
    display: grid;
    place-items: center;
}

.download-img-wrapper img {
    width: 100%;
}

/* .download-img-slogan {
    position: absolute;
    z-index: 666;
    align-self: center;
    background: #0000004d;
    padding: 0.5rem 2rem;
    color: white;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.download-img-wrapper:hover .download-img-slogan {
    opacity: 1;
    visibility: visible;
    display: flex;
} */

.features-main .mobil img,
.category-main .mobil img,
.home-main .mobil img {
    width: 82%;
}

.download-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid var(--color-4);
    color: var(--color-4);
    background-color: white;
    border-radius: 5px;
    transition: var(--transition);
}
.download-link:hover {
    box-shadow: rgba(71, 67, 67, 0.356) 0rem 0rem 0.3rem;
}

.download-link i,
.download-link img {
    margin-right: 0.3rem;
}

.download-mobile-only .row {
    justify-content: center;
}

.download-mobile-only .col {
    width: 100%;
}
.download-mobile-only p {
    text-align: center;
}

/*
* Modal Section
*/

.homepage-info-modal img {
    width: 50%;
    margin-right: 2rem;
}
.homepage-info-modal .row {
    align-items: center;
}
.homepage-info-modal p {
    font-size: 1.3rem;
}

/*
*
* Pricing Page
*
*/

.pricing-main .hero-container {
    padding-bottom: 10rem;
}

.pricing-main .hero-wrapper {
    flex-direction: column;
    margin-bottom: 1rem;
}
.pricing-main .hero-text {
    margin: 0;
}

.pricing-main .group-btn-wrapper + p {
    font-size: 1.7rem;
}

.pricing-card-container {
    margin-top: -10rem;
}

.pricing-card-container .row {
    justify-content: center;
}

.pricing-card-container .card {
    position: relative;
    color: black;
    border-radius: 1rem;
    margin: 0.5rem;
    padding-bottom: 1.5rem;
    box-shadow: rgba(71, 67, 67, 0.29) 0.1rem 0.1rem 0.8rem;
}

.package-name,
.pricing-heading p {
    margin: 0;
}

.pricing-feauters {
    margin: 1rem;
}
.pricing-feauters li {
    margin-bottom: 0.3rem;
}
.user-limit {
    margin-bottom: 0;
    margin-top: 1.8rem;
}

.pricing-heading {
    position: relative;
    color: white;
    text-align: center;
    padding: 2rem 0.5rem;
    width: 100%;
}
.pricing-heading::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -1rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 4rem;
    height: 4rem;
    background-color: inherit;
    border-radius: 50%;
}
.premium .pricing-heading::before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 2rem;
    color: gold;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.most-popular {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3rem;
    background-color: var(--color-4);
    top: 1%;
    right: -30%;
    z-index: 1;
    transform-origin: bottom;
    transform: rotate(45deg);
}
.most-popular:after {
    content: "Popular!";
    font-weight: bold;
    color: white;
}

.solo .pricing-heading {
    background-color: #915bca;
}
.essential .pricing-heading {
    background-color: #7c40b9;
}
.deluxe .pricing-heading {
    background-color: #603191;
}
.premium .pricing-heading {
    background-color: #442168;
}
.solo .li-check {
    background-color: #915bca;
}
.essential .li-check {
    background-color: #7c40b9;
}
.deluxe .li-check {
    background-color: #603191;
}
.premium .li-check {
    background-color: #442168;
}

.pricing-card-container .call-to-action {
    /* border-color: #db9200; */
    border-color: #c9a200;
    color: black;
    padding: 0.75rem 1.75rem;
}
.pricing-card-container .call-to-action:hover {
    /* background-color: #db9200; */
    background-color: #c9a200;
    color: white;
}

.pricing-card {
    display: flex;
    border-radius: 1rem;
    box-shadow: rgba(71, 67, 67, 0.29) 0.1rem 0.1rem 0.8rem;
    overflow: hidden;
}
.pricing-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    flex-basis: 5rem;
    padding: 1.5rem;
    background-color: #a67fce;
}
.pricing-card__body {
    display: flex;
    flex: 5;
    padding: 1.5rem;
}
.pricing-card__title {
    color: white;
    text-align: center;
    margin: 0;
}
.pricing-card__user {
    color: white;
    font-weight: bold;
    margin-top: 0;
}
.pricing-card__features {
    flex: 1;
    list-style: none;
    padding: 0;
}
.pricing-card__features li {
    margin-bottom: 0.3rem;
}
.pricing-card__desc {
    flex: 2;
    margin: 0;
}
.pricing-card__btn {
    display: flex;
    margin-top: auto;
    width: max-content;
    border: 2px solid var(--color-1);
    font-family: var(--font-heading-3);
    font-weight: bold;
    transition: var(--transition);
    border-radius: 3rem;
    cursor: pointer;
    color: white;
    padding: 0.75rem 1.75rem;
}
.pricing-card__btn:hover {
    background-color: var(--color-1);
    color: #a67fce;
}
.pricing-card__separator {
    width: 0.12rem;
    background-color: #dedede;
    margin: 0 1.5rem;
}
@media screen and (max-width: 820px) {
    .pricing-card,
    .pricing-card__body {
        flex-direction: column;
    }
    .pricing-card__separator {
        width: 100%;
        height: 0.12rem;
        margin: 1.5rem 0;
    }
}

.free-website p {
    border: 4px solid #442168;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    box-shadow: var(--box-shadow);
    width: 90%;
    margin: auto;
    font-size: 1.7rem;
}
.free-website i {
    font-size: 3rem;
    margin: 1rem auto;
    color: #ed1e79;
}

.price {
    font-size: 4rem;
    font-weight: bold;
    position: relative;
    /* animation: fade-in 0.3s ease-in-out; */
    /* delay iteration-count direction fill-mode;*/
}
.price:before {
    content: "\0024";
    font-size: 2rem;
    position: absolute;
    transform: translate(-100%, 30%);
}

.pricing-card-container .li-check {
    background-color: inherit;
    color: purple;
    opacity: 1;
}

.glide-pricing {
    position: relative;
}
.glide-pricing .glide__slides {
    padding-bottom: 1rem;
}
.pricing-main .glide__arrows {
    display: none;
}

.package-feature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--box-shadow);
    border-radius: 1rem;
    margin: 5rem 0;
}

.package-feature-container .row {
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 2rem;
}
.package-feature-container .col {
    width: 47%;
}

.package-feature-container li {
    margin-bottom: 0.5rem;
}

.package-feature-container .li-check {
    opacity: 1;
}

/*
*
* About Page
*
*/

/* .about-hero {
    padding-bottom: 5rem;
}

.about-hero .call-to-action{
    margin: auto;
}

.about-hero h1 {
    font-size: 4rem;
}
.about-hero p {
    font-size: 2rem;
} */

.mission .col {
    background-color: #f2ebec;
    box-shadow: var(--box-shadow);
    margin: 1rem;
    padding: 1rem;
    margin-top: -5rem;
    border-radius: 5px;
}

.mission h2 {
    text-align: center;
    color: var(--color-4);
}

.about .col {
    justify-content: center;
    align-items: center;
    margin: 2rem;
    width: 50%;
}

.about .col p {
    text-align: justify;
}
.about .col h3 {
    width: 100%;
}

.about-img-wrapper {
    position: relative;
    max-width: 25rem;
}
.about-img-wrapper:after {
    content: "";
    background-color: var(--color-4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: -1;
    border-radius: 0.8rem;
}
.about-img-wrapper img {
    border-radius: 0.8rem;
    width: 100%;
}

.about-app-img-wrapper.to-left .small-feature-container {
    position: absolute;
    left: 20%;
    top: 32%;
    cursor: context-menu;
    font-size: 1rem;
}

.customer-history {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: 1px solid whitesmoke;
    box-shadow: var(--box-shadow);
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    margin-bottom: 0.4rem;
}
.customer-history-item-1 i {
    margin-right: 0.5rem;
}
.customer-history-item-1-bottom {
    font-size: 0.8rem;
}
.customer-history-item-1-part-1 {
    margin-bottom: 0.3rem;
}
.customer-history-item-2 {
    margin-left: 1rem;
}

.thin-bg {
    position: absolute;
    width: 61%;
    height: 93%;
    z-index: -1;
    left: 0;
    bottom: 0;
    background-color: #6d3493;
    border-radius: 1rem;
}
.thin-bg:after {
    content: "";
    width: 104%;
    position: absolute;
    height: 101%;
    border: 2px solid var(--color-4);
    border-radius: 1rem;
    bottom: 9px;
    right: -20px;
}
.thin-bg.reverse {
    left: 8%;
    bottom: 2%;
}
.thin-bg.reverse:after {
    bottom: -4%;
    right: -9%;
}

/*
*
* Blog Page
*
*/

.blog-container {
    display: flex;
    flex-direction: row-reverse;
}

.blog .row {
    flex-wrap: wrap;
    justify-content: center;
}

.blog .card {
    max-width: 29%;
    margin-top: 0;
    transition: var(--transition);
    justify-content: flex-start;
    border-radius: 1rem;
}
.blog .card:hover {
    box-shadow: rgb(216, 216, 216) 0.1rem 0.1rem 0.8rem;
}

.blog-card-img-wrapper {
    position: relative;
    height: 175px;
    width: 100%;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-category {
    position: absolute;
    bottom: 0.3rem;
    left: 0.4rem;
    font-size: 1rem;
    background-color: var(--color-4);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.blog-card-text {
    padding: 0.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-card-title {
    font-size: 1.2rem !important;
}
.blog-card-text h2 {
    /* font-size: 1.5rem; */
    margin-top: 0;
}
/* .blog-card-text a {
    color: dodgerblue;
}
.blog-card-text a:hover {
    text-decoration: underline;
} */

.blog-info,
.date {
    font-size: 1rem;
    margin-top: 0;
}

.page-numbers {
    margin: auto;
    text-align: center;
}

.breadcrumb {
    text-align: right;
    margin-bottom: 1rem;
}

.breadcrumb b {
    color: dodgerblue;
}

.breadcrumb i {
    font-size: 0.9rem;
    background-color: var(--color-4);
    color: white;
    border-radius: 50%;
    padding: 0.2rem;
    margin: 0.15rem;
    transition: var(--transition);
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-inner-img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.pagination {
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
}

.arrow-icon {
    font-size: 1rem;
    background-color: var(--color-4);
    color: white;
    border-radius: 50%;
    padding: 0.2rem;
    margin: 0.15rem;
    transition: var(--transition);
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.arrow-icon.page-number {
    background-color: var(--color-1);
}

.page-disabled .arrow-icon {
    background-color: var(--text-muted);
    cursor: auto;
}
.page-disabled a {
    cursor: context-menu;
}

/**
* Single Blog Page
*/

.blog-post-container {
    width: 100%;
}
.blog-post-wrapper {
    max-width: 700px;
    margin: auto;
}

.blog-post-img-wrapper {
    height: 50vh;
    margin-bottom: 2%;
    box-shadow: var(--box-shadow);
    position: relative;
}

.blog-post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-container .author {
    text-align: right;
}

/* .blog-show a {
    color: dodgerblue;
} */
.blog-show h1,
.blog-show h2,
.blog-show h3,
.blog-show h4 {
    font-size: 1.5rem;
}

.container.tags-container {
    flex-direction: column !important;
    max-width: 600px;
    padding: 0;
    margin-top: 3rem;
}

.blog-tag {
    border: 1px solid black;
    padding: 0.5rem 1rem;
    margin: 0.1rem;
    border-radius: 0.5rem;
}

.author-container.row {
    justify-content: flex-end;
}

.author-wrapper.col {
    align-items: center;
}

.author-img-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.author-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.date {
    text-align: right;
    position: relative;
}
.date:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
    margin: auto;
    width: 100%;
    border-bottom: 1px solid var(--text-muted);
    transform: translateY(-50%);
}
.date span {
    background-color: white;
    padding-left: 0.5rem;
}

/**
* Blog Sidebar
*/

.blog-sidebar {
    margin-left: 2rem;
}

.blog-sidebar section {
    margin-bottom: 1rem;
    border-radius: 0.3rem;
    box-shadow: rgba(71, 67, 67, 0.1) 0.1rem 0.1rem 0.8rem;
    width: 15rem;
}

.sidebar-body {
    padding: 1rem;
}

.sidebar-header {
    padding: 0.5rem;
    max-width: 100%;
    color: white;
    text-align: center;
}

.blog-sidebar-category .sidebar-header {
    background-color: var(--color-4);
}
.blog-sidebar-related .sidebar-header {
    background-color: var(--color-1);
}
.blog-sidebar-tag .sidebar-header {
    background-color: var(--color-2);
}

.blog-sidebar a,
.blog-sidebar h3 {
    white-space: nowrap;
    font-size: 1rem;
}

/* .blog-sidebar li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */

.blog-sidebar a {
    color: black;
    transition: 0.3s ease-in-out all;
}
.blog-sidebar a:hover {
    padding-left: 0.5rem;
}

.blog-sidebar-category {
    border: 1px solid var(--color-4);
}
.blog-sidebar-related {
    border: 1px solid var(--color-1);
}

.blog-sidebar-related a {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.blog-sidebar-related img {
    min-width: 4rem;
    height: 4rem;
    object-fit: cover;
    margin-right: 0.5rem;
    border-radius: 50%;
    border: 1px var(--color-1) solid;
}

.related-post-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*
*
* Sign Up & Sign In Page
*
*/

.form-main .hero-container {
    padding-bottom: 10rem;
}

.form-main .hero-text h2 {
    margin-bottom: 0;
}

/* .form-main .support-btn-container,
.support-modal .support-btn-container { */
.support-btn-container {
    flex-wrap: wrap;
}

.oval-btn.circle {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
}

/* .form-main .hero-text .oval-btn,
.support-modal .oval-btn { */
.support-btn-container .oval-btn {
    white-space: nowrap;
    background-color: transparent;
    margin: 0.5rem;
}

.oval-btn.whatsapp {
    border-color: #18a44c;
    color: #18a44c;
}
.oval-btn.whatsapp:hover {
    background-color: #18a44c;
}

.oval-btn.telegram {
    border-color: #0088cc;
    color: #0088cc;
}
.oval-btn.telegram:hover {
    background-color: #0088cc;
}

.oval-btn.call {
    border-color: purple;
    color: purple;
}
.oval-btn.call:hover {
    background-color: purple;
}

/* .form-main .hero-text .oval-btn i,
.support-modal .oval-btn i { */
.support-btn-container .oval-btn i {
    margin-right: 0.5rem;
    font-weight: bold;
}

.form-main .form-container form {
    margin-top: -10rem;
    background-color: white;
}

.sign-up-form {
    position: relative;
}

.js-prev-form-btn {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    border-radius: 50% !important;
    width: 2rem;
    height: 2rem;
}

/*
*
* Category Page
*
*/

.category-main .about-app-bg {
    background: linear-gradient(180deg, rgb(254, 242, 242) 0%, rgb(254, 242, 242) 80%, rgba(254, 242, 242, 0) 100%);
}

.category-reviews {
    background-color: #f2ebec;
    padding: 2rem;
}

.glide-category-reviews {
    position: relative;
}
.glide-category-reviews .glide__slide {
    height: auto;
}

.category-review-text-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
    background-color: #244145;
    padding: 2rem;
    padding-top: 3rem;
    border-radius: 1rem;
    color: white;
    max-width: 20rem;
    box-shadow: var(--box-shadow);
    margin: 3rem auto;
    height: 80%;
}
.category-review-text-wrapper::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10e";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 5rem;
    height: 5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #e9a04e;
    color: white;
    font-size: 3rem;
}
.category-review-text-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    transform: translate(-5%, -46%);
    background: white;
}

.reviewer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1rem;
}

/* upd */
/* .features-main .about-app-img-wrapper, */
.category-main .about-app-img-wrapper {
    max-width: 30rem;
}
.features-exp-section .about-app-img-wrapper,
.category-main .about-app-img-wrapper img {
    width: 100%;
}

.category-main .about-app-text {
    width: 100%;
}

.category-main .about-app .row {
    align-items: center;
}

.category-main .hero-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.category-main .hero-wrapper {
    display: inline-flex;
    background-color: #f2d9d7;
    border-radius: 4rem;
    transform: translateY(5%);
    box-shadow: var(--box-shadow);
    margin: auto 1rem;
    margin-top: 4rem;
}

.category-main .hero-container img {
    width: 100%;
    height: auto;
    margin-top: -5rem;
    border-bottom-left-radius: inherit;
}

.category-main .review-container {
    transform: translateX(-8%);
}

/*
*
* How To Page
*
*/

.how-to-main .hero-text {
    flex-direction: row;
}
.how-to-main .hero-text .col {
    max-width: 32rem;
}
.how-to-hero-img {
    width: 100%;
    margin-left: 2rem;
}

.how-to-steps .row {
    align-items: center;
    justify-content: space-between;
}

.how-to-steps .col {
    width: 50%;
    align-items: center;
}

.step-text {
    padding: 1rem;
}

.step-no {
    color: #88298b;
    font-size: 3.5rem;
}

.step-text p {
    max-width: 500px;
}

.how-to-img-wrapper {
    position: relative;
    /* width: 20rem;
    height: 20rem; */
    /* border-radius: 50%; */
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    background-color: white;
}
.how-to-img-wrapper:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -0.5rem;
    left: -0.5rem;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: #88298b;
}

.how-to-img-wrapper img {
    position: relative;
    object-fit: cover;
    border-radius: inherit;
    width: 100%;
    height: 100%;
}

.line-wrapper {
    text-align: center;
    margin: -2rem auto;
}
.line-wrapper img {
    width: 50%;
}

.how-to-steps .call-to-action {
    margin: 1rem;
}

/* .how-to-main .hero-text {
    flex-direction: row;
    max-width: 1200px;
}
.how-to-main .hero-text .col {
    max-width: 36rem;
} */

/*
*
* Contact Page
*
*/

.contact-main .hero-wrapper {
    flex-direction: column;
}

.contact-main form {
    background-color: white;
    /* position: absolute; */
    width: 100%;
}

/* .contact-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10%;
} */

.contact-info-container {
    margin-bottom: 7rem;
}

.contact-info-container .row {
    justify-content: flex-end;
}

.contact-info-container,
.contact-main .form-container {
    width: 44%;
}

.contact-info-container .col {
    width: 40%;
}

.contact-info-container i {
    font-size: 1.3rem;
    margin-right: 1rem;
    background-color: #bd5891;
    color: var(--color-1);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.contact-form-container {
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-end;
    align-items: flex-end;
    /* margin-top: -20rem; */
    margin-top: -25rem;
}

.map-wrapper {
    max-width: 50%;
}

.map-wrapper iframe {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.oval-btn.js-close-btn {
    width: 100%;
}

.btn-succ {
    border-color: var(--color-success) !important;
    color: var(--color-success) !important;
}
.btn-succ:hover {
    background-color: var(--color-success) !important;
    color: white !important;
}
.btn-error {
    width: 100%;
    border-color: var(--color-danger) !important;
    color: var(--color-danger) !important;
}
.btn-error:hover {
    background-color: var(--color-danger) !important;
    color: white !important;
}

/*
*
* FAQ Page
*
*/

.faq-main .hero-text {
    padding-bottom: 5rem;
}

/*
*
* Instagram Page
*
*/

.form-main.instagram-page .hero-text i {
    color: #db1abf;
}

.form-main.instagram-page form h2 {
    color: #db1abf;
}

.instagram-page .call-to-action {
    margin-top: 3rem;
}

.instagram-page .best-features-container .row {
    flex-wrap: wrap;
}

.instagram-page .best-features-container .col {
    width: 35%;
}

.instagram-page .best-features-container .icon-wrapper {
    margin: 0;
}

.instagram-page .best-features-container p {
    text-align: left;
}

/*
*
* Features Page
*
*/

.features-exp-section .about-app-img-wrapper {
    position: relative;
    max-width: 25rem;
    margin: 1rem;
}

.features-exp-section .about-app-img-wrapper img:not(.panel-scr-sht img) {
    width: 70%;
}

.img-anim-sm {
    position: absolute;
    border-radius: 0.4rem !important;
}

.about-app-img-wrapper.to-left .img-anim-sm {
    left: 32%;
    top: 0;
    bottom: 0;
    margin: auto;
}
.about-app-img-wrapper.to-up .img-anim-sm {
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
}

.panel-scr-sht .img-anim-sm {
    width: 60%;
}

.features-exp-section .about-app-img-wrapper img {
    box-shadow: none;
}

.features-main .about-app-text {
    padding: 1rem;
}

.icon-wrapper i {
    font-size: 2.5rem;
}

.icon-wrapper {
    display: grid;
    align-items: center;
    justify-content: center;
    margin-top: -2.5rem;
    background-color: #48434c;
    color: white;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.features .col:hover .icon-wrapper,
.package-feature-container:hover .icon-wrapper {
    transform: scale(1.1);
}

.default-features .row {
    justify-content: center;
}

.li-check {
    font-size: 0.9rem;
    background-color: var(--color-4);
    color: white;
    border-radius: 50%;
    padding: 0.2rem;
    margin-right: 0.15rem;
    opacity: 0.5;

    transition: var(--transition);
}
.features .col:hover .li-check {
    opacity: 1;
}

.glide-feautures {
    display: none;
}

.glide-feautures .glide__slides {
    padding: 2rem 0;
}
.glide-feautures .glide__slide {
    height: auto;
}

.feature-card-container {
    position: relative;
}

.feature-card-container .col {
    display: flex;
    align-items: center;
    width: 35%;
    background-color: white;
    margin: 1rem;
    padding: 1.5rem;
    padding-top: 1.5rem;
    padding-top: 0;
    color: black;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    position: relative;
}

.features-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 80%;
    background-color: var(--color-3);
    margin: auto;
    top: 0rem;
    bottom: 0;
    border-radius: 10% 10% 10% 10%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.features-bg:after {
    content: "MANAGEMENT";
    position: absolute;
    right: 0;
    transform: translateX(40%) rotate(90deg);
    font-size: 5rem;
    color: white;
    font-weight: bold;
}

.feature-card {
    display: flex;
    align-items: center;
    width: 35%;
    background-color: white;
    margin: 1rem;
    padding: 1.5rem;
    padding-top: 0;
    color: black;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    position: relative;
}

.odd-feature.col {
    width: 30.6%;
}

.feature-text {
    color: var(--text-muted);
    transition: var(--transition);
}
.feature-text:hover {
    color: black;
}

.feature-text li {
    margin-bottom: 0.5rem;
}

/* .fw-call-to-action-container {
    background-color: #e6dce5;
    padding: 5rem;
    text-align: center;
} */

.fw-call-to-action-container .row {
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.fw-call-to-action-container p {
    margin: 1rem;
    font-weight: bold;
}

.fw-call-to-action-container i {
    color: var(--color-4);
}

.fw-call-to-action-container .call-to-action {
    display: block;
    margin: auto;
    margin-top: 2rem;
}

.features-exp-section .row {
    align-items: flex-start;
    justify-content: space-evenly;
}

.features-exp-section .about-app-text {
    text-align: left;
}

/* .features-exp-section ul > li > i { */
.check-sm {
    font-size: 1rem !important;
    margin-right: 0.3rem;
    color: var(--color-4);
}

.features-main .about-app-bg {
    background: linear-gradient(180deg, rgb(254, 242, 242) 0%, rgb(254, 242, 242) 80%, rgba(254, 242, 242, 0) 100%);
}

.about-app-img-wrapper.panel-scr-sht {
    max-width: 30rem;
}

/*
*
* Campaign Code Page
*
*/

.campaign-code-html,
.campaign-code-body,
.campaign-code-main {
    height: 100%;
}

.campaign-code-main {
    display: grid;
    place-items: center;
    background-color: var(--color-1);
}

.campaign-code-container {
    text-align: center;
    border-radius: 50px;
    background: #f7c0c3;
    box-shadow: 20px 20px 60px #d2a3a6, -20px -20px 60px #ffdde0;
    padding: 6%;
    margin: 1rem;
}

.campaign-code-wrapper {
    width: max-content;
    margin: auto;
}

.campaign-code-container .call-to-action {
    background-color: transparent;
    border-radius: 1rem;
    font-size: 1rem;
    padding: 1rem;
}

.campaign-code {
    border: 2px dashed var(--color-4);
    padding: 1rem;
    border-radius: 1rem;
    font-weight: bold;
    color: var(--color-4);
    /* -webkit-user-select: none;   */
}

/* .campaign-code-input {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem; 
    -webkit-user-select: none;  
} */

/*
*
* Contracts
*
*/

.main.contract {
    font-size: 1rem;
    line-height: 1.6rem;
}

.main.contract h1 {
    font-size: 1.7rem;
}
.main.contract h2 {
    font-size: 1.5rem;
}

/*
*
* Video Support Page
*
*/

.platform-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.platform-btns {
    margin-bottom: 2rem;
}

.platform-btn {
    display: block;
    position: relative;
    padding-bottom: 0.3rem;
    margin: auto 1.5rem;
    color: black;
    transition: var(--transition);
    font-size: 1.8rem;
    text-align: center;
}
.platform-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}
.platform-btn:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    width: 0;
    height: 0.2rem;
    background-color: var(--color-4);
    transition: var(--transition);
}
.platform-btn:hover:after {
    width: 100%;
}
.platform-btn:hover .platform-icon,
.platform-btn.active .platform-icon {
    color: var(--color-4);
}

.platform-btn.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background-color: var(--color-4);
}

.video-search {
    padding: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-main);
    border-radius: 0.4rem;
    border: none;
    border: 0.1rem solid var(--text-muted);
    width: 100%;
}

.video-card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video-card {
    margin: 0.5rem;
    color: white;
    display: block;
    position: relative;
    width: 20rem;
    height: 20rem;
    overflow: hidden;
    border-radius: 0.3rem;
}

.video-card-img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.video-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000007d;
    transition: var(--transition);
}

.video-card-text {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: white;
    padding: 0 0.5rem;

    transition: var(--transition);
}
.video-name {
    margin-bottom: 1rem;
    font-weight: bold;
}
.video-desc {
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: var(--box-shadow);
}
.video-card:hover:after {
    background-color: #0000006e;
}
.video-card:hover .video-card-text {
    transform: translate(-50%, -50%);
}
.video-card:hover .video-desc {
    visibility: visible;
    opacity: 1;
}

.no-video {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}
.no-video i {
    font-size: 2rem;
    margin-right: 0.5rem;
}

/*
*
* Tespih Page
*
*/

.landing-main .hero-container {
    padding-bottom: 10rem;
}
.landing-main .hero-wrapper {
    flex-direction: column;
}
.landing-main .hero-container .call-to-action {
    background-color: var(--color-4);
    color: white;
    margin-top: 1.5rem;
}
/* .landing-main .hero-text h1 {
    font-size: 2rem !important;
    font-family: var(--font-main);
} */

.landing-main .first-form form {
    margin-top: -6rem;
    padding-left: 1rem;
    padding-right: 1rem;

    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.landing-main .features-exp-section .about-app-img-wrapper {
    margin: 0;
}

.landing-main .pricing-card-container {
    margin-top: 1.5rem;
}

.landing-main .pricing-card-container .card {
    background-color: white;
}
.landing-main .pricing-card-container .card .pricing-heading::after {
    z-index: 0;
}
.pricing-card-price {
    position: relative;
    z-index: 1;
}

.checkout-video {
    text-align: center;
    display: block;
}
.checkout-video:hover .rounded-arrow {
    transform: rotate(-17deg);
}
.checkout-video:hover .checkout-video-title {
    transform: scale(1.1);
}
.checkout-video-desc {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.checkout-video-desc-item-1 {
    display: flex;
    align-items: center;
}
.checkout-video-text {
    font-weight: bold;
    color: rgb(212, 0, 0);
}
.youtube-icon {
    font-family: var(--font-heading-2);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
}
.youtube-icon i {
    color: red;
}
.youtube-icon span {
    color: black;
}
.rounded-arrow {
    width: 4rem;
    margin-top: 1rem;
    transition: var(--transition);
}
.checkout-video-title {
    color: var(--color-4);
    transition: var(--transition);
}

.youtube-subscribe {
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.youtube-subscribe:hover .youtube-subscribe-sm-text {
    text-decoration: underline;
}
.youtube-subscribe-sm-logo {
    margin-right: 0.5rem;
}
.youtube-subscribe-sm-text {
    color: black;
}

.promotion-code-img-container {
    display: grid;
    place-items: center;
    position: relative;
    margin-bottom: 1rem;
}
.promotion-code-desc {
    position: absolute;
    display: grid;
    place-items: center;
    text-align: center;
    background-color: #e0f2f4;
    width: 77%;
    height: 72%;
}
.promotion-code-text {
    background-color: #ff914c;
    padding: 0.5rem;
    font-weight: bold;
}

.landing-main .features-exp-section .about-app-text {
    width: 100%;
}

.ul-with-rounded-icon li {
    margin-bottom: 0.2rem;
}

.call-to-action.purple {
    margin: auto;
    display: block;
    background-color: var(--color-6);
    border-color: var(--color-6);
    color: white;
}
.call-to-action.purple:hover {
    background-color: var(--color-6);
    border-color: var(--color-6);
}

.bg-main-pink {
    background-color: var(--color-1);
}
.bg-secondary-pink {
    background-color: var(--color-3);
}
.landing-img {
    width: 100%;
}
.li-check.purple {
    background-color: var(--color-6);
}
.text-purple {
    color: var(--color-6);
}
.oval-btn.purple {
    display: block;
    border-color: var(--color-6);
    background-color: transparent;
    font-weight: normal;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.oval-btn.purple:hover {
    background-color: var(--color-6);
    color: white;
}

@media screen and (min-width: 1000px) {
    .landing-main .hero-container {
        display: flex;
        justify-content: center;
    }

    .landing-main .hero-wrapper {
        /* flex-direction: row; */
        align-items: center;
    }

    .landing-main .hero-container .landing-img-wrapper {
        max-width: 40rem;
    }

    .promotion-code-img-container {
        max-width: 30rem;
    }

    .landing-promotion-code-container-lg {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
    }
    .promotion-code-img-container.mt-inner {
        margin-top: 0;
    }
    .landing-promotion-code-container-lg-item-1 {
        width: 50%;
        margin-left: 2rem;
    }
    .checkout-video {
        width: max-content;
    }

    .landing-reviews-section-item-1 {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .reviews-section-secondary-title-lg {
        display: none;
    }
    .landing-reviews-section-item-1 p {
        width: 70%;
        margin-left: 2rem;
    }

    .landing-main .features-exp-section h2 {
        text-align: left;
    }

    .more-questions-section .landing-img-wrapper {
        max-width: 30rem;
        margin: auto;
    }
}

@media screen and (max-width: 900px) {
    .landing-main .hero-text h1 {
        font-size: 2.5rem !important;
    }
}

/*
*
* Support Modal
*
*/

.modal-container .form-container {
    width: 100%;
}

.form-container .modal-form {
    max-width: 100%;
    box-shadow: none;
    padding: 0;
}

.support-modal .support-btn-container .oval-btn {
    border-width: 1px;
    font-weight: normal;
}

.support-modal .support-btn-container {
    justify-content: center;
}

.c-u-s {
    margin: 0;
    font-weight: bold;
}

/*
*
* Components
*
*/

/* Form */

.form,
.form-container form {
    max-width: 35rem;
    margin: auto;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: 1rem;
}

.form a,
.form-container form a {
    color: dodgerblue;
}
.form a:hover,
.form-container form a:hover {
    text-decoration: underline;
}

.form input,
.form-container input,
.form-container textarea {
    padding: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-main);
    border-radius: 0.4rem;
    border: none;
    border: 0.1rem solid var(--text-muted);
}

.select {
    padding: 0.4rem;
    font-size: 1rem;
    font-family: var(--font-main);
    border-radius: 0.4rem;
    border: none;
    border: 0.1rem solid var(--text-muted);
    background-color: white;
}
.select.chosen-container {
    width: 100% !important;
}
.select .chosen-single {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    font-size: 1rem !important; 
    text-decoration: none !important;
}
.select .chosen-drop {
    left: 0;
    /* box-shadow: 
        0px 0.08rem 0 var(--text-muted), 
        -0.08rem 0.08rem 0 var(--text-muted), 
        0.08rem 0.08rem 0 var(--text-muted) !important; */
}
.select .chosen-search-input {
    padding: 0.5rem !important;
    border-radius: 0.4rem !important;
    background-image: none !important;
}
.select.chosen-container-single .chosen-default {
    color: #747474;
}

.form-item {
    margin-bottom: 0.5rem;
    width: 100%;
}

.input-group {
    display: flex;
    justify-content: space-between;
}

.input-group input {
    width: 49%;
}

.readonly-placeholder-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
}
input.readonly-placeholder-input {
    padding-left: 2rem !important;
}
div.readonly-placeholder {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.5rem;
    display: flex;
    align-items: center;
    color: #888;
    font-size: 1rem;
}

.support-btn-container-container {
    margin-bottom: 1rem;
}
.support-btn-container-container .support-btn-container {
    justify-content: center;
}
.support-btn-container-container .oval-btn {
    text-decoration: none !important;
    border-width: 1px;
}

.persistent-placeholder {
    display: flex;
    align-items: center;
    position: relative;
}
.persistent-placeholder__placeholder {
    position: absolute;
    left: 0;
    padding-left: 0.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Buttons */

.oval-btn {
    border: none;
    padding: 0.5rem;
    border-radius: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--font-main);
    cursor: pointer;
    background-color: white;
    border: 2px solid var(--color-4);
    color: black;
    transition: var(--transition);
}
.oval-btn:hover {
    color: white;
    background-color: var(--color-4);
}

.form-item.oval-btn {
    margin-top: 1.5rem;
}

.group-btn-wrapper {
    text-align: center;
    border: 2px solid #48434c;
    width: max-content;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: auto;
    border-radius: 7px;
    font-family: var(--font-main);
}

.group-btn {
    cursor: pointer;
    padding: 1rem;
    font-weight: bold;
    transition: var(--transition);
    white-space: nowrap;
}
.group-btn:hover,
.group-btn-active {
    background-color: #48434c;
    color: white;
}

.group-btn:not(:last-child) {
    border-right: 2px solid #48434c;
}

.group-btn .with-option {
    font-size: 0.7rem;
}

.call-to-action {
    border: 2px solid var(--color-4);
    padding: 1rem 2rem;
    font-family: var(--font-heading-3);
    color: black;
    font-weight: bold;
    width: max-content;
    transition: var(--transition);
    border-radius: 3rem;
    cursor: pointer;
    /* margin: auto; */
    /* white-space: nowrap !important; */
}

.sign-in:hover,
.call-to-action:hover {
    color: white;
    background-color: var(--color-4);
}

.link-btn {
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    color: dodgerblue;
}
.link-btn:hover {
    text-decoration: underline;
}
.link-disabled {
    color: slategray;
    cursor: not-allowed;
}
.btn-loading {
    position: relative;
    display: grid;
    place-items: center;
    background-color: #eeeeee !important;
    color: gray !important;
    cursor: not-allowed !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    border: 0.4em solid var(--color-1);
    border-radius: 50%;
    border-top: 0.4em solid var(--color-4);
    width: 1em;
    height: 1em;
    animation: spin 2s linear infinite;
}

/* Card */

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    /* padding: 1.5rem; */
    overflow: hidden;
}

/* Modal */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(73, 166, 233, 0.5);
    place-items: center;
    transition: var(--transition);
    visibility: hidden;
    /* display: none; */
    z-index: -1;
    /* overflow: scroll; */
    display: grid;
    place-items: center;
    opacity: 0;
    padding: 0.5rem;
}
.open-modal {
    visibility: visible;
    /* display: grid; */
    z-index: 10;
    opacity: 1;
}

.modal-container {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    /* padding: 1.5rem; */
    /* background: white; */
    border-radius: 1rem;
    width: 100%;
    /* height: 30vh; */
    max-width: 30rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transform: translateY(100vh);
    transition: var(--transition);
}
.open-modal .modal-container {
    transform: translateY(0);
}

.modal-header {
    /* position: relative;
    background-color: var(--color-1);
    padding: 1.5rem;
    margin: 0; */
    position: relative;
    background-color: #f7c0c3b0;
    color: var(--color-4);
    padding: 1.5rem;
    margin: 0;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.modal-body {
    padding: 1rem;
    background-color: white;
}

.close-modal-btn {
    position: absolute;
    /* top: 1rem; */
    top: 0;
    bottom: 0;
    /* right: 1rem; */
    right: 0.5rem;
    margin: auto;
    font-size: 2rem;
    background: transparent;
    border-color: transparent;
    color: maroon;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    /* color: var(--clr-red-light); */
    transform: scale(1.3);
}

.homepage-info-modal .call-to-action {
    display: block;
    width: 100%;
    text-align: center;
}

.modal-btn-container {
    display: flex;
    gap: 1rem;
}
.modal-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-countdown {
    font-size: 4rem;
    background-color: var(--color-1);
    color: var(--color-4);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 5rem;
}

/* Video Modal */

.video-modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    transform: translateY(100vh);
    transition: var(--transition);
}
.open-modal .video-modal-container {
    transform: translateY(0);
}

.video-modal-overlay .close-modal-btn {
    top: 2%;
    left: 2%;
    bottom: unset;
    left: unset;
    z-index: 666;
}

.video-modal-container iframe {
    width: 80%;
    height: 80%;
}

/* Accordion */

.question {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.question-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    transition: var(--transition);
    /* padding-bottom: 1rem; */
}
.question-btn {
    font-size: 1.5rem;
    background: transparent;
    border-color: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.question-btn:hover {
    transform: rotate(90deg);
}
.question-text {
    padding: 1rem 0 1.5rem 0;
    /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
}
.question-text p {
    margin-bottom: 0;
}
/* hide text */
.question-text {
    display: none;
}
.show-text .question-text {
    display: block;
}
.show-text .question-title p {
    color: var(--color-4) !important;
}
.minus-icon {
    display: none;
}
.show-text .minus-icon {
    display: inline;
}
.show-text .plus-icon {
    display: none;
}

/* .show-text .question-title p {
    margin-bottom: auto;
} */
.question-title p {
    margin: 0;
}

.question-in-card {
    margin: 0;
    padding: 0;
    width: 100%;
    box-shadow: unset;
}

.question:hover .question-title p {
    color: var(--color-4) !important;
}

/* Coupon */
.coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 1rem; */
    background-color: #99999938;
    width: max-content;
    margin: auto;
    box-shadow: var(--box-shadow);
    font-size: 1rem;
}
.coupon-item-1,
.coupon-item-2 {
    padding: 1rem;
}

.coupon-item-1 {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}
.coupon-item-1:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: white;
}
.coupon-item-1:before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: white;
}
.dashed-vert-line {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1rem;
    border-right: 2px dashed white;
}
.dotted-vert-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1rem;
    border-left: 10px dotted white;
    transform: translateX(-25%);
}
.coupon-btn {
    border: solid 1px var(--color-success);
    border-radius: 0.3rem;
    color: var(--color-success);
    white-space: nowrap;
    padding: 0.3rem 0.5rem;
    transition: var(--transition);
}
.coupon-btn:hover {
    background-color: var(--color-success);
    color: white;
}
.coupon-img {
    margin-right: 0.5rem;
}
.coupon-img img {
    width: 100%;
}

@media screen and (max-width: 400px) {
    .coupon {
        font-size: 0.8rem;
    }
    .coupon-item-1,
    .coupon-item-2 {
        padding: 0.6rem;
    }
    .coupon-btn {
        padding: 0.3rem;
    }
    .coupon-img {
        width: 2.5rem;
    }
    .coupon-item-1:after,
    .coupon-item-1:before {
        width: 1.5rem;
        height: 1.5rem;
    }
    .dotted-vert-line {
        border-left-width: 9px;
    }
}

/*
*
* Genel Amaçlı Class'lar
*
*/
/* genel->8%, inner->4% */

.my-0h {
    margin-top: .5rem;
    margin-bottom: .5rem;
}
.mb-0 {
    margin-bottom: 0;
}
.mt-1 {
    margin-top: 1rem;
}

.my-genel {
    margin: 10rem auto;
}
.mt-genel {
    margin-top: 10rem;
}
.mb-genel {
    margin-bottom: 10rem;
}

.my-inner {
    margin: 4rem auto;
}
.mt-inner {
    margin-top: 4rem;
}
.mb-inner {
    margin-bottom: 4rem;
}

.py-genel {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.py-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.pt-inner {
    padding-top: 4rem;
}
.pb-inner {
    padding-bottom: 4rem;
}

.link {
    color: dodgerblue;
    transition: var(--transition);
}
.link:hover {
    color: var(--color-4);
    text-decoration: none;
}
.link-pink {
    color: var(--color-4);
    transition: var(--transition);
}
.link-pink:hover {
    color: dodgerblue;
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.text-bold {
    font-weight: bold;
}

.text-black {
    color: var(--color-5);
}
.text-muted {
    color: var(--text-muted) !important;
}

.hor-line {
    position: relative;
}
.hor-line:after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 1px solid black;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.hor-line span {
    position: relative;
    z-index: 1;
    background-color: white;
    padding: 0 1rem;
    font-weight: bold;
}

.underline {
    position: relative;
}
.underline::after {
    content: "";
    position: absolute;
    bottom: -0.4rem;
    height: 0.3rem;
    background-color: #bd528e;
    width: 20%;
}
.underline-left:after {
    left: 0;
}
.underline-center:after {
    left: 0;
    margin: auto;
    right: 0;
}
.centered-content {
    width: max-content;
    margin: auto;
}

.highlight {
    /* background: linear-gradient(180deg,rgba(255,255,255,0) 50%,#eedcd8 20%); */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, var(--color-1) 20%);
}

.text-gradient {
    font-size: 3.5rem;
    /* margin-left: 0.5rem;
    margin-right: 0.5rem; */
    background: linear-gradient(to right, #ed1e79 0%, #85298b 100%);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overflow-hidden {
    overflow: hidden;
}

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

.text-left {
    text-align: left;
}

.column-reverse {
    flex-direction: column-reverse;
}

.display-none {
    display: none;
}

.box-shadow {
    box-shadow: var(--box-shadow) !important;
}

.svg-icon {
    width: 1.2rem !important;
}

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

.bg-light-purple {
    background-color: #e6dce5;
}
.bg-white {
    background-color: white;
}

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

.input-danger {
    box-shadow: 0px 0px 0px 2px var(--color-danger);
    border-color: transparent;
}

.btn-disabled {
    border-color: var(--text-muted) !important;
    background-color: var(--text-muted) !important;
    color: white !important;
    cursor: no-drop !important;
}
.btn-disabled:hover {
    border-color: var(--text-muted) !important;
    background-color: var(--text-muted) !important;
    /* color: white; */
}

.contact-whatsapp {
    background-color: #20bf5c !important;
}
.contact-telegram {
    background-color: #0088cc !important;
}

.font-normal {
    font-weight: normal !important;
}

.text-pink {
    color: var(--color-4) !important;
}

.mw-35 {
    max-width: 35rem !important;
}
.mw-30 {
    max-width: 30rem !important;
}

.mw-15 {
    max-width: 15rem !important;
}
.w-100 {
    width: 100% !important;
}

.scr-sht {
    box-shadow: var(--box-shadow);
    border-radius: 0 !important;
}

.border-radius-0 {
    border-radius: 0 !important;
}

/* Cookie btn */
.btn-success {
    border-color: var(--color-pink) !important;
    transition: var(--transition);
    border-radius: 3px;
}
.btn-success:hover {
    background-color: var(--color-4) !important;
    color: white !important;
}

.no-bg {
    background-color: transparent !important;
    box-shadow: none !important;
}
.no-bg:after {
    content: "" !important;
    background-color: transparent;
}

.tick-row {
    display: flex;
}
.tick-col {
    display: flex;
    flex-direction: column;
}
.tick-col .check-sm {
    margin-top: 0.1rem;
}

.flex {
    display: flex;
}
.flex--justify-end {
    justify-content: flex-end;
}
.flex--justify-center {
    justify-content: center;
}
.flex--justify-between {
    justify-content: space-between;
}
.flex__flex-1 {
    flex: 1;
}
.flex--gap-0h {
    gap: 0.5rem;
}

/*
*
* Animations
*
*/

.fade-in {
    animation: fade-in 0.3s ease-in-out;
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.shockwave-jump {
    animation: shockwaveJump 1s ease-out;
}
@keyframes shockwaveJump {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(0.98);
    }
    55% {
        transform: scale(1.02);
    }
    60% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes shockwave {
    0% {
        transform: scale(1);
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.15);
    }
    95% {
        box-shadow: 0 0 50px rgba(0, 0, 0, 0), inset 0 0 30px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(2.25);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*
*
* Media Queries
*
*/

@media screen and (min-width: 600px) {
    .download-img-slogan {
        position: absolute;
        z-index: 666;
        align-self: center;
        background: #0000004d;
        padding: 0.5rem 2rem;
        color: white;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
    }
    .download-img-wrapper:hover .download-img-slogan {
        opacity: 1;
        visibility: visible;
        display: flex;
    }
}
@media screen and (max-width: 600px) {
    .download-img-slogan {
        display: none;
    }
}

@media screen and (max-width: 1390px) {
    /* mq-Hero */

    .hero-text h1 {
        font-size: 4.5rem;
    }

    /* mq-Sidenav */

    .main-sidenav {
        display: none;
    }
}

@media screen and (max-width: 1335px) {
    /* mq-ContactPage */

    .contact-info-container .row {
        flex-direction: column;
        align-items: center;
    }

    /* .contact-form-container {
        margin-top: -30rem;
    } */
}

@media screen and (max-width: 1235px) {
    /* mq-PricingPage */

    .pricing-main .glide__arrows {
        display: flex;
    }
}

@media screen and (max-width: 1235px) {
    /* mq-Hero */

    .hero-text h1 {
        font-size: 3.5rem;
    }
    .hero-text p {
        font-size: 2.1rem;
    }

    /* mq-Homepage */

    .features-bg::after {
        content: "";
    }
}

@media screen and (max-width: 1042px) {
    /* mq-BlogPage */

    .blog .card {
        max-width: 45%;
    }
}

@media screen and (max-width: 1035px) {
    /* mq-ContactPage */

    .contact-main .hero-text {
        margin-bottom: auto;
    }

    .contact-info-container {
        margin-bottom: 10rem;
        width: 100%;
    }

    .contact-info-container .row {
        flex-direction: row;
        justify-content: center;
    }

    .contact-form-container {
        flex-direction: column-reverse;
        align-items: center;
        margin-top: -11rem;
    }

    .contact-main .form-container {
        width: 100%;
    }

    .map-wrapper {
        max-width: 100%;
        width: 100%;
        margin-top: 3rem;
    }
    .map-wrapper iframe {
        width: 100%;
    }
}

@media screen and (max-width: 1015px) {
    /* mq-Homepage */

    .flip-card {
        width: 11rem;
        height: 11rem;
    }
}

@media screen and (max-width: 1150px) {
    .how-to-main .group-btn-wrapper {
        /* position: relative; */
        width: 100%;
        overflow-x: scroll;
        border-radius: 7px;
        /* -moz-box-shadow:    inset 0 0 10px #000000;
        -webkit-box-shadow: inset 0 0 10px #000000;
        box-shadow:         inset 0 0 10px #000000; */
        box-shadow: inset 12px 0 9px -5px rgba(31, 73, 125, 0.5), inset -12px 0 8px -4px rgba(31, 73, 125, 0.5);
    }

    .direction-arrow-container {
        position: relative;
    }
    .direction-arrow-left:before {
        font-family: "Font Awesome 5 Free";
        content: "\f137";
        position: absolute;
        /* left: 0.5rem; */
        font-weight: bold;
        color: white;
        z-index: 666;
        left: 0.5rem;
        bottom: 0;
        top: 0;
        margin: auto;
        transform: translateY(34%);
        opacity: 0.7;
    }
    .direction-arrow-right:after {
        font-family: "Font Awesome 5 Free";
        content: "\f138";
        position: absolute;
        right: 0.5rem;
        top: 0;
        bottom: 0;
        font-weight: bold;
        color: white;
        z-index: 666;
        margin: auto;
        transform: translateY(34%);
        opacity: 0.7;
    }
}

@media screen and (max-width: 900px) {
    /* mq-Genel */

    .my-genel {
        margin: 7rem auto;
    }
    .mt-genel {
        margin-top: 7rem;
    }
    .mb-genel {
        margin-bottom: 7rem;
    }

    .my-inner {
        margin: 3rem auto;
    }
    .mt-inner {
        margin-top: 3rem;
    }
    .mb-inner {
        margin-bottom: 3rem;
    }

    .py-genel {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .py-inner {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .pt-inner {
        padding-top: 3rem;
    }
    .pb-inner {
        padding-bottom: 3rem;
    }

    /* mq-Nav */

    .header {
        flex-direction: column;
    }

    .header nav {
        width: 100%;
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: baseline;
        /* padding-top: 1rem; */
        overflow: hidden;
        height: 0;
        transition: var(--transition);
    }

    .nav-wrapper .nav-item {
        padding: 0.5rem 0;
        width: 100%;
    }

    .nav-wrapper .sign-in {
        border: none;
        padding: 0;
        margin-left: 0;
    }
    .sign-in:hover {
        color: black;
        background-color: inherit;
    }

    .nav-toggle {
        display: block;
        border: none;
        cursor: pointer;
        padding: 0;
        background-color: transparent;
        font-size: 1.5rem;
        color: var(--color-4);

        position: relative;
        width: 1.6rem;
        height: 1.6rem;
        min-width: 1.6rem;
        min-height: 1.6rem;
        border-bottom: 4.5px solid var(--color-4);
        border-radius: 2px;
        transition: var(--transition-fast);
    }
    .nav-toggle:after,
    .nav-toggle:before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        border-top: 4.5px solid var(--color-4);
    }
    .nav-toggle:before {
        top: 0;
    }
    .nav-toggle:after {
        top: 50%;
    }
    .nav-toggle-active {
        border-bottom: none;
        transform: rotate(360deg) translateY(-2px);
    }
    .nav-toggle-active:after {
        bottom: 50%;
        transform: rotate(-45deg);
    }
    .nav-toggle-active:before {
        top: 50%;
        transform: rotate(45deg);
    }

    .nav-hover a:hover:after {
        width: 0;
        left: 0;
    }

    .dropdown {
        position: relative;
        left: 0;
        height: 0;
        padding: 0;
        overflow: hidden;
        opacity: 1;
        box-shadow: unset;
        visibility: visible;
        transition: var(--transition);
        background: none;
        background-color: var(--color-1);
    }
    .dropdown li {
        margin: 0;
    }

    .show-nav {
        /* height: 19rem; */
        height: 100vh;
    }

    .show-dropdown {
        /* height: 9rem; */
        height: 100%;
        padding-left: 1rem;
        /* border-left: black 1px solid; */
        position: relative;
    }
    .show-dropdown::after {
        content: "";
        position: absolute;
        border-left: black 1px solid;
        height: 85%;
        left: 0;
    }

    /* mq-Hero */

    .hero-text h1,
    .other-hero .hero-text h1 {
        font-size: 3.5rem;
    }
    .hero-text p,
    .other-hero .hero-text p {
        font-size: 2rem;
    }
    .call-to-action {
        font-size: 1rem;
    }

    /* mq-Main */

    .main {
        font-size: 1rem;
    }

    .package-name,
    .main h2 {
        font-size: 2rem;
    }

    .text-gradient {
        font-size: 2.5rem;
    }

    /* mq-Homepage */

    .about-app-bg {
        height: 90%;
    }

    .about-app .row {
        align-items: center;
    }

    .default-features {
        display: none;
    }
    .glide-feautures {
        display: block;
    }

    .glide-feautures .col {
        width: 100%;
        height: 100%;
    }

    /* mq-BlogPage */

    .blog .card {
        max-width: 100%;
    }

    /* .blog-show .container { */
    .blog-show .blog-container {
        flex-direction: column-reverse;
    }

    .blog-show .blog-sidebar {
        margin: auto;
        margin-top: 4rem;
        width: 100%;
    }
    .blog-show .blog-sidebar section {
        width: 100%;
        max-width: 600px;
        margin: auto;
        margin-bottom: 1rem;
    }

    .blog-card-title {
        font-size: 1rem !important;
    }

    .blog-show h1,
    .blog-show h2,
    .blog-show h3,
    .blog-show h4 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 800px) {
    /* mq-Hero */

    .category-main .hero-wrapper {
        margin-top: 2rem;
    }

    /* mq-Homepage */

    .reviews .glide__arrows {
        display: flex;
    }

    /* mq-Categories */

    .category-main .about-app .row {
        flex-direction: column;
    }
    .category-main .about-app-item-1 .row {
        flex-direction: column-reverse;
    }

    .category-main .about-app-text {
        text-align: left;
    }

    /* mq-About */

    .about .row {
        flex-direction: column;
    }

    .about-item-2.row {
        flex-direction: column-reverse;
    }

    .about .col {
        width: 100%;
        margin: auto;
        margin-bottom: 1rem;
    }

    .about-img-wrapper {
        margin: auto;
    }

    /* mq-FeaturePage */

    .about-app-img-wrapper.panel-scr-sht {
        max-width: 25rem;
    }

    /* mq-HowToPage */
    .how-to-main .hero-container {
        overflow: hidden;
    }
    .how-to-main .hero-text {
        flex-wrap: wrap;
    }
    .how-to-hero-img {
        margin-left: 0;
        margin-bottom: -18%;
        width: 90%;
    }
}

@media screen and (max-width: 755px) {
    /* mq-Homepage */

    .flip-card {
        width: 9rem;
        height: 9rem;
    }

    .glide-feautures .glide__slide {
        height: 26rem;
    }

    /* mq-Footer */

    .footer-logo-container {
        width: 100%;
    }

    .footer-contact-item {
        font-size: 1rem;
    }

    /* mq-VideoSupportPage */

    .video-card {
        width: 9rem;
        height: 9rem;
    }

    .video-modal-container iframe {
        width: 95%;
        height: 315px;
    }

    .platform-btn {
        font-size: inherit;
    }

    .video-desc {
        display: none;
    }
    .video-name {
        margin-bottom: 0;
    }
    .video-card-text {
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 666px) {
    /* mq-Genel */

    .my-genel {
        margin: 5rem auto;
    }
    .mt-genel {
        margin-top: 5rem;
    }
    .mb-genel {
        margin-bottom: 5rem;
    }

    .py-genel {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    /* mq-Hero */

    .home-main .hero-wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }
    /* .hero-text {
        margin-bottom: 2rem;
    } */
    .home-hero .hero-img-wrapper {
        width: unset;
        max-width: 80%;
    }

    .category-main .hero-text {
        margin: 2rem 1.5rem 2rem 1rem;
    }
    .category-main .hero-text h1 {
        font-size: 2rem;
    }
    .category-main .hero-text p {
        font-size: 1.3rem;
    }
    .category-main .hero-text .call-to-action {
        font-size: 0.9rem;
    }

    .landing-main .hero-container,
    .pricing-main .hero-container,
    .how-to-main .hero-container,
    .about-main .hero-container,
    .blog-index-main .hero-container,
    .form-main .hero-container,
    .faq-main .hero-container,
    .contact-main .hero-container,
    .features-main .hero-container {
        padding-top: 2rem;
    }

    /* mq-Homepage */

    .about-app-item-1 .row {
        flex-direction: column-reverse;
    }
    .about-app-item-2 .row {
        flex-direction: column;
    }

    .about-app-text {
        width: 90%;
        padding: 0;
    }
    .about-app-item-1 .about-app-text {
        text-align: left;
    }

    .about-app-img-wrapper {
        max-width: 90%;
    }

    .about-app-bg {
        border-radius: 0;
        /* height: 106% */
        height: 92%;
        bottom: -3rem;
        top: auto;
    }

    .glide-feautures .glide__slide {
        height: auto;
    }

    .download .row {
        /* flex-wrap: wrap;
        align-items: flex-start; */
        /* flex-direction: column;
        justify-content: center; */
        display: block;
    }
    .download .col {
        max-width: 100%;
        display: block;
        /* width: 100%; */
    }
    .download .col:not(:last-child) {
        margin-bottom: 4rem;
    }
    .download-img-wrapper {
        display: block;
    }

    .features-main .mobil img,
    .category-main .mobil img,
    .home-main .mobil img {
        width: 100%;
    }

    .home-main .download::after {
        height: 70%;
    }

    /* mq-HowToPage */

    .line-wrapper {
        display: none;
    }

    .how-to-steps .row {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    .how-to-steps .row.how-to-item-1,
    .how-to-steps .row.how-to-item-3 {
        flex-direction: column-reverse;
    }
    .how-to-steps .col {
        width: 100%;
    }

    /* mq-ContactPage */

    .contact-info-container .row {
        flex-direction: column;
        align-items: flex-start;
    }

    /* mq-PricingPage */

    .package-feature-container {
        margin: 4rem 0;
    }

    .package-feature-container .col {
        width: 100%;
    }

    /* mq-BlogPage */

    .blog .card {
        margin: auto;
        margin-top: 1rem;
    }

    .blog-index .blog-container {
        flex-direction: column-reverse;
    }

    .blog-index .blog-sidebar {
        margin: auto;
        margin-top: 4rem;
        width: 100%;
    }
    .blog-index .blog-sidebar section {
        width: 100%;
    }

    /* mq-FeaturesPage */

    .features-exp-item-2 {
        flex-direction: column !important;
    }

    .features-exp-section .about-app-img-wrapper {
        margin-top: 1rem;
    }

    /* mq-ContactModal */

    /* .modal-container {
        height: 85vh;
        overflow-y: scroll;
    } */
}

@media screen and (max-width: 450px) {
    .package-name,
    .main h2 {
        font-size: 1.8rem;
    }

    /* mq-Hero */

    .category-main .hero-wrapper {
        border-radius: 2rem;
        margin-top: 0;
    }

    .hero-text {
        margin-bottom: 3rem;
    }

    .hero-text h1,
    .category-main .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p,
    .category-main .hero-text p {
        font-size: 1.4rem;
    }
    .call-to-action {
        font-size: 1rem;
    }
    .category-main .hero-text .call-to-action {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transform: translateY(50%);
        background-color: #ffffffeb;
    }
    .category-main .hero-text .call-to-action:hover {
        background-color: var(--color-4);
    }
    .category-main .hero-text {
        margin: 1.5rem 1rem 1rem 0;
    }

    /* mq-Homepage */

    .best-features-container .row {
        flex-wrap: wrap;
    }
    .best-features-container .col {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    .best-features-container h3 {
        margin-bottom: 0;
    }

    .reviews .column-reverse {
        flex-direction: column;
    }

    .reviews .glide .glide__slides {
        padding-top: 0;
    }

    /* mq-CategoryPage */

    .category-main .review-container {
        transform: none;
    }

    /* mq-SignUpPage */

    .input-group {
        flex-direction: column;
    }
    .input-group input {
        width: 100%;
    }

    /* mq-BlogPage */

    .blog-show h2 {
        font-size: 1.2rem;
    }

    /* mq-Instagram */

    .instagram-page .best-features-container .col {
        width: 100%;
    }

    /* mq-FeaturePage */

    .fw-call-to-action-container {
        padding: 2rem;
    }

    /* mq-Footer */

    .footer-contact-item {
        margin: 0;
    }
}

@media screen and (max-width: 385px) {
    .support-btn-container .oval-btn {
        width: 100%;
        text-align: center;
        margin: 0.2rem;
    }

    /* mq-homeModal */

    .homepage-info-modal .row {
        flex-direction: column;
    }
    .homepage-info-modal p {
        text-align: center;
    }
}

@media screen and (max-height: 830px) {
    /* mq-SupportModal */
    .support-modal .modal-container {
        height: 90%;
    }
    .support-modal .modal-body {
        overflow-y: scroll;
    }
    .support-modal .oval-btn {
        margin-bottom: 1.5rem;
    }
    .support-btn-container .oval-btn {
        margin: 0.2rem;
    }
}

/* iOS Safari only CSS */
@media not all and (min-resolution: 0.001dpcm) {
    @media {
        .text-gradient {
            font-size: 2.5rem;
            /* margin-left: 0.5rem;
        margin-right: 0.5rem; */
            background: none;
            background-clip: unset;
            text-fill-color: var(--color-4);
            -webkit-background-clip: unset;
            -webkit-text-fill-color: var(--color-4);
            color: var(--color-4);
        }

        .category-main .hero-text .call-to-action {
            position: relative;
            left: unset;
            right: unset;
            bottom: unset;
            margin: auto;
            transform: unset;
            background-color: unset;
        }
    }
}

.login-with-google-btn {
    transition: background-color 0.3s, box-shadow 0.3s;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-size: 20px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;
}
.login-with-google-btn:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
}
.login-with-google-btn:active {
    background-color: #eee;
}
.login-with-google-btn:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25), 0 0 0 3px #c8dafc;
}
.login-with-google-btn:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    cursor: not-allowed;
}

.login-with-apple-btn {
    transition: background-color 0.3s, box-shadow 0.3s;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-size: 20px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAACXklEQVR4nO3ZT4hNURzA8c8YjI1QkgzZkIX8S0ZS/pQ/+VNSipLIwkJZWhEWwkIhCzYWlGQhLCTKylr5v7CQxEwTwjCaGeXq1pl6vd575r1333vnar71W713zznfe86555zfYZS6WYLLeIZDcshs3EdSEIfljG3oK5JIY68csR1DJSTSmCcnzMGPMhKv0CYnPCojkcYBOaGrgsRTjJMTLpWR+I5FcsSLEhLpfFkpZwwVSTwOkz8a2sLithQLManM/9K3341b2IwxRb9PxeJQzly0axIrcBWfSwyZdBidDI0apngypyJrcAHvSpTRhyuhnobQibsVvkDF8RbnsBvrsAvn8aGKMu6FejMjfYNfqmhAlvEVW7OQ2IDBFkkkIdL6t9QjMR8/WyyRFCyeE2qRGIvnEQgk4dzSUWtv7I9AIMFZddAevjqtlnhYYt2piuURSAxlsQM4FoHITRlQfKZuRezIQuRlBCKdWYh8a7HE73on+TCDEYj4H3okwZQsRHoiEFmVhciTCEROZyFyPQKR3lo3iYUciUAkySInvD4CiQT99aaMOiqkOJsd7+vNDd+OQCIJ8SkkwWtiTwQCSYltfZp6qnp49UbQ+KQg/mBBLb1yKoLGJwVxR43MwkBEvdGlDs5EIJHgmjqZGHK3rZTowwwZsK/FIgdlSDV53yzjQdZ3jNNasL3vwXQNYFkTty79IS3VMDY24Sg8GC6FGs7qfwyz9BLoIjaFJFt6bJ0Z7g2P4k2FZ7uzOh2OlPSq7XhIHQ2Exqf5sJ0YP4Ln1+IGPuIXXuMEJjeh7aOMYoT8BfcegYzf+KxLAAAAAElFTkSuQmCC);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;
}
.login-with-apple-btn:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
}
.login-with-apple-btn:active {
    background-color: #eee;
}
.login-with-apple-btn:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25), 0 0 0 3px #c8dafc;
}
.login-with-apple-btn:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    cursor: not-allowed;
}