/* Universal CSS start */

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul, li {
    list-style-type: none;
}

:root {
    --primary-color: ;
    --secondary-color: ;
    --white: #FFF;
    --black: #000;
    --font-black: #383738;
    --bg: #f9f9f9;
    --bg-second: #ececec;
    --third-bg: #f7f5f1;
    --gray: #6d6d6d;
    --light-gray: #bebebe;
    --border-color: #F2F2F2;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 30px;
    line-height: 40px;
}

::selection {
    background: var(--font-black);
    color: var(--white)
}

/* Universal CSS end */

/* Navbar section CSS start */

.nav {
    padding: 25px 50px;
}

.nav .logo a {
    font-weight: 900;
    font-size: 25px;
    line-height: 25px;
    color: var(--font-black);
}

.nav .nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-items ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    margin-bottom: 0;
}

.nav-items li, .nav-btn {
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
}

.nav-btn::before {
    width: 0;
    content: '';
    height: 1px;
    background: var(--font-black);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.nav-btn:hover::before {
    width: 100%;
}

.nav-items li:first-child {
    margin-left: 40px;
}

.nav-items li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--font-black);
}

.nav .login {
    margin-right: 25px;
}

.nav .login a {
    font-size: 14px;
    color: var(--font-black);
}

.nav .signup a {
    padding: 12px 35px;
    background: var(--font-black);
    color: var(--white);
    border: 1px solid var(--font-black);
    font-size: 14px;
    line-height: 14px;
    transition: .4s;
    display: inline-block;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.nav .signup a:hover {
    background: none;
    color: var(--font-black);
}

.second-nav {
    position: fixed;
    background: var(--white);
    visibility: hidden;
    z-index: 99;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .05);
    top: 0;
    left: 0;
    width: 100%;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.nav-toggler {
    background: none;
    border: none;
}

.nav-toggler .bar {
    width: 28px;
    height: 3px;
    background: var(--font-black);
    display: block;
    transform-origin: right;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.nav-toggler .bar2 {
    margin-top: 7px;
    margin-bottom: 7px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.nav-toggler.active .bar2 {
    opacity: 0;
}

.nav-toggler.active .bar1 {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.nav-toggler.active .bar3 {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.first-nav {
    background: var(--bg-second);
}

.mobile-nav-main {
    background: var(--white);
    width: 100%;
    padding: 10px 15px;
    margin-top: 15px;
}

.mobile-nav-main li a {
    padding: 10px ;
    display: inline-block;
    color: var(--font-black);
    font-size: 14px;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.mobile-nav-main li a:hover {
    background: var(--light-gray);
}

.first-mobile-nav, .second-mobile-nav {
    width: 100%;
}

/* Navbar section CSS end */
/* Hero/Banner section CSS start */

#banner {
    background: var(--bg-second);
    padding-top: 80px;
    padding-bottom: 100px;
}

#banner h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    color: var(--font-black);
}

.banner-sub-title {
    font-size: 14px;
    color: var(--gray);
}

.get-started-btn {
    padding: 15px 35px;
    border: 1px solid var(--font-black);
    background: transparent;
    color: var(--font-black);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    display: inline-block;
    margin-top: 50px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.get-started-btn:hover {
    background: var(--font-black);
    color: var(--white);
}

#banner .small-text {
    font-size: 11px;
    line-height: 11px;
    color: var(--light-gray);
    margin-top: 5px;
}

/* Hero/Banner section CSS end */
/* shortUrl section CSS start */

#shortUrl {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--third-bg);
}

#shortUrl .container {
    position: relative;
}

#shortUrl .icon {
    position: absolute;
}

#shortUrl .icon.one {
    right: 50px;
    bottom: 0px;
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
}

#shortUrl .icon.two {
    left: 50px;
    top: 0px;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
}

#shortUrl .icon img {
    width: 100px;
    opacity: .8;
}

h2 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 600;
    color: var(--font-black);
    text-align: center;
}

