body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.attribution {
  font-size: 0.85rem;
  font-style: italic;
  color: #999999;
  margin-top: 5px;
}
.attribution a {
  color: inherit;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 1px;
}

.section-subtitle-center {
  text-align: center;
  color: #555555;
  margin-top: 10px;
  font-size: 1.1rem;
}

.main-header {
  background-color: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 2000;
}
.main-header .header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo {
  font-size: 1.8rem;
  font-weight: 300;
  color: #b3b3b3;
  letter-spacing: 1px;
}
.main-header .hamburger-menu {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #f15a38;
  cursor: pointer;
}

.hero-section {
  background-color: #f2f5f8;
  padding: 60px 0;
}
.hero-section .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-section .hero-content .orange-dot {
  width: 45px;
  height: 45px;
  background-color: #f15a38;
  border-radius: 50%;
  margin-bottom: 20px;
}
.hero-section .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
}
.hero-section .hero-content .hero-lead {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}
.hero-section .btn-primary {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 14px 40px;
  transition: background-color 0.2s ease;
}
.hero-section .btn-primary:hover {
  background-color: #f15a38;
}

.profile-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.profile-section .profile-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}
.profile-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.profile-section .profile-avatar {
  display: flex;
  justify-content: center;
}
.profile-section .profile-avatar .avatar-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
.profile-section .profile-avatar .avatar-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-section .detail-item {
  margin-bottom: 15px;
}
.profile-section .detail-item strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #111111;
}
.profile-section .detail-item p {
  margin: 2px 0 0 0;
  color: #555555;
}
.profile-section .social-row {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.profile-section .social-row .social-link {
  text-decoration: none;
  color: #111111;
  font-weight: bold;
}

.bio-extended-section {
  padding: 60px 0;
}
.bio-extended-section .bio-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bio-extended-section .bio-text-side h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.bio-extended-section .bio-text-side .highlight-text {
  font-size: 1.1rem;
  font-weight: 600;
}
.bio-extended-section .bio-visual-side {
  position: relative;
}
.bio-extended-section .bio-visual-side .workspace-image-wrapper {
  position: relative;
  width: 100%;
}
.bio-extended-section .bio-visual-side .contact-card {
  background-color: #f15a38;
  color: #ffffff;
  padding: 30px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.bio-extended-section .bio-visual-side .contact-card .card-group {
  margin-bottom: 20px;
}
.bio-extended-section .bio-visual-side .contact-card .card-group:last-child {
  margin-bottom: 0;
}
.bio-extended-section .bio-visual-side .contact-card .card-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.8;
}
.bio-extended-section .bio-visual-side .contact-card .card-value {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  color: #ffffff;
  text-decoration: none;
}

.services-section {
  background-color: #f2f5f8;
  padding: 80px 0;
}
.services-section .large-heading {
  font-size: 2.8rem;
  font-weight: normal;
}
.services-section .max-width-text {
  max-width: 650px;
  margin: 15px auto 50px auto;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.services-section .service-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.services-section .service-card .icon-badge {
  width: 60px;
  height: 60px;
  background-color: #f15a38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #ffffff;
}
.services-section .service-card .card-body h3 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: #474747;
}
.services-section .service-card .card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #555555;
}

.showcase-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.showcase-section .showcase-layout-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 5;
}
.showcase-section .orange-bg-decorator {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 85%;
  background-color: #f15a38;
  z-index: 1;
  display: none;
}
.showcase-section .showcase-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  z-index: 10;
}
.showcase-section .gallery-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.showcase-section .gallery-column img {
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.showcase-section .showcase-sidebar-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.showcase-section .showcase-sidebar-text .btn-dark-outline {
  display: inline-block;
  border: 2px solid #111111;
  color: #111111;
  text-decoration: none;
  padding: 12px 35px;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 20px;
}

.testimonial-section {
  background-color: #f2f5f8;
  padding: 80px 0;
  text-align: center;
}
.testimonial-section .testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.testimonial-section .arrow-btn {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: #b3b3b3;
  cursor: pointer;
}
.testimonial-section .arrow-btn:hover {
  color: #111111;
}
.testimonial-section .testimonial-body {
  max-width: 700px;
}
.testimonial-section .testimonial-body .user-avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px auto;
}
.testimonial-section .testimonial-body blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 20px 0;
  padding: 0 10px;
}
.testimonial-section .testimonial-body .client-name {
  display: block;
  font-weight: normal;
  letter-spacing: 1px;
  color: #f15a38;
}
.testimonial-section .testimonial-body .client-title {
  font-size: 0.85rem;
  color: #999999;
}
.testimonial-section .carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}
.testimonial-section .carousel-indicators .dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
}
.testimonial-section .carousel-indicators .dot.active {
  background-color: #f15a38;
}

