html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;

    background-color: rgb(212, 211, 205);
    position: relative;
}
::selection {
    background-color: black;
    color: rgb(212, 211, 205);
    text-shadow: 0px 0px 10px white;
}

main {
    width: 1150px;
    height: 1475px;
    background-color: white;
    margin-top: 100px;
    border-radius: 70px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid white;
    margin-bottom: 80px;
}

.side {
    width: 350px;
    height: 748px;
    background-color: rgb(233, 234, 227);
    border-bottom-right-radius: 50px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    border-top: none;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.side img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 80px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.385);
    transition: all 0.5s ease-in-out;
    animation: big-to-small 2s;
}
@keyframes big-to-small {
  0% {
    transform: scale(2);
    rotate: -360deg;
  }
  100% {
    transform: scale(1);
    rotate: 0deg;
  }
}
.side img:hover {
    transform: scale(200%);
    rotate: -360deg;
    transition: all 0.5s ease-in-out;
}

.top_main {
    width: 100%;
    height: 630px;
    border-radius: 65px;
    background-color: rgb(233, 234, 227);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50%;
    margin-top: 30px;
    transition: transform 0.3s ease;
}

.left_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.left_nav p {
    font-size: 13px;
}
.left_nav button {
    width: 80px;
    height: 30px;
    background-color: white;
    border: none;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}
.left_nav button:hover {
    background-color: rgb(243, 243, 243);
}
#message {
    position: absolute;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    margin-left: 223px;
    margin-top: -50px;
}

.right_nav {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.right_nav a {
    color: black;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
}
.right_nav a:hover {
    transform: scale(110%);
    transition: all 0.3s ease-in-out;
}

.profile_icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile_icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 90px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.385);
    transition: all 0.5s ease-in-out;
    animation: square-to-round 5s;
}
@keyframes square-to-round {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.profile_icon img:hover {
    transform: scale(110%);
    transition: all 0.5s ease-in-out;
}
.main_text h1 {
    text-align: center;
    font-size: 40px;
    transform: scaleX(1.1);
    background: repeating-linear-gradient(
      90deg,
      black 0%,
      #cfcfcf 25%,
      black 50%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: swipe 3s linear infinite;
    overflow: visible;
}
@keyframes swipe {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
#moving_text-1, #moving_text-3 {
    animation: move 2s;
}
#moving_text-2{
    animation: move2 2s;
}
@keyframes move {
  0% {
    margin-left: -300px;
  }
  100% {
    margin: 0;
  }
}
@keyframes move2 {
  0% {
    margin-left: 300px;
  }
  100% {
    margin: 0;
  }
}

.about_me a {
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 35px;
    margin-top: 40px;
    background-color: black;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.293);
    gap: 5px;
}
.about_me i {
    font-size: 13px;
}

.about_me a:hover {
    gap: 20px;
    transition: all 0.3s ease-in-out;
}

.small_informations {
    width: 90%;
    height: 20%;
    border: 5px solid rgba(90, 102, 88, 0.33);
    border-radius: 40px;
    margin-top: 60px;
    overflow: hidden;
}
.small_informations p {
    font-size: 15px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 15px;

    animation: down-to-up 1.5s;
}
@keyframes down-to-up {
  0% {
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    margin-top: 15px;
    opacity: 1;
  }
}

.achievements {
    width: 90%;
    height: 41%;
    border: 5px solid rgba(90, 102, 88, 0.33);
    border-radius: 40px;
    margin-top: 18px;

    display: flex;
    flex-direction: column;
    justify-content: start;
}
.achievements label {
    font-size: 20px;
    font-weight: 800;
    transform: scaleX(0.9);
    color: rgb(64, 63, 55);
    
}
#label_1 {
    margin-top: 10px;
}
#label_5 {
    margin-top: -20px;
}
.english_level{
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.english_1 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
  .english_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: black;
    animation: swipe-fill 0.5s linear forwards;
  }
  
  .english_2 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
  .english_2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: black;
    animation: swipe-fill 0.5s linear forwards;
    animation-delay: 0.5s;
  }

.english_3 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
  .english_3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: black;
    animation: swipe-fill 0.8s linear forwards;
    animation-delay: 1s;
  }
  .english_4 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
  .english_4-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: black;
    animation: swipe-fill-05 1s ease-out forwards;
    animation-delay: 1.8s;
  }
  @keyframes swipe-fill {
    0% {
      width: 0%;
    }
    100% {
      width: 100%;
    }
  }
.english_4-1{
    width: 26.25px;
    height: 100%;
    background-color: transparent;
}
@keyframes swipe-fill-05 {
    0% {
      width: 0%;
    }
    100% {
      width: 50%;
    }
}
.english_5 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}

