body{
    font-family: "Manrope", serif;
    background: #080808;
    color: #9E9EA3;
}

a{
    text-decoration: none;
    color: #fff;
}

.btn:focus, button:focus, .form-control:focus, .form-select:focus{
    box-shadow: none;
    outline: none;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Oxanium", serif;
    margin: 0;
    color: #fff;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

p{
    margin: 0;
}

.bg-cover{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.header{
    padding: 24px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    background-color:transparent;
}

.header.header-scrolled{
    padding: 20px 0px;
    position: fixed;
    background-color:#080808;
}

.header-nav .nav{
    align-items: center;
}

.header-nav .nav-item{
    display: inline-block;
    position: relative;
}

.header-nav .nav-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.dropdown{
    background-color: #1B1B30;
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #222239;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.has-dropdown:hover .dropdown{
    opacity: 1;
    visibility: visible;
    margin-top: 6px;
}

.dropdown li a{
    border-bottom: 1px solid #222239;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.dropdown li a:hover, .dropdown li.active a{
    color: #9E93F1;
    background-color: #343445;
}

.dropdown li:last-child a{
    border-bottom: none;
}

.header-nav .nav-item.active .nav-link, .header-nav .nav-item:hover .nav-link{
    background-color: #1B1B30;
    color: #9E93F1;
}


.header-nav .nav-link svg{
    fill: #fff;
    transition: all 0.3s ease-in-out;
}

.header-nav .nav-item.active .nav-link svg, .header-nav .nav-item:hover .nav-link svg{
    fill: #9E93F1;
}

.has-dropdown:hover .nav-link svg{
    transform: rotate(180deg);
}

.create-btn{
    position: relative;
    overflow: hidden;
    padding: 6px;
    border: 1px solid #3E543FCC;
    border-radius: 8px;
}

.create-btn .btn-text{
    display: inline-block;
    padding: 10px 20px;
    color: #080808;
    border-radius: 8px;
    background-color: #B9F884;
    font-weight: 700;
    transition: 0.5s;
}

.create-btn .btn-b{
    position: absolute;
    display: block;
}

.create-btn .btn-b:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #B9F884);
    animation: btn-anim1 1s linear infinite;
}
@keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,
    100% {
      left: 100%;
    }
}

.create-btn .btn-b:nth-child(2) {
    top: -100%;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #B9F884);
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,
    100% {
      top: 100%;
    }
}

.create-btn .btn-b:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, transparent, #B9F884);
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}
@keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,
    100% {
      right: 100%;
    }
}

.create-btn .btn-b:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #B9F884);
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,
    100% {
      bottom: 100%;
    }
}

.banner-content .text-label{
    border:1px solid #343445;
    padding: 12px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #CDCDCF;
    margin-bottom: 20px;
}

.banner-content .text-label .dot{
    width: 14px;
    height: 14px;
    background-color: #C11699;
    display:inline-block ;
    border-radius: 100%;
}

.banner-content h1{
    font-size: 72px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 113.06%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 32px;
}

.banner-content p{
    font-size: 18px;
    color: #CDCDCF;
    margin-bottom: 32px;
    line-height: 28px;
}

.banner-content h3 {
    margin-bottom: 20px;
}

