@import url(https://fonts.googleapis.com/css?family=Ruge+Boogie);
@import url(https://fonts.googleapis.com/css?family=Playfair+Display);
@import url(https://fonts.googleapis.com/css?family=Protest+Strike);



body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #0e1111;
    color: white;
    font-family: "Playfair Display";
    user-select: none;

}

#portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.toper_heads {
    font-weight: bolder;
    text-align: left;
    font-size: 1.5vw;
    margin-top: 7vh;
    margin-bottom: 3vh;
    letter-spacing: 2px;
    align-items: center;
    text-align: center;

}

/* <------------- Header Things ------------->*/
.header_wrapper {
    height: 10vh;
    display: flex;
    align-items: center;

}

#logo {
    width: 25vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vw;



}

.tablink {
    background-color: #0e1111;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 17px;
    padding: 20px;
    font-family: "Playfair Display";
    letter-spacing: 2px;

}

.tablink:hover {
    text-shadow: 0 0 10px white;
}


.tabcontent {
    color: white;
    display: none;
    height: 100%;

  transition: opacity .5s ease 0s;
}

#elements {
    width: 50vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}




#cv_btn_wrapper {
    width: 25vw;
    height: 10vh;

    display: flex;
    align-items: center;
    justify-content: center;

}

#cv_btn_div {
    border: 1px solid white;
    border-radius: 5px;
    background-color: #0e1111;

    width: 15vw;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

#cv_btn_div a {
    text-decoration: none;
    color: white;
    font-size: 1.2vw;
}

#cv_btn_div:hover {
    -webkit-filter: invert(100%);
    filter: invert(100%);
    transition: all 0.2s ease;

}




#download_icon {
    padding: 1vh;
    height: 3vh;
    width: 3vh;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}


/* <------------- Name Box ------------->*/

.name_wrapper {
    margin-top: 5vh;
    border: 1px solid white;
    width: 40vw;
    padding: 1vw;
    border-radius: 10px;

}

#upper {
    display: flex;
    height: 7vh;
}

#upper p {
    font-weight: bolder;
    font-size: 1.5vw;
    text-align: left;
    margin-left: 1vw;
    width: 30vw;

}

#right_icons {
    width: 6vw;
    margin-left: 0vw;
    display: flex;
    align-items: last baseline;


}

.s_icon {
    height: 1.5vw;
    width: 1.5vw;
    margin-left: 0.5vw;
    margin-right: 0.5vw;

    -webkit-filter: invert(100%);
    filter: invert(100%);

}

.s_icon:hover {
    -webkit-filter: invert(50%);
    filter: invert(50%);
}

#location {
    display: flex;
    font-size: 12px;
    align-items: center;
    color: #bbb;
}

#location img {
    height: 12px;
    width: 12px;
    margin-right: 5px;
    margin-left: 1vw;

    -webkit-filter: invert(50%);
    filter: invert(50%);
}
#location2
{
    display: flex;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    color: #bbb;
}

#location2 img
{
    height: 12px;
    width: 12px;
    margin-right: 5px;
    margin-left: 1vw;

    -webkit-filter: invert(50%);
    filter: invert(50%);
}

#info_p {
    margin: 1vw;
    text-align: justify;
}


/* <------------- Skills Thingy ------------->*/

.skills_wrapper {
    width: 40vw;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    overflow: hidden;

}

.skill1,
.skill2 {
    display: flex;
    padding: 10px 0px 10px 0px;
    text-align: justify;
    width: fit-content;
    animation: marquee1 20s linear infinite;
}

.skill4 {
    transform: translateX(-200%);

}

.skill3,
.skill4 {
    display: flex;
    padding: 10px 0px 10px 0px;
    text-align: justify;
    width: fit-content;
    animation: marquee3 20s linear infinite;

}



.skill1 p,
.skill2 p,
.skill3 p,
.skill4 p {
    margin: 0 10px 0 10px;
}

.icns {
    height: 20px;
    width: 20px;

    -webkit-filter: invert(100%);
    filter: invert(100%);
}

@keyframes marquee1 {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes marquee3 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}


/* <------------- Experience Map ------------->*/


.experience_wrapper {
    border-left: 2px solid white;
    width: 30vw;
    display: grid;
    grid-column-gap: 20px;


}

.box {
    border: 1px solid white;
    margin: 0px 10px 10px 20px;
    position: relative;
    padding: 30px;
    align-items: center;
    text-align: center;


}

.box:hover {
    box-shadow: 0px 0px 10px white;
}

.box::before {
    content: '';
    background-color: white;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    right: calc(100% + 13px);
    position: absolute;
    top: calc(50% - 10px);
}

.box h1 {
    font-size: 20px;
    text-align: left;
    letter-spacing: 2px;

}

.box p {

    text-align: justify;
}

.l {
    color: grey;
    font-size: 14px;
}


/* <------------- Project Slider ------------->*/
.proj_bog {
    display: flex;
    
    align-items: center;
    margin-bottom: 5vh;

}

.project_wrapper {
    border: 1px solid white;
    width: 40vw;
    height: 50vh;
    overflow: hidden;

}

.boxy {
    border: 1px solid black;
    width: 40vw;
    height: 50vh;
    position: relative;
    animation: ease-in;
    transition: All 0.5s ease-in-out;

}

.boxy img {
    filter: brightness(30%);
    height: 100%;
    width: 100%;

}

.j {
    position: absolute;
    top: 70%;
    left: 5%;
    font-weight: bold;
    font-size: 25px;
}

.jk {
    position: absolute;
    top: 82%;
    left: 5%;
    font-size: 15px;
}

.prev,
.next {
    cursor: pointer;
    padding: 1vw;
    font-weight: bolder;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}


.dotiis {
    text-align: center;
}


/* <------------- Contact Me Page ------------->*/

#goals
{
    flex-direction: column;
}




/* <------------- Contact Me Page ------------->*/


#contact
{
    flex-direction: column;
    user-select:text;
    text-align: center;
    letter-spacing: 1px;

}
#textar
{
    height: 20vh;
    width: 35vw;
    border-radius: 10px;
    font-family: "Playfair Display";
    letter-spacing: 1px;
    color: #000;
    padding: 10px 10px 10px 10px;
    background-color: #0e1111;
    color: white;
    resize: none;
    border: 1px solid white;
    text-align: justify;

}

#snd_btn
{
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#snd_btn_div button
{
    background-color: #0e1111;
    color: white;
    border: 1px solid white;
    width: 7vw;
    border-radius: 10px;
    font-size: 15px;
    font-family: "Playfair Display";
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bolder;
   


}

#snd_btn_div button:hover
{
    background-color: white;
    color: black;
}

.highlite
{
    background-color: #0e1111;
    color: white;
    border: 1px solid white;

    border-radius: 10px;
    padding: 2px 7px 2px 7px;
    margin-right: 5px;
}

/* <------------- Footer ------------->*/
.footer {
    font-size: 12px;
    color: grey;
    letter-spacing: 1px;
    margin-bottom: 1vh;
    margin-top: 5vh;

}

.footer a {
    color: white;
    text-decoration: none;

}