@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
:root{
    --special-color: rgb(112,112,200);
    --black-color: #111;
    --white-color: #fff;
    --background-color: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));

    /* --background-color: #111;
    --black-color: #fff;
    --white-color: #111; */
}
.darkTheme{
    --background-color: #111;
    --black-color: #fff;
    --white-color: #111;
}
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
body{
    width: 100%;
    height: 100vh;
    /*background: var(--background-color); */
}

nav{
    overflow: hidden;
    height: 63px;
    width: 100%;
    background: #111;
    font-family: 'Ubuntu',sans-serif;
}
label.logo{
    line-height: 60px;
    padding: 0 50px;
    margin-left: 20px;
}
nav .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
nav  ul{ 
    overflow: hidden;
    float: right;
    margin-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: 60px;
    margin: 0 15px;
    
}
nav ul li a{
    position: relative;
    color: #fff;
    font-size: 25px;
    padding: 7px 13px;
    border-radius: 3px;
    font-weight: 500;
}
nav  li a:hover{
    color: var(--special-color);
}
nav  .current{
    color: var(--special-color);
}
samp{
    color: var(--special-color);
}
label #btn,
label #cancel{
    color: #fff;
    font-size: 25px;
    float: right;
    line-height: 60px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}


/* Home section.......................................... */
#home .darkMode{
    /* border: 2px solid black; */
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 50px;

}
#home .darkMode p{
    font-size: 18px;
    font-weight: bolder;
    padding-right: 8px;
}
#home{
    /* background: linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0.5)),url(../assets/img/1644288797921-min.jpg); */
    /* background: url(../assets/img/1644288797921-min.jpg); */
    /* background-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.6) 100%),url(../assets/img/1644288797921-min.jpg); */
    background-size: 100% 100%;background-attachment: fixed;
    /*  */
   background: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    color: var(--black-color);
    font-family: 'ubuntu', sans-serif;
}
#home .home-content{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 50px;
    /* border: 2px solid black; */
    /* box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2); */
    /* position: relative; */
    /* top: 100px; */
    /* align-items: center; */
    font-family: 'Ubuntu',sans-serif;
}

#home .home-content .text-1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 30px;
}
#home .home-content .text-2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 40px;
    font-weight: 600;
}
#home .home-content .text-3{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 45px;
}
#home .home-content .text-3 span{
    font-weight: 600;
    color: var(--special-color);
}
.homePdf{
    /* border: 2px solid black; */
    display: flex;
    /* width: 80vw; */
    width: 100%;
    height: 80px;
    align-items: center;
    justify-content: space-evenly;
}

.PdfBtn{
    border: 2px solid var(--black-color);
    border-radius: 10%;
    /* margin-top: 20px; */
    width: 80px;
    background-color: var(--special-color);
    cursor: pointer;
}
.PdfBtn:hover{
    border: 3px solid black;
    background-color: rgb(112,133,200);
}
.homePdf a{
   color: var(--black-color);
    font-weight: bolder;
}
.homePdf .project{
    border: 2px solid var(--black-color);
    border-radius: 10%;
    /* margin-top: 20px; */
    width: 80px;
    background-color: var(--special-color);
    cursor: pointer;
}
.homePdf .project:hover{
    border: 3px solid black;
    background-color: rgb(112,133,200);
}

