/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / .header-con
4. Banner / .banner-con
5. Plans / .plans-con
6. Pricing / .pricing-con
7. Steps / .steps-con
8. Card / .card-box
9. Features / .features-con
10. Cta / .cta-con
11. Testimonials / .testimonials-con
12. Faq  / .faq-con
13. Info Section / .info-con
14. social media post / .social-media-post
15. Footer / .footer-con
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
# [Color codes]

# --primary--color: #b537f1;
# --secondary--color: #120152;
# --text-color: #9e94c5;
# --accent-color:#be3ef3;
# --white-color: #fff;
# --sky-blue-color: #3db8fc;
# --black-color: #000;
# --purple-color: #22125c;
# --dark-purple-color: #120152;
/*------------------------------------------------------------------
[Typography]
Body copy:     'Inter', sans-serif;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
a,
button
input{
	outline: none;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
body{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color);
    background: #080337;
    font-family: 'Inter', sans-serif;
}
:root{
    --primary--color: #b537f1;
    --secondary--color: #120152;
    --text-color: #9e94c5;
    --accent-color:#be3ef3;
    --white-color: #fff;
    --sky-blue-color: #3db8fc;
    --black-color: #000;
    --purple-color: #22125c;
    --dark-purple-color: #120152;
}
h1{
    font-size: 60px;
    font-weight: 800;
    line-height: 63px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h2{
    font-size: 50px;
    font-weight: 800;
    line-height: 60px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h3{
    font-size: 24px;
    font-weight: 800;
    line-height: 26px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h4{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Plus Jakarta Sans", sans-serif
}
h5{
    font-size: 18px;
}
h6{
    font-size: 16px;
}
p{
    font-size: 16px; 
}
.generic-btn a {
    font-size: 18px;
    line-height: 18px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    color: var(--white-color);
    padding: 20px 45px 20px 46px;
    background: var(--accent-color);
    box-shadow: 30px 30px 30px rgb(0 0 0 / 15%);
    border-top: 1px solid #fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dd57f6+0,601e9d+100 */
