@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    background-color: var(--background-color1);
    scroll-behavior: smooth;
    overflow-x: hidden;
    width:100vw;
    height:100%;
}
.main-container{
    width:100%;
    overflow-x: hidden;
    /* border:10px solid red; */
}
header{
    height:100%;
    width:100%;
}
body::-webkit-scrollbar{
    display:none;
}
#login{
    text-decoration: none;
    color:var(--white-color);
}
/* <------------------------------header section-------------------------------------------------------------------> */
/* you have to add this variable in your css file navbar root */
:root{

    font-family:"Roboto",sans-serif;
    --lightgray-color:rgb(51, 53, 69);
    --white-color:rgb(255,255,255);
    --placeholder-color:rgb(153,153,153);
    --navbar-font-color:rgb(204, 204, 204);
    --tomato-color:rgb(248, 68, 100);
    --darkgray-color:rgb(31, 37, 51);
  

    --font-12px:0.75rem;
    --font-14px:0.875rem;
    --font-16px:1rem;
}
.nav_1{
    background-color: var(--lightgray-color);
    display:flex;
    justify-content: center;
    align-items: center;
    height:64px;
}
.nav_width{
    width:80vw;
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.nav_1_sub{
    display:flex;
    gap:1rem;
    width:100%;
}
.nav_1_sub img{
    height:35px;
    object-fit: cover;
}
.search_bar{
    width:50%;
    background-color: var(--white-color);
    padding:5px;
    border-radius:4px;
    display:flex;
    align-items: center;
    justify-content: center;
}
input{
    outline:none;
}
::placeholder{
    font-size:var(--font-14px);
    color:var(--placeholder-color);
    border:none;
    display:flex;
}
.fa-magnifying-glass{
    color:var(--placeholder-color);
    margin-right:0.8rem;
    margin-left:5px;
}

.search_bar input{
    width:100%;
    border:none;
}
.select{
    border:none;
    background-color: var(--lightgray-color);
}
form{
    display:flex;
    gap:2rem;
    justify-content: center;
    align-items: center;
}

select{
    padding:10px;
    outline:0;
    box-shadow: none;
    border:0 !important;
    background: rgb(51,53,69);
    background-image: none;
    color:#fff;
}

select option:checked {
    background-color: #555; /* Background color of the selected option */
  }
.fa-caret-down{
    color:var(--white-color);
    transform:scale(0.8);
    margin-left:10px;
}
form button{ 
    background-color: var(--tomato-color);
    border:none;
    color:var(--white-color);
    font-size: var(--font-12px);
    letter-spacing: 1px;
    font-weight:400;
    width:65px;
    height:25px;
    border-radius:5px;
}
.fa-bars{
    color:var(--white-color);
    transform:scale(1.5);
}


/* effect */
.nav_1 img:hover,form span:hover,form button:hover,.fa-bars:hover{
    cursor:pointer;
}

.nav_2{
    background-color:var(--darkgray-color); 
    display: flex;
    justify-content:center;
    align-items: center;
    height:44px;
}
.nav_2 ul{
    list-style-type: none;
}
.nav_2 ul li a{
    text-decoration: none;
}
.nav_2_sub1{
    display:flex;
    gap:1.3rem;
    margin-left:4px;
}
.nav_2_sub1 li a{
    color:var(--navbar-font-color);
    font-size:var(--font-14px);
    transition:.3s;
}
.nav_2_sub1 li a img{
    width:16rem;
}
sup{
    color:rgb(231,54,77);
    font-size:9px;
    position: relative;
    bottom:10px;
}
.nav_2_sub2{
    display:flex;
    gap:1.5rem;
}
.nav_2_sub2 li a{
    color:var(--white-color);
    font-size: var(--font-12px);
}

/* effect */
.nav_2_sub1 li:hover,.nav_2_sub2 li:hover,.nav_2_sub1 span:hover{
    cursor: pointer;
}
.nav_2_sub1 li a:hover{
    color:var(--white-color);
}
/* responsiveness for navbar */
.nav_1_resp,.nav2_resp{
    display:none;
}
.nav1_l h2{
    font-size: var(--font-24px);
    font-weight: 700;
    color: rgb(255, 255, 255);
}
.nav1_l span{
    padding-top: 2px;
    padding-left: 1px;
    font-size: var(--font-12px);
    color: var(--navbar-font-color);
}



/* <------------------------------------media query small devices-------------------------------------------------------> */


@media only screen and (min-width: 1201px) {
    .dibya-footer-media{
        display: none;
    }
}
@media screen  and (min-width:320px) and (max-width: 480px){

    header{
        display: none;
    }
}
@media screen  and (min-width:481px) and (max-width: 768px){
    
    header{
        display: none;
    }
    
}


/* <------------------------------------media query tablet devices-------------------------------------------------------> */

@media screen  and (min-width:769px) and (max-width:1024px){
    
    header{
        display: none;
    }

   
}

/* <------------------------------------media query Desktops, large screens-------------------------------------------------------> */
@media screen and (min-width:1025px) and (max-width:1200px){

    /* navbar */
    
    body{
        width:100vw;
    }
    .maincontainer{
        width:100%;
        border:2px solid green; 
    }
    
    .nav_1{
        width:100%;
    }
    .nav_width {
        width:92vw;
    }
    form button {
        padding:0;
        width:65px;
        height:25px;
    }
    .nav_2_sub2 {
        display: flex;
        gap: 1rem;
    }
    .nav_2_sub1 {
        gap: 1rem;
    }
    form {
        gap: 1.3rem;
    }

    .dibya-head-mobile{
        display: none;
    }


}





































/* ================================================================================================= */



















body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;


}