/*........................................... contract Page....................................... */
#contact{
    
   background: var(--background-color);
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#contact .content{
    max-width: 800px;
    text-align: center;
}
#contact .content h2{
    font-size: 36px;
    font-weight: 800;
    /* text-decoration: underline; */
   color: var(--black-color);
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.container .contactInfo .box{
    position: relative;
    padding: 30px 0;
    display: flex;
}
.container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    background: #fff;
}
.container .contactInfo .box .text{
    display: flex;
    margin-left: 20px;
   color: var(--black-color);
    flex-direction: column;
    font-weight: 300;
}
.container .contactInfo .box  .text  h3{
    font-size: 20px;
    font-weight: 800;
    color: var(--special-color);
}
.contactForm{
    /* height: 60vh; */
    /* border: 2px solid black; */
    box-shadow: 10px 10px 3px 3px rgba(0, 0, 0, 0.2);
    width: 40%;
    padding: 40px;
    background: #fff;
}
.contactForm h2{
    font-size: 30px;
   color: #111;
    font-weight: 800;
}
.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 25px;
}
.contactForm .inputBox input,
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 5px 0;
    border: none;
    border-bottom: 2px solid #111;
    outline: none;
    resize: none;
}
.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #444;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span{
    color: red;
    font-size: 14px;
    transform: translateY(-20px);
}
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span{
    color: red;
    font-size: 14px;
    transform: translateY(-35px);
}
.contactForm .inputBox input[type="submit"]{
    width: 100px;
    background: var(--special-color);
   color: var(--white-color);
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}
@media (max-width: 990px){
    #contact{
        padding: 50px;
    }
    #contact .content h2{
        font-size: 28px;
    }
    .container{
        flex-direction: column;
    }
    .container .contactInfo{
        font-size: 15px;
    }
    .container .contactInfo .box  .text  h3{
        font-size: 17px;
    }
    .container .contactInfo .box .icon{
        height: 50px;
        width: 40px;
        font-size: 20px;
    }
    .container .contactInfo{
        margin-bottom: 40px;
    }
    .container .contactInfo,
    .contactForm{
        width: 100%;
    }
    .contactForm h2{
        font-size: 28px;
    }
}



/* ......................................................footer..............................................  */
footer{
    background-color: #111;
    height: auto;
    width: 100%;
    font-family: "open sans";
    padding-top: 8px;
    padding-bottom: 5px; 
   color: #fff;   
    /* display: flex;
    align-items: center;
    justify-content: center; */
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0px;
    padding: 0px;
}
.footer-content p{
    color: var(--special-color);
    max-width: 500px;
    line-height: 28px;
    font-size: 22px;
    font-weight: bolder;
}
.footer-content .socials{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;  
}
.footer-content .socials li{
    margin: 5px;
}

.footer-content .socials li a{
    font-size: 20px;
   color: #fff;
}
.footer-content .socials li a:hover{
    color: var(--special-color);
}
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: center;

}
.footer-bottom p{
    padding: 10px;
    margin: 0%;
    max-width: 550px;
    font-size: 20px;
    font-weight: bolder;
}
.footer-bottom p span{
    color: var(--special-color);
    font-size: 22px;
}


/* .............................................Responsive........................................................ */

@media (max-width: 450px){    

    /* ..................................................for home section.................. */
    .home{
        display: flex;
    }
    #home .darkMode{
        padding-right: 10px;
    }
    #home .darkMode .switch {
        position: relative;
        display: inline-block;
        width: 45px;
        height: 24px;
    }
    #home .darkMode .switch .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }
    #home .darkMode .switch input:checked + .slider:before {
        transform: translateX(21px);
      }
    #home .max-width{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #home .max-width .home-content{
        box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
        width: 90vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #home .max-width .home-content .text-1{
        font-size: 18px;
        width: 100vw;
    }
    #home .max-width .home-content .text-2{
        font-size: 24px;
        width: 100vw;
    }
    #home .max-width .home-content .text-3{
        font-size: 26px;
        width: 100vw;
    }
    #home .darkMode p{
        font-size: 14px;
    }
    .homePdf .Pdf{
        margin-right: 50px;
    }