background: linear-gradient(to bottom,  rgba(221,87,246,1) 0%,rgba(96,30,157,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.generic-btn a:hover{
    transform: translateY(-5px);
}
.generic-btn a i{
    font-size: 14px;
}
.padding-bottom {
    padding-bottom: 140px;
}
.padding-top {
    padding-top: 140px;
}
.generic-title h2{
    margin-bottom:18px;
    color: var(--white-color);
}
.generic-title h2 span{
    color: var(--primary--color);
}
.generic-title > span{
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 80px;
    color: var(--primary--color);
}
/* HEADER SECTION */
.header-btn {
    gap: 10px;
    display: flex;
}
.header-con .navbar-expand-lg .navbar-nav{
    gap: 52px;
    margin-right: 28px;
}
.header-con .navbar-light .navbar-nav .nav-link{
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--white-color);
}
.header-con .navbar-light .navbar-nav .nav-link:hover{
    color: var(--accent-color);
}
.support-btn a:hover {
    transform: translateY(-5px);
}
.message-btn a i{
    width: 48px;
    height: 48px;
    display: flex;
    font-size: 16px;
    line-height: 16px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
    border-top: 1px solid #fff;
    background: linear-gradient(to bottom, rgba(91, 219, 253, 1) 0%, rgba(45, 136, 186, 1) 100%);
}
.message-btn a i:hover,
.orange-btn a:hover,
.submit-btn button:hover{
    transform: translateY(-5px);
}
.orange-btn a:hover i{
    color: var(--accent-color);
}
.message-btn a{
    text-decoration: none;
}
.support-btn a{
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    padding: 14px 25px 18px;
    color: var(--white-color);
    border-top: 1px solid #fff;
    background: linear-gradient(to bottom, rgba(221, 87, 246, 1) 0%, rgba(96, 30, 157, 1) 100%);
}
.support-btn a i{
    font-size: 14px;
}
.header-con {
    top: 20px;
    z-index: 999;
    position: absolute;
}
/* HEADER SECTION */
/* BANNER SECTION */
.banner-con{
    position: relative;
    padding: 238px 0 261px;
    background: url(../images/banner-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.sub-title{
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 17px;
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif
}
.banner-con *{
    color: var(--white-color);
}
.banner-con:after {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background: rgb(18 1 82 / 80%);
}
.banner-con .container{
    z-index: 1;
    position: relative;
}
.banner-title h1{
    margin-bottom: 28px;
    font-style: oblique;
    letter-spacing: 9.5px;
    text-transform: uppercase;
}
.gamer-text{
    font-size: 96px;
    line-height: 90px;
    letter-spacing: 15.5px;
    color: var(--primary--color);
}
.unite-text{
    font-size: 88px;
    line-height: 85px;
    letter-spacing: 15.5px;
}
.banner-title p{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 32px;
    font-family: "Montserrat", sans-serif;
}
.banner-img > figure{
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
}
.banner-img > figure img{
    width: 100%;
}
.banner-box {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 50% 48.7%;
}
.game-box{
    z-index: 1;
    top: -10px;
    left: -30px;
    width: 150px;
    height: 150px;
    display: flex;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #fff;
    background: linear-gradient(to bottom, rgba(91, 219, 253, 1) 0%, rgba(45, 136, 186, 1) 100%);
}
.game-box figure img{
    transition: all 0.4s ease-in-out;
}
.game-box:hover figure img{
    transform: translateY(5px);
}
.banner-img{
    position: relative;
}
.top-to-bottom-banner-btn a {
    gap: 7px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
    position: absolute;
    right: 44px;
    z-index: 3;
    text-decoration: none;
    transition: .3s ease-in-out;
    background: var(--white-color);
    box-shadow: 0 0 100px rgb(0 0 0 / 30%);
    bottom: 2px;
}
.top-to-bottom-banner-btn a span {
    font-size: 12px;
    line-height: 14px;
    color: var(--black-color);
}
.top-to-bottom-banner-btn a i {
    color: var(--primary--color);
    animation: key1 .5s ease-in-out infinite alternate;
}
@keyframes key1{
    0% {transform: translateY(0px);}
    100% {transform: translateY(-8px);}
}
.top-to-bottom-banner-btn a:hover{
    background: var(--secondary--color);
}
.top-to-bottom-banner-btn a:hover *{
    color: var(--white-color);
}
/* BANNER SECTION */
/* BACK TO TOP BUTTON */
#back-to-top-btn:focus{
    outline: none;
}
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 99;
    font-size: 18px;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    background: linear-gradient(to bottom, rgba(221, 87, 246, 1) 0%, rgba(96, 30, 157, 1) 100%);
}
#back-to-top-btn::after {    
    font-size: 18px;
    font-weight: 600;
    content: "\f062";
    line-height: 50px;
    color: var(--white-color);
    font-family: "Font Awesome 5 free";
}
@-webkit-keyframes spineer {
    from {
     box-shadow: 0 0 0 0 rgba(190, 62, 243, .99)
    }
     to {
      box-shadow: 0 0 0 45px rgba(190, 62, 243, .01)
     }
    }    
    @keyframes spineer {
    from {
     box-shadow: 0 0 0 0 rgba(190, 62, 243, .99)
    }
    to {
     box-shadow: 0 0 0 45px rgba(190, 62, 243, .01)
    }
}
/* BACK TO TOP BUTTON */
/* LOADER SECTION */
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    background-color: var;
}
.loader {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    position: absolute;
    text-indent: -9999em;
    display: inline-block;
    margin: -25px 0 0 -25px;
    color:var(--primary--color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    position: fixed;
    background-color: #fff;
}
.lead{
  font-size:13px;
}
.loader div {
    top: 0;
    left: 0;
    opacity: .5;
    float: none;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    background-color:var(--accent-color);
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}
.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* LOADER SECTION */
/* FOOTER SECTION */
.footer-con{
    padding-top: 70px;
    padding-bottom: 130px;
    background: var(--purple-color);
}
.footer-box {
    gap: 16px;
    display: grid;
    grid-template-columns: 32.7% 15.8% 24.1% 22.1%;
}
.footer-logo a{
    margin-bottom: 30px;
    display: inline-block;
}
.footer-logo-con p {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 18px;
    padding-right: 17px;
}
.footer-box h4{
    padding-top: 7px;
    margin-bottom: 22px;
    color: var(--white-color);
}
.social-icon ul{
    gap: 10px;
    display: flex;
}
.social-icon ul li a i{
    width: 46px;
    height: 46px;
    display: flex;
    font-size: 18px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
    background: #9d93c4;
}
.social-icon ul li a i:hover{
    transform: translateY(-5px);
    color: var(--white-color);
    background: linear-gradient(to bottom, rgba(221, 87, 246, 1) 0%, rgba(96, 30, 157, 1) 100%);
}
.social-icon ul li a{
    margin-bottom: 0;
    text-decoration: none;
}
.footer-link ul li a{
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
}
.footer-link ul li:after{
    top: 0;
    left: 0;
    font-weight: 600;
    content: "\f105";
    font-size: 16px;
    color: var(--primary--color);
    font-family: "Font Awesome 5 free";
    position: absolute;
}
.footer-link ul li a:hover,
.footer-contact ul li a:hover{
    color: var(--primary--color);
}
.footer-link ul li{
    margin-bottom: 12px;
    padding-left: 20px;
}
.footer-link ul li:last-child{
    margin-bottom: 0;
}
.footer-contact ul li i{
    font-size: 16px;
    color: var(--primary--color);
}
.footer-contact ul li i.fa-phone-alt{
    transform: rotate(270deg);
}
.footer-contact ul li{
    padding-left: 31px;
}
.footer-contact ul li{
    margin-bottom: 23px;
}
.footer-contact ul li a,
.footer-contact ul li{
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    color: var(--text-color);    
}
.footer-contact ul li{
    position: relative;
}
.footer-contact ul li i{
    top: 0;
    left: 0;    
    position: absolute;
}
.footer-contact ul li:last-child{
    margin-bottom: 0;
    line-height: 28px;
}
.footer-contact ul li:last-child i{
    top: 9px;
}
.copyright-txt{
    padding: 28px 0;
    text-align: center;
}
/* FOOTER SECTION */