/* common css ******************************************************************************/
:root {
    --white: #fff;
    --black: #000;
    --barley-white:#fff4c6;
    --golden-sand: #efd587;
    --saffron-mango: #e6c16b;
    --pale-peach:#F9E9A3;
    --bright-gold:#FFCB00;
    --charcoal-grey:#484745;
    --mango-tango:#E86F00;
    --dark-mustard:#978800;
    --lime-green:#39ae10;
    --golden-fizz:#FFEB3B;
    --brownish-yellow:#C3B000;
    --bright-orange:#EC5A00;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Gentium+Book+Plus:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background: var(--white);
    color: var(--black);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 700;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 35px;
    line-height: 45px;
    font-family: "Gentium Book Plus", serif;
}
h2 {
    font-size: 30px;
    line-height: 40px;
    font-family: "Gentium Book Plus", serif;
}
h6{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}
p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--black);
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
a:hover{
    color: var(--bright-orange);
}
span {
    display: inline-block;
}
.section{
    padding: 30px 0;
    overflow: hidden;
}
.mobile-show {
    display: none;
}
.mobile-hide {
    display: block;
}
img, video {
    max-width: 100%;
    display: block;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.common-btn {
    color: var(--black);
    background: linear-gradient(90deg, var(--barley-white) 0%, var(--golden-sand) 50%, var(--saffron-mango) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    max-width: 350px;
    padding: 15px 20px;
    margin: 0 auto;
    border: 0;
    border-radius: 60px;
    text-decoration: underline;
    font-family: "Gentium Book Plus", serif;
    font-weight: 700;
    transition: all .5s ease;
}
.common-btn:hover{
    background: linear-gradient(180deg, var(--barley-white) 0%, var(--golden-sand) 50%, var(--saffron-mango) 100%);
    color: var(--black);
}
.box.box2 {
    display: flex;
    justify-content: flex-end;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.header {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
.header .navbar-brand {
    padding: 0;
    margin: 0;
}
.header.show {
    background-color: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
}
.logo img {
    max-width: 280px;
    width: 100%;
}


/* homeBanner css **************************************************/
.banner-section {
    overflow: hidden;
    margin-top: -140px;
}
.banner-section .homeBanner-part {
    background: url("../images/banner-bg.png") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0 30px;
    position: relative;
}
.banner-section .box1 p{
    color: var(--white);
    margin-bottom: 40px;
}
.banner-section .border-btn {
    border: 3px solid var(--pale-peach);
    color: var(--bright-gold);
    font-size: 25px;
    line-height: 35px;
    font-family: "Gentium Book Plus", serif;
    font-weight: 700;
    padding: 17px 70px;
    border-radius: 15px;
    margin-bottom: 40px;
    transition: all .5s ease;
}
.banner-section .border-btn:hover {
    background-color: var(--pale-peach);
    color: var(--black);
}
.banner-section .box1 img {
    margin: 0 auto 40px;
    max-width: 400px;
    width: 100%;
}

/* text-and-btn-section css **************************************************/
.text-and-btn-section.section {
    padding-bottom: 10px;
}
.cricketers-img img {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 30px;
}
.middle-text-box {
    background-color: var(--golden-fizz);
    max-width: 650px;
    margin: 0 auto 35px;
    padding: 20px 30px;
}
.title-list-box.section,
.title-text-box.section {
    padding: 20px 0 10px;
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
}
.title-text-box .color-title{
    color: var(--brownish-yellow);
}
.title-text-box p {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
}
.title-list-box ul {
    list-style-type: disc;
    padding-left: 2rem;
    text-align: left;
}
.title-list-box ul li span{
    color: var(--bright-orange);
    font-weight: 500;
}
.title-list-box ul li {
    margin-bottom: 10px;
}
.title-text-box .common-btn {
    margin-top: 20px;
}

/* footer css **************************************************/
.footer {
    padding: 10px 0 100px;
}
.footer .text-box p {
    color: var(--black);
    font-size: 15px;
   line-height: 25px;
}
.footer .text-box h6 {
    margin-bottom: 20px;
}
.footer .text-box {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}
.fw-500{
    font-weight: 500;
}

/* bottom-btn-block css **************************************************/
.bottom-btn-block{
    background-color: var(--charcoal-grey);
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.grad-btn .btn {
    background: linear-gradient(90deg, var(--mango-tango) 0%, var(--dark-mustard) 50%, var(--lime-green) 100%);
    border: 1px solid var(--golden-sand);
    border-radius: 60px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    padding: 11px 30px;
    line-height: 33px;
    transition: all .5s ease;
}
.grad-btn .btn:hover{
    background: linear-gradient(270deg, var(--mango-tango) 0%, var(--dark-mustard) 50%, var(--lime-green) 100%);
}