.banner-content h3 span{
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(115.46deg, #8F9AFF 0.18%, #5624D8 98.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content h3 sup{
    top: auto;
    bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #9E9EA3;
}

.countdown{
    margin-bottom: 32px;
}

.countdown ul li{
    display: inline-flex;
    text-align: center;
    flex-direction: column;
    background-color: #1B1B30;
    border-radius: 8px;
    padding: 10px;
    width: 80px;
    margin-right: 8px;
}

.countdown ul li span{
    font-size: 20px;
    font-family: "Oxanium", serif;
    font-weight: 700;
    color: #fff;
}

.banner-sec{
    padding: 180px 0px 40px;
    background: linear-gradient(225.99deg, rgba(7, 4, 27, 0) 24.69%, #00001C 79.9%);
}

.main-btn{
    font-family: "Oxanium", serif;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    background-color: #B9F884;
    color: #000;
    font-size: 20px;
    border: none;
}

.main-btn.purple{
    background: linear-gradient(115.46deg, #8F9AFF 0.18%, #5624D8 98.53%);
    color: #fff !important;
}

.outline-btn{ 
    font-size: 16px;
    color: #CDCDCF;
}

.section-pad{
    padding: 132px 0px;
}

.section-header{
    margin-bottom: 56px;
    position: relative;
}

.section-label{
    border: 1px solid #343445;
    padding: 8px 16px;
    font-size: 16px;
    color: #CDCDCF;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 10px;
}

.section-header h3{
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p{
    font-size: 18px;
    font-weight: 500;
    width: 40%;
    margin: 0px auto;
}

.game-server-feature img{
    margin-bottom: 32px;
}

.game-server-feature h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.game-server-feature p{
    color: #9E9EA3;
    font-size: 18px;
    font-weight: 500;
}

.gaming-server-area{
    padding: 120px 100px;
}

.gaming-server-area .section-header p{
    width: 100%;
    margin-bottom: 48px;
}

.testimonial, .news-slider {
    padding-bottom: 56px;
}

.testimonial-box{
    padding: 24px 28px;
    border-radius: 16px;
}

.rating-icons{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.banner-rating .rating-icons{
    margin-bottom: 0px;
}

.testimonial-box p{
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 32px;
}

.user-info{
    display: flex;
    align-items: center;
    gap:16px;
}

.user-info img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
    object-position: 50% top;
}

.user-info h4{
    font-size: 16px;
}

.swiper-container-horizontal > .swiper-pagination-bullets{
    bottom: 0px;
}

.swiper-pagination-bullet{
    background-color: #222428;
    opacity: 1;
}

.swiper-pagination-bullet-active{
    background-color: #9E93F1;
}

.gaming-box{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.gaming-box-outer{
    border-radius: 16px;
    padding: 3px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.gaming-box-outer:hover{
    transition: all 0.3s ease-in-out;
    background: linear-gradient(115.46deg, #8F9AFF 0.18%, #5624D8 98.53%) ;
}

.gaming-box::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(7, 4, 27, 0) -0.38%, #06061D 100%);
}

.offer-label{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    display: inline-block;
    font-family: "Oxanium", serif;
    background-color: #5A46E2;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
}

.game-img img{
    width: 100%;
}

.game-content{
    position: absolute;
    left: 0;
    bottom: -65px;
    padding: 20px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}


.gaming-box-outer:hover .game-content{
    bottom: 0;
}

.game-content h4{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
}

.game-content p{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.game-content p span{
    font-family: "Oxanium", serif;
    padding: 2px 8px;
    background-color: #680F4C;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
}

.order-btn{
    font-family: "Oxanium", serif;
    padding: 10px 40px;
    border-radius: 8px;
    background: linear-gradient(115.46deg, #8F9AFF 0.18%, #5624D8 98.53%);
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.view-all-btn{
    padding: 10px 24px;
    border-radius: 8px;
    background-color: #B9F884;
    font-size: 16px;
    font-weight: 700;
    color: #080808;
    font-family: "Oxanium", serif;
}

.gaming-news{
    background-color: #222428;
    border-radius: 16px;
    position: relative;
}

.gaming-news img{
    width: 100%;
}

.gaming-news-content{
    padding: 20px;
}

.gaming-news-content h4{
    font-size:24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gaming-news-content p{
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.news-other-info{
    padding-top: 10px;
    border-top: 1px solid #2C2E32
}

.news-other-info p{
    font-size: 14px;
    margin: 0;
}

.news-other-info p.news-time{
    color: #CDCDCF;
}

.footer{
    background-color: #222428;
}

.footer-top{
    padding: 132px 0px 80px;
}

.footer-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-right: 40px;
    min-height: 100%;
}

.footer-logo img{
    height: 48px;
}

.footer-content p{
    font-size: 16px;
}

.follow-us{
    margin-top: auto;
}

.follow-us h4{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.follow-us ul li{
    display: inline-block;
    padding-right: 10px;
}

.footer-box h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-box ul li{
    padding-bottom: 16px;
}

.footer-box ul li a{
    color: #9E9EA3;
    font-size: 18px;
    font-weight: 500;
}

.footer-bottom{
    border-top: 1px solid #2C2E32;
    padding: 40px 0px;
}

.copyright-text p{
    color: #9E9EA3;
    font-size: 16px;
}

.payment-content{
    justify-content: end;
    gap: 24px;
}

.payment-content p{
    color: #9E9EA3;
    font-size: 14px;
}

.payment-icon img{
    height: 30px;
}

.inner-banner{
    padding: 180px 0px 40px;
    position: relative;
}

.inner-banner .section-header h3{
    font-size: 72px;
    margin-bottom: 16px;
}

.inner-banner::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(7, 4, 27, 0) 0%, #06061D 88.08%);
}

.inner-banner .section-header p{
    margin-left: 0;
}

.server-map-img{
    position: relative;
    margin: 60px 0px;
}

.server-map-img img{
    width: 100%;
}

.location-info{
    position: absolute;
}

.loca-01{
    top: 37%;
    left: 3%;
}

.loca-02{
    top: 7%;
    left: 10%;
}

.loca-03{
    top: 28%;
    left: 20%;
}

.loca-04{
    top: 9%;
    left: 40%;
}

.loca-05{
    top: 22%;
    left: 46%;
}

.loca-06{
    bottom: 30%;
    right: 23%;
}

.loca-07{
    top: 28%;
    right: 4%;
}

.loca-08{
    bottom: 8%;
    right: 6%;
}

.location-dot{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    margin: 0px auto 16px;
}

.location-info .loc-dot-icon{
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100%;
    position: relative;
}

.location-info .loc-dot-icon.green{
    background-color: #32A672;
}

.location-info .loc-dot-icon.yellow{
    background-color: #66561B;
}

.location-info .loc-dot-icon.red{
    background-color: #933633;
}

@keyframes waves {
    0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
    }
    50% {
      opacity: 0.9;
    }
    100% {
      -webkit-transform: scale(0.9, 0.9);
      transform: scale(0.9, 0.9);
      opacity: 0;
    }
}

.location-info .loc-dot-wave{
    width: 47px;
    height: 47px;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
    border-radius: 100%;
    position: absolute;
    top:0;
    left: 0;
}

.location-info .loc-dot-wave.green{
    background-color: #1C393D;
}

.location-info .loc-dot-wave.yellow{
    background-color: #292527;
}

.location-info .loc-dot-wave.red{
    background-color: #54252F;
}

.location-info .loc-label{
    border: 1px solid #222239;
    background-color: #15152B;
    padding:10px 20px;
    border-radius: 30px;
    display: inline-block;
}

.inner-banner-bottom-img img{
    width: 100%;
    position: relative;
}

.section-inner-header{
    margin-bottom: 24px;
}

.section-inner-header h3{
    font-size: 32px;
    font-weight: 700;
}

.server-box{
    background-color: #222428;
    border-radius: 16px;
    padding: 16px 32px;
}

.server-box h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.server-box ul li{
    padding-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.server-box ul li img{
    width: 22px;
    height: 22px;
    border-radius: 100%;
    object-fit: cover;
    object-position: 50% top;
}

.server-box ul li span{
    padding: 2px 6px;
    font-size: 18px;
    color:#fff;
    font-weight: 700;
    font-family: "Oxanium", serif;
}

.server-box ul li span.green{
    background-color: #32A672;
}

.server-box ul li span.yellow{
    background-color: #66561B;
}

.server-box ul li span.red{
    background-color: #933633;;
}

.server-metrics{
    padding: 32px 48px;
    border-radius: 16px;
    background-color: #222428;
    margin-bottom: 44px;
}

.metrics-box{
    display: flex;
    align-items: center;
    gap: 16px;
}

.metrics-box-icon{
    width: 68px;
    height: 68px;
    background-color: #29293F;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metrics-box-content p{
    font-size: 16px;
    color: #9E9EA3;
}

.metrics-box-content h3{
    font-size: 32px;
    font-weight: 700;
}

.benefits-box{
    padding: 16px 32px;
    border-radius: 16px;
    background-color: #222428;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.benfits-box-icon{
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benfits-box-icon.yellow{
    background: linear-gradient(180deg, #5E4B04 0%, #262319 100%);
}

.benfits-box-icon.blue{
    background: linear-gradient(180deg, #0B43AC 0%, rgba(8, 58, 154, 0.2) 80.27%);
}

.benfits-box-icon.red{
    background: linear-gradient(180deg, #6D1127 0%, rgba(109, 17, 39, 0.3) 100%);
}

.benfits-box-content h4{
    font-size: 24px;
    font-weight: 700;
}

.benfits-box-content p{
    color: #CDCDCF;
    font-size: 15px;
    font-weight: 500;
}

.banner-rating {
    gap: 24px;
}

.banner-rating span{
    font-size: 18px;
    color: #CDCDCF;
}

.pricing-box-outer{
    padding: 1px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 100%;
}

.pricing-box{
    position: relative;
    background-color: #0B0B21;
    padding: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.pricing-radial-img{
    position: absolute;
    top: 0;
    right: 0;
}

.pricing-radial-img img{
    width: 100%;
}

.pricing-box-outer::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pricing-box-outer.blue::before{
    background: linear-gradient(192.26deg, #2585F1 0%, rgba(37, 133, 241, 0) 31.97%);
}

.pricing-box-outer.purple::before{
    background: linear-gradient(192.26deg, #633588 0%, rgba(99, 53, 136, 0) 31.97%);
}

.pricing-box-outer.red::before{
    background: linear-gradient(192.26deg, #FF0000 0%, rgba(159, 125, 32, 0) 31.97%);
}

.pricing-bubble-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.pricing-bubble-img img{
    width: 100%;
}

.pricing-top-content{
    position: relative;
}

.pricing-top-content h3{
    font-size: 24px;
    color: #CDCDCF;
    -webkit-text-stroke: 1px #FFFFFF;
    -webkit-background-clip: text;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-top-content h2{
    font-size: 48px;
    font-weight: 600;
}

.pricing-top-content h2 sup{
    font-size: 20px;
    font-weight: 500;
    top: auto;
    bottom: 0;
    color: #CDCDCF;
    font-family: "Manrope", serif;
}

.pricing-top-content p{
    font-size: 16px;
    color: #CDCDCF;
    margin-bottom: 24px;
}
.pricing-box .order-btn{
    padding: 1px;
    margin-bottom: 24px;
}
.pricing-box .order-btn span{
    background-color: #272C42;
    padding: 10px 40px;
    border-radius: 8px;
    position: relative;
    width: 100%;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.pricing-box .order-btn:hover span{
    background-color: transparent;
    color: #fff;
}

.pricing-features{
    padding: 24px 0px;
    border-top: 1px solid #222239;
    border-bottom: 1px solid #222239;
}

.pricing-features ul li{
    display: flex;
    gap: 8px;
    padding-bottom: 24px;
    font-size: 16px;
}

.pricing-bottom-content{
    margin-top: 24px;
}

.pricing-bottom-content h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.example-bx{
    gap: 12px;
}

.example-bx-icon{
    width: 32px;
    height: 32px;
    border: 1px solid #15152B;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-bx-content{
    width: calc(100% - 44px);
}

.example-bx-content h5{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 22px;
}

.example-bx-content p{
    font-size: 13px;
}

.pricing-box-outer.purple{
    margin-top: -20px;
}

.popular-pricing{
    background-color: #633588;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    color: #fff;
    width: 100%;
    display: inline-block;
    position: relative;
}

.pricing-box-outer.purple .pricing-box{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.pricing-filter{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-filter span{
    font-size: 16px;
    font-weight: 500;
    color: #CDCDCF;
}

.pricing-filter .form-check{
    min-height: auto;
    margin-bottom: 0;
}

.pricing-filter .form-switch .form-check-input{
    width: 42px;
    height: 24px;
    background-color: #5A46E2;
    border: none;
    box-shadow: none;
    outline: 0;
}

.pricing-filter .pricing-offer-label{
    background-color: #093909;
    border-radius: 8px;
    color: #94F094;
    font-size: 14px;
    padding: 4px 10px;
}

.customize-server{
    padding: 1px;
    background: linear-gradient(192.26deg, #EEAE00 0%, rgba(159, 125, 32, 0) 31.97%);
    border-radius: 16px;
}

.customize-server-inner{
    border-radius: 16px;
    background-color: #0B0B21;
    position: relative;
    padding: 30px 80px;
    overflow: hidden;
}

.customize-img{
    position: absolute;
    top: 0;
    right: 0;
}

.customize-server-inner h2{
    font-size: 40px;
    font-weight: 700;
    -webkit-text-stroke: 1px #F8D96B;
    -webkit-background-clip: text;
    margin-bottom: 24px;
}

.customize-server-inner h3{
    font-size: 36px;
    font-weight: 600;
}

.customize-server-inner p{
    font-size: 16px;
    color: #CDCDCF;
    margin-bottom: 24px;
}

.customize-btn{
    position: relative;
    padding: 10px 70px;
    background-color: #CC9C29;
    color: #222428;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
}

.news-label{
    position: absolute;
    top: 10px;
    right:10px;
}

.news-label ul li{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #00000057;
    padding: 6px 12px;
    border-radius: 4px;
    margin-left: 10px;
    text-transform: uppercase;
    font-family: "Oxanium", serif;
}

.recent-news .gaming-news{
    background-color: #05051C;
    margin-bottom: 30px;
}

.news-pagination-text p{
    font-size: 14px;
    color: #CDCDCF;
}

.news-pagination .pagination{
    justify-content: end;
    gap: 8px;
}

.news-pagination .pagination .page-link{
    background-color: transparent;
    border: 1px solid #1F1F35;
    border-radius: 6px;
    font-size: 14px;
    color: #BBB8C5;
    font-weight: 500;
}


.news-pagination .page-item.active .page-link{
    background-color: #0B0B21;
    color: #9E93F1;
    border: 1px solid #1F1F35;
}

.contact-info{
    position: relative;
}

.contact-form{
    position: relative;
    padding: 40px;
    border-radius: 16px;
    background-color: #010117;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label{
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 8px;
}

.form-group .form-control{
    border: 1px solid #222239;
    border-radius: 8px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.form-group input.form-control{
    height: 46px;
}

.submit-btn{
    padding: 15px 24px;
    background: linear-gradient(115.46deg, #8F9AFF 0.18%, #5624D8 98.53%);
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    font-family: "Oxanium", serif;
    border: none;
    color: #fff !important;
    margin-top: 24px;
}

.contact-banner{
    padding: 180px 0px 120px;
}

.contact-info h3{
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info p{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 88px;
    color: #CDCDCF;
}

.contact-info p b{
    color: #9E93F1;
}

.contact-info-box h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-accordion .accordion-button::after{
    background-image:url(../images/down-icon.svg)
}

.faq-accordion  .accordion-item{
    background-color: #222428;
    margin-bottom: 12px;
    border-radius: 16px;
    padding: 26px;
}

.faq-accordion  .accordion-button{
    background-color: transparent;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    padding: 0;
    outline: none;
    box-shadow: none;
}

.faq-accordion  .accordion-body{
    padding: 0;
    padding-top: 4px;
    border: none;
}

.faq-accordion  .accordion-body p{
    font-size: 16px;
    font-weight: 500;
}

.faq-accordion  .accordion-button:not(.collapsed){
    box-shadow:none;
}

.faq-type .nav-pills .nav-link{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-family: "Oxanium", serif;
    text-align: left;
    background-color: #222428;
    border-radius: 8px;
    white-space: nowrap;
}

.faq-type .nav{
    gap: 12px;
}

.search-box{
    position: relative;
}

.search-box img{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.search-box .form-control{
    border: 1px solid #343445;
    background-color: #343445;
    height: 48px;
    padding: 10px 20px 10px 50px;
    border-radius: 8px;
    color: #9E9EA3;
}

.faq-accordion{
    margin-top: 40px;
}

.faq-accordion h4{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.article-box{
    padding: 24px;
    border-radius: 16px;
    background-color: #222428;
}

.article-box h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-box p{
    font-size: 14px;
    color: #CDCDCF;
}

.recent-article-box{
    padding: 24px;
    border-radius: 16px;
    background-color: #222428;
    margin-bottom:16px;
}

.recent-article-box h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.recent-article-box p{
    font-size: 15px;
    color: #CDCDCF;
    margin-bottom: 8px;
}

.recent-article-box h6{
    font-size: 14px;
    border-top: 1px solid #29293F;
    color: #9E9EA3;
    padding-top: 8px;
}
 
.recent-article-box h6 span{
    font-size: 15px;
    font-weight: 600;
    color: #CDCDCF;
}

.recent-article-box h6 .article-info{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.recent-article-box h6 span .dot{
    width: 4px;
    height: 4px;
    display: inline-block;
    background-color: #CDCDCF;
    border-radius: 100%;
}

.login-bg{
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0px;
}

.login-bg::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 4, 27, 0) 0%, #06061D 88.08%);
    content: '';
}

.login-box{
    background-color: #010117;
    padding: 32px;
    border-radius: 16px;
    position: relative;
}

.login-top-content{
    margin-bottom: 32px;
}

.login-top-content img{
    height: 36px;
    margin-bottom: 24px;
}

.login-top-content h4{
    font-size: 22px;
    font-weight: 700;
}

.login-top-content p{
    font-size: 14px;
}

.field-with-icon{
    position: relative;
}

.field-with-icon img{
    position: absolute;
    top: 10px;
    right: 10px;
}

.field-with-icon .form-control{
    padding-right: 40px;
}

.remember-password label{
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.remember-password input[type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.remember-password span{
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9E9EA3;
}

.remember-password span img{
    width: 16px;
    opacity: 0;
}

.remember-password input[type="checkbox"]:checked ~ span img{
    opacity: 1;
}

.forgot-password a{
    font-size: 14px;
    font-weight: 600;
    color: #FA6969;
}

.login-btn{
    background: linear-gradient(115.46deg, #8F9AFF 0.18%, #5624D8 98.53%);
    width: 100%;
    padding: 15px 40px;
    border: none;
    margin-top: 32px;
    font-size: 20px;
    font-weight: 700;
    color: #fff !important;
}

.login-bottom-content p{
    font-size: 14px;
    margin-top: 24px;
}

.login-bottom-content p a{
    color: #9E93F1;
    text-decoration: underline;
}

.divider{
    position: relative;
    padding: 24px 0px;
}

.divider::before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #222239;
    content: '';
}

.divider span{
    font-size: 16px;
    font-weight: 600;
    color: #CDCDCF;
    padding: 0px 10px;
    position: relative;
    background-color: #010117;
}
.social-login-button{
    gap: 8px;
}
.social-login-button .btn{
    background-color: #15152B;
    border-radius: 8px;
    width: calc(100% / 3 - 8px);
}

.news-details .news-other-info{
    padding-top: 0px;
    border-top: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #2C2E32;
}

.related-news-bx{
    display: flex;
    align-items: center;
    background-color: #222428;
    border-radius: 16px;
    color: #ffff;
    margin-bottom: 20px;
}

.related-news-img img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: 50% top;
    border-radius: 16px;
}

.related-news h3{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.related-news-content{
    padding: 20px;
}

.related-news-content h4{
    font-size: 20px;
    font-weight: 600;
}

.related-news-content p{
    font-size: 14px;
}