:root {
  --dark1: #21201E;
  --dark2: #2D2B29;
  --brand: #ED9902;
  --white: #ffffff;
  --body: #9B968B;
  --border-radius: 4px;
}

body {
  color: var(--body);
  font-family: verdana;
  background-color: var(--dark1);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--white);
}

a {
  transition: all 0.4s ease;
  color: var(--white);
  text-decoration: none;
}
a:hover {
  color: var(--brand);
}

img {
  width: 100%;
}

section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.navbar {
  background-color: var(--dark1);
}
.navbar .nav-link {
  font-size: 13px;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--brand);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--brand);
}

#about {
  display: flex;
  align-items: center;
  min-height: 100vh;
}
#about h1 {
  font-weight: 600;
}
#about img {
  border-radius: 1000px;
  border: 3px solid var(--brand);
}

#about .person-is span {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  color: var(--white);
  margin-right: 8px;
  text-transform: uppercase;
}

.person-img {
  position: relative;
  z-index: 2;
}

#about .ellipse-top {
  width: 70%;
  height: 70%;
  background: linear-gradient(180deg, #4D4A45 0%, #292824 100%);
  position: absolute;
  top: -10%;
  right: 0;
  border-radius: 1000px;
  z-index: -1;
}

#about .ellipse-bottom {
  width: 40%;
  height: 40%;
  background: linear-gradient(180deg, #4D4A45 0%, #292824 100%);
  position: absolute;
  bottom: -5%;
  left: 0;
  border-radius: 1000px;
  z-index: -1;
}

.blog {
  border-radius: 18px;
  position: relative;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.blog img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.9s ease;
}
.blog:hover .btn-brand {
  opacity: 1;
  top: 40%;
}
.blog .btn {
  background-color: var(--brand);
  border-color: 1px solid var(--brand);
  white-space: nowrap;
  color: black;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.9s ease;
}
.blog .btn:hover {
  opacity: 1;
  background-color: var(--brand);
  border-color: 1px solid var(--brand);
  color: black;
}
.blog:hover img {
  filter: blur(2px);
}

#blog-carousel {
  display: block !important;
  visibility: visible !important;
}

.btn {
  padding: 13px 17px;
}
.btn-brand {
  background-color: var(--brand);
  border-color: 1px solid var(--brand);
}
.btn-brand:hover {
  background-color: transparent;
  color: var(--brand);
}
.btn-outline-brand {
  background-color: transparent;
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-brand:hover {
  background-color: var(--brand);
  color: black;
}

/* Technologies / Languages */
.languages {
  flex-wrap: wrap;
}

.card {
  background-color: var(--dark1);
  color: white;
  border-radius: 1rem;
  box-shadow: 0 0.3rem 1rem rgb(0, 0, 0);
  padding: 12px;
  display: flex;
  border-radius: 8px;
  text-align: center;
  margin: 1.8rem 1rem 2rem;
  transition: transform 0.2s ease-in;
  width: 210px;
  height: -moz-max-content;
  height: max-content;
}
.card img {
  width: 50%;
  padding: 0 auto;
  margin: 0 auto;
}
.card h4 {
  font-size: 2rem;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.card:hover {
  transform: translateY(-1.5rem);
}

/*Intro*/
.intro {
  margin-bottom: 40px;
}
.intro p {
  max-width: 500px;
}

.text-brand {
  color: var(--brand);
}

/* service */
.service {
  background-color: var(--dark2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.service img {
  width: 100%;
}
.service .iconbox {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background-color: var(--dark1);
  margin-right: 18px;
  margin-bottom: 18px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .service {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .service .iconbox {
    margin-bottom: 0;
  }
}
/* divider */
.divider {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* portfolio */
.portfolio-item {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.9s ease;
}
.portfolio-item:hover .btn-brand {
  opacity: 1;
  top: 50%;
}
.portfolio-item .btn {
  background-color: var(--brand);
  border-color: 1px solid var(--brand);
  white-space: nowrap;
  color: black;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.9s ease;
}
.portfolio-item:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}

/* Modal */
.modal h2 {
  color: var(--dark1);
}

/* Review */
.review {
  padding: 28px;
  background-color: var(--dark2);
  border-radius: 12px;
}
.review img {
  width: 65px;
  border-radius: 100px;
  border: 2px solid var(--brand);
}

/* pricing */
.pricing-table {
  padding: 34px 24px;
  background-color: var(--dark2);
  border-radius: 8px;
}
.pricing-table.btn {
  margin-top: 24px;
  margin-bottom: 24px;
}
.pricing-table ul {
  padding: 0;
}
.pricing-table ul li {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.pricing-table .iconbox {
  border-radius: 100px;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 8px;
}

.pricing-header {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* form */
form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
form .form-control:focus {
  box-shadow: none;
  border-color: var(--brand);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* nav tabs */
.nav-pills .nav-link {
  color: white;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: var(--brand);
  color: black;
}

/* footer */
footer {
  background-color: var(--dark2);
}/*# sourceMappingURL=styles.css.map */