#shortUrl {
    font-size: 15px;
    line-height: 20px;
    color: var(--gray);
    text-align: center;

}

#shortUrl .url-input-parent {
    border: 1px solid var(--light-gray);
    padding: 5px;
    display: flex;
    width: 100%;
    margin-top: 30px;
    background: var(--third-bg);
}

#shortUrl .url-input-parent input {
    background: none;
    color: var(--font-black);
    padding: 10px;
    font-size: 15px;
    line-height: 15px;
    border: none;
    width: 100%;
}

#shortUrl .url-input-parent button {
    position: relative;
    display: inline-block;
    background: var(--font-black);
    border: 1px solid var(--font-black);
    color: var(--white);
    fill: var(--white);
    height: 100%;
    padding: 12px 35px;
}

#shortUrl .url-input-parent button svg {
    display: inline-block;
    position: relative;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#shortUrl .url-input-parent button:hover svg {
    transform: translate(3px, -3px);
    -webkit-transform: translate(3px, -3px);
    -moz-transform: translate(3px, -3px);
    -ms-transform: translate(3px, -3px);
    -o-transform: translate(3px, -3px);
}

/* shortUrl section CSS end */
/* partners section CSS start */

#partners {
    background: var(--bg-second);
    padding-top: 100px;
    padding-bottom: 100px;
}

#partners .container {
    position: relative;
    z-index: 1;
}

#partners .icon {
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: -1;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
}

#partners .icon img {
    width: 70px;
}

h3 {
    font-size: 50px;
    font-weight: 600;
    color: var(--font-black);
    text-align: center;
}

.partners-image {
    margin-top: 40px;
}

.partners-image ul {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-image ul li {
    margin-right: 40px;
}

.partners-image ul li:last-child {
    margin-right: 0;
}

/* partners section CSS end */
/* features section CSS start */

#features {
    padding-top: 70px;
    padding-bottom: 100px;
    background: var(--bg-second);
}

#features h2 {
    text-align: left;
}

#features p {
    font-size: 14px;
    color: var(--gray);
    margin-top: 20px;
    font-weight: 300;
    line-height: 25px;
}

#features .apps {
    margin-top: 70px;
}

#features .apps ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
}

#features .apps ul li:not(#features .apps ul li:last-child) {
    margin-right: 15px;
}

#features .apps ul a {
    width: 60px;
    height: 60px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
}

#features .apps ul li img {
    width: 35px;
}

#features .get-started-btn {
    margin-top: 15px;
}


/* features section CSS end */
/* features section CSS start */

#our-status {
    background: var(--third-bg);
    padding-top: 100px;
    padding-bottom: 100px;
}

#our-status .head {
    font-size: 130px;
    line-height: 130px;
    color: var(--font-black);
    font-weight: 700;
}

#our-status .subTitle {
    font-size: 12px;
    color: var(--gray);
    margin-top: 10px;
}

#our-status .status-description {
    font-size: 17px;
    color: var(--font-black);
    line-height: 28px;

}

/* features section CSS end */
/* review section CSS start */

#review {
    background: var(--bg-second);
    padding-top: 100px;
    padding-bottom: 100px;
}

.review-main {
    padding: 70px;
    background: var(--third-bg);
}

.review-item p {
    font-size: 30px;
    line-height: 45px;
    font-weight: 500;
    color: var(--font-black);
}

#review .company-name {
    font-size: 12px;
    color: var(--font-black);
}

/* review section CSS end */
/* contact section CSS end */

#contact {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--bg-second);
}

#contact .container {
    position: relative;
    z-index: 1;
}

#contact .icon {
    position: absolute;
    z-index: -1;
    opacity: .5;
}

#contact .icon.one {
    top: -50px;
    left: 0px;
}

#contact h2 {
    text-align: left;
}

#contact .subtitle-one {
    color: var(--gray);
    font-size: 14px;
    line-height: 20px;
}

#contact .subtitle-two {
    color: var(--font-black);
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    margin-top: 50px;
}

