*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    display: grid;
}
.header{
    display: flex;
    flex-direction: column;
width: 100%;
position: sticky;
top: 0px;
z-index: 12;
}
 .header .firstheader{
     display: flex;
     width: 100%;
     justify-content: space-between;
     align-items: center;
background: #fff;
}
.header .firstheader p:nth-child(6){
position: relative;
/* overflow: hidden; */
}
.header .firstheader p:nth-child(6):hover{
    background-color: #fff;
    color: #333;
}
.header .firstheader p:nth-child(6) i{
    position: absolute;
    right: 1em;
    top: 23px;
    z-index: 1;
}
.header .firstheader .is{
    display: flex;
    gap: 10px;
    border-radius: 30px;
height: 40px;
}
.header .firstheader .is i{
    color: rgb(167, 167, 247);
font-size: 1em;
}
.header .firstheader .is:hover{
    border-radius: 30px;
    color: #222523;
    background: rgb(235, 233, 233);
}
.header .firstheader input{
    padding: 10px;
    border-radius: 30px;
    border: none;
    outline: none;
    border: 1px solid lightgrey;
}
.header .firstheader p{
    transition: all ease-in-out 0.5s;
    padding: 10px;
    font-weight: 800;
    cursor: pointer;
    height: 60px;
    display: flex;
align-items: center;
}
.header .firstheader p:hover{
background: #11aa56cc;
color: #fff;
}
.header .firstheader button{
    transition: all ease-in-out 0.5s;
    padding: 10px;
    font-weight: 800;
    cursor: pointer;
background: #11aa56cc;
color: #fff;
outline: none;
border: none;
margin-right: 10px;
border-radius: 10px;
}
.header .firstheader button:hover{
    opacity: 0.5;
}
.firstheader img{
object-fit: contain;
width: 50px;
height: 50px;
margin-left: 10px;
}
.header .sceondheader{
    display: flex;
    justify-content: space-between;
    background-color: #222523;
height: 45px;
align-items: center;
}
.header .sceondheader p{
    color: #fff;
    cursor: pointer;
    transition: all ease-in-out 0.5s;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px;
}

.header .sceondheader p:nth-child(1){
    background:  #11aa56cc;
width: 6%;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
}
.header .sceondheader p:nth-child(1):hover{
        background:  #11aa56cc;
}
.header .sceondheader p:hover{
    background: #000000;
}
 .sectiontwo {
      display: flex;
      width: 100%;
      gap: 30px;
      justify-content: flex-start; 
      padding-top: 6.5em; 
    }

    
    .sectiontwo .sidebar {
      display: flex;
      flex-direction: column;
      background: rgb(190, 186, 186);
      width: 16%;
      gap: 10px;
      padding: 13px;
      height: calc(100vh - 6.5em); 
      overflow-y: auto;
      position: fixed;
      top: 6.5em;
      left: 0;
      border-right: 1px solid #ccc;
    }
.sectiontwo .sidebar p{
    transition: all ease-in-out 0.7s;
    cursor: pointer;
width: 100%;
}
.sectiontwo .sidebar p:hover{
background: lightgrey;
padding: 10px;
border-radius: 5px;
}
    .sectiontwo .sidebar h2 {
      font-weight: 300;
      margin-top: 0;
    }

    .sectiontwo .sidebar .last {
      margin-bottom: 10px;
    }

    
    .sectiontwo .context {
      margin-left: 16%; 
      width: 80%;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    overflow-x: hidden;
    }

    .sectiontwo .context .items {
        display: flex;
        gap: 10px;
      max-width: 100%;
      margin: 0 auto;
    }
    .sectiontwo .context .items .box{
        overflow: hidden;
        height: 300px;
        border-radius: 5px;
        width: 50%;
        transition: all ease-in-out 0.4s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    }
    .sectiontwo .context .items .box .image img{
        object-fit: cover;
        width: 100%;
        height: 300px;
        transition: all ease-in-out 0.9s;
    }