/* ........................................................For nav Bar................................................... */
    nav{
        width: 100%;
        background: #111;
    }
    nav .logo{
        position: relative;
        padding: 0px 5px;
        z-index: 1000;
    }

    nav .logo a{
        font-size: 25px;
    }
    label #btn{
        display: block;
    }
    nav ul{
        z-index: 100;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* position: absolute; */
        position: fixed;
        width: 200px;
        height: 100%;
        background: #111;
        top: 0px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        overflow-x: hidden;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 18px;
        /* display: block; */
    }
    #check:checked ~ ul{
        left: 0;
    }
    #check:checked ~ label #btn{
        display: none;
    }
    #check:checked ~ label #cancel{
        display: block;
    }
    
    /*............................................................ For footer................................. */
    footer{
        /* margin-top: 40px; */
    }
    .footer-content{

        padding: 0px !important;
    }
    .footer-bottom p{
        font-size: 15px;
    }
    .footer-bottom p span{
        font-size: 16px;
    }
    .footer-content p{
        font-size: 18px;
    }
    .footer-content .socials li a{
        font-size: 18px;
        padding-left: 3px;
    }

    /* ........................................For about.................................................  */
    #about .about-width{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
    }
    #about .about-width h2{
        font-size: 25px;
    }
    #about .about-width .about-content1{
        font-size: 12px;
        box-shadow: none !important;
        width: 100%;
        padding-top: 0px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 0px !important;
        text-align: justify;
    }
    
    #about .about-width .skills{
        font-size: 16px;
        /* z-index: -1 !important;s */
        box-shadow: none !important;
        width: 100%;
        margin-top: 10px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        margin-right: 0px !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-bottom: 40px !important;
        /* padding-left: 30px; */
        /* padding-right: 30px; */
    }
    #about .skills .right .info span{
        font-size: 14px !important;
        font-weight: 300 !important;
    }
        /* ========================for code=================== */
        .code-section input{
            padding: 0 20px !important;
            margin: 20px 0 !important;
            width: 50% !important;
            right: 20px !important;
            font-size: 15px !important;
         }
         .code-section ol{
            margin-top: 60px !important;
            margin-bottom: 30px !important;
        }
        .code-section ol h2{
            display: flex;
            justify-content: center;
            font-size: 14px;
        }
        .code-section .language-c{
            width: 95vw !important;
            padding: 0px 20px !important;
        }
        .code-section code{
            font-size: 12px;
        }
        .toolbar-item .copy-to-clipboard-button{
            margin-right: 5px !important;
        }
    
}
@media (min-width: 450px) and (max-width: 750px){  

    /* .........................................For home ..........................................   */
    .home{
        display: flex;
    }
    #home .max-width{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #home .max-width .home-content{
        box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #home .max-width .home-content .text-1{
        font-size: 32px;
        width: 100vw;
    }
    #home .max-width .home-content .text-2{
        font-size: 46px;
        width: 100vw;
    }
    #home .max-width .home-content .text-3{
        font-size: 40px;
        width: 100vw;
    }

    /* ...........................................for navbar....................................... */
    nav{
        background: #111;
    }
    nav .logo{
        display: block;
        float: left;
        padding: 0px 5px;
    }
    
    nav .logo a{
        font-size: 34px;
    }
    label #btn{
        display: block;
        font-size: 32px;
    }
    nav ul{
        z-index: 100;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 50%;
        height: 102%;
        background: #111;
        top: 58px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 26px;
    }
    #check:checked ~ ul{
        left: 0;
    }
    #check:checked ~ label #btn{
        display: none;
    }
    #check:checked ~ label #cancel{
        display: block;
    }

    /* ...................................................for footer.............................................../ */
    .footer-bottom p{
        font-size: 23px;
    }
    .footer-bottom p span{
        font-size: 24px;
    }
    .footer-content p{
        font-size: 23px;
    }
    .footer-content .socials{
        margin-top: 1px;
    }
    .footer-content .socials li a{
        font-size: 23px;
        padding-left: 3px;
    }
    /* .............................................for contact....................................................*/
    #contact{
        padding: 50px;
    }
    #contact .content h2{
        font-size: 28px;
    }
    .container{
        flex-direction: column;
    }
    .container .contactInfo{
        font-size: 15px;
    }
    .container .contactInfo .box  .text  h3{
        font-size: 17px;
    }
    .container .contactInfo .box .icon{
        height: 50px;
        width: 40px;
        font-size: 20px;
    }
    .container .contactInfo{
        margin-bottom: 40px;
    }
    .container .contactInfo,
    .contactForm{
        width: 100%;
    }
    .contactForm h2{
        font-size: 28px;
    }
    /* ...........................................for about........................................  */
    #about .skills{
        z-index: -1;
    }
    #about .about-width h2{
        font-size: 25px;
    }
    #about .about-width .about-content1{
        box-shadow: none !important;
        width: 100%;
        padding-top: 0px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        padding-bottom: 0px !important;
        text-align: left;
    }
    
    #about .about-width .skills{
        /* z-index: -1 !important; */
        box-shadow: none !important;
        width: 100%;
        margin-top: 10px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        margin-right: 0px !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-bottom: 40px !important;
    }
    /* ========================for code=================== */
    .code-section input{
        padding: 0 20px !important;
        margin: 20px 0 !important;
        width: 60% !important;
        right: 20px !important;
        font-size: 17px !important;
     }
     .code-section ol{
        margin-top: 60px !important;
        margin-bottom: 30px !important;
    }
    .code-section ol h2{
        display: flex;
        justify-content: center;
        font-size: 19px;
    }
    .code-section .language-c{
        width: 95vw !important;
    }
}
@media (min-width: 750px) and (max-width: 990px){  

    /* ...................................................For home ....................................................   */
    .home{
        display: flex;
    }
    #home .max-width{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #home .max-width .home-content{
        /* box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2); */
        width: 65vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #home .max-width .home-content .text-1{
        font-size: 38px;
        width: 100vw;
    }
    #home .max-width .home-content .text-2{
        font-size: 54px;
        width: 100vw;
    }
    #home .max-width .home-content .text-3{
        font-size: 48px;
        width: 100vw;
    }

    /* .............................................for navbar.........................................................../ */
    nav{
        overflow: hidden;
        background: #111;
    }
    nav .logo{
        display: block;
        float: left;
        padding: 0px 5px;
    }
    
    nav .logo a{
        font-size: 34px;
    }
    label #btn{
        font-size: 34px;
        display: block;
    }
    nav ul{
        z-index: 100;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 50%;
        min-height: 101%;
        background: #111;
        top: 58px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 36px;
    }
    #check:checked ~ ul{
        left: 0;
    }
    #check:checked ~ label #btn{
        display: none;
    }
    #check:checked ~ label #cancel{
        display: block;
        font-size: 34px;
    }
        /* ........................................................for contact...............................................*/
        #contact{
            padding: 50px;
        }
        #contact .content h2{
            font-size: 28px;
        }
        .container .contactInfo{
            font-size: 15px;
        }
        .container .contactInfo .box{
            display: flex;
            justify-content: center;
            padding: 20px 20px;
        }
        .container .contactInfo .box  .text  h3{
            font-size: 17px;
        }
        .container .contactInfo .box .icon{
            height: 50px;
            width: 40px;
            font-size: 20px;
        }
        .container .contactInfo{
            margin-bottom: 40px;
            flex-direction: row;
        }
        .container .contactInfo,
        .contactForm{
            width: 100%;
        }
        .contactForm h2{
            font-size: 28px;
        }

    /*........................................... for footer..................................................................*/
    .footer-bottom p{
        font-size: 22px;
    }
    .footer-bottom p span{
        font-size: 23px;
    }
    .footer-content p{
        font-size: 20px;
    }
    .footer-content .socials{
        margin-top: 1px;
    }
    .footer-content .socials li a{
        font-size: 21px;
        padding-left: 3px;
    }
    /* ....................................for about..............................................  */
    #about .skills{
        /* z-index: 0; */
    }
    /* ========================for code==================== */
    .code-section input{
        padding: 0 20px !important;
        margin: 20px 0 !important;
        width: 55% !important;
        right: 20px !important;
        font-size: 19px !important;
     }
     .code-section ol{
        margin-top: 60px !important;
        margin-bottom: 30px !important;
    }
    .code-section .language-c{
        width: 85vw !important;
    }
    .code-section ol{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .code-section ol h2{
        width: 90%;
        display: flex;
        justify-content: center;
    }

}




