﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: 'Karla', sans-serif; /*  font-family: 'Inter', sans-serif;    /*  font-family: 'Poppins', sans-serif;  */
    */ overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
}

button:focus {
    border: none;
    outline: none;
}

:root {
    --orange: #ff9800;
}

.orange {
    color: var(--orange);
}

.orange-bg {
    background-color: var(--orange);
}

a, a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.short-btn {
    display: inline-block;
    padding: 6px 20px;
    color: #fff;
    border-radius: .35rem;
    font-weight: 600; /* text-transform: uppercase; */
    transition: 0.3s;
    border: 1px solid transparent;
    font-size: 1.25rem;
}

.orange-button {
    background-color: var(--orange);
}

.border-button {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

    .border-button:hover {
        background-color: #000;
        color: #fff;
    }

.short-btn:hover, .short-btn:focus {
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.short-btn:hover {
    transform: translateY(-1px);
}

.short-btn:active {
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

/*Navbar Css*/
.navbar-nav .nav-link {
    color: var(--black);
    font-weight: 500;
    margin: 0rem 0.5rem;
}

/*Main-Banner Css*/
.main-banner {
    position: relative;
}

.banner-text {
}

    .banner-text h1 {
        line-height: 1.5;
    }

.tr-cursor {
    border-left: 5px solid #000;
}

.banner-text ul {
}

    .banner-text ul li {
        list-style-type: square;
        font-weight: 600;
        font-size: 1.15rem;
    }

/*.main-banner:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient( var(--orange), #ffc107);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0 100%);
  z-index: -1;
}*/
.banner-img {
    position: relative;
}

    .banner-img:before {
        content: '';
        position: absolute;
        top: 0;
        left: -40px;
        width: 80px;
        height: 80px;
        background: url('../images/star.svg');
        background-size: cover;
    }

.url-shortener {
    background-image: url('../images/link.svg');
    background-position: 9% 0%;
    background-repeat: no-repeat;
    background-size: 4%;
    padding: 50px 0px;
}

    .url-shortener .shortent-box {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

.shortent-box input {
    padding: 1rem;
}

.shortent-box .input-group-text {
    background-color: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
}

    .shortent-box .input-group-text:hover {
        opacity: .9;
    }

.form-control:focus {
    border-color: var(--orange);
    box-shadow: none;
}

#shorten-data {
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin-top: 20px;
}

    #shorten-data ul {
        margin-bottom: 0px;
        padding-left: 0px;
    }

        #shorten-data ul li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0px;
            font-size: 18px;
            margin-bottom: 5px;
            border-bottom: 1px solid rgba(0, 0, 0, .1);
        }

            #shorten-data ul li span .short-link {
                padding-right: 20px;
            }

            #shorten-data ul li.promo-customize {
                background: lemonchiffon;
                border-radius: .25rem;
                padding: 15px 10px;
                border: 0;
            }

.features-wrapper {
    background-image: url(../images/link.svg);
    background-position: 95% 0%;
    background-repeat: no-repeat;
    background-size: 4%;
}

.feature-box {
    border-radius: 10px;
    box-shadow: rgb(149 157 165 / 15%) 0px 8px 24px;
    padding: 15px;
    margin-bottom: 30px;
    transition: 0.3s;
}

    .feature-box:hover {
        box-shadow: none;
    }

.feature-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ff98001a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-img img {
        object-fit: cover;
    }

.feature-box p {
    margin-bottom: 0px;
}

footer {
    background-color: currentColor;
}

.ftr-box {
    color: #fff;
    display: flex;
    align-items: center;
    margin: 15px auto;
}

    .ftr-box svg {
        margin-right: 10px;
        font-size: 18px;
    }

    .ftr-box p, .ftr-box p a {
        font-size: .9rem;
        color: inherit;
        margin-bottom: 0px;
    }

.ftr-social, .ftr-links {
    margin: 15px auto;
}

    .ftr-social a, .ftr-links a {
        display: inline-block;
        color: #fff;
        margin-right: 10px;
        font-size: 16px;
    }

.copyright p, .powered-by p {
    color: rgba(255, 255, 255, 0.4);
    font-size: .9rem;
    margin: 15px auto 10px;
}

.powered-by p, .ftr-social {
    text-align: right;
}

    .powered-by p a {
        color: rgba(255, 255, 255, 0.2);
    }

/*Contact Page Css*/
.contact-box {
    display: flex;
    align-items: center;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-radius: .25rem;
    padding: 1rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--orange);
    border-radius: 50%;
    margin-right: 15px;
}

    .contact-icon svg {
        font-size: 40px;
        color: var(--orange);
    }

.contact-details {
}

    .contact-details p {
    }

    .contact-details h4 {
        margin-bottom: 0rem;
        font-weight: 700;
    }

        .contact-details h4 a {
            color: inherit;
        }

/*Login-Signup Page Css*/
.login-signup-wrapper {
    position: relative;
    /* height: 80vh; */
    padding-top: 80px;
}

    .login-signup-wrapper:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 600px;
        background-image: linear-gradient(var(--orange), #ffffff);
        clip-path: polygon(0 0, 100% 0, 100% 35%, 0 65%);
        z-index: -1;
    }

    .login-signup-wrapper .container {
        background-color: #fff;
        border-radius: 20px;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    }

