/* !  BASIC STYLES */

* {
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}
.body_inner{
    padding: 0% 0%;
}
h1,h2,h3,h4,h5,h6 {
    font-weight:700;
    font-size:52px;
    letter-spacing: -0.02em;
    line-height: 150.02%;
}
.pretitle{
    font-family: 'Inconsolata', monospace;
    font-weight: 400;
    font-size: 18px;
line-height: 126.02%;
letter-spacing: 0.2em;
color:#717171
}
p, a {
    font-size: 19px;
line-height: 225.02%;
letter-spacing: 0.02em;
color:#282828;
font-weight:300
}
a {
  font-weight:400
}
.main_box{
  display: flex;
  align-items: center;
  padding-top:5%
}
.main_rightbox{
  max-width: 50%;
  padding-left: 2%;
}

/* ? NAV BAR */


ul li {
  list-style-type: none;
}
button {
  outline: 0;
  cursor: pointer;
}
.navbar a {
  text-decoration: none;
  color: white;
}
.navbar {
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.btn-bars {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  display: flex;
  padding: 0.4rem 0.9rem;
  align-items: center;
  border-radius: 3px;
  margin: 1.6rem 1.6rem 0 0;
  transition: all 0.4s ease;
}
.btn-bars span {
  font-size: 1.6rem;
  color: black;
}

.btn-bars:hover {
  color: #fff;
}
.navbar-collapse {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.429);
  width: 40%;
  padding: 1.6rem;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.btn-close {
  display: block;
  width: 33px;
  height: 33px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.5s ease;
}

.btn-close:hover {
  color: rgba(255, 255, 255, 0.653);
}
.navbar-nav {
  margin: 20px 0;
}
.nav-item {
  margin: 1.4rem 0;
}
.nav-link {
  color: #fff;
  font-family: "Fira Sans", sans-serif;
  font-size: 28px;
  transition: color 0.5s ease;
}
.nav-link:hover {
    color: rgba(255, 255, 255, 0.653);
}
.nav-para {
  line-height: 1.6;
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 300;
}
.nav-social-icon {
  margin-top: 3rem;
  margin-right: 4rem;
  display: flex;
  justify-content: space-between;
}
.nav-social-icon a {
  color: #7b7b7b;
}
.showMenu {
  transform: translateX(0);
}
.closedShowclosed{
    display: none;
}

.pretitle_block::before{
    content: url(images/Vector\ 14.svg);
}
/* * LANDING */


.landing_title{
    font-size: 74px;
    line-height: 121.52%;
}
.landing_description{
    padding:0% 5%
}
.landing_box{
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
}
.landing_image{
    width:40%
}
.landing_title2 {
  display: none;
}


/*  * ABOUT */


.about_box{
  padding: 100px 5% 0px 5%;
}
.about_text:nth-child(2){
    padding-top:5%
}


/*  * SKILLS */


.skills_box{
  background-color: #FAFBFC;
  margin-top: 100px;
}
.skills_innerbox{
  padding: 5%
}
.skills_chart .progress{
  border-radius: 0;
margin:10px ;
height:4px
}
.skills_chart .progress-bar{
  background-color: black;
}
.skills_labelbox{
  display: flex;
  justify-content: space-between;
}


/*  * PORTFOLIO */
.carousel_main {
  width:80%;
  margin: auto;
}
.carousel_description {
  text-align: center;
}
.carousel-indicators{
  bottom:-20px
}
.carousel-indicators [data-bs-target]{
  background-color: #282828 !important;
}
.portfolio_box{
  text-align: center;
  padding-top:50px
}
.portfolio_work_title:nth-child(2){
  padding:0 5%
}
.poertfolio_works a {
  text-decoration: none;
  font-size: 25px;
}
.poertfolio_works a:hover {
  transition: 0.8s;
  color:rgb(166, 166, 166)
}


/*  * FOOTER */


.fiverr_icon{
  width:20px;
  margin:0px 10px 0px 50px
}
.footer_title{
  font-size: 90px;
line-height: 115%;
font-family: 'Manrope';
font-weight: 600;
max-width:50%
}
.footer_description {
  font-size: 22px;
line-height: 225.02%;
max-width:600px
}
.footer_socials a{
  text-decoration: underline;
}
.footer_box{
  padding:250px 0% 0% 5%
}
.footer_socials i {
  margin-right:10px
}


/* TODO: MEDIA SCREENS */


@media screen and (max-width:800px) {
  .main_box {
    flex-direction: column;
  }
  .main_rightbox {
    max-width:100%
  }
  .landing_image {
    width:50%
  }
  .carousel-indicators {
    display: none;
  }
  .navbar-collapse {
    width:50%
  }
}
@media screen and (max-width:650px) {
  .carousel_main {
    width:90%
  }
  .navbar-collapse {
    width:60%
  }
}
@media screen and (max-width:500px) {
  .carousel_main {
    width:100%
  }
  .footer_title {
    font-size: 60px;
  }
  .landing_title{
    font-size: 60px
  }
  .landing_image {
    width:80%
  }
  .navbar-collapse {
    width:70%
  }
}
@media screen and (max-width:400px) {
  .landing_title{
    font-size: 50px
  }
  .poertfolio_works a {
    font-size: 20px;
  }
  .navbar-collapse {
    width:80%
  }
}
