:root{
    --primaryColor: #D21034;
    --primaryDarkColor: #b60309;

    --white: #ffffff;
    --black: #000000;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, button{
    transition: 0.5s;
    text-decoration: none;
    border: 0;
    outline: none;
    color: var(--primaryColor);
}
ul li, ol li{
    list-style-type: none;
}
img{
    width: auto;
    max-width: 100%;
}
div::after, div{
    display: block;
    
}

.bg-indigo{
    background-color: #6610f2;
}
.bg-green{
    background-color: #017800;
}
.bg-gray{
    background-color: #999999;
}
.bg-blue{
    background-color: #4169E1;
}
.bg-teal{
    background-color: #20c997;
}
.bg-yellow{
    background-color: #F0B704;
}
.bg-orange{
    background-color: #F05D04;
}
.bg-red{
    background-color: #dc3545;
}
.bg-pink{
    background-color: #E9296B;
}
.bg-violet{
    background-color: #5C1766;
}
.bg-purple{
    background-color: #B82FCC;
}



body{
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

.text-primary{
    color: var(--primaryColor) !important;
}


.btn{
    padding: 15px 25px;
    border-radius: 5px;
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}
.btn-primary{
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}
.btn-primary:hover, .btn-primary:focus{
    background-color: var(--primaryDarkColor);
    border-color: var(--primaryDarkColor);
    box-shadow: 0 10px 25px rgba(255, 46, 46, 0.5);
}


.container{
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.page-header{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.8940826330532213) 0%, rgba(0,0,0,0.6980042016806722) 26%, rgba(0,0,0,0) 91%);
}

.banner{
    background-color: var(--black);
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 50px;
    position: relative;
}
.banner-bg-image{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.30;
}

.banner-content{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
}

.banner-text{
    width: 40%;
}

.banner-text h1{
    font-size: 60px;
    font-weight: 700;
}

.banner-text p{
    font-size: 21px;
    padding: 20px 0;
    line-height: 31px;
}

.logo{
    width: 190px;
    display: inline-block;
}

.banner-text .btn{
    margin-top: 30px;
}

.banner-right{
    padding-left:70px;
    display: flex;
    flex: 1;
    height: 520px;
}

.banner-card{
    position: relative;
    background-color: var(--black);
    height: 520px;
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 30px;
    overflow: hidden;

}
.banner-card::before{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    content: "";
    z-index: 8;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.8940826330532213) 0%, rgba(0,0,0,0.6980042016806722) 26%, rgba(0,0,0,0) 91%);
    transition: 0.5s;
}
.card-bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.8s;
}
.banner-card:hover .card-bg-image{
    transform: scale(1.05);
}
.banner-card:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); 
    margin-top: -10px;
}

.banner-card > div{
    position: relative;
    z-index: 10;
}

.comming-soon-tag{
    position: relative;
    font-size: 30px;
    background-color: var(--primaryColor);
    display: inline-block;
    padding: 12px 50px 12px 0;
    margin-bottom: 30px;
    border-radius: 0 30px 30px 0;
}
.comming-soon-tag::before{
    position: absolute;
    content: "";
    right: 100%;
    top: 0;
    bottom: 0;
    width: 33vw;
    background-color: var(--primaryColor);
}
.banner-card p{
    font-size: 16px;
    line-height: 24px;
    padding-top: 15px;
    color: var(--white);
}

.banner-card h2{
    font-size: 23px;
    line-height: 24px;
    padding-top: 15px;
    font-weight: 600;
    color: var(--white);
}

.tag{
    display: inline-block;
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.header-power-text{
    
    display: flex;
    align-items: center;
}
.power-text{
    font-size: 14px !important;
    /* font-style: italic; */
    padding-right: 20px;
}

.power-text a{
    font-style: normal;
    font-weight: 600;
}

.dex-none{
    display: none;
    padding-top: 0 !important;
}

.example-text{
   font-size: 16px;
   padding-top: 30px;
    
}
.banner-text .btn.ghana-logo-btn{
    padding-bottom: 5px;
    padding-top: 5px;
    margin-top: 5px;
}
.ghana-logo-btn p{
    padding: 0;
    line-height: 16px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 5px;
    text-align: left;
}
.ghana-logo-btn .ghana-logo{
    width: 130px;
}
.example-logo{
    width: 120px;
    display: inline-block;
}
.example-box{
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.example-box p{
    font-size: 15px;
    padding: 0;
    line-height: 20px;
}




@media (max-width: 1366px) { 
    .banner-text h1 {
        font-size: 55px;
    }
}

@media (max-width: 1200px) { 
    .banner-text h1 {
        font-size: 40px;
    }
    .banner-right{
        padding-left: 10px;
    }
}

@media (max-width: 1024px) { 
    .banner-content{
        display: block;
    }
    .dex-none{
        display: block;
    }
    .banner-text{
        width: 100%;
        text-align: center;
    }
    .comming-soon-tag::before{
        display: none;
    }
    .comming-soon-tag{
        padding: 10px 35px;
        border-radius: 25px;
        font-size: 24px;
    }
    .banner-text .btn{
        margin-top: 20px;
    }
    .banner-right{
        padding-left: 0;
        padding-top: 100px;
        height: 340px;
        justify-content: center;
    }
    .banner-card{
        margin: 0 10px;
        height: 300px;
        margin-bottom: 30px;
    }
    .mob-none{
        display: none;
    }
 
}
@media (max-width: 600px) { 
    .banner-right{
        display: block;
        padding-top: 50px;
    }
    .banner-right{
        height: auto;
    }

    .banner{
        padding: 120px 0 15px;
    }
    .logo{
        width: 160px;
    }
    .btn {
        padding: 13px 20px;
        font-size: 16px;
    }
    .comming-soon-tag {
        padding: 9px 33px;
        margin-top: 10px;
        font-size: 18px;
    }
}
@media (max-width: 380px) { 
    .banner-text h1 {
        font-size: 36px;
    }
    .btn {
        padding: 13px 18px;
        font-size: 14px;
    }
    .banner-text p {
        font-size: 17px;
        line-height: 25px;
    }
}
