*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,p,ul,li{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a{
    text-decoration: none;
}

body{
    font-family: "Montserrat", sans-serif;
    color: #fff;
    background-color: #000;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}


/* header part start */
.header{
    background-color: #000;
    z-index: 500;
}
.logo{
    width: 200px;
}
.logo:hover,
.logo:focus{
    color: #fff;
}

/* header part end */

/* banner part start */
.banner-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px 70px;
    align-items: center;
}
.banner-content h1{
    font-family: 'test_shne_schmal';
    font-size: 70px;
    line-height: 70px;
    font-weight: normal;
    text-transform: uppercase;
}
.banner-content h1 span{
    color: transparent;
    background: linear-gradient(90deg, #703FEC 0%, #00B9E4 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.banner-content p b span,
.why-offer-right p b span{
    color: #00B9E4;
}
.banner-content h4{
    font-size: 18px;
    font-weight: 600;
    color: #d4d5d9;
}
.b-img{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.b-img img{
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    object-position: left center;
}

.b-img:nth-child(odd) img:last-child{
    transform: translateY(150px);
}

.banner-img{
    height: 800px;
    position: relative;
}
.banner-img::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 80px;
    z-index: 1;
    background: linear-gradient(0deg, rgba(1, 0, 2, 0), #010002);
}
.banner-img::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(1, 0, 2, 0), #010002);
}

.banner-img .slick-list{
    height: 100% !important;
}
.com-btn{
    display: inline-flex;
    width: 250px;
    height: 55px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #703FEC 0%, #00B9E4 100%);
    border-radius: 5px;
    font-size: 18px;
    transition: all .3s ease-in-out;
}
.com-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 63, 236, 0.4);
}

.banner-content h5{
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.banner-p-box p{
    padding: 12px 16px;
    background-color: #222326;
    margin-bottom: 7px;
    font-weight: 500;
}
.banner-p-box p:first-child{
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.banner-p-box p:last-child{
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
/* banner part end */

/* why offer part start */
.why-offer-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    
}
.com-heading{
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
}
.offer-p-box p{
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
}
/* why offer part end */

/* private program part start */
.private-program-box h2{
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
}
.private-program-box p{
    color: #d4d5d9;
}
/* private program part end */



