@media screen and (max-width:991px) {
    #shorten-data ul li {
        display: block;
    }

        #shorten-data ul li span {
            display: block;
        }

        #shorten-data ul li.promo-customize {
            text-align: center;
        }
}

@media screen and (max-width:767px) {
    .url-shortener {
        background: #fff;
        padding: 0px;
    }

    .features-wrapper {
        background: #fff;
    }

    .ftr-social, .ftr-links, .copyright p, .powered-by p {
        text-align: center;
    }
}

@media screen and (max-width:575px) {
    .banner-img {
        margin-top: 30px;
    }

    .shortent-box input {
        border-radius: 0.5rem !important;
    }

    .shortent-box .input-group-text {
        width: 100%;
        border-radius: 0.5rem !important;
        text-align: center;
        justify-content: center;
        margin-top: 10px;
        padding: 0.75rem 0.75rem;
    }

    .login-signup-wrapper {
        padding-top: 30px;
    }
}

.terms-list li {
    list-style-type: square;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.privay-list li {
    list-style-type: upper-alpha;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/*Login-Signup Page Css*/
.Pricing_wrapper {
    position: relative;
    /* height: 80vh; */
    padding-top: 80px;
}

    .Pricing_wrapper:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-image: linear-gradient(var(--orange), #ffffff);
        clip-path: polygon(0 0, 100% 0, 100% 35%, 0 65%);
        z-index: -1;
    }

    .Pricing_wrapper .container {
        background-color: #fff;
        border-radius: 20px;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    }
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-card {
    border: none;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card .card-header {
        font-weight: bold;
        background-color: transparent;
        border: none;
        padding: 10px 1rem 0;
    }

.free {
    font-size: 32px;
    color: #007bff;
    font-weight: 700;
}

.basic {
    font-size: 32px;
    color: #a200ff;
    font-weight: 700;
}

.standard {
    color: #f59e0b;
    font-size: 32px;
    font-weight: 700;
}

.professional {
    color: #ff004c;
    font-size: 32px;
    font-weight: 700;
}

.enterprise {
    color: #00adff;
    font-size: 32px;
    font-weight: 700;
}

.comarison_price .free {
    font-size: 18px;
    list-style: unset !important;
    color: #007bff;
    font-weight: 700;
}

.comarison_price .basic {
    font-size: 18px;
    list-style: unset !important;
    color: #a200ff;
    font-weight: 700;
}

.comarison_price .standard {
    color: #f59e0b;
    font-size: 18px;
    list-style: unset !important;
    font-weight: 700;
}

.comarison_price .professional {
    color: #ff004c;
    font-size: 18px;
    list-style: unset !important;
    font-weight: 700;
}

.comarison_price .enterprise {
    color: #00adff;
    font-size: 18px;
    list-style: unset !important;
    font-weight: 700;
}

.pricing-card .card-body {
    padding: 1rem;
}

.pricing-card .list-group-item {
    border: none;
    text-align: left;
}

.btn-custom {
    font-weight: bold;
    padding: 0.5rem 2rem;
    width: 100%;
    margin: 8px 0;
    border: 0;
}

.card-title span {
    font-size: 16px;
}

.price_content .col-lg-4:nth-child(1) .pricing-card {
    background: linear-gradient(#d4e9ff, #ffffff00);
}

.price_content .col-lg-4:nth-child(2) .pricing-card {
    background: linear-gradient(#ecd4ff, #ffffff00);
}

    .price_content .col-lg-4:nth-child(2) .pricing-card .btn-custom {
        background: #a200ff;
    }

.price_content .col-lg-4:nth-child(3) .pricing-card {
    background: linear-gradient(#ffe5d4, #ffffff00);
}

    .price_content .col-lg-4:nth-child(3) .pricing-card .btn-custom {
        background: #ffae00;
    }

.price_content .col-lg-6:nth-child(4) .pricing-card {
    background: linear-gradient(#ffd4e4, #ffffff00);
}

    .price_content .col-lg-6:nth-child(4) .pricing-card .btn-custom {
        background: #ff004c;
    }

.price_content .col-lg-6:nth-child(5) .pricing-card {
    background: linear-gradient(#d4f3ff, #ffffff00);
}

    .price_content .col-lg-6:nth-child(5) .pricing-card .btn-custom {
        background: #00adff;
    }

.price_content .list-group .list-group-item {
    background-color: transparent;
    padding: 0;
    margin-bottom: 5px;
    font-size: 15px;
}

.price_content .month {
    color: #555;
    font-size: 14px;
}

.price_content p {
    font-size: 17px;
}

.switch_money {
    width: 200px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 0 10px 0px #e9e9e9;
    padding: 10px 0px;
    border-radius: 30px;
    overflow: hidden;
}

    .switch_money::after {
        content: '';
        background-color: #f59e0b;
        border-radius: 30px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100%;
        transition: .3s all ease;
    }

    .switch_money.slide::after {
        transform: translateX(100%);
    }

    .switch_money .inr,
    .switch_money .usd {
        width: 100px;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        color: #000;
        font-weight: 500;
        z-index: 5;
        position: relative;
    }

.table_head {
    font-size: 24px;
    text-align: center;
    padding: 20px;
}

.comarison_price ul {
    margin: 0;
}

.comarison_price td, .comarison_price th {
    padding: 20px 10px;
}