/* .......................................about section........................................... */
#about{
    
   background: var(--background-color);
    background-size: 100%;
   color: var(--black-color);
    min-height: 100vh;
    width: 100%;
    /* background-color: #fff; */
    padding-top: 85px;
    display: flex;
    justify-content: center;
    font-family: 'ubuntu', sans-serif;
}
.about .title{
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'ubuntu', sans-serif;
}

#about .about-content1{
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 50px;
    padding-bottom: 0px;
    text-align: justify;
    width: 52%;
    font-size: 19px;
}
#about .skills{
    position: relative;
    float: right;
    padding-top: 0px;
    padding-right: 50px;
    padding-left: 0px; 
    width: 52%;
    font-size: 19px;
}


#about .skills .right .line{
    margin-bottom: 15px;
}
#about .skills .right .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#about .skills .right .info span{
    font-weight: 500;
    font-size: 19px;
}
#about .skills .right .bars{
    background-color: var(--black-color);
    height: 5px;
    width: 100%;
}
#about .skills .right .bars::before{
    content:"";
    position: absolute;
    height: 5px;
    background-color: var(--special-color);
}
#about .skills .right .html::before{
    width: 75%;
}
#about .skills .right .css::before{
    width: 60%;
}
#about .skills .right .js::before{
    width: 40%;
}
#about .skills .right .c::before{
    width: 70%;
}

 
/* code section........................... */
.code-section{
    
    background: var(--background-color);
   display: flex;
   flex-direction: column;
   /* justify-content: end; */
   align-items: center;
   min-height: 100vh;
   width: 100%;
}
.code-section input{
  background-color: rgb(39, 37, 37);
  padding: 0 30px;
  margin: 30px 0;
  width: 40%;
  height: 40px;
  color: white;
  position: absolute;
  right: 30px;
  font-size: 19px;
}
.code-section ol{
   display: flex;
   flex-direction: column;
   margin-top: 100px;
   margin-bottom: 50px;
   align-items: center;
}
.code-section ol h2{
   color: var(--black-color);
   width: 90%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 20px;
   padding-left: 30px;
   padding-right: 30px;
   text-align: justify;
}
/* .code-section ol p{
   margin-top: 20px;
   padding-left: 30px;
   padding-right: 30px;
   text-align: justify;
} */
.code-section .language-c{
   margin-top: 15px;
   height: 45vh;
   width: 70vw;
   padding: 2px 50px;
}