#contact .action-btn {
    margin-top: 20px;
}

#contact .action-btn a {
    padding: 15px 35px;
    border: 1px solid var(--font-black);
    display: inline-block;
    margin-right: 15px;
    color: var(--font-black);
    font-size: 14px;
    line-height: 14px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#contact .action-btn a:hover {
    background: var(--font-black);
    color: var(--white);
}

#contact .action-btn a.hoverd {
    background: var(--font-black);
    color: var(--white);
}

#contact .action-btn a.hoverd:hover {
    background: none;
    color: var(--font-black);
}

/* contact section CSS end */
/* faq section CSS start */

#faq {
    background: var(--third-bg);
    padding-top: 100px;
    padding-bottom: 100px;
}

#faq .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 15px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

#faq .accordion .accordion-button {
    box-shadow: none;
    background: var(--white);
    border: none;
    padding: 25px;
    color: var(--font-black);
}

#faq .accordion-button::after {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq .accordion-body {
    font-size: 13px;
    line-height: 22px;
    color: var(--gray);
}

#faq .container {
    position: relative;
    z-index: 1;
}

#faq .icon {
    position: absolute;
    z-index: -1;
    opacity: .5;
}

#faq .icon.one {
    right: 30px;
    bottom: 20%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

/* faq section CSS end */
/* payout rate section CSS start */

#payout {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--bg-second);
}

#payout p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

#payout .sign-up a {
    background: var(--font-black);
    color: var(--white);
}

#payout .sign-up a:hover {
    background: none;
    color: var(--font-black);
}

#payout .container {
    position: relative;
    z-index: 1;
}

#payout .icon {
    position: absolute;
    z-index: -1;
    opacity: .5;
}

#payout .icon.one {
    left: 100px;
    bottom: 20%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

/* payout rate section CSS end */
/* footer section CSS start */

#footer {
    background: #242424;
    padding-top: 70px;
}

#footer .logo {
    font-size: 25px;
    line-height: 25px;
    color: var(--white);
    font-weight: 700;
}

#footer h6 {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 30px;
}

.footer-links ul {
    padding-left: 0;
}

.footer-links ul li a {
    font-size: 14px;
    color: var(--bg-second);
    line-height: 14px;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.footer-links ul li a::before {
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: .4s;
    content: '';
    display: inline-block;
    position: absolute;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.footer-links ul li a:hover::before {
    width: 100%;
}

#footer .line {
    width: 100%;
    height: 1px;
    background: var(--font-black);
    margin-top: 30px;
}

#footer .copyright {
    color: var(--white);
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* footer section CSS end */


/*============================ Sign Up Page CSS start =====================================*/

#sign-up, #sign-in {
    background: var(--bg-second);
    padding-top: 100px;
    padding-bottom: 100px;
}

#sign-up .parent, #sign-in .parent {
    background: var(--third-bg);
    padding: 70px;
}

#sign-up h1, #sign-in h1 {
    color: var(--font-black);
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

#sign-up .form-subline, #sign-in .form-subline {
    color: var(--gray);
    margin-top: 10px;
    margin-bottom: 50px;
}

#sign-up form input, #sign-in form input {
    border: none;
    border: 1px solid var(--light-gray);
    background: none;
    color: var(--font-black);
    padding: 15px 10px;
    margin-bottom: 15px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#sign-up form input:focus, #sign-in form input:focus {
    border-color: var(--font-black);
}

#sign-up form .agreement input {
    margin-bottom: 0;
}

#sign-up form label[for="agreement"] {
    color: var(--font-black);
    font-size: 14px;
    line-height: 20px;
    padding-left: 10px;
}

#sign-up form label[for="agreement"] a {
    color: var(--font-black);
    font-weight: 700;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#sign-up form label[for="agreement"] a:hover {
    color: var(--black);
}

