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

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

body{
    background: #fff;
    padding: 0;
    margin: 0;
    overflow: hidden;
}


a{
    text-decoration: none;
    outline: none;
}

.wrapper{
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

.main{
    height : 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.micro{
    max-width: 600px;
    width: 100%;
    height: 405px;
    position: relative; 
}


.micro .bg-img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
}

.micro .bg-img img{
    width: 100%;
    height: 100%;
}


.info{
    /* border: 1px solid black; */
    height: 32%;
    display: flex;
    padding: 10px;
    gap: 5px;
}


.logo{
    /* border: 1px solid red; */
    width: 35%;
    height: auto;
    margin: auto;
}

.image{
    /* border: 1px solid black; */
    width: 85%;
    height: 100%;
}

.image a{
    /* border: 1px solid blue; */
    display: block;
    width: 75%;
    height: auto;
    margin: auto;
}


.image a img{
    width: 100%;
}



.content{
    /* border: 1px solid black; */
    width: 62%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.head{
    /* border: 1px solid black; */
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    word-wrap: break-word;
    font-family: 'Poppins';
}


.caption{
    /* border: 1px solid black; */
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    word-wrap: break-word;
    font-family: 'Poppins';
}


.context{
    /* border: 1px solid black; */
    width: 82%;
    height: 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 32%;
    transform: skew(-32deg , 0deg);
}


.context img{
    width: 32px;
    height: 32px;
}


.con{
    transform: skew(32deg , 0deg);
    margin-left: 10px;
    margin-block: auto;
} 

.con a{
    /* border: 1px solid violet; */
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
} 


p.cont{
    /* border: 1px solid blue; */
    width: 78%;
    word-wrap: break-word;
}

.cont{
    color: black;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 500;
}

.social-icons{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 16%;
}

.link{
    /* border: 1px solid red; */
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
    /* height : 16%; */
    gap: 5px;
}

.link a {
    margin-top: auto;
    margin-bottom: auto;
    width: 40px;
    height: 40px;
}


.link a img{
    width: 100%;
    height: 100%;
}


.outer{
    width: 600px;
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0;
    padding: 0 30px;
}


.links{
    width: 230px;
    border-radius: 8px;
    padding: 8px;
}



.links a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}


.links a img{
    width: 30px;
    height: 30px;
} 

.links a p{
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    color: black !important;
}


.links:nth-child(1){
    background: white;
    box-shadow: 0 0 4px black;
}

.links:nth-child(2){
    background: black;
}

#coo{
    color: white !important;
}



div {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  div:focus {
    outline: none !important;
  }

  .viewText {
    color: rgba(0, 0, 0, 0.541) !important;
    width: 18px;
    height: 10px;
    margin-right: 4px;
  }

  .countView {
    padding: 2px 10px;
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 100px !important;
    border-radius: 2px;
    margin : 50px 30px 0 0;
  }

  #countView {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 12px;
  }


  .adb-footer {
    border-radius: 2px !important;
}


.adb-footer a {
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    color: rgba(0, 0, 0, 0.741) !important;
}

.adb-footer {
    position: absolute;
    bottom: 0px;
    left: 0;
    color: rgba(0, 0, 0, 0.541) !important;
    font-family: 'Poppins';
    border-top-left-radius: 10px;
    padding: 0px 5px;
    text-align: center;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: right;
    gap: 5px;
    margin-top: 10px;
    font-size: 10px;
}

.adb-footer p {
    font-weight: 400;
    padding: 0px;
    margin: 0px;
}

.adb-footer img {
    width: 90px;
}
   

@media (min-width : 576px) and (max-width:600px){
    .micro{
        width: 100%;
        height: auto;
        min-height: 350px;
    }


    .context {
        transform: skew(-36deg , 0deg);
    }

    .con{
        transform: skew(36deg, 0deg);
    }


    .head{
        font-size: 18px;
    }

    .caption{
        font-size: 16px;
    }

    .context img{
        width: 32px;
        height: 32px;
    }


    .cont{
        font-size: 18px;
    }

    
    .link a
    {   
        width: 35px;
        height: 35px;
    }

 
    .outer{
        width: 100%;
        padding: 0;
    }

    .links{
        width: 220px;
    }

    .links a  img{
        height: 28px;
        width: 28px;
    }

    .links a p{
        font-size: 16px;
    }

}


@media (min-width : 526px) and (max-width: 575px){
    .micro{
        width: 100%;
        height: auto;
        min-height: 330px;
    }


    .context {
        transform: skew(-36deg , 0deg);
    }

    .con{
        transform: skew(36deg, 0deg);
    }


    .head{
        font-size: 18px;
    }

    .caption{
        font-size: 16px;
    }


    .context img{
        width: 32px;
        height: 32px;
    }


    .cont{
        font-size: 16px;
    }

    
    .link a
    {   
        width: 34px;
        height: 34px;
    }



    .outer{
        width: 100%;
        padding: 0;
    }

    .links{
        width: 220px;
    }

    .links a img{
        width: 26px;
        height: 26px;
    }

    .links a p{
        font-size: 14px;
    }



}


@media (min-width:501px) and (max-width : 525px){

    .micro{
        width: 100%;
        height: auto;
        min-height: 310px;
    }


    .context {
        transform: skew(-36deg , 0deg);
    }

    .con{
        transform: skew(36deg, 0deg);
    }

    .head{
        font-size: 18px;
    }

    .caption{
        font-size: 16px;
    }

 

    .context img{
        width: 30px;
        height: 30px;
    }
  

    .cont{
        font-size: 16px;
    }

    
    .link a
    {   
        width: 32px;
        height: 32px;
    }



    .outer{
        width: 100%;
        padding: 0;
    }

    .links{
        width: 200px;
    }

    .links a img{
        width: 26px;
        height: 26px;
    }

    .links a p{
        font-size: 14px;
    }

}    


@media (min-width : 476px) and (max-width: 500px){
    .micro{
        width: 100%;
        height: auto;
        min-height: 290px;
    }

    .context {
        transform: skew(-36deg , 0deg);
    }

    .con{
        transform: skew(36deg, 0deg);
    }


    /* .image{
        margin-left: 12px;
    } */

    .head{
        font-size: 16px;
    }

    .caption{
        font-size: 14px;
    }

 

    .context img{
        width: 30px;
        height: 30px;
    }


    .cont{
        font-size: 14px;
    }

    
    .link a
    {   
        width: 30px;
        height: 30px;
    }
    

    .outer{
        width: 100%;
        padding: 0;
    }

    .links{
        width: 190px;
    }

    .links a img{
        height: 26px;
        width: 26px;
    }

    .links a p{
        font-size: 14px;
    }

}


@media (min-width : 426px) and (max-width : 475px){

    .micro{
        width: 100%;
        height: auto;
        min-height: 270px;
    }


    .context {
        transform: skew(-36deg , 0deg);
    }

    .con{
        transform: skew(36deg, 0deg);
    }


    .head{
        font-size: 14px;
    }

    .caption{
        font-size: 12px;
    }


    .context img{
        width: 28px;
        height: 28px;
    }
 

    .cont{
        font-size: 14px;
    }

    /* .image{
        margin-left: 10px;
    } */

    
    .link a
    {   
        width: 30px;
        height: 30px;
    }


    .outer{
        width: 100%;
        padding: 0;
    }

    .links{
        width: 170px;
    }

    .links a img{
        width: 26px;
        height: 26px;
    }

    .links a p{
        font-size: 14px;
    }


}


@media (min-width:376px) and (max-width:425px){
    .micro{
        width: 100%;
        height: auto;
        min-height: 245px;
    }


    .context {
        transform: skew(-36deg , 0deg);
    }

    .con{
        transform: skew(36deg, 0deg);
    }

    /* .image{
        margin-left: 8px;
    } */

    .head{
        font-size: 12px;
    }

    .caption{
        font-size: 10px;
    }


    .context img{
        height: 26px;
        width: 26px;
    } 

    .cont{
        font-size: 12px;
    }

    
    .link a
    {   
        width: 28px;
        height: 28px;
    }

 
    .outer{
        width: 100%;
        padding: 0;
    }

    .links{
        width: 160px;
    }

    .links a img{
        width: 24px;
        height: 24px;
    }

    .links a p{
        font-size: 12px;
    }

}


@media (min-width:320px) and (max-width:375px){

    .micro{
        width: 100%;
        height: auto;
        min-height: 230px;
    }   


    .context {
        transform: skew(-34deg , 0deg);
    }

    .con{
        transform: skew(34deg, 0deg);
    }

    /* .image{
        margin-left: 8px;
    } */

    .head{
        font-size: 12px;
    }

    .caption{
        font-size: 10px;
    }

    .context img{
        width: 25px;
        height: 25px;
    }

    .cont{
        font-size: 10px;
    }

    
    .link a
    {   
        width: 25px;
        height: 25px;
    }


    .outer{
        width: 100%;
        padding: 0;
    }

    .links{
        width: 140px;
    }

    .links a img{
        width: 20px;
        height: 20px;
    }

    .links a p{
        font-size: 12px;
    }

}


@media(min-width:320px) and (max-width:600px){
    .countView{
        margin: 25px 0 0 0 !important;
    }

    #countView{
        font-size : 8px !important;
    }


    .adb-footer {
        font-size: 8px;
    }

}