@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
/* 
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
} 
*/
/* 
.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/
/* 
.ibm-plex-mono-regular {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    background-color: #F5F5F0;
}

button {
    outline: none;
}

.hero_screen {
    height: 100vh;
    padding-top: 20px;
    margin-bottom: 100px;
}

.desktop_header_wrapper {
    margin-bottom: 40px;
}

.desk_header {
    width: 90%;
    margin: 0 auto;
    display: flex;
    border-bottom: 1.5px solid #1F2937;
}

.desk_header_left {
    width: 30%;
}

.desk_header_middle {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.desk_header_middle ul li {
    display: inline;
    list-style: none;
}

.desk_header_middle ul li:not(:last-child) {
    margin-right: 15px;
}

.desk_header_middle ul li a {
    color: #1F2937;
    text-decoration: none;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease 0s;
}

.desk_header_middle ul li a:hover {
    color: #3E43B5;
    font-weight: 600;
    text-decoration: underline;
}

.desk_header_right {
    width: 30%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.desk_header_right a button {
    width: 150px;
    height: 50px;
    border-radius: 5px;
    border: none;
    color: #F5F5F0;
    background: #3E43B5;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease 0s;
}

.desk_header_right a button:hover {
    cursor: pointer;
    background: none;
    color: #3E43B5;
    border: 2px solid #3E43B5;
}

/* Mobile Header */

.mobile_header_wrapper {
    display: none;
}

.mobile_header {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #1F2937;
    margin-bottom: 20px;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/* Preview Section */

.preview_section_wrapper {
    height: 82vh;
}

.preview_section {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
}

.preview_section_left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview_name_text h1 {
    color: #1F2937;
    font-size: 5vw;
    font-family: "Bebas Neue";
}

.preview_spec_text {
    margin-bottom: 40px;
}

.preview_spec_text p {
    color: #1F2937;
    font-size: 3vw;
    font-family: "Bebas Neue";
}

.preview_spec_desc p {
    color: #1F2937;
    font-size: 3vw;
    font-family: "Bebas Neue";
}

.preview_buttons {
    display: flex;
}

.cv_buttons {
    margin-right: 40px;
}

.cv_buttons a {
    text-decoration: none;
}

.cv_buttons a button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: white;
    background: #3E43B5;
    border: 2px solid #3E43B5;
    border-radius: 5px;
    font-family: "Inter", sans-serif;
    transition: 0.3s all ease 0s;
}

.cv_buttons a button:hover {
    cursor: pointer;
    background: #1F2937;
}

.cv_buttons a button img {
    margin-right: 10px;
}

.prev_cont_button a {
    text-decoration: none;
}

.prev_cont_button a button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #3E43B5;
    background: none;
    border: 2px solid #3E43B5;
    border-radius: 5px;
    font-family: "Inter", sans-serif;
    transition: 0.3s all ease 0s;
}

.prev_cont_button a button:hover {
    cursor: pointer;
    color: white;
    background: #1F2937;
}

.prev_cont_button a button img {
    margin-right: 10px;
}

.preview_section_right {
    width: 50%;
    display: flex;
    align-items: center;
}

.preview_right_aligner {
    width: 100%;
}

.image_text_wrapper {
    display: flex;
    margin-bottom: 20px;
}

.image_block {
    width: 50%;
    margin-right: 20px;
}

.image_block img {
    width: 100%;
    display: block;
}

.image_text ul li {
    list-style: none;
}

.image_text ul li:not(:last-child) {
    margin-bottom: 10px;
}

.image_text ul li a {
    color: #1F2937;
    font-family: "Inter", sans-serif;
}

.image_text ul li a img {
    width: 50%;
}

.preview_links ul {
    display: flex;
    align-items: center;

}

.preview_links ul li {
    list-style: none;
    display: flex;

}

.preview_links ul li:not(:last-child) {
    margin-right: 20px;
}

.preview_links ul li a {
    text-decoration: none;
    font-family: "IBM Plex Mono", monospace;
}

.preview_links ul li img {
    display: block;
    margin-right: 10px;
}

/*  About Section */
.about_section_wrapper {
    margin-bottom: 100px;
}

.about_section {
    width: 90%;
    margin: 0 auto;
}

.about_title {
    margin-bottom: 40px;
}

.about_title h1 {
    color: #1F2937;
    font-size: 4vw;
    font-family: "Bebas Neue";
}

.about_desc p {
    color: #1F2937;
    font-family: "Inter", sans-serif;
}

.about_desc_title {
    color: #1F2937;
    font-family: "Inter", sans-serif;
}

.about_desc_text ul {
    color: #1F2937;
    font-family: "Inter", sans-serif;
}

/* Skill Section */

.about_skills_wrapper {
    margin-bottom: 20px;
}

.about_skills_row {
    display: flex;
}

.container {
  position: relative;
  max-width: 500px;
  width: 100%;
  /* background: #ececec; */
  margin: 0 15px;
  padding: 10px 20px;
  border-radius: 7px;
  color: #1F2937;
  font-family: "Inter", sans-serif;
}

.container .skill-box {
  width: 100%;
  margin: 25px 0;
}