#sign-up form button[type="submit"], #sign-in form button[type="submit"] {
    padding: 15px 35px;
    background: var(--font-black);
    color: var(--white);
    border: 1px solid var(--font-black);
    border-radius: 0;
    font-size: 14px;
    line-height: 14px;
    transition: .4s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#sign-up form button[type="submit"]:hover, #sign-in form button[type="submit"]:hover {
    background: none;
    color: var(--font-black);
}

.agreement label {
    display: block;
    position: relative;
    padding-left: 30px !important;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.agreement input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.agreement label:hover input ~ .check-mark {
    background-color: #ccc;
}

.agreement label input:checked ~ .check-mark {
    background-color: var(--font-black);
}

.check-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.agreement label input:checked ~ .check-mark:after {
    display: block;
}

.agreement .check-mark:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#sign-up .notes a, #sign-in .notes a {
    color: var(--font-black);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: .4s;
    display: inline-block;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#sign-up .notes a:hover, #sign-in .notes a:hover {
    color: var(--black);
}
  

/*============================ Sign Up Page CSS end =====================================*/
/*============================ Payout Rates Page CSS start =====================================*/

#payoutrates {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--bg-second);
}

#payoutrates h1 {
    font-size: 45px;
    line-height: 55px;
    color: var(--font-black);
    text-align: center;
}

#payoutrates h5 {
    font-size: 16px;
    line-height: 25px;
    color: var(--gray);
    font-weight: 400;
    text-align: center;
}

#payoutrates p {
    color: var(--gray);
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin-top: 30px;
}

#payoutrates table {
    width: 100%;
    margin-top: 70px;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

#payoutrates table .country {
    width: 70%;
}

#payoutrates table .rate {
    width: 30%;
}

#payoutrates table th, #payoutrates table td {
    padding: 20px 20px;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    font-size: 14px;
    line-height: 14px;
    color: var(--font-black);
}

#payoutrates tr:hover {
    background: #fafafa;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#start-earning {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--third-bg);
}

#start-earning p {
    font-size: 14px;
    color: var(--gray);
    line-height: 20px;
}

/*============================ Payout Rates Page CSS end =====================================*/
/*============================ faq Page CSS start =====================================*/

#faq.faq-second {
    background: var(--bg-second) !important;
}

/*============================ faq Page CSS end =====================================*/
/*============================ tos Page CSS start =====================================*/

#tos, #privacy {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--bg-second);
}

#tos .content-items, #privacy .content-items {
    padding: 25px 20px;
    border: 1px solid var(--border-color);
    background: hsla(0,0%,77%,.1);
    position: sticky;
    top: 100px;
}

#tos .content-items li, #privacy .content-items li {
    margin-bottom: 5px;
}

#tos .content-items li a, #privacy .content-items li a {
    font-size: 13px;
    line-height: 18px;
    color: var(--gray);
    display: inline-block;
    position: relative;
}

#tos .content-items li a::after, #privacy .content-items li a::after {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gray);
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#tos .content-items li a:hover::after, #privacy .content-items li a:hover::after {
    width: 100%;
}

#header {
    padding-top: 70px;
    padding-bottom: 70px;
    background: var(--third-bg);
}

#tos h5, #privacy h5 {
    padding-top: 40px;
    padding-bottom: 20px;
}

#tos .tos-content, #privacy .privacy-content {
    font-size: 14px;
    color: var(--gray);
    line-height: 25px;
}

#tos ol li, #privacy ol li {
    list-style: decimal;
}

/*============================ tos Page CSS end =====================================*/













#cookie-pop {
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.7);
    width: 100%;
    color: #fff;
    padding: 20px;
    text-align: center;
}

#got-cookie {
    background: var;
    padding: 12px 35px;
    background: var(--font-black);
    color: var(--white);
    border: 1px solid var(--font-black);
    font-size: 14px;
    line-height: 14px;
    border-radius: 0;
    transition: .4s;
    box-shadow: none !important;
    display: inline-block;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#cookie-pop .contentcookie {
    color: #FFF;
    text-decoration: underline;
}