html,
body {
  margin: 0;
  padding: 0;
  color: #234337;
  overflow-x: hidden;
}

body {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.25rem;
  color: #234337;
}

h1,
h2,
h3,
h4 {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}

html {
  background-color: #def5e5;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  position: relative;
}

.main-layout {
  display: flex;
  flex-direction: column;
  background-color: #def5e5;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}

@media (max-width: 768px) {
  body {
    display: block;
  }
  .main-layout {
    padding: 2rem;
  }
  .swiper,
  .swiper-container {
    width: 10rem;
    background: red;
    color: blue;
  }
}
@media (max-width: 1024px) {
  .main-layout {
    padding: 3rem;
  }
  .main-layout .swiper-container {
    width: 10rem;
  }
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8ec3b0;
  padding: 1rem 2rem;
}

.site-header__brand img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.site-header__brand p {
  margin: 0;
  color: #234337;
  font-weight: 700;
}

.site-header__navs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer {
  background-color: #234337;
  display: flex;
  justify-content: center;
  padding: 1.5rem 2rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #bcead5;
  z-index: 1;
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer .footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer .footer-contact a {
  text-decoration: none;
  color: #bcead5;
}
.footer .footer-contact a:hover {
  color: #8ec3b0;
}

.line-svg {
  position: absolute;
  height: 14rem;
  bottom: 15rem;
  left: -3rem;
  z-index: 0;
}

a {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.home-img {
  display: block;
  width: 20rem;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 1.5rem;
  border-radius: 20%;
}

.home-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.home-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 40rem;
}

.swiper-container {
  width: 40rem;
  position: relative;
  height: 100%;
  border-radius: 10px;
  background-color: #bcead5;
  --swiper-pagination-color: #234337;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.slider-image-wrapper {
  height: 20rem;
  width: 100%;
  --img-scale: 1.05;
  overflow: hidden;
}

.slider-item {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  opacity: 0;
  cursor: grab;
}
.slider-item-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.4s;
}
.slider-item-content > * {
  opacity: 0;
  transform: translateY(20px);
}

.swiper-slide-active {
  opacity: 1;
}
.swiper-slide-active .slider-item-content > * {
  transform: translateY(0px);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  color: #234337 !important;
  position: relative;
  margin-left: 4px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}

article {
  --img-scale: 1.05;
  --title-color: $colour-dark;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  background: #bcead5;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  width: 24rem;
  height: 30rem;
}

article a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}

article img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.article-body {
  padding: 24px;
}

article a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

article a:focus {
  outline: 1px dotted #28666e;
}

article a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

article:has(:hover, :focus) {
  --img-scale: 1.1;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media screen and (max-width: 960px) {
  article {
    container: card/inline-size;
  }
  .article-body p {
    display: none;
  }
}
@container card (min-width: 380px) {
  .article-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .article-body {
    padding-left: 0;
  }
  figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  figure img {
    height: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.skill-title {
  min-width: 20rem;
}

.skill-card {
  flex: 1 1;
  min-width: 10rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #bcead5;
}

.skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.navbar,
.navbar__admin {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar a,
.navbar__admin a {
  color: #234337;
  text-decoration: none;
}
.navbar a:hover,
.navbar__admin a:hover {
  color: #bcead5;
}

.section {
  display: flex;
  padding: 1rem;
  align-items: center;
}

.title {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.title span {
  width: 10rem;
  flex-shrink: 0;
}
.title::after {
  content: "";
  flex: 1;
  max-width: 40rem;
  height: 2px;
  border-top: 2px solid #234337;
  height: 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.icons {
  font-size: 4rem;
  margin: 1rem;
  padding: 1rem;
}/*# sourceMappingURL=index.css.map */