:root {
    --icc-men-world-cup-container-background-color: rgb(50, 0, 115);
    --rough-border: 2px solid red;
}

.dibya-icc-container {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--icc-men-world-cup-container-background-color);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}



.dibya-icc-container img {
    cursor: pointer;
}

.dibya-icc-2023-inside-container {
    height: 114.32px;
    width: 80%;
    margin: 0 148px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.dibya-icc-2023-inside-container img {
    width: 940px;
    height: 78.325px;
    border-radius: 1rem;
}



/* ====================================================================================================================================================================================================== */




.dibya-view-all-match {
    height: 192.32px;
    width: 80%;
    padding-top: 5px;
    margin: 0 148px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.dibya-view-all-match img {
    height: 156.66px;
    width: 940px;
}
.dibya-head-mobile{
    padding: 0 18px;
    display: none;
}

.dibya-flag-container {
    width: 80%;
    height: 100%;
    margin: 0 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.dibya-flag-heading,
.dibya-match-by-venue-heading {
    width: 940px;
}

.dibya-flag-heading h2,
.dibya-match-by-venue-heading h2 {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.dibya-flag-image {
    width: 940px;
    height: 701px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);

}



.dibya-flag-image img {
    width: 223px;
    height: 223px;
}

/* ============================================================================================================================================================================================== */





.dibya-match-by-venue {
    width: 80%;
    height: 781px;
    padding-top: 20px;
    margin: 0 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.dibya-match-by-venue-image {
    width: 940px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
}



.dibya-match-by-venue-image img {
    width: 223px;
    height: 223px;
}

/* =============================================================================================================================================== */



.dibya-patner {
    height: 216.66px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.dibya-patner-image {
    height: 216.66px;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;

}

.dibya-patner-image img {
    width: 940px;
    height: 156.66px;
    cursor: pointer;
}




/* BLUE BACKGROUND ENDED */

/* =================================================================================================================================== */

/* WHITE BACKGROUND STARTED */

.dibya-present-bar {
    background-color: white;
    height: 44.4px;
    display: flex;
    justify-content: flex-start;
    width: 80%;
}

.dibya-present-bar-inside {
    height: 44.4px;
    width: 80%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    gap: 0.5rem;
    flex-wrap: wrap;

}

.dibya-present-bar-inside a {
    text-decoration: none;
    color: RGB(170, 171, 172);
    font-size: 0.8rem;


}

.dibya-present-bar-inside div i {
    color: RGB(170, 171, 172);

}




/* ================================================================================================================================================================================================ */


.dibya-icc-world-cup-last {
    height: 550px;
    background-color: rgb(242, 242, 242);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dibya-icc-world-cup-inside {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dibya-icc-world-cup-inside-heading {
    height: 35px;
}



.dibya-icc-world-cup-inside-heading h1 {
    height: 19.8px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 19.8px;
    color: #7f7f7f;
    text-align: center;
}

.dibya-inside-icc-para-2 {
    
    color: #7F7F7F;
    line-height: 16px;
    vertical-align: baseline;
    letter-spacing: normal;
    margin: 0px;
    padding: 0px 0px 15px;
    font-size: 12px;
    font-weight: 400;
    cursor: default;
}

.dibya-inside-icc-para-2 a {
    text-decoration: none;
    color: #DC3558;
}

.dibya-inside-icc-para-1 {
    
    color: #7F7F7F;
    line-height: 16px;
    vertical-align: baseline;
    letter-spacing: normal;
    margin: 0px;
    padding: 0px 0px 15px;
    font-size: 12px;
    font-weight: 400;
    cursor: default;
}



/* ================================================================================================== */











/*================================================= FOOTER====================================== */


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --footer-head-font-color: white;
    --footer-head-button-coolor: #EC5E71;
    --footer-head-font-size: 16px;
    --footer-helpline-background-color: rgb(64, 64, 67);
    --footer-main-background-color: rgb(51, 51, 56);
    --footer-border-for-test: 1px solid red;
    --footer-main-head-font-size: 12px;
    --footer-main-head-letter-spaceing: 0.1px;
    --footer-main-head-line-height: 13.2px;
    --footer-main-head-text-decoration: none solid rgb(165, 165, 165);
    --footer-main-head-text-trasform: uppercase;
    --footer-main-head-font-color: #A5A5A5;
    --footer-main-font-weight: 400;
    --footer-main-a-font-size: 11px;
    --footer-main-a-letter-spacing: 0.1px;
    --footer-main-a-text-decoration: none solid rgb(127, 127, 127);
    --footer-main-a-color: #7f7f7f;
    --footer-inside-main-container-padding: padding: 25px 0 0 0;
    --mobile-head:#2B3148
    ;



}

footer {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

.dibya-footer-head {
    background-color: rgb(49, 48, 53);
    width: 100%;
    height: 83px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;

}

.dibya-footer-inside-head {
    width: 75%;
    height: 83px;
    display: flex;
    flex-direction: row;
    /* margin: 0 128px 0 128px; */
    padding: 0 15px;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.dibya-footer-inside-head-part-2 {
    color: var(--footer-head-font-color);
    font-size: var(--footer-head-font-size);

    text-decoration: none;
}

.dibya-footer-inside-head-part-2 h1 {
    font-size: var(--footer-head-font-size);
    font-weight: 600;
}

.dibya-footer-inside-head-part-3 {
    color: var(--footer-head-font-color);
    font-size: var(--footer-head-font-size);
    width: 900px;

}

.dibya-footer-inside-head-part-3 p {
    font-size: var(--footer-head-font-size);
}

.dibya-footer-inside-head-part-4 button {
    width: 135px;
    height: 39.9px;
    background-color: var(--footer-head-button-coolor);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.dibya-footer-inside-head-part-4 button a {
    text-decoration: none;
    color: var(--footer-head-font-color);
    font-size: var(--footer-head-font-size);
}

/* Footer Head ended */


/* ================================================================================================================================================================================================================== */

/* Help Line Started */


.dibya-helpline {
    height: 112px;
    display: flex;
    width: 100%;
    background-color: var(--footer-helpline-background-color);
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.dibya-inside-helpline,
.dibya-comform-ticket,
.dibya-customer-care {
    width: 65%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.dibya-customer-care {
    width: 114px;
    height: 100%;
    color: var(--footer-head-font-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: space-between;
    gap: 1rem;
    transition: 0.4s ease-in-out;
    flex-wrap: nowrap;

}

.dibya-customer-care svg,
.dibya-comform-ticket svg,
.dibya-newsletter svg {
    width: 50px;
    height: 50px;
    fill: RGB(153, 153, 153);
}


.dibya-customer-care a,
.dibya-comform-ticket a,
.dibya-newsletter a {
    text-transform: uppercase;
    font-size: 11px;
    color: RGB(153, 153, 153);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.dibya-comform-ticket {
    width: 173px;
    height: 100%;
    color: var(--footer-head-font-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.dibya-newsletter {
    width: 169px;
    height: 100%;
    color: var(--footer-head-font-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.dibya-customer-care svg:hover {
    fill: white;
    color: white;
}

.dibya-customer-care svg:hover,
.dibya-newsletter svg:hover,
.dibya-comform-ticket svg:hover {
    fill: white;
    color: white;
}

/* Help Line Ended */

/* ================================================================================================================================================================================================================== */


/* Footer main container */

.dibya-fotter-main-container {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--footer-main-background-color);

}

.dibya-footer-inside-main {
    width: 80%;
    height: 1073px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-wrap: nowrap;
}


/* Top cinemas */
.dibya-top-cinemas {
    width: 100%;
    height: 93px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* Top cinemas ended */


/* Upcomming cinemas */
.dibya-upcoming-cinemas {
    width: 100%;
    height: 76px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* Upcomming cinemas ended */


/* Upcoming Movies family */
.dibya-family-movies {
    width: 100%;
    height: 76px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* Upcoming Movies family endes */

/* UPCOMING & NOWSHOWING MARATHI MOVIES */
.dibya-upcoming-marati {
    width: 100%;
    height: 76px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* UPCOMING & NOWSHOWING MARATHI MOVIES ENDED */



/* UPCOMING MOVIES */
.dibya-upcoming-movies {
    height: 93px;
    width: 100%;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* UPCOMING MOVIES ENDED */

/* MOVIES BY GENRE */
.dibya-movies-by-genre {
    height: 111px;
    width: 100%;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* MOVIES BY GENRE ENDED */

/* MOVIES BY LANGUAGE */
.dibya-movies-by-lang {
    height: 111px;
    width: 100%;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* MOVIES BY LANGUAGE ENDED */



.dibya-inside-main-box h2 {
    font-size: var(--footer-main-head-font-size);
    text-decoration: var(--footer-main-head-text-decoration);
    color: var(--footer-main-head-font-color);
    text-transform: var(--footer-main-head-text-trasform);
    line-height: var(--footer-main-head-line-height);
    letter-spacing: var(--footer-main-head-letter-spaceing);
    font-weight: var(--footer-main-font-weight);

}

/* TAMIL MOVIES BY GENRE */
.dibya-tamil-movies-by-genre {
    height: 129px;
    width: 100%;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* TAMIL MOVIES BY GENRE ENDED */

/* MOVIE REVIEWS AND TRENDING ARTICLES */
.dibya-movie-review {
    width: 100%;
    height: 76px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* MOVIE REVIEWS AND TRENDING ARTICLES ENDED */

/* COUNTRIES */
.dibya-contries {
    width: 100%;
    height: 76px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* COUNTRIES ENDED */


/* HELP */
.dibya-help {
    width: 100%;
    height: 76px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* HELP ENDED */


/* BOOKMYSHOW EXCLUSIVES */
.dibya-book-exclusive {
    width: 100%;
    height: 76px;
    padding: var(--footer-inside-main-container-padding);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* BOOKMYSHOW EXCLUSIVES ENDED */


.dibya-inside-main-box-a a {
    font-size: var(--footer-main-a-font-size);
    font-weight: var(--footer-main-font-weight);
    text-decoration: var(--footer-main-a-text-decoration);
    color: var(--footer-main-a-color);
    letter-spacing: var(--footer-main-a-letter-spacing);
    transition: 0.4s ease-in-out;
}

.dibya-footer-inside-main span {
    font-size: 15px;
    font-weight: var(--footer-main-font-weight);
    text-decoration: var(--footer-main-a-text-decoration);
    color: var(--footer-main-a-color);
    letter-spacing: var(--footer-main-a-letter-spacing);
    cursor: default;
}



.dibya-logo-add {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.2rem;

}

.dibya-hr {
    height: 0.9px;
    background-color: #5D5D5F;
    width: 40vw;

}

.dibya-footer-icons {
    height: 39.4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.dibya-social-midia {
    overflow: hidden;
    color: #5D5D5F;
}

.dibya-footer-icons i {
    font-size: 2rem;
    color: var();
}

.dibya-last-foot {
    padding: 30px;
    font-size: 11px;
    color: rgb(102, 102, 102);
    text-align: center;
}

footer a:hover {
    color: white;
}

.dibya-footer-icons i:hover {
    color: white;
    cursor: pointer;
}


.dibya-footer-media {
        width: 100vw;
        height: 40px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background-color: var(--white-color);
        position:fixed;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
        border-top: 1px solid rgb(238, 238, 238);
        bottom:0;
        padding:2rem;
        z-index: 200;


}

.dibya-footer-media-inside-container {
    width: 80%;
    height: 50px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;

}


.dibya-all-div img {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;

    width: 25px;
    object-position: center;
}

.dibya-all-div {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #dc3543;
    font-weight: 400;
    text-align: center;
    flex-wrap: nowrap;
}
.dibya-all-div div {
    width: 50px;
}
@media only screen and (min-width: 1200px) {
    .dibya-footer-media{
        display: none;
    }
}













@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .dibya-icc-container {
        box-sizing: border-box;
        width: 100%;
        gap: 3rem;
    }

    .dibya-icc-2023-container {
        width: 100%;
    }
    .dibya-flag-image,.dibya-match-by-venue-image{
        grid-template-columns: repeat(3,150px);
        grid-template-rows: repeat(4, 150px);
        width: 80%;
        column-gap: 1rem;
    }
    .dibya-icc-2023-inside-container img {
        width: 90%;
        height: 90%;
        margin-left:1rem
    }
    .dibya-view-all-match,.dibya-icc-2023-inside-container{
        margin: 0 80px;
    }
    .dibya-view-all-match img{
        width: 100%;
        height: 90%;
        padding-left: 2rem;
    }
    .dibya-match-by-venue,.dibya-flag-container{
        height: auto;
    }
    .dibya-flag-heading,.dibya-match-by-venue-heading{
        margin-left: 4rem;
        width: 100%;
        padding-left: 8rem;
    }
    .dibya-flag-image,.dibya-match-by-venue-image{
        grid-template-columns: repeat(3,180px);
        grid-template-rows: repeat(4, 180px);
        width: 80%;
        /* border: 10px solid black; */
        /* column-gap: 3rem; */
        padding-left: 3rem;
    }
    .dibya-flag-container,.dibya-match-by-venue{
        width: 100%;
    }
    .dibya-flag-image img,.dibya-match-by-venue-image img{
        width: 100%;
        height: 100%;

        
    }

    .dibya-view-all-match img {
        /* height: 51.66px; */
        width: 100%;
    }
    .dibya-flag-container,.dibya-match-by-venue-image{
        margin: 0;
    }
    .dibya-flag-heading{
        margin-left: 2rem;
        width: 100%;
    }
    .dibya-match-by-venue{
        padding: 0;
        margin: 0;
    }
    .dibya-patner{
        margin-top: 5rem;
    }
    .dibya-patner-image img{
        width: 90%;
        height: 60%;
    }


    .dibya-icc-world-cup-last{
        /* border: 10px solid red; */
        width: 100%;
        height: 100%;
        padding-top: 2rem;
    }



    .dibya-icc-world-cup-inside{
        gap: 1.5rem;
    }
    
    
    .dibya-hr{
        width: 40vw;
    }


    .dibya-icc-2023-inside-container{
        display: none;
    }

    .dibya-head-mobile{
       width: 100vw;
       height: 50px;
       display: flex;
       background-color: var(--mobile-head);
       align-items: center;
       justify-content: space-between;
       position: fixed;
    }
    .dibya-head-mobile a{
        text-decoration: none;
        color: #DADBDF;
        font-size: 1rem;
    }
    .dibya-head-mobile a i{
        font-size: 1.5rem;
    }
    .dibya-head-mobile-imgage {
        width: 80%;
        height: 100%;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    .dibya-head-mobile-imgage img{
        width: 80%;
        height: 60%;;
        
    }

    
    .foot{
        display: none;
    }
    
    
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
    .dibya-icc-container {
        width: 100%;
        height: 100%;
        gap: 0;
        
    }

    .dibya-icc-2023-container {
        width: 100%;
        height: 100%;
    }
    
    .dibya-icc-2023-inside-container img {
        width: 100%;
        height: 60%;
        
    }
    .dibya-view-all-match,.dibya-icc-2023-inside-container{
        margin-left: 5rem ;

    }
    .dibya-view-all-match img{
        margin-top: 2.5rem;
        width: 100%;
        height: 60%;
    }
    /* .dibya-match-by-venue,.dibya-flag-container{
        height: auto;
    } */
    .dibya-flag-heading,.dibya-match-by-venue-heading{
        padding-left: 6rem;
        width: 100%;
    }
    .dibya-flag-image{
        grid-template-columns: repeat(2,200px);
        grid-template-rows: repeat(5, 200px);
        width: 80%;
        /* border: 10px solid black; */
        column-gap: 1rem;
        padding-left: 0.5rem;
    }
    .dibya-match-by-venue-image{
        grid-template-columns: repeat(2,200px);
        grid-template-rows: repeat(6, 200px);
        width: 80%;
        /* border: 10px solid black; */
        column-gap: 1rem;
        padding-left: 0.5rem;
    }
    .dibya-flag-container{
        width: 100%;
        height: 100%;
    }
    .dibya-match-by-venue{
        width: 100%;
        height: 100%;
    }
    .dibya-flag-image img,.dibya-match-by-venue-image img{
        width: 100%;
        height: 100%;

        
    }
    .dibya-flag-container,.dibya-match-by-venue-image{
        margin: 0;
    }
    .dibya-icc-2023-inside-container{
        display: none;
    }

    .dibya-head-mobile{
        width: 100vw;
        height: 50px;
        display: flex;
        background-color: var(--mobile-head);
        align-items: center;
        justify-content: space-between;
        position: fixed;
    }
    .dibya-head-mobile a{
        text-decoration: none;
        color: #DADBDF;
        font-size: 1rem;
    }
    .dibya-head-mobile a i{
        font-size: 1.5rem;
    }
    .dibya-head-mobile-imgage {
        width: 80%;
        height: 100%;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    .dibya-head-mobile-imgage img{
        width: 80%;
        height: 60%;;
        
    }






    .dibya-flag-heading{
        margin-left: 2rem;
        width: 100%;
    }
    .dibya-match-by-venue{
        padding: 0;
        margin: 0;
        margin-top: 280px;
    }
    /* .dibya-patner{
        margin-top: 5rem;
    } */
    .dibya-patner-image img{
        width: 90%;
        height: 60%;
    }

    .dibya-icc-world-cup-last{
        /* border: 10px solid red; */
        width: 100%;
        height: 100%;
        padding-top: 1rem;
    }



    .dibya-icc-world-cup-inside{
        gap: 1.5rem;
    }


    .foot{
        visibility: hidden;
        display: none;
    }
    

    
    
}





@media only screen and (min-width: 320px) and (max-width: 480px) {
    .dibya-icc-container {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        width: 100vw;
        /* border: 10px solid red; */
        height: auto;
    }

    .dibya-icc-2023-container {
        width: 100%;

    }

    .dibya-icc-container {
        gap: 0.1rem;
    }
    .dibya-icc-2023-inside-container img {
        width: 100%;
        height: 100%;
        margin-right: 6rem;
    }
    .dibya-view-all-match,.dibya-icc-2023-inside-container{
        margin: 0 25%;
        
    }
    .dibya-icc-2023-inside-container{
        display: none;
    }

    .dibya-head-mobile{
        width: 100vw;
        height: 50px;
        display: flex;
        background-color: var(--mobile-head);
        align-items: center;
        justify-content: space-between;
        position: fixed;

    }
    .dibya-head-mobile a{
        text-decoration: none;
        color: #DADBDF;
        font-size: 1rem;
    }
    .dibya-head-mobile a i{
        font-size: 1.5rem;
    }
    .dibya-head-mobile-imgage {
        width: 80%;
        height: 100%;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    .dibya-head-mobile-imgage img{
        width: 80%;
        height: 60%;
        box-sizing: border-box;
        
    }

    .dibya-view-all-match img {
        height: 51.66px;
        width: 290px;
        margin-right: 6rem;
    }
    .dibya-flag-heading,.dibya-match-by-venue-heading{
        margin-left: 2rem;
        width: 100%;
    }
    .dibya-flag-image,.dibya-match-by-venue-image{
        grid-template-columns: repeat(2,120px);
        grid-template-rows: repeat(5, 120px);
        width: 80%;
        /* border: 10px solid black; */
        column-gap: 1rem;
    }
    .dibya-flag-container{
        width: 100%;
    }
    .dibya-flag-image img,.dibya-match-by-venue-image img{
        width: 100%;
        height: 100%;

        
    }
    .dibya-flag-container,.dibya-match-by-venue-image{
        margin: 0;
    }
    .dibya-match-by-venue{
        padding: 0;
        margin: 0;
    }

    .dibya-patner-image img{
        width: 85%;
        height: 60%;
    }



    .dibya-icc-world-cup-last{
        /* border: 10px solid red; */
        width: 100%;
        height: 100%;
        padding-top: 1rem;
    }



    .dibya-icc-world-cup-inside{
        gap: 1.5rem;
    }
    

    .foot{
        visibility: hidden;
        display: none;
    }

    
}


@media screen and (min-width:1025px) and (max-width:1200px){

    /* navbar */
    
    body{
        width:100vw;
    }
    .maincontainer{
        width:100%;
        border:2px solid green; 
    }
    
    .nav_1{
        width:100%;
    }
    .nav_width {
        width:92vw;
    }
    form button {
        padding:0;
        width:65px;
        height:25px;
    }
    .nav_2_sub2 {
        display: flex;
        gap: 1rem;
    }
    .nav_2_sub1 {
        gap: 1rem;
    }
    form {
        gap: 1.3rem;
    }
    
    .dibya-head-mobile{
        display: none;
    }


}