.coding_level{
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.coding_1 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.coding_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.7s linear forwards;
  animation-delay: 0s;
}

.coding_2 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.coding_2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 1.2s ease-out forwards;
  animation-delay: 0.7s;
}
.coding_3 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}
.coding_4 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}
.coding_5 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}

.experience_level{
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.experience_1 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.experience_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.5s linear forwards;
  animation-delay: 0s;
}
.experience_2 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.experience_2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.7s linear forwards;
  animation-delay: 0.5s;
}
.experience_3 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.experience_3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 1.1s ease-out forwards;
  animation-delay: 1.2s;
}
.experience_4 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}
.experience_5 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}

.crypto_level{
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.crypto_1 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.crypto_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.5s linear forwards;
  animation-delay: 0s;
}
.crypto_2 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.crypto_2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.5s linear forwards;
  animation-delay: 0.5s;
}
.crypto_3 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.crypto_3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.7s linear forwards;
  animation-delay: 1s;
}
.crypto_4 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.crypto_4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 1.2s ease-out forwards;
  animation-delay: 1.7s;
}
.crypto_5 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}

.social_level {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.social_1 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.social_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.5s linear forwards;
  animation-delay: 0s;
}
.social_2 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.social_2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill 0.9s linear forwards;
  animation-delay: 0.5s;
}
.social_3 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}
.social_3-1 {
    width: 52.5px;
    height: 7px;
    position: relative;
    overflow: hidden;
    background-color: rgb(201, 201, 201); /* Optional */
  }
  
.social_3-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  animation: swipe-fill-05 0.9s ease-out forwards;
  animation-delay: 1.4s;
}
.social_4 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}
.social_5 {
    width: 52.5px;
    height: 7px;
    background-color: rgb(201, 201, 201);
}

/* Top side of the website ends and the lower side starts*/
.lower-side {
    width: 350px;
    height: 120px;
    background-color: rgb(233, 234, 227);
    border-top-right-radius: 50px;
    border-top-left-radius: 0px;
    transition: width 0.3s ease;
    margin-top: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    background-color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    z-index: 2000;
    transition: border-top-left-radius 0.3s ease, width 0.3s ease;
}
.lower-side.rounded {
    border-top-left-radius: 50px;
}
.lower-side.longer {
    width: 470px;
}

#email_button {
    width: 97%;
    height: 92%;
    margin-top: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;

    background-color: black;
    color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.392);

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 35px;
    font-family: "Dancing Script", cursive;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: underline black;
    transition: border-radius 0.3s ease;
}
#email_button.rounded {
  border-top-left-radius: 43px;
  transition: border-radius 0.3s ease;
}

#email_button i {
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}
#email_button:hover i{
    margin-top: -35px;
    transition: all 0.3s ease-in-out;
    transform: scale(200%);
    margin-left: 80px;
}
#email_button p {
    transition: all 0.3s ease-in-out;
}
#email_button:hover p {
    margin-bottom: -25px;
    transition: all 0.3s ease-in-out;
    transform: scale(50%);
    margin-left: -80px;
}

.lower_side-1 {
    width: 470px;
    height: 250px;
    background-color: rgb(233, 234, 227);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    border: 5px solid white;
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(100%);
    position: sticky;
    top: 90px;
}
.lower_side-1.animate-in {
  animation: slide-up-fade-in 0.6s ease forwards;
}

.lower_side-1.animate-out {
  animation: slide-down-fade-out 0.6s ease forwards;
}
@keyframes slide-up-fade-in {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-down-fade-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}


