html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: grid;
}
@media (min-width: 768px) {
  .row-cols-md-2 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}

@media (min-width: 1400px) {
  .text-xl-nowrap {
    white-space: nowrap !important;
  }
}
.text-center {
  text-align: center !important;
}

.wrapper {
  /* width: 1920px; */
  max-width: 100%;
  margin: 0 auto;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}
/*  global clases */
.d-flex {
  display: flex;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.bg-dark {
  background-color: #212529;
}

.text-white {
  color: white;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-100 {
  margin-bottom: 100px;
}
.my-100 {
  margin: 100px 0;
}
.pt-100 {
  padding-top: 100px;
}
.pb-50 {
  padding-bottom: 50px;
}
.py-100 {
  padding: 100px 0;
}
.pt-100 {
  padding-top: 100px;
}

.ps-5 {
  padding-left: 24px;
}

.w-100 {
  width: 100%;
}
.heading-1 {
  position: relative;
  margin-bottom: 40px;
}
.heading-1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 70px;
  height: 2px;
  background-color: black;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  padding: 10px 30px;
  border: 2px solid #0d6efd;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  transform: scaleX(1.1);
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.rounded-pill {
  border-radius: 50rem !important;
}
.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  margin: 0;
  height: 60px;
  display: flex;
  align-items: center;
}
.navbar-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-item {
  margin: 0 10px;
}
.nav-link {
  color: white;
  text-decoration: none;
}

.hero {
  padding-top: 100px;
  min-height: 70vh;
  width: 100%;
  background: url(../images/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero .container {
  min-height: 60vh;
}

.about {
  padding: 100px 0;
}

.about .profile-picture {
  width: 300px;
  max-width: 100%;
}

/* experience */
.experience {
  width: 100%;
  overflow-x: scroll;
}

.experience-inner {
  width: 1900px;
}
.experience-item {
  width: 500px !important;
  margin-right: 20px;
  padding-right: 15px;
}

.experience-item:not(:last-child) {
  border-right: 1px solid black;
}

/* skills */
.skills img {
  width: 100%;
}
/* education */
.education {
  width: 100%;
  overflow: hidden;
}

.education-item {
  padding: 40px;
  min-height: 200px;
}

.contact .profile-picture {
  width: 75%;
  max-width: 100%;
}