.sectiontwo .context .items .box .bottom{
display: flex;
flex-direction: column;
gap: 10px;
justify-content: center;
align-items: center;
border-radius: 5px;
background:  #222523 ;
padding: 10px;
transition: all ease-in-out 1s;
color: #fff;
height: 270px;
}
.sectiontwo .context .items .box:hover{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.sectiontwo .context .items .box:hover .bottom{
    transform: translateY(-7%);
    z-index: 1;
}
.sectiontwo .context .items .box:hover .image img{
    clip-path: circle(20%);
    transition: all ease-in-out 0.9s;
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.sectiontwo .context .items .box .bottom p:nth-child(2){
    text-align: center;
    color: #fff;
}
.sectiontwo .context .items .box .bottom p:nth-child(3){
    display: flex;
    color: #fff;
    gap: 20px;
}
.sectiontwo .context .items .box .bottom p:nth-child(3) i{
color: #cff8ff;
background: transparent;
width: 2.5em;
height: 5vh;
display: flex;
justify-content: center;
align-items: center;
transition: all ease-in-out 0.7s;
border-radius: 5px;
border: 1px solid #fff;
}
.sectiontwo .context .items .box .bottom p:nth-child(3) i:hover{
color: #333;
background: #fff;
}
    .sectiontwo .context h1 {
      margin-top: 0;
    }

    
    .sectiontwo .sidebar::-webkit-scrollbar {
      width: 5px;
      cursor: pointer;
    }
    .sectiontwo .sidebar::-webkit-scrollbar-thumb {
      background-color: rgb(68, 66, 66);
      border-radius: 3px;
      transition: all ease-in-out 0.4s;
    }
    .sectiontwo .sidebar::-webkit-scrollbar-thumb:hover {
      background-color: #11aa56cc;
    }
    .text{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .text .btns{
        display: flex;
        justify-content: space-between;
    }
    .text .btns button{
        padding: 10px;
        border-radius: 5px;
        border: none;
        font-weight: 400;
        background: #11aa56cc;
        color: #fff;
    }
    .text .btns:nth-child(8){
       justify-content: center;
       align-items: center;
       display: flex;
        width: 100%;
        gap: 10px;
    }
        .text .btns:nth-child(8) button{
            width: 30%;
        }
        .firstitems{
            display: flex;
            width: 100%;
            gap: 10px;
        }
        .firstitems .boxx{
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            align-items: center;
            width: 50%;
            background: #cff8ff;
            padding: 15px;
        }
        .firstitems .boxx:nth-child(2){
            background: rgb(234, 197, 245);
        }
        .firstitems .boxx:nth-child(3){
            background: rgb(245, 236, 197);
            text-align: center;
        }
        .firstitems .boxx p{
            text-align: center;
        }
        .firstitems .boxx button{
         padding: 10px;
        border-radius: 5px;
        border: none;
        width: 50%;
        font-weight: 400;
        background: #11aa56cc;
        color: #fff;   
        }
        .firstitems .boxx:nth-child(2) button{
            background: purple;
        }
        .firstitems .boxx:nth-child(3) button{
            background: rgb(172, 143, 13);
        }
        button:hover{
            opacity: 0.5;
        }
        .cardsscetion{
            display: flex;
            width: 80%;
margin: 0 auto;
        }
               .cardsscetion .box{
            display: flex;
            flex-direction: column;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
            padding: 10px;
            margin: 20px;
            width: 70%;
            height: 300px;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            justify-content: space-between;
        }
        .cardsscetion .box:hover{
            animation: updwon 0.6s linear infinite alternate;
        }
        @keyframes updwon{
            0%{
                transform: translateY(0%);
            }
            100%{
                transform: translateY(-5%);
            }
        }
        .cardsscetion .box::after{
            content: '';
            top: -0.5em;
            left: -0.8em;
            background: rgb(153, 0, 255);
            width: 20px;
            height: 30vh;
            position: absolute;
            transform: rotate(7deg);
        }
        .cardsscetion .box::before{
            content: '';
            bottom: -0.5em;
            right: -0.8em;
            background: rgb(162, 0, 255);
            width: 20px;
            height: 30vh;
            position: absolute;
            transform: rotate(7deg);
        }
        .cardsscetion .box .icons{
            font-size: 8em;
        }
        .cardsscetion > .box p {
            text-align: center;
            color: #222523;
        }
        .cardsscetion > .box h2 {
            text-align: center;
            color: #222523;
        }
        .sceondcards{
            display: flex;
            width: 80%;
margin: 0 auto;
        }
               .sceondcards .box{
            display: flex;
            flex-direction: column;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
            padding: 10px;
            width: 70%;
            margin: 10px;
            height: 300px;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            
        }
        .sceondcards .box::after{
            content: '';
            bottom: -2em;
            left: -0.6em;
            background: rgb(0, 162, 255);
            width: 100vw;
            height: 35vh;
            z-index: -1;
            position: absolute;
            transform: rotate(-7deg);
        }

        .sceondcards .box .icons{
            font-size: 8em;
        }
        .sceondcards .box p , h2{
            text-align: center;
            color: #fff;
        font-family: 'Courier New', Courier, monospace;
        }
        .sceondcards .box:hover{
            animation: updwonone 0.6s linear infinite alternate;
        }
        @keyframes updwonone{
            0%{
                transform: translateY(0%);
            }
            100%{
                transform: translateY(-5%);
            }
        }
