/* POPPINS FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    background-color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
    flex-direction: column;
}

.nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    line-height: 90px;
    z-index: 1000;
    background-color: #1f1d21;
}

.innerNav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 100px;
    line-height: 90px;
}

.nav-logo a {
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    border-bottom: 1px solid rgb(77, 214, 13);
}


.nav-logo a:hover {
    background-image: linear-gradient(to right, rgb(157, 198, 146), rgb(60, 103, 66));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.5s;
    text-decoration: none;
}

.nav-menu ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu .nav-link {
    text-decoration: none;
    color: rgb(159, 220, 159);
    /* Set the default color for inactive tabs */
    font-weight: 500;
    font-size: 19px;
    margin: 0 25px;
}

.nav-menu .nav-link.active {
    color: rgb(85, 255, 0);
    /* Set the color for the active tab */
}

.nav-link:hover {
    color: #f59191;
    transition: 1s;
}

.nav-menu-btn {
    display: none;
}


/* ---------------------------------------- */

.nav-menu ul li .btn {
    text-decoration: none;
    width: 130px;
    height: 50px;
    background-color: #3d3d3d;
    box-shadow: 0 0 10px black;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    color: #fffefe;
    font-weight: 500;
    margin-left: 10px;
    transition: .5s;
    padding: 10px;
    margin-right: 10px;
}

.nav-menu ul li .btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.nav-menu-btn {
    display: none;
}

.line {
    position: fixed;
    width: 100%;
    height: 2px;
    top: 100px;
    background-color: #ffffff;
    z-index: 1000;
}

/* --------------------------------- */



/* ---------------------------------------------------- */

@media only screen and (max-width: 930px) {

    #crossIcon {
        display: none;
        font-size: 25px;
        color: white;
        padding: 10px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: .3s ease-in-out;
        margin-top: 18px;
    }

    #crossIcon:hover {
        background: rgb(95, 96, 96);
    }


    .nav-button {
        display: none;
    }

    .nav-menu.responsive {
        top: 100px;
    }

    .nav-menu {
        position: absolute;
        top: -100rem;
        display: flex;
        justify-content: center;
        width: 100%;
        backdrop-filter: blur(20px);
        background-color: rgb(115, 125, 124);
        transition: .3s;
        z-index: 2;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu-btn {
        display: block;
    }

    .nav-menu-btn i {
        font-size: 25px;
        color: #ffffff;
        padding: 10px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: .3s;
    }

    .nav-menu-btn i:hover {
        background: rgb(95, 96, 96);
    }
}

/* ====================nav end====================== */

.space {
    height: 100px;
}

/* ------------------------firstsection---------------------- */

.firstsection {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    width: 100%;
}

.big1 {

    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32vw;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 900;

}

.innersection1 {
    display: flex;
    justify-content: space-around;
    background-color: #000000;
    padding: 40px;
    width: 100%;
}

.left1 {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 40%;
    background-color: transparent;
    color: rgb(96, 133, 118);
}

.heading1 {
    font-size: 40px;
    font-weight: 500;
}

.green {
    color: #51ff00;
}

.left1 #element {
    background-image: linear-gradient(to right, rgb(228, 81, 81), rgb(207, 75, 143), rgb(90, 73, 216), rgb(39, 14, 139));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.descript1 {
    color: #aefcc4;
    padding-top: 20px;
}

.left1 .btn {
    padding: 8px;
    background: black;
    color: white;
    border: 2px solid white;
    border-radius: 20px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 20px;
    transition: 1s;
}

.btn:hover {
    background-color: rgb(207, 205, 205);
    color: rgb(0, 0, 0);
}

.right1 {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 40%;
    background-color: transparent;
}

.right1 img {
    width: 100%;
    height: 100%;
}

/* -----------line */

.line2 {
    margin: 20px;
    width: 90%;
    height: 4px;
    background-color: #4dff00;
    border-radius: 20px;
    z-index: 1;
}

/* --------secondsection--------- */

.secondsection {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    width: 100%;
}

.big2 {

    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30vw;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 900;

}

.innersection2 {
    display: flex;
    justify-content: space-around;
    background-color: #000000;
    padding: 40px;
    width: 100%;
}

.left2 {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 40%;
    overflow-y: auto;
    height: 530px;
}

/* For Webkit browsers (Chrome, Safari) */
.left2::-webkit-scrollbar {
    width: 10px;
    /* Set the width of the scrollbar */
}

.left2::-webkit-scrollbar-track {
    background-color: transparent;
    /* Make the track color transparent */
}

.left2::-webkit-scrollbar-thumb {
    background-color: #908f8f;
    /* Set the color of the slider */
    border-radius: 3px;
    /* Add rounded corners to the slider */
}


.main2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
}

.small2 {
    color: rgb(255, 255, 255);
}

.heading2 {
    font-size: 10vw;
    font-weight: 500;
    color: rgb(0, 255, 0);
}


.profile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    width: 100%;
    color: #aefcc4;
    line-height: 30px;
}

.skills {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
}

.skill1,
.skill2,
.skill3,
.skill4,
.skill5,
.skill6 {
    margin-bottom: 20px;
    color: #6e12c5;
    font-size: 20px;

}

.percentage1,
.percentage2,
.percentage3,
.percentage4,
.percentage5,
.percentage6 {
    color: #d50e0e;
    font-weight: 700;
    font-size: 20px;
}

.learnbar {
    height: 15px;
    background-color: rgba(149, 146, 146, 0.6);
    border-radius: 10px;
}

.mark1 {
    height: 15px;
    background-color: #5eff00;
    width: 95%;
    border-radius: 50px;
    animation-name: mark1;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

@keyframes mark1 {
    from {
        width: 0%;
    }

    to {
        width: 95%;
    }
}

.mark2 {
    height: 15px;
    background-color: #5eff00;
    width: 60%;
    border-radius: 50px;
    animation-name: mark2;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes mark2 {
    from {
        width: 0%;
    }

    to {
        width: 60%;
    }
}

.mark3 {
    height: 15px;
    background-color: #5eff00;
    width: 55%;
    border-radius: 50px;
    animation-name: mark3;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes mark3 {
    from {
        width: 0%;
    }

    to {
        width: 55%;
    }
}

.mark4 {
    height: 15px;
    background-color: #5eff00;
    width: 70%;
    border-radius: 50px;
    animation-name: mark4;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes mark4 {
    from {
        width: 0%;
    }

    to {
        width: 70%;
    }
}

.mark5 {
    height: 15px;
    background-color: #5eff00;
    width: 70%;
    border-radius: 50px;
    animation-name: mark5;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes mark5 {
    from {
        width: 0%;
    }

    to {
        width: 70%;
    }
}

.mark6 {
    height: 15px;
    background-color: #5eff00;
    width: 50%;
    border-radius: 50px;
    animation-name: mark6;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes mark6 {
    from {
        width: 0%;
    }

    to {
        width: 50%;
    }
}

.right2 {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 40%;
}

.aboutme {
    padding: 10px;
    color: rgb(94, 74, 173);
}

.aboutme h1 {
    font-size: 60px;
}

.aboutme p {
    font-size: 15px;
    color: #aefcc4;
}

.headlink {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 50px;
    font-weight: 700;
    border-radius: 40px;
}

.linkedin2 {
    padding-top: 10px;
    color: rgb(255, 255, 255);
}

.linkedin2:hover {
    color: rgb(0, 115, 255);
    transition: 1s;
}


/* --------thirdsection--------- */

.thirdsection {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    width: 100%;
}

.big3 {

    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26vw;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 900;

}

.innersection3 {
    display: flex;
    justify-content: space-around;
    background-color: #000000;
    padding: 40px;
    width: 100%;
}

.left3 {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 40%;
}

.small3 {
    display: flex;
    color: rgb(255, 255, 255);

}

.heading3 {
    font-size: 5vw;
    font-weight: 800;
    color: rgb(35, 165, 139);
}

.descript3 {
    color: #aefcc4;
    padding-top: 20px;
}

.right3 {
    position: relative;
    display: flex;
    justify-content: centre;
    flex-direction: column;
    padding: 10px;
    width: 40%;
    height: 530px;
    overflow-y: scroll;
}

/* For Webkit browsers (Chrome, Safari) */
.right3::-webkit-scrollbar {
    width: 10px;
    /* Set the width of the scrollbar */
}

.right3::-webkit-scrollbar-track {
    background-color: transparent;
    /* Make the track color transparent */
}

.right3::-webkit-scrollbar-thumb {
    background-color: #908f8f;
    /* Set the color of the slider */
    border-radius: 3px;
    /* Add rounded corners to the slider */
}

.section1,
.section2,
.section3,
.section4,
.section5,
.section6 {
    padding: 10px;
}

.section1 h3,
.section2 h3,
.section3 h3,
.section4 h3,
.section5 h3,
.section6 h3 {
    padding: 10px;
    color: #ffffff;
}

.section1 p,
.section2 p,
.section3 p,
.section4 p,
.section5 p,
.section6 p {
    padding: 10px;
    color: rgb(94, 255, 0);
}

.section1 img,
.section2 img,
.section3 img,
.section4 img,
.section5 img,
.section6 img {
    padding-left: 10px;
    height: 22px;
}

/* ------------------- */

.forthsection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


.heading4 {
    font-size: 50px;
    font-weight: 600;
    color: #51919a;
}

.content4 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 40px;
    background-color: black;
}

.left4 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #21212150;
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    width: 40%;
    border-radius: 30px;
    transition: 2s;

    animation: left4 2s ease-in-out infinite;
    animation-direction: normal;
}

@keyframes left4 {
    0% {
        border-left: none;
        border-top: none;
        border-right: none;
        border-bottom: none;
    }
    50% {
        border-right: 1px solid turquoise;
    }
    100% {
        border-left: 1px solid turquoise;
    }
}

.left4:hover {
    border-radius: 30px;
    box-shadow: 0 10px 30px green;
    border: none;
    transition: 1s ease-in-out;
    animation: none;
}

.right4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 40%;
    flex-direction: column;
    background-color: #21212150;
    border-radius: 30px;
    transition: 2s;

    animation: right4 2s ease-in-out infinite;
    animation-direction: normal;
}

@keyframes right4 {
    0% {
        border-left: none;
        border-top: none;
        border-right: none;
        border-bottom: none;
    }
    50% {
        border-right: 1px solid greenyellow;
    }

    100% {
        border-left: 1px solid greenyellow;
    }
}


.right4:hover {
    border-radius: 30px;
    box-shadow: 0 10px 30px green;
    border: none;
    transition: 1s ease-in-out;
    animation: none;
}


.colsmall4,
.schsmall4 {
    padding-bottom: 10px;
    font-size: 50px;
    color: #0f9a14;
}

.coldeg4,
.schdeg4 {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #bdbebf;
}

.collarge4,
.schlarge4 {
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 800;
    color: rgb(77, 117, 83);
}

.colgrades4,
.schgrades4 {
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 500;
    color: rgb(108, 208, 140);
}

/* -------------------fifthsection----------------- */

.fifthsection {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    width: 100%;
}

.big5 {

    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28vw;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 1000;
}

.innersection5 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    width: 100%;
    z-index: 1;
}

.heading5 {
    font-size: 50px;
    font-weight: 600;
    color: #89a76f;
    z-index: 1;
}

.lines5 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    color: #aefcc4;
    padding: 40px;
    z-index: 1;
}

.content5 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    width: 100%;
    z-index: 1;
}