/* for copy button................ */
.toolbar-item button{
   cursor: pointer; 
  color: #fff !important;
   border: 1px solid var(--special-color) !important;
   border-radius: 15px !important;
   padding: 0px 14px !important;
}
.toolbar-item .copy-to-clipboard-button{
   margin-right: 14px;
   margin-top: 18px;
}

/* ================================================================ */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--special-color);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px var(--special-color);
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
/* #icon{
    width: 30px;
    cursor: pointer;
} */
/* ============project section============================================== */
main{
    height: 100vh;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    display: flex;
    justify-content: center;
    align-items: center;
}
.glass{
    z-index: 100;
    background: white;
    height: 90%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    border-radius: 2rem;
    backdrop-filter: blur(2rem);
}
.circle1,.circle2{
    /* background: white; */
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
    height: 20rem;
    width: 20rem;
    position: absolute;
    z-index: 1;
    border-radius: 2rem;
}
.circle1{
    /* background: red; */
    top: 1%;
    right: 1%;
}
.circle2{
    bottom: 1%;
    left: 1%;
}
/* ====================================================== */
.heading{
    /* border: 2px solid black; */
    height: 20%;
    width: 100%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.heading h1{
    font-size: 33px;
    color: black;
    font-weight: bold;

}
.swiper{
    /* border: 2px solid black; */
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    /* justify-content: space-evenly; */
    align-items: center;
}
.swiper-slide{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* border: 2px solid black; */
}
.detail__container{
    /* border: 2px solid black; */
    height: 350px;
    width: 350px;
    margin-bottom: 20px;
    /* position: absolute; */
    height: 350px;
    width: 350px;
    transform-style: preserve-3d;
    transition: all 1s ease;
}
.detail__container:hover{
    transform: rotateY(180deg);
}
.content__container{
    /* border: 2px solid black; */
    height: 20%;
    border-radius: 20%;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
}
.theFront, .theFront-2, .theFront-3, .theFront-4 {
    position: absolute;
    /* border: 2px solid black; */
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),url(../assets/img/Screenshot\ 2022-02-04\ 205516.jpg);
    background-size: 100% 100%;
}
.theFront-2{
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),url(../assets/img/Screenshot\ 2022-02-08\ 132400.jpg);
    background-size: 100% 100%;
}
.theFront-3{
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),url(../assets/img/Screenshot\ 2022-02-04\ 210307.jpg);
    background-size: 100% 100%;
}
.theFront-4{
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}
.theback{
    position: absolute;
    /* border: 2px solid black; */
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.theback .about-1{
    /* border: 2px solid red; */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
}
.theback .btn{
    /* border: 2px solid blue; */
    width: 100%;
    height: 20%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.theback .btn a{
    text-decoration: none;
    height: 30px;
    width: 50px;
    background: linear-gradient(#6cdbeb, #6cdbeb);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 5px; */
    font-size: 20px;
    border: 2px solid black;
    border-radius: 20%;
    /* margin-right: 40px;
    margin-left: 40px;  */
}