.site-footer-dark {
  background-color: #24292e;
  color: #ffffff;
  padding: 80px 0 20px 0;
}
.site-footer-dark .footer-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.site-footer-dark .footer-info-column .footer-tagline {
  color: #f15a38;
  font-size: 0.85rem;
  font-weight: normal;
  letter-spacing: 2px;
}
.site-footer-dark .footer-info-column h2 {
  font-size: 3rem;
  margin: 10px 0 20px 0;
}
.site-footer-dark .footer-info-column p {
  color: #cccccc;
  font-size: 0.95rem;
}
.site-footer-dark .footer-form-column .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.site-footer-dark .footer-form-column .contact-form input,
.site-footer-dark .footer-form-column .contact-form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #555555;
  padding: 12px 5px;
  color: #ffffff;
  font-size: 1rem;
}
.site-footer-dark .footer-form-column .contact-form input:focus,
.site-footer-dark .footer-form-column .contact-form textarea:focus {
  outline: none;
  border-color: #f15a38;
}
.site-footer-dark .footer-form-column .contact-form .form-submit-btn {
  background-color: #f15a38;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 15px;
  cursor: pointer;
}
.site-footer-dark .footer-form-column .footer-social-links {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}
.site-footer-dark .footer-form-column .footer-social-links a {
  color: #999999;
  text-decoration: none;
  font-size: 1.1rem;
}
.site-footer-dark .footer-form-column .footer-social-links a:hover {
  color: #ffffff;
}
.site-footer-dark .footer-bottom-bar {
  text-align: center;
  border-top: 1px solid #3e444c;
  margin-top: 60px;
  padding-top: 20px;
}
.site-footer-dark .footer-bottom-bar p {
  font-size: 0.85rem;
  color: #888888;
  margin: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  background-color: #f15a38;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s ease;
}
.social-icon:hover {
  transform: translateY(-5px) scale(1.08);
  background-color: #54C788;
}

.copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 12px;
}

.nicepage-credit {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
  color: #999999;
}
.nicepage-credit a {
  color: #999999;
  text-decoration: underline;
}
.nicepage-credit a:hover {
  color: #f15a38;
}

