* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    overflow-x: hidden;
}
body a {
    text-decoration: none;
}
body li {
    list-style: none;
}
body h1,h2,h3,h4,h5 {
    font-family: "Fredoka", sans-serif;
    font-weight: 700;
}
:root {
    --primary: #1d5926;
    --secondary: #c7a34a;
    --third: #333;
    --white: white;
    --gray: gray;
    --lightgray: lightgray;
    --black: #333;
    --red: red;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.align-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.grid {
    width: 90%;
    margin: auto;
}
.grid-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.grid-three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid-four-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gap {
    margin-top: 4%;
}
.color {
    color: var(--primary);
}
.common{
    height:150px;
    background: repeating-conic-gradient(#333 0deg 19deg ,#111 19deg 38deg);
    background-size: 15px 15px;
    color:var(--white);
}
.common a{
    color:var(--white);
}
.common h4{
    margin-bottom: 1%;
}
.goto{
    border:none;
    height:34px;
    width:34px;
    background-color: var(--white);
    border-radius: 50%;
    border:2px solid var(--primary);
    font-size: 20px;
    position: absolute;
    content:"";
    bottom:4%;
    left:2.5%;
    position: fixed;
    color:var(--primary);
}
.whatsapp,.pulse {
    background: #1ab744;
    position: fixed;
    right:2.5%;
    bottom:6%;
    font-size: 35px;
    text-align: center;
    padding-top: 3px;
    z-index: 99;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: pointer;
    color: var(--white);
}
.pulse:nth-child(1) {
    animation: pulse 2s infinite;
}
.pulse:nth-child(2) {
    animation: pulse 2s infinite .3s;
}
.pulse:nth-child(3) {
    animation: pulse 2s infinite .6s;
}
@keyframes pulse {
0% {
    transform: scale(.1);
    opacity: 0;
}
50% {
    opacity: .3;
}
100% {
    transform: scale(1.6);
    opacity: 0;
}
}

/* navbar part  */
.first{
    background:linear-gradient(to right, var(--primary),var(--secondary));
    color:var(--white);
    height:34px;
    display: flex;
    justify-content: center;
}
.first-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.first-grid{
    display: flex;
    gap:30px;
    font-size: 14.5px;
    align-items: center;
}
.first-grid a{
    color:var(--white);
}
.first-icon{
    height:28px!important;
    width:28px!important;
    border: 2px solid var(--white);
    border-radius: 50%;
    color:var(--white);
    padding-top: 5px;
    margin-right: 5px;
}
.years{
    font-size: 14.5px;
}
.second{
    display: flex;
    height:90px;
    align-items: center;
    gap:20px;
}
.second h1{
    margin-bottom: 0%;
    font-size: 50px;
    color:var(--primary);
}
.txt{
    width: 0ch;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    animation: walking 7s linear forwards;
    transition: all 1s;
}
@keyframes walking {
    0%{
        width: 0ch;
    }
    100%{
        width: 37ch;
    }
}
nav{
    background:linear-gradient(to left, var(--primary),var(--secondary));
    
}
.wrapper{
    width:88%;
    margin: auto;
    height: 60px;
}
.logo{
    height:84px;
    width:84px;
    object-fit: contain;
}
.nav-menu{
    padding-left: 0px!important;
    margin-bottom: 0%;
}
.nav-list{
    padding-left: 60px;
    font-size: 14px;
}
.nav-list:first-child{
    padding-left: 0px;
}
.nav-list a{
    color:var(--white);
    font-weight: 500;
}
.donate{
    padding:12px 27px;
    background:linear-gradient(to right, var(--primary),var(--secondary));
    font-size: 14px;
    border-radius: 50px;
    color:var(--white);
    border:2px solid var(--white);
    transition: 0.1s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.donate:hover{
    background: var(--white)!important;
    border:2px solid var(--primary);
    color:var(--black);
    font-weight: 500;
}
.drop-down-menu{
    position: absolute;
    top:220px;
    background-color: var(--white);
    padding:12px;
    transition: 0.5s;
    opacity: 0;
    z-index: 500;
}
.drop-down-menu li, .drop-mega-menu li{
    margin-top: 4%;
}
.drop-down-menu li:nth-child(1){
    margin-top: 0%;
}
.drop-down-menu li a{
    font-size: 14px;
    color:var(--black)!important;
}
.drop-down:hover .drop-down-menu{
    top:184px;
    opacity: 1;
}
.nav-image{
    height:150px;
    width:100%;
    object-fit: cover;
}
.bar-icon{
    display: none!important; 
    font-size: 25px;
    cursor: pointer;
    border:2px solid #888;
    height:45px!important;
    width:45px!important;
    padding-top: 8px;
    color: #888;
}
.mob-wrapper{
    height:100vh;
    width:310px;
    position: fixed;
    background-color: var(--white);
    top:0;
    z-index: 100;
    left:-310px;
    transition: .7s;
}
.mob-header{
    height:90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10px;
}
.cut-icon{
    font-size: 30px;
    color:#888!important;
    cursor: pointer;
}
.mob-nav-menu{
    padding-inline: 15px;
}
.mob-nav-menu li{
    margin-top: 5%;
}
.mob-nav-menu li:first-child{
    margin-top: 8%;
}
.mob-nav-menu li a{
    font-size: 14px;
    color:var(--black);
    font-weight: 450;
}
.mob-nav-menu p a{
    color:var(--black);
}
.mob-icon{
    height:33px!important;
    width:33px!important;
    border:2px solid var(--black);
    border-radius: 50%;
    padding-top: 6px;
}
.dropdown-btn{
    border: none!important;
    background-color: transparent!important;
    font-size: 14px;
}
.caret{
    height:12px;
    width:12px;
    color:var(--white);
}
.mob-drop-down-menu{
    display: none;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding-left: 15px;
}
.mob-drop-down-menu li:first-child{
    padding-top: 15px;
}
.mob-drop-down-menu li:last-child{
    padding-bottom: 15px;
}
.mob-drop-down-menu li a{
    color:var(--black)!important;
    font-size: 15px;
}
.show{
    left:0;
}

/* index page start  */
.header{
    position: relative;
    height:77vh;
    width:100vw;
    background-color: var(--black);
}
.header input{
    appearance: none;
}
.header .dots{
    position: absolute;
    bottom:60px;
    z-index: 800;
    display: flex;
    gap:6px;
}
.header .dots label{
    width:20px;
    height: 20px;
    background-color: var(--white);
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.5;
    border: 2px solid var(--primary);
}
.header input:nth-child(1):checked ~ .dots label:nth-child(1),
.header input:nth-child(2):checked ~ .dots label:nth-child(2),
.header input:nth-child(3):checked ~ .dots label:nth-child(3)
{
    opacity: 1;
}
.header .slider{
    position: absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
}
.header .slider .slide{
    position: absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    background: var(--img);
    background-size: cover;
    background-position: center;
    justify-content: flex-start;
    align-items: flex-end;
    clip-path: circle(0% at 0% 50%);
    transition: 1.5s;
    transition-delay: 0s;
}
.header .slider .slide:nth-child(even){
    clip-path: circle(0% at 100% 50%);
}
.header input:nth-child(1):checked ~ .slider .slide:nth-child(1),
.header input:nth-child(2):checked ~ .slider .slide:nth-child(2),
.header input:nth-child(3):checked ~ .slider .slide:nth-child(3)
{
    opacity: 1;
    clip-path: circle(150% at 50% 50%);
    transition-delay: 1s;
}
.grid-about{
    display: flex;
    flex-direction: column;
    gap:12px;
    padding-right: 50px;
}
.color{
    color:var(--primary);
    font-size: 18px;
}
.contain{
    height: 450px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}
.cards{
    width:45px;
    height: 450px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    margin:0 7px;
    transition:all 1s;
}
input{
    display: none;
}
input:checked + label{
    width:500px;
    height:450px;
}
.cards[for="c1"]{
    background:linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/9.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.cards[for="c2"]{
    background:linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/8.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.cards[for="c3"]{
    background:linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.btn-one{
    padding:12px 27px;
    background:linear-gradient(to right, var(--primary),var(--secondary));
    border-radius: 50px;
    color:var(--white);
    border:2px solid var(--white);
    transition: 0.1s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.btn-one:hover{
    background: var(--white)!important;
    border:2px solid var(--primary);
    color:var(--black);
    font-weight: 500;
}
.btn-two{
    padding:12px 27px;
    background: var(--white)!important;
    border-radius: 50px;
    color:var(--black);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-weight: 500;
}
.btn-two:hover{
    background:linear-gradient(to left, var(--primary),var(--secondary))!important;
    color:var(--white);
}
.counter{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 25px;
    padding-inline: 10px;
}
.counter-grid{
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    height:100px;
    align-items: center;
}
.counter-icon{
    font-size: 60px;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.counter-text h3{
    font-weight: 600;
}
.counter-text h6{
    margin-bottom: 0%;
}
.aim-icon{
    height:100px!important;
    width:100px!important;
    font-size: 50px;
    padding-top: 17px;
    border-radius: 50%;
    margin-bottom: 5%;
}
.vision{
    border:8px solid var(--primary);
    color:var(--primary);
    transition: .3s;
}
.vision:hover{
    background-color: var(--primary);
    color:var(--white);
}
.mission{
    border:8px solid rgb(211, 91, 11);
    color:rgb(211, 91, 11);
    transition: .3s;
}
.mission:hover{
    background-color: rgb(211, 91, 11);
    color:var(--white);
}
.objective{
    border:8px solid var(--secondary);
    color:var(--secondary);
    transition: .3s;
}
.objective:hover{
    background-color: var(--secondary);
    color:var(--white);
}
.aim-padding{
    padding-inline: 20px;
}
.timeline{
    position: relative;
}
.timeline::after{
    position: absolute;
    content:"";
    width:5px;
    height:100%;
    left:50%;
    background-color: var(--primary);
    top:0;
    border-radius: 50px;
}
.timelineOne{
    width: 50%;
    position: relative;
    padding:20px 30px;
}
.circle{
    height:20px;
    width:20px;
    border:2px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    right: -13px;
    background-color: var(--white);
    z-index: 10;
}
.right-container .circle {
    left: -7px;
}
.timelineBox{
    background:linear-gradient(to right,var(--primary),var(--secondary));
    color:var(--white);
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.right-container{
    left:50%;
}
.test-header{
    display: flex;
    gap:13px;
    margin-bottom: 3%;
}
.item{
    padding-inline: 10px;
    padding-block: 20px;
    margin-top: 3%;
    margin-bottom: 3%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.test-header h5{
    font-size: 19px;
}
.test-header h6{
    color:var(--gray);
}
.testimonial_img{
    height: 55px !important;
    width: 55px!important;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white)!important;
}
.fa-star{
    color:var(--secondary);
}
.owl-dot span{
    height:20px!important;
    width:20px!important;
}
.owl-dot.active span{
    background-color: var(--secondary)!important;
    height:20px!important;
    width:20px!important;
    border:3px solid var(--primary);
    padding:7px;
}
.social{
    height:130px;
    background-color: #25D366;
    color:var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
}
.social h5{
    margin-bottom: 0%;
}
.social-icon{
    font-size: 50px;
    color:var(--white)!important;
    margin-bottom: 25%;
}
.social-one{
    background-color: #3b5998;
}
.social-two{
    background-color: hotpink;
}
.social-three{
    background-color: var(--red);
}
.social-five{
    background-color: var(--black);
}
.social-four{
    background-color: #0072b1;
}
.social-six{
    background-color: darkred;
}
.social-seven{
    background-color: #0088cc;
}

/* footer part  */
footer{
    background: repeating-conic-gradient(#000 0deg 45deg ,#111 45deg 90deg);
    background-size: 15px 15px;
    color: var(--white);
    margin-top: 2%;
    padding-block: 40px;
    padding-bottom: 10px;
}
footer a{
    color:var(--white);
}
footer h4{
    font-size: 21px;
    margin-bottom: 7%;
}
.footer-grid{
    display: grid;
    grid-template-columns: 1fr 0.7fr 0.7fr 1fr;
    gap:35px;
}
.footer-icon{
    height: 37px!important;
    width:37px!important;
    border:2px solid var(--lightgray);
    border-radius: 50%;
    padding-top: 8px;
}
.footer-one{
    border-bottom: 1px dotted var(--white);
    padding-block: 10px;
}
.footer-one:last-child{
    border-bottom: none;
}
.footer-two{
    margin-top: 1%;
    padding-block: 5px;
}

/* about us page  */
.president-grid{
    width:90%;
    margin: auto;
    margin-top: 5%;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap:15px;
}
.president-image{
    height:325px;
    width:280px;
    object-fit: cover;
    margin-bottom: 4%;
    background-color: rgb(230, 230, 215);
}

/* member page  */
.grid-member{
    width:40%;
    margin: auto;
    margin-top: 4%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 30px;
    padding-inline: 15px;
}
.input-group,.input-group-text,.form-control{
    border-radius: 0%!important;
    height:44px;
}
.form-control:focus{
    border:1px solid var(--lightgray)!important;
    outline: none!important;
    box-shadow: none!important;
}
.submit-btn{
    background-color: var(--primary)!important;
    width:20%!important;
    height:45px!important;
    color:var(--white)!important;
}
.member-card{
    height:100%;
    width:100%;
    background-color: var(--lightgray);
    text-align: center;
    padding-block: 10px;
    padding-inline: 10px;
    border-radius: 5px;
}
.member-card p{
    margin-bottom: 0%;
}
.member-logo{
    height:60px;
    width:60px;
    margin-bottom: 5%;
}
.member-person{
    height:120px;
    width:120px;
    border-radius: 50%;
    background-color: var(--black);
    object-fit: contain;
    margin-top: 5%;
    margin-bottom: 6%;
}
.memebr-date{
    margin-top: 4%;
    font-size: 15px;
    font-weight: 500;
}

/* contact page  */
.grid-contact{
    width:75%;
    margin: auto;
    margin-top: 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}
.contact-left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:10px;
}
.contact-icon{
    height: 37px!important;
    width:37px!important;
    border:2px solid var(--black);
    color:var(--black);
    border-radius: 50%;
    padding-top: 8px;
}
.contact-icon:hover{
    background-color: var(--black);
    color:var(--white);
}
.map{
    height:400px;
    width:100%;
}

/* donate page  */
.donate-grid{
    width:50%;
    margin:auto;
    margin-top: 4%;
}
.donate-left{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 10px;
}
.donate-left h4{
    margin-bottom: 4%;
}

/* animation part  */
.leftanimation{
    animation: leftAnimation both;
    animation-timeline: view(70% 5%);
}
@keyframes leftAnimation{
    0%{
    opacity: 0;
    transform: translateX(-200px);
    }
    100%{
    opacity: 1;
    transform: translateX(0px);
    }
}
.rightanimation{
    animation: rightAnimation both;
    animation-timeline: view(70% 5%);
}
@keyframes rightAnimation{
    0%{
    opacity: 0;
    transform: translateX(200px);
    }
    100%{
    opacity: 1;
    transform: translateX(0px);
    }
}
.zoomup{
    animation: zoomUp both;
    animation-timeline: view(70% 5%);
}
@keyframes zoomUp{
    0%{
    opacity: 0;
    transform: scale(0);
    }
    100%{
    opacity: 1;
    transform: scale(1);
    }
}


/* dashboard part start  */
.login{
    height:770px;
}
.login-form{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:25px;
    width:35%;
}
.dashboard{
    height:50px;
    background-color: var(--primary);
    color:var(--white);
    display: flex;
    align-items: center;
    padding-inline: 15px;
}
.dashboard h3{
    margin-bottom: 0%;
    letter-spacing: 1px;
}
.admin-left{
    background-color: var(--black);
    height:720px;
}
.admin-box{
    padding:8px 21px;
    background-color: var(--white);
    margin-top: 4%;
}
.admin-box a{
    color:var(--black);
}
.admin-margin{
    margin-block: 25px;
}
.fa-ban{
    color:red;
}
.mem-btn{
    border:none;
}
.admin-form{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:15px;
}
.edit{
    background-color: blue;
    color: var(--white)!important;
    padding: 7px 20px;
}
.delete{
    background-color: var(--red);
    color: var(--white)!important;
    padding: 7px 20px;
    border: none!important;
}

/* responsive part */
@media (max-width:1024px){
.second h1{
    font-size: 35px;
}
.nav-list{
    padding-left: 30px;
}
.grid-about{
    gap:7px;
    padding-right: 10px;
}
.contain{
    height: 400px;
}
.cards{
    height: 400px;
    margin:0 4px;
}
input:checked + label{
    width:100%;
    height:400px;
}
.counter-grid{
    grid-template-columns: 0.3fr 1fr;
}
.counter-icon{
    font-size: 40px;
}
.over-clip{
    overflow-x: clip;
}
.president-grid{
    width:90%;
}
.president-image{
    width:250px;
}
.common h4{
    margin-bottom: 1.5%;
}
.submit-btn{
    width:100%!important;
}
.donate-grid{
    width:70%;
}
.login{
    height:685px;
}
.login-form{
    width:50%;
}
.admin-left{
    height:635px;
}
.res-memebr-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
}

@media (max-width:768px){
.whatsapp,.pulse {
    right:3%;
}
.second h1{
    font-size: 25px;
}
.bar-icon{
    display: block!important; 
    border:2px solid var(--white);
    color:var(--white);
}
.wrapper{
    justify-content: end;
}
.nav-menu{
    display: none;
}
.mob-nav-menu li a{
    font-size: 13.5px;
    font-weight: 500;
}
.dropdown-btn{
    font-size: 13.5px;
    font-weight: 500;
    color:#333333;
}
.mob-drop-down-menu li a{
    font-size: 14.5px;
}
.res-grid-about{
    display: grid;
    grid-template-columns: 1fr;
}
.cards{
    margin:0 7px;
}
input:checked + label{
    width:550px;
}
.counter{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.counter-icon{
    font-size: 50px;
}
.timelineOne{
    padding:10px 20px;
}
.timelineBox{
    padding: 15px 15px 35px 15px;
    gap:8px;
}
.res-aim-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.res-social-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footer-grid{
    grid-template-columns: 1fr 1fr;
}
.president-grid{
    grid-template-columns: 1fr;
    text-align: center;
}
.president-image{
    width:280px;
}
.common h4{
    margin-bottom: 2%;
}
.res-media-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.grid-member{
    width:60%;
}
.grid-contact{
    grid-template-columns: 1fr;
    gap:80px;
}
.map{
    height:350px;
}
.donate-grid{
    width:90%;
}
.res-memebr-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
}

@media (max-width:425px){
.whatsapp,.pulse {
    right:4.5%;
}
.goto{
    left:4%;
}
.first{
    display: none;
}
nav{
    position: relative;
    z-index: 1000;
}
.second{
    flex-direction: column;
    height:100%;
    gap:10px;
    padding-top: 1px;
    padding-bottom: 10px;
}
.second h1{
    font-size: 18px;
    text-align: center;
}
.header{
    height:40vh;
}
.header .dots{
    bottom:15px;
}
.header .dots label{
    width:18px;
    height: 18px;
}
.contain{
    height: 380px;
    flex-direction: column;
    padding-block: 10px;
    margin-top: 5%;
}
.cards{
    width:380px;
    height: 60px;
    margin:7px 0px;
}
input:checked + label{
    width:380px;
}
.counter{
    grid-template-columns: 1fr;
}
.counter-grid{
    grid-template-columns: 1fr;
    height:150px;
    text-align: center;
    justify-content: center;
}
.timeline::after{
    display: none;
}
.timelineOne{
    width: 100%;
    padding:20px 30px;
}
.right-container{
    left:0%;
}
.circle{
    display: none;
}
.res-aim-grid{
    grid-template-columns: 1fr;
}
.item{
    width:99%;
}
.social{
    height:100%;
    padding-block: 20px;
}
.social-icon{
    font-size: 30px;
}
.footer-grid{
    grid-template-columns: 1fr;
}
.common h4{
    margin-bottom: 3%;
}
.res-media-grid,.donate-grid{
    grid-template-columns: 1fr;
}
.grid-member{
    width:90%;
}
.grid-contact{
    gap:30px;
    width:90%;
}
.map{
    height:250px;
}
.donate-left{
    padding-block: 20px;
    padding-inline: 20px;
}
.login-form{
    width: 90%;
}
.dashboard{
    justify-content: center;
}
.admin-left{
    height:240px;
}
.admin-box{
    text-align: center;
}
.res-memebr-list{
    display: grid;
    grid-template-columns: 1fr;
}
}

@media (max-width:375px){
.second h1{
    font-size: 15.5px;
}
.header{
    height:38vh;
}
.contain{
    height: 380px;
}
.cards{
    width:335px;
}
input:checked + label{
    width:335px;
}
.res-social-grid{
    gap:10px;
}
}