.skill-box .title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
}

.skill-box .skill-bar {
  height: 8px;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
  background: rgba(0,0,0,0.1);
}

.skill-bar .skill-per {
  position: relative;
  display: block;
  height: 100%;
  width: 90%;
  border-radius: 6px;
  background: #3E43B5;
  animation: progress 0.4s ease-in-out forwards;
  opacity: 0;
}

.skill-per.python {
   
  width: 95%;
  animation-delay: 0.1s;
}

.skill-per.django {
         
  width: 90%;
  animation-delay: 0.1s;
}

.skill-per.fastapi {
      
  width: 90%;
  animation-delay: 0.2s;
}

.skill-per.pandas {
      
  width: 80%;
  animation-delay: 0.3s;
}

.skill-per.js {
      
  width: 95%;
  animation-delay: 0.3s;
}

.skill-per.react {
      
  width: 95%;
  animation-delay: 0.3s;
}

.skill-per.nextjs {
      
  width: 90%;
  animation-delay: 0.3s;
}

.skill-per.postgre {
      
  width: 85%;
  animation-delay: 0.3s;
}

.skill-per.mongo {
      
  width: 85%;
  animation-delay: 0.3s;
}

.skill-per.docker {
      
  width: 90%;
  animation-delay: 0.3s;
}

.skill-per.git {
      
  width: 90%;
  animation-delay: 0.3s;
}

@keyframes progress {
  0% {
    width: 0;
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.skill-per .tooltip {
  position: absolute;
  right: -14px;
  top: -28px;
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  background: #1F2937;
  z-index: 1;
}

.tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 10px;
  width: 10px;
  z-index: -1;
  background-color: #1F2937;
  transform: translateX(-50%) rotate(45deg);
}

/* Projects Section */

.projects_section_wrapper {
    margin-bottom: 100px;
}

.projects_section {
    width: 90%;
    margin: 0 auto;
}

.projects_title {
    margin-bottom: 40px;
}

.projects_title h1 {
    color: #1F2937;
    font-size: 4vw;
    font-family: "Bebas Neue";
}

.projects_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.project_card {
    width: 45%;
}

.project_image {
    margin-bottom: 10px;
}

.project_image img {
    width: 100%;
    display: block;
}

.project_title {
    margin-bottom: 15px;
}

.project_title p {
    color: #1F2937;
    font-family: "Inter", sans-serif;
}

.project_desc {
    margin-bottom: 20px;
}

.project_desc p {
    color: #1F2937;
    font-family: "Inter", sans-serif;   
}

.project_link a {
    color: #1F2937;
    font-family: "Inter", sans-serif;
}

/* Contact Form */

.contact_form_wrapper {
    margin-bottom: 100px;
}

.contact_form {
    width: 70%;
    color: white;
    padding: 40px;
    margin: 0 auto;
    border-radius: 50px;
    background: url(../assets/bg_contact_form.png) no-repeat;
    background-size: cover;
}

.contact_title {
    margin-bottom: 40px;
}

.contact_title h1 {
    color: #F5F5F0;
    font-size: 4vw;
    font-family: "Bebas Neue";
}

.upper_inputs {
    /* border: 1px dotted white; */
}

.upper_left_input {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    /* border: 1px dotted red; */
}

.upper_left_input input {
    width: 40%;
    height: 40px;
    background: none;
    outline: none;
    border: none;
    color: #F5F5F0;
    border-bottom: 1px solid #F5F5F0;
}

.upper_left_input input::placeholder {
    font-family: "Inter", sans-serif;
}

.upper_right_input {
    /* border: 1px dotted lime; */
}

.upper_right_input {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    /* border: 1px dotted red; */
}

.upper_right_input input {
    width: 40%;
    height: 40px;
    background: none;
    outline: none;
    border: none;
    color: #F5F5F0;
    border-bottom: 1px solid #F5F5F0;
}

.upper_right_input input::placeholder {
    font-family: "Inter", sans-serif;
}

.lower_input {
    margin-bottom: 40px;
}

.lower_input input {
    width: 100%;
    height: 40px;
    background: none;
    outline: none;
    border: none;
    color: #F5F5F0;
    border-bottom: 1px solid #F5F5F0;
}

.send_button {
    display: flex;
    justify-content: center;
}

.send_button button {
    color: #F5F5F0;
    background: none;
    border: 1px solid #F5F5F0;
    border-radius: 10px;
    padding: 14px 50px 15px 50px;
    transition: all 0.3s ease 0s;
    font-family: "Inter", sans-serif;
}

.send_button button:hover {
    cursor: pointer;
    color: #3E43B5;
    background: #F5F5F0;
    border: 1px solid #F5F5F0;
}

/* Media */
.media_section_wrapper {
    padding-bottom: 20px;
}

.media_section {
    width: 90%;
    margin: 0 auto;
}

.media_title {
    margin-bottom: 40px;
}

.media_title p {
    color: #1F2937;
    font-size: 4vw;
    font-family: "Bebas Neue";
}

.links_section {
    display: flex;
    justify-content: space-between;
}

.rights_reserved p {
    color: #1F2937;
    font-family: "Inter", sans-serif;
}