.slider-container {
    display: flex;
    overflow: hidden;
    width: 30vw;
    height: 30vw;
    margin-top: 50px;
    border-radius: 30px;
    box-shadow: 0 0px 50px green;
    backdrop-filter: blur(20px);
}

.slider-container:hover {
    box-shadow: 0 0px 50px rgb(107, 9, 187);
    transition: 1s ease-in-out;
}

.project {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.5s;
    color: #00ffa6;
}

.button5 {
    padding: 30px;
    z-index: 1;
}

button {
    background: transparent;
    border-color: transparent;
}

.button5 ion-icon {
    font-size: 30px;
    color: #ffffff;
}

.button5 ion-icon:hover {
    color: #5e5e5e;
    transition: 1s
}

#myProject1 {
    background-image: url(photos/image6.png);
    background-size: cover;
}

#myProject2 {
    background-image: url(photos/image2.png);
    background-size: cover;
}

#myProject3 {
    background-image: url(photos/image3.png);
    background-size: cover;
}

#myProject4 {
    background-image: url(photos/image4.png);
    background-size: cover;
}

#myProject5 {
    background-image: url(photos/image5.png);
    background-size: cover;
}

.headingProject {
    font-size: 25px;
    color: rgb(227, 227, 226);
}

.projectLinksArea {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 50%;
    width: 80%;
}

.btnProject {
    backdrop-filter: blur(50px);
    width: 80px;
    border: 2px solid rgb(235, 235, 235);
    border-radius: 10px;
    padding: 10px 5px;
}

.projectLink {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}


/* -------------------fifthsection----------------- */

.sixthsection {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content6 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    width: 100%;
    height: 100%;

}

.content6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.explore {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(81, 168, 99);
    font-size: 56px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);

}

.headlink6 {
    padding: 40px;
}

.git {
    font-size: 100px;
    color: #3d3d3d;
}

.git:hover {
    color: #7ba46a;
    transition: 1s ease-in-out;
    box-shadow: 0 0 50px rgb(51, 108, 41);
    border-radius: 400px;

}

.descript6 {
    font-size: 20px;
    color: #507c3d;
}

/* -----------seventh section  */

.seventhsection {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    width: 100%;
}

.big7 {

    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20vw;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 1000;
}

.innersection7 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    width: 100%;
    z-index: 1;
}

.heading7 {
    font-size: 50px;
    font-weight: 600;
    color: #a8afa7;
    z-index: 1;
}

.contactlinks {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    width: 100%;
    z-index: 1;
}

.address,
.contactno,
.email,
.resume {
    font-size: 50px;
    color: #4dff00;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    z-index: 1;
}

