@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
body{
    font-family: "Inter", sans-serif;
}
.yellow{
    color: #005baa;
}
.header-area{
    width: 100%;
    border-bottom: 1px solid #ddd;
    position: fixed;
    left: 0;
    top: 0px;
    z-index: 9999;
    background: #fff;
}
.container{
    width: 90%;
    margin: 0 auto;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    width: 160px;
}
.logo img{
    width: 100%;
    margin-top: 6px;
}
.rent-nmbr-btn{
    background: #005baa;
    border: 1px solid #005baa;
    padding: 10px 20px;
    border-radius: 3px;
    color: white;
    transition: .5s;
    font-size: 15px;
}
.rent-nmbr-btn:hover{
    color: #000;
    background: transparent;
    cursor: pointer;
}
/* Hero area */
.hero-area{
    width: 100%;
    margin-top: 70px;
    min-height: 300px;
    position: relative;
    margin-bottom: 50px;
    z-index: 99;
}
.hero-area::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0,91,170);
background: linear-gradient(90deg, rgba(0,91,170,1) 0%, rgba(0,212,255,0) 100%);
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
}
.hero{
    display: flex;
    justify-content: start;
    align-items: center;
    height: 300px;
    background-image: url("/assets/images/hero-bg.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}
.hero h2{
    text-transform: capitalize;
    margin-bottom: 10px;
}
.hero p{
    padding: 10px 15px;
    background: gray;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 500;
}
.starting-price{
    background: yellow;
    color: #000;
    padding: 7px;
    border-radius: 3px;
    font-weight: bold;
}
.no-sms-no-charge{
    color: yellow !important;
}
.login-register-btn{
    display: flex;
    width: 420px;
    justify-content: start;
    align-items: center;
}
.login-btn, .register-btn, .telegram-btn{
    padding: 9px 15px;
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px;
    transition: .5s;
}
.login-btn{
    background: #005baa;
    border: 1px solid #005baa;
    color: #fff;
}
.register-btn{
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.telegram-btn{
    background: #005baa;
    border: 1px solid #005baa;
    color: #fff;
}
.telegram-btn svg{
    margin-bottom: -3px;
    margin-left: 5px;
}
.login-btn:hover, .register-btn:hover, .telegram-btn:hover{
    background: transparent;
    color: #000;
}

/* How to verify area */
.verify-area{
    margin-bottom: 50px;
}
.section-title-info{
    text-align: center;
    margin-bottom: 20px;
}
.section-title-info h3{
    text-transform: capitalize;
    margin-bottom: 15px;
    font-size: 24px;
}
.section-title-info p{
    width: 63%;
    margin: 0 auto;
    font: 18px;
    line-height: 28px;
}
.how-to-get-verify{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    column-gap: 50px;
}
.how-to-get-verify div{
    border: 1px solid #fff;
    padding: 40px 20px;
    border-radius: 5px;
    background: rgb(0,91,170);
    background: linear-gradient(90deg, rgba(0,91,170,1) 0%, rgba(67,200,245,1) 100%, rgba(0,212,255,1) 100%);
    color: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    font-size: 25px;
    color: yellow;
    font-weight: 500;
    overflow-y: hidden;
}
.how-to-get-verify span{
    position: absolute;
    left: 50%;
    top: 12%;
    font-size: 100px;
    color: #fff;
    margin-left: -20px;
    margin-top: -20px;
    z-index: -1;
    opacity: .2;
}
/* Secure Alert Area */
.secure-alert-area{
    width: 90%;
    margin: 0 auto;
    padding-bottom: 50px;
}
.secure-alert-area div{
    border: 1px solid #000;
    border-radius: 2px;
    padding: 10px;
}
.secure-alert-area h2{
    margin-bottom: 20px;
    font-size: 22px;
}
.secure-alert-area p{
    margin-bottom: 20px;
    line-height: 28px;
}
.sign-chat{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0,91,170);
    background: linear-gradient(90deg, rgba(0,91,170,1) 0%, rgba(0,212,255,0) 100%);
    padding: 30px !important;
    column-gap: 30px;
    border: none !important;
    margin-bottom: 20px;
}
/* About, Terms and Privacy page Style */
.about-area, .terms-n-conditons, .privacy-area{
    width: 100%;
    background: #ddd;
}
.about-info, .terms, .privacy-info{
    width: 90%;
    margin: 100px auto 40px;
}
.about-info h2, .terms h2, .privacy-info h2{
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.about-info p, .terms p, .privacy-info p{
    line-height: 26px;
    margin-bottom: 20px;
}
.terms h3, .privacy-info h3{
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.privacy-page-list{
    margin: 20px 0;
}
.privacy-page-list li{
    margin-bottom: 10px;
    padding-left: 20px;
}

/* Footer Area */
/* Footer Top */
.footer-top-area{
    width: 100%;
    padding: 30px 0;
    background: #2d2d2d;
}
.footer-top{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.social-links, .footer-menu ul, .payment-methods{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.social-links p{
    color: rgba(255, 255, 255, 0.3);
}
.social-links a{
    color: #fff;
}
.footer-menu ul li{
    list-style: none;
}
.footer-menu a{
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    text-decoration: none;
    font-size: 16px;
}
.payment-methods p{
    color: rgba(255, 255, 255, 0.3)
}
.payment-methods img{
    height: 25px;
}
/* Footer Bottom */
footer{
    width: 100%;
    padding: 20px 0;
    background: #000;
    color: #fff;
    text-align: center;
}
footer a{
    color: yellow;
    text-decoration: none;
}

/* Responsive Design */
/* Styles for mobile phones */
@media (max-width: 767px) {
    .container{width: 95%;}
    .logo { width: 185px; }
    .rent-nmbr-btn{
        margin-left: 10px;
    }
    .hero h2 {
        font-size: 22px;
        background: gray;
        padding: 10px;
        border-radius: 3px;
        color: #fff;
        display: inline-block;
      }
      .hero p{ font-size: 0.84rem; }
      .yellow{ color: yellow; }
      .login-btn, .register-btn, .telegram-btn{
        padding: 9px 13px;
      }
    .section-title-info{ padding: 0 20px; }
    .section-title-info h3{
        font-size: 22px;
        text-align: left;
    }
    .section-title-info p{
        width: 100%;
        text-align: left;
        line-height: 30px;
    }
    .how-to-get-verify{
        width: 100%;
    }
    .how-to-get-verify div{
        font-size: 20px;
        width: 90%;
        margin: 7px auto;
    }
    .how-to-get-verify div:last-child{
        grid-column: span 2 / span 2;
    }
    .sign-chat{
        flex-direction: column;
        padding: 15px 12px 25px !important;
        gap: 0;
    }
    .footer-top{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .footer-top div{
        border-bottom: 1px solid #4d4d4d;
        padding: 20px 0;
    }
}