.lower_side-1 a{
    text-decoration: none;
}
.telegram_button {
    width: 450px;
    height: 70px;
    border-top-right-radius: 40px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border: none;
    background-color: white;
    color: black;
    font-size: 25px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
@keyframes swipe-from-left {
  0% {
    margin-left: -1000px;
    margin-top: 225px;
  }
  100% {
    margin-left: 0;
    margin-top: 0px;
  }
}

.linkedin_button {
    width: 450px;
    height: 70px;
    border-radius: 7px;
    border: none;
    background-color: black;
    color: white;
    font-size: 25px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
@keyframes swipe-from-right {
  0% {
    margin-left: 1000px;
    margin-top: 225px;
  }
  100% {
    margin-left: 0;
    margin-top: 0px;
  }
}
.facebook_twitter{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.facebook_button {
    width: 220px;
    height: 70px;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 7px;
    border: none;
    background-color: white;
    color: black;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
@keyframes swipe-from-bottom-left {
  0% {
    margin-left: -500px;
    margin-top: 500px;
  }
  100% {
    margin-left: 0;
    margin-top: 0;
  }
}
.twitter_button {
    width: 220px;
    height: 70px;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 40px;
    border: none;
    background-color: white;
    color: black;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
@keyframes swipe-from-bottom-right {
  0% {
    margin-left: 500px;
    margin-top: 500px;
  }
  100% {
    margin-left: 0px;
    margin-top: 0;
  }
}



.telegram_button,
.linkedin_button,
.facebook_button,
.twitter_button {
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.telegram_button.animate {
  animation: swipe-from-left 1s forwards;
  opacity: 1;
}
.linkedin_button.animate {
  animation: swipe-from-right 1s forwards;
  opacity: 1;
}
.facebook_button.animate {
  animation: swipe-from-bottom-left 1s forwards;
  opacity: 1;
}
.twitter_button.animate {
  animation: swipe-from-bottom-right 1s forwards;
  opacity: 1;
}

.telegram_button span, .linkedin_button span, .facebook_button span, .twitter_button span {
    display: none;
    transition: all 1s;
}
.telegram_button:hover span, .linkedin_button:hover span, .facebook_button:hover span, .twitter_button:hover span {
    display: flex;
    transition: all 1s;
}
.telegram_button:hover, .linkedin_button:hover {
    background-color: rgb(243, 243, 243);
    color: black;
    transition: all 0.3s;
}
.telegram_button p, .linkedin_button p, .facebook_button p, .twitter_button p {
    transition: all 0.3s;
}
.telegram_button:hover p, .linkedin_button:hover p {
    margin-left: -750px;
    transition: margin-left 0.3s;
    opacity: 0;
    transition: opacity 0.1s;
}
.telegram_button i, .linkedin_button i {
    transition: all 0.3s;
}
.telegram_button:hover i, .linkedin_button:hover i {
    margin-left: 450px; 
    font-size: 50px;
    transition: all 0.3s;
}
.social_button {
  transition: background-color 0.5s, color 0.5s;
}

.facebook_button:hover p, .twitter_button:hover p{
  margin-left: -750px;
  transition: margin-left 0.3s;
  opacity: 0;
  transition: opacity 0.1s;
}
.facebook_button i, .twitter_button i {
  transition: all 0.3s;
}
.facebook_button:hover i, .twitter_button:hover i {
  margin-left: 605px;
  font-size: 40px;
  transition: all 0.3s;
}
.facebook_button:hover span {
  font-size: 15.2px;
}

.lower_main {
    width: 100%;
    height: 130px;
    background-color: white;
    border-radius: 70px;
    z-index: 1000;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
    position: relative;
}
.marquee {
    width: fit-content;
    display: flex;
    animation: marquee 10s linear infinite;
}
.marquee-group {
  display: flex;
}
.marquee-group img {
  margin-right: 150px;
  white-space: nowrap;
  transform: scale(120%);
  transition: all 0.3s ease-in-out;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.marquee-group img:hover {
  transform: scale(140%);
}
.main_informations {
    width: 100%;
    height: 300px;
    background-color: rgb(233, 234, 227);
    margin-top: -50px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;

    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;                                                    
}
.main_informations h2 {
    margin-top: 70px;
    font-size: 30px;
    align-self: start;
    padding-left: 20px;
    padding-right: 20px;
}
.main_informations p {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -15px;
    font-weight: 600;
    color: rgb(80, 80, 80);
}

.scroll_down {
    width: 1150px;
    height: 320px;
    background-color: rgb(233, 234, 227);
    position: absolute;
    border-radius: 30px;
    margin-top: -20px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.current_projects {
  width: 100%;
  height: 300px;
  background-color: rgb(233, 234, 227);
  border-radius: 30px;
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.current_projects-all {
  width: 25%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  border-right: 2px solid black;
}
.current_projects-all h1 {
  font-size: 100px;
  color: rgb(67, 67, 67);
  margin-top: -15px;
  font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.current_projects-all p {
  font-size: 17px;
  color: black;
  margin-top: -55px;
  font-family: cursive;
}
#current_projects-4 {
  border-right: none;
}

.last_main {
  width: 98.5%;
  height: 135px;
  margin-top: 15px;
  background-color: rgb(233, 234, 227);
  border-radius: 65px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.inner_last_main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 325px;
  font-size: 20px;
  font-weight: 700;
  color: rgb(80, 80, 80);}
.inner_last_main p {
  background-color: rgb(212, 211, 205);
  padding: 20px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 30px;
}
#number {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
#slide-up {
  position: absolute;
  margin-bottom: -70px;
}
#slide_up {
  font-size: 30px;
  transform: scaleX(4);
  position: absolute;
  color: rgb(80, 80, 80);
  cursor: pointer;
}