.address:hover,
.contactno:hover,
.email:hover,
.resume:hover {
    font-size: 50px;
    border-radius: 90px;
    color: #ffffff;
    z-index: 2;
}

.word1,
.word2,
.word3,
.word4 {
    font-size: 15px;
    z-index: 1;
}




/* ----------------------------------- */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
    padding: 10px;
    font-size: 15px;
    font-weight: 800;
    left: 50%;
    /* Move to the center horizontally */
    transform: translateX(-50%);
    /* Adjust to center horizontally */
    margin-top: 20px;
    border-radius: 50px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content div {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-content div a {
    color: #2a9523;
    text-decoration: none;
    display: block;
}

.dropdown-content div a:hover {
    color: #6807a1;
    text-decoration: underline;
}

.dropdown-content div:hover {
    background-color: #ddd;
}



/*============================responsive==========================*/

@media only screen and (max-width: 930px) {

    /* -----------firstsection----------- */

    .innersection1 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left1 {
        width: 100%;
        height: 50%;
    }

    .descript1 {
        text-align: justify;
    }

    .right1 {
        width: 70%;
    }

    /* -----------secondsection------------ */

    .innersection2 {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .left2 {
        width: 100%;
    }

    .small2 {
        font-size: 20px;
    }

    .heading2 {
        font-size: 100px;
    }


    .right2 {
        width: 100%;
    }

    .aboutme h1 {
        padding: 10px;
    }

    .aboutme p {
        font-size: 20px;
        text-align: justify;
    }



    /* -----------thirdsection----------- */

    .innersection3 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .heading3{
        font-size: 50px;
    }

    .left3 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .descript3 {
        text-align: justify;
        font-size: 20px;
    }

    .right3 {
        width: 100%;
    }

    .section1,
    .section2,
    .section3,
    .section4,
    .section5,
    .section6 {
        font-size: 20px;
    }

    .section1 p,
    .section2 p,
    .section3 p,
    .section4 p,
    .section5 p,
    .section6 p {
        font-size: 20px;
        text-align: justify;
    }

    /* --------------forthsection---------- */

    .heading4 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .content4 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .left4 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 60px;
        text-align: center;
    }

    .right4 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 60px;
        text-align: center;
    }

    /* ----------fifthsection-------- */

    .innersection5 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content5 {
        width: 100%;
        margin-bottom: 20vw;
    }

    .slider-container {
        width: 60vw;
        height: 60vw;
    }

    /* ----------sixthsection------- */

    .content6 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 30vw;
    }

    .explore {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* ---------seventhsection */

    .innersection7 {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contactlinks {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

}

/* =====================================================footer======================================== */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background: linear-gradient(to right, rgb(37, 42, 35), rgb(62, 91, 66));
    color: #ffffff;
    flex-direction: column;
    backdrop-filter: blur(100px);

}

.footer_frame {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    color: #ffffff;

}

.logo_footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_footer a {

    text-align: center;
    text-decoration: none;
    background-image: linear-gradient(to right, rgb(228, 81, 81), rgb(207, 75, 143), rgb(90, 73, 216), rgb(39, 14, 139));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 200%;
    padding-right: 2rem;

}

.logo_footer a:hover {
    color: #949292;
    transition: 0.3s ease-in-out;
}

.bar1 {
    background-color: #dedede;
    height: 10rem;
    width: 0.05rem;
    border-radius: 10px
}

.list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}

.list h3 {
    font-size: 20px;
    padding: 17px;
}

.list ul {
    display: flex;
    justify-content: space-around;
}

.list ul li {
    text-decoration: none;
    display: flex;
    padding-right: 20px;
}

.list a {
    color: #0b8983;

}

.list a ion-icon {
    font-size: 50px;
}

.list a:hover {
    color: rgb(146, 224, 214);
    transition: 1s;
}


.last_bar {
    display: absolute;
    justify-content: space-around;
    color: rgb(123, 123, 123);
}

.last_bar a {
    text-decoration: none;
    color: rgb(123, 123, 123);
}

.last_bar a:hover {
    color: rgb(255, 255, 255);
    transition: 1s;
}


.end {
    text-align: center;
}

.end1 {
    text-align: center;
    padding-bottom: 2rem;
}

/* =======================================responsiveness */

@media only screen and (max-width: 1024px) {
    footer {
        height: auto;
    }

    .footer_frame {
        flex-direction: column;
        height: auto;
        padding: 2rem;
    }

    .logo_footer {
        height: auto;
        margin-bottom: 2rem;
        flex-direction: column;
        padding-left: 32px
    }

    .bar1 {
        display: none;
    }

    .list_frame {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .list ul {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .list ul li {
        text-decoration: none;
        display: flex;
        padding-left: 20px;
    }
}

/* --------------preloader------------------ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 50%;
}