@media (min-width: 768px) {
  .container {
    width: 90%;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-section {
    padding: 65px 0;
  }
}
@media (min-width: 992px) {
  .container {
    width: 88%;
    max-width: 1050px;
  }
  .hero-section .hero-grid {
    flex-direction: row;
    align-items: center;
  }
  .hero-section .hero-grid .hero-content,
  .hero-section .hero-grid .hero-image {
    flex: 1;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .profile-section .profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }
  .bio-extended-section .bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .bio-extended-section .workspace-image-wrapper .contact-card {
    position: absolute;
    bottom: -150px;
    right: -20px;
    width: 230px;
    margin-top: 0;
  }
  .services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .services-section .large-heading {
    font-size: 2.2rem;
  }
  .showcase-section .orange-bg-decorator {
    display: block;
  }
  .showcase-section .showcase-layout-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .showcase-section .showcase-gallery-grid {
    flex: 2;
    grid-template-columns: repeat(3, 1fr);
  }
  .showcase-section .showcase-sidebar-text {
    flex: 1;
    padding-left: 40px;
  }
  .site-footer-dark .footer-grid {
    flex-direction: row;
    gap: 80px;
  }
  .site-footer-dark .footer-grid .footer-info-column,
  .site-footer-dark .footer-grid .footer-form-column {
    flex: 1;
  }
  .site-footer-dark .footer-form-column .footer-social-links {
    justify-content: flex-start;
  }
  .site-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
  .site-footer .footer-info,
  .site-footer .contact-form {
    flex: 1;
  }
}
.showcase-section .gallery-column img {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/* Left column */
.showcase-section .gallery-column:nth-child(1) img {
  animation-name: fromLeft;
}

/* Middle column */
.showcase-section .gallery-column:nth-child(2) img {
  animation-name: fromBottom;
  animation-delay: 0.3s;
}

/* Right column */
.showcase-section .gallery-column:nth-child(3) img {
  animation-name: fromRight;
  animation-delay: 0.6s;
}

@keyframes fromLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fromBottom {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fromRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.profile-avatar .avatar-circle {
  animation: profilePictureIn 1.5s ease-out forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-avatar .avatar-circle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@keyframes profilePictureIn {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.5) rotate(-15deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-15px) scale(1.1) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}
.hero-image {
  animation: heroPictureMove 1.5s ease-out forwards;
}

.hero-image img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

@keyframes heroPictureMove {
  0% {
    opacity: 0;
    transform: translateX(200px) scale(0.7) rotate(8deg);
  }
  60% {
    opacity: 1;
    transform: translateX(-20px) scale(1.05) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
  }
}
.site-footer-dark .footer-info-column {
  animation: footerLeft 1.2s ease-out forwards;
}

.site-footer-dark .footer-form-column {
  animation: footerRight 1.2s ease-out 0.3s forwards;
}

.site-footer-dark .contact-form input,
.site-footer-dark .contact-form textarea {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.site-footer-dark .contact-form input:focus,
.site-footer-dark .contact-form textarea:focus {
  transform: translateX(8px);
}

.site-footer-dark .form-submit-btn {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.site-footer-dark .form-submit-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #54C788;
}

.site-footer-dark .social-icon {
  transition: transform 0.99s ease, box-shadow 0.4s ease;
}

.site-footer-dark .social-icon:hover {
  transform: translateY(-10px) rotate(8deg) scale(1.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes footerLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes footerRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.testimonial-section {
  position: relative;
}

/* Hide radio buttons */
.testimonial-section > input[type=radio] {
  display: none;
}

/* Hide testimonials */
.testimonial-one,
.testimonial-two {
  display: none;
}

/* Show testimonial 1 */
#testimonial-1:checked ~ .testimonial-container .testimonial-one {
  display: block;
  animation: testimonialFromLeft 0.6s ease;
}

/* Show testimonial 2 */
#testimonial-2:checked ~ .testimonial-container .testimonial-two {
  display: block;
  animation: testimonialFromRight 0.6s ease;
}

/* Arrow */
.testimonial-section .arrow-btn {
  cursor: pointer;
  font-size: 3rem;
  color: #b3b3b3;
  transition: transform 0.3s ease, color 0.3s ease;
}

.testimonial-section .arrow-btn:hover {
  color: #f15a38;
  transform: scale(1.3);
}

/* Dots */
.testimonial-section .carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.testimonial-section .carousel-indicators .dot {
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.testimonial-section .carousel-indicators .dot:hover {
  transform: scale(1.4);
}

/* Active dot */
#testimonial-1:checked ~ .carousel-indicators label[for=testimonial-1],
#testimonial-2:checked ~ .carousel-indicators label[for=testimonial-2] {
  background-color: #f15a38;
  transform: scale(1.3);
}

/* Animation 1 */
@keyframes testimonialFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Animation 2 */
@keyframes testimonialFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* PROFILE AUTOMATIC ANIMATION */
.profile-about {
  opacity: 0;
  animation: aboutMove 1s ease-out 0.5s forwards;
}

.profile-avatar {
  opacity: 0;
  animation: avatarMove 1s ease-out 0.8s forwards;
}

.profile-details {
  opacity: 0;
  animation: detailsMove 1s ease-out 1.1s forwards;
}

/* About Me moves from left */
@keyframes aboutMove {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Picture moves from bottom */
@keyframes avatarMove {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Details moves from right */
@keyframes detailsMove {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */