@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
*::-webkit-scrollbar{
    display: none;
}
body{
    font-family: 'Roboto', sans-serif;
    background-color: #F5F5F5;

}
header{
    height:100%;
    width:100%;
    position: static;

}
body::-webkit-scrollbar{
    display:none;
}
/* <------------------------------header section-------------------------------------------------------------------> */
/* you have to add this variable in your css file navbar root */
:root{
    
    --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;
    --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;
}
.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);
}
.nav_1_resp,.nav2_resp{
    display:none;
}
.resnav{
    display: none;
}
#login{
    text-decoration: none;
    color:var(--white-color);
  }
.design-1{
    width:180px;
    /* border: 2px solid cyan; */
    background-color: #DC3558;
    padding:12px;
    border-radius: 22px;
    text-align: center;
    display: none;
}
.design-1>i,span{
    font-size: 14px;
    color:#FFFFFF;
}
.design-2{
    width: 50px;
    height: 50px;
    background-color:#DC3558;
    padding: 14px;
    text-align: center;
    display: none;
    border-radius: 30px;
}
.design-2>i{
    font-size: 20px;
    color:#FFFFFF;
}

main{
    width:98vw;
    height:100%;
    /* border:2px solid black; */
}
#white{
    font-weight: 500;
    color:#FFFFFF;
}

.parentsection{
    display:flex;
    width:85%;
    margin:auto;
    /* border:2px solid orange; */
    margin-top:4rem;
}
.section-1{
    width:25%;
    /* border:2px solid blue; */
}
.section-2{
    width:73%;
    /* border:2px solid red; */
    margin-left:23px;
}
h2{
    font-size: 24px;
    font-weight: 700;
}
.main_containerr{
    margin-top: 15px;
    border: 2px solid rgb(244, 231, 231);
    height: 60px;
    border-radius: 6px;
    background-color: #FFFFFF;
}
.containerr {
    display: flex;
    width:300px;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-radius: 6px;
    height: 50px;
    align-items: center;
    padding-inline: 15px ;
    /* border: 2px solid olive; */
  }

  .arr_txt{
    display: flex;
    gap: 9px;
  }
  

  .main_containerr:hover .containerr {
    cursor: pointer;
    transition: height .5s;
  }

  .main_containerr:hover { 
    background-color: #FFFFFF;
    height: 175px;
    transition: height .5s;
  }
  
  .containerr {
    transition: height 1s;
    opacity: 1;
    transition: opacity 0.5s;
  }
  
  

  .bbutton{ 
    cursor: pointer;
    border-radius: 0px;
    padding: 0px 12px;
    height: 32px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(229, 229, 229);
    opacity: 0;
    margin-right: 5px;
    
  }
  .main_containerr:hover .bbutton{
    opacity: 1;
    transition: 2.5s;
  }
  .arr_txt{
    color: rgb(51,51,51);
    font-size: 14px;
    font-weight: 400;
  }
  .clear{
      color: rgb(51,51,51);
    font-size: 12px;
    font-weight: 400;
  }
.bbuttons{
    margin-left: 20px;
    
}
.main_containerr:hover .bbutton{
    color: rgb(220, 53,88);
}

.main_containerr:hover .txt{
    color: rgb(220, 53,88);
}
.clear:hover{
    color: rgb(220, 53,88);
}

.bbuttons2{
    display: grid;
    grid-template-columns: 80px 80px ;
    grid-auto-rows: 32px 32px;
    row-gap: 5px;
    margin-left: 20px;
}

.bbuttons4{
    display: grid;
    grid-template-columns: 80px 80px ;
    grid-auto-rows: 32px;
    row-gap: 5px;
    margin-left: 20px;
}

.browse{
    width:100%;
    border:1px solid red;
    border-radius: 5px;
    padding:5px;
    text-align: center;
    margin-top: 5%;
}
#browse-text{
    font-size: 14px;
    font-weight: 400;
    color:#DC3558;
}
.languages{
    width:100%;
    height: auto;
    display:flex;
    align-items: center;
    overflow-x: scroll;
    padding: 16px;
    padding-left: 0;
    /* justify-content: space-between; */
}
.languages i{
    margin-right: 24px;
    font-size: 16px;
    display: none;
}
.section-2-languages-button{
    padding:7px;
    border-radius: 14px;
    font-size: 12px;
    color:#DC3558;
    border:1px solid grey;
    background-color: #FFFFFF;
    margin-right: 5px;
}

.card-container{
    width:100%;
    /* border:2px solid #DC3558; */
    margin-top:2 rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    gap:90px 26px;
}
.card{
    display:flex;
    flex-direction: column;
    /* justify-content: space-between; */
    width: 100%;
    height: 470px;
    /* border: 2px solid brown; */
}
.image-container{
    width:100%;
    /* border:2px solid maroon; */
}
.text-container{
    /* display: flex;
    flex-direction: column; */
    /* justify-content: space-around; */
    width:100%;
    height:18%;
    margin-top: 10%;
    /* border: 2px solid blue; */
    
}
.text-containerh{
    margin-bottom: 7px;
}

.card-images{
    width:100%;
    height: 100%;
    border-radius: 10px;
}
.card>.text-container>.text-containerp-1{
    font-size: 16px;
    color:rgb(51,51,51);
}
.card>.text-container>p{
    margin-bottom: 7px;
    font-size: 14px;
    color:rgb(102,102,102);
}
.card>.text-container>h4{
    font-size: 18px;
    font-weight: 550;
}
i{
    font-size: 13px;
}
.design-3{
    text-align: center;
    display: none;
}
.design-3-button{
    width: 150px;
    padding: 8px;
    border-radius: 20px;
    background-color: #F5F5F5;
}
.below-section{
    margin-top:5rem;
    width:100%;
    /* border: 2px solid blue; */
    padding:1%;
    background-color: #FFFFFF;
}
.below-section-child{
    /* border: 2px solid brown; */
    width:50%;
    margin-left:6rem;
}
/* .below-section>p{
    margin-left:6rem;
    font-size: 12px;
    font-weight: 400;
    color:rgb(170,171,172);
} */
.below-section>.below-section-child>a{
    text-decoration: none;
    color: #666866;
    font-size: 12px;
    /* margin-left: 6rem; */
}
.article{
    width:100%;
    /* border:2px solid green; */
    /* height:300px; */
    padding:1rem 6.9rem;
}
.article>h4{
    color:#666866;
}
.article>p{
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: normal;
    word-spacing: 1px;
    color: #666866;
}
.article-span{
    font-weight: 700;
    color:#666866;
}
a{
    text-decoration: none;
    color:#DC3558;
}
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-bookmyshow {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100px;
    background-color: var(--footer-main-background-color);
    padding: 0 24px 20px 24px;
    gap: 0.5rem;
} */

.dibya-logo-add {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.2rem;
    /* border: var(--footer-border-for-test); */

}

.dibya-hr {
    height: 0.9px;
    background-color: #5D5D5F;
    width: 40vw;
    /* border: var(--footer-border-for-test); */

}

.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-logo-bookmyshow i:hover {
    color: white;
}


.dibya-footer-media {
    /* position: relative;
        bottom: 200vh; */

    width: 100%;
    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-home{
    dis
} */

.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: 1023px) {
    
    .dibya-hr{
        width: 40vw;
    }
    .foot{
        display: none;
    }
    
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
    


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





@media only screen and (min-width: 320px) and (max-width: 480px) {
    
    

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

}
@media screen and (max-width:1023px){
    
    main{
        width:100vw;
        /* border:2px solid orange; */
        position:relative;
    }
    header{
        display: none;
    }
    
    
    h4{
        color:rgb(299,299,299);
        font-size: 18px;
    }
    
    .design-1{
        display: block;
        position: fixed;
        bottom: 40px;
        left:20px;
        z-index:+6;
    }
    .design-2{
        display: block;
        position: fixed;
        bottom: 40px;
        right:20px;
        z-index: +6;
    }
    
    /* .design-1{
        position: fixed;
        top:100px;
    } */
    /* .navbar{
        width:100%;
        height:100vh;
    } */
    /* .navbar-image-box{
        height:100%;
        min-width:100%;
        border:2px solid blue;
        object-fit: cover;
    } */
    .parentsection{
        width:100%;
        margin:0;
        /* border:2px solid orange; */
        margin-top:0;
    }
    .section-1{
        display: none;
    }
    .section-2{
        width:100%;
        margin-left: 0;
    }
    h2{
        display: none;
    }
    .section-2-announcement{
        display: none;
    }
    .languages{
        position:fixed;
        top:0;
        background-color: #FFFFFF;
        padding: 16px;
    }
    .languages i{
        display: flex;
    }
    .card-container{
        /* width:105vw; */
        /* border:2px solid #DC3558; */
        margin-top:80px;
        display: grid;
        grid-template-columns: repeat(2, calc((100% - 16px) / 2));
        padding: 16px;
        /* grid-template-rows: repeat(5,1fr); */
        /* gap:200px 26px; */
        gap:16px ;
        /* margin-left:6%; */
    }
    .card{
        height:100%;
    }
    .image-container{
        height: 100%;
    }
    .text-container{
        display: none;
    }
    /* .design-3{
        display: block;
    } */
    .below-section{
        display: none;
    }
    .article{
        display: none;
    }
    footer{
        display: none;
    }
    .dibya-footer-media{
        display: none;
    }
}
/* @media screen and (min-width:1024px) and (max-width:1439px){
    main{
        width:100vw;
        
    }
    .navbar{
        width:100%;
        
        height:90vh;
    }
    .navbar-image-box{
        height:100%;
        min-width: 100%;
       
    }
    .main_containerr{
        width:100%;
    }
    .containerr{
        width:100%;
    }
    .browse{
        width: 100%;
    }
    .resimage{
        display: block;
    }
    .section-2-announcement{
        display: none;
    }
    .card-container{
       
        margin-top:50px;
        display: grid;
        grid-template-columns: repeat(4, calc((100% - 96px) / 4));
        padding: 16px;
        
        gap:20px 16px ;
    }
    .card{
        height:100%;
    }
    .image-container{
        height: 100%;
    }
    .text-container{
        display: none;
    }
    .dibya-footer-media{
        display: none;
    }
    

} */

@media screen and (min-width:1024px){
    .dibya-footer-media{
        display: none;
    }
    .card-container {
        gap: 20px 26px;
    }
    .card{
        height:100%;
        /* justify-content: start; */
    }
    .main_containerr{
        width:100%;
    }
    .containerr{
        width:100%;
    }
}
