/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  font-family: "Marck Script", cursive;
  font-weight: 400;
  font-style: normal;
}

html {
  background: #000;
}

body {
  font-family: "Vollkorn", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  max-width: 800px;
  margin: auto;
}
body.scroll-locked {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}
body.loading {
  overflow: hidden;
  height: 100vh;
}
body.menu-open {
  overflow: hidden;
}

.scroll-locked .burger-menu {
  opacity: 0;
  visibility: hidden;
}

.burger-menu {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  border: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.burger-menu:hover, .burger-menu:focus {
  outline: none;
}
.burger-menu .burger-line {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(47deg) translate(5px, 5px);
}
.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-list {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.menu-link {
  display: block;
  font-size: clamp(2rem, 6vw, 4rem);
  font-family: "Marck Script", cursive;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.menu-link::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease;
}
.menu-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.fullscreen-menu.active .menu-link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}
.fullscreen-menu.active .menu-link:nth-child(1) {
  transition-delay: 0.1s;
}
.fullscreen-menu.active .menu-link:nth-child(2) {
  transition-delay: 0.2s;
}
.fullscreen-menu.active .menu-link:nth-child(3) {
  transition-delay: 0.3s;
}
.fullscreen-menu.active .menu-link:nth-child(4) {
  transition-delay: 0.4s;
}
.fullscreen-menu.active .menu-link:hover {
  color: #f0f0f0;
  transform: translateY(0) translateX(10px);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  visibility: visible;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  color: #fff;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.preloader-text {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.welcome-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 90vh;
  overflow: hidden;
  background: #000;
  opacity: 1;
  transition: opacity 1s ease-out;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 16%, rgb(0, 0, 0) 100%);
  opacity: 1;
  pointer-events: none;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.video-play-button.visible {
  opacity: 1;
  pointer-events: auto;
}
.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.video-play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}
.video-play-button svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.video-play-button circle {
  transition: fill 0.3s ease;
}
.video-play-button:hover circle {
  fill: rgba(0, 0, 0, 0.8);
}

.text-overlay {
  position: absolute;
  bottom: calc(env(safe-area-inset-bottom, 60px) + 20px);
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 800px;
  opacity: 0;
  pointer-events: none;
  margin: auto;
  transition: opacity 0.5s ease-in-out;
  z-index: 3;
}
.text-overlay.active {
  opacity: 1;
}

.sand-text {
  color: #fff;
  font-size: 24px;
  font-family: "Marck Script", cursive;
  font-weight: 400;
  font-style: normal;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.text-overlay.active .sand-text {
  opacity: 1;
  transform: translateY(0);
}

.photo-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 60px 20px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.photo-section.show {
  opacity: 1;
}

.photo-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 60px;
  height: 100%;
}

.photo-image {
  width: 100%;
  max-width: 600px;
  height: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.photo-text {
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 600px;
  height: 100%;
  position: relative;
  z-index: 2;
}
.photo-text h1 {
  position: absolute;
  bottom: 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
  left: 0px;
  right: 0;
  text-align: center;
  font-size: 34px;
}
.photo-text h1 span {
  display: block;
  font-size: 18px;
}

.photo-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 3px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: auto;
}
.photo-section.show .scroll-indicator {
  opacity: 1;
}
.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-arrow {
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.scroll-arrow:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}
.scroll-arrow svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.main-content {
  padding: 0px 20px 40px 20px;
}

.greeting {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 50px;
}

.greeting-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.greeting-name {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  background: -webkit-linear-gradient(#ff9a63, #ffdc93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.8;
  color: #a7a7a7;
}

.content-block {
  max-width: 900px;
  margin: 0 auto 60px;
}
.content-block:last-child {
  margin-bottom: 0;
}
.content-block p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #a7a7a7;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  padding: 10px 0;
  padding-left: 0px;
  position: relative;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: #a7a7a7;
}

.cta-section {
  max-width: 900px;
  margin: 80px auto 0;
  text-align: center;
  padding: 30px 20px;
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  border-radius: 20px;
}
.cta-section p {
  display: block;
}

.cta-text {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
  font-family: "Marck Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
}

.cta-emoji {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #000;
  margin-bottom: 0px;
  line-height: 1.8;
}

.cta-final {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: #667eea;
  font-style: italic;
}

.additional-info {
  padding: 80px 0px 50px 0px;
}

.relocation-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0px;
}

.relocation-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
}

.relocation-images {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 -60px;
  width: calc(100% + 120px);
  max-width: calc(100% + 120px);
  flex-direction: row;
}

.relocation-image-wrapper {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  height: 300px;
  min-width: 0;
}
.relocation-image-wrapper:first-child {
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}
.relocation-image-wrapper:last-child {
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
}
.relocation-image-wrapper .relocation-image-text {
  color: #fff;
  display: block;
  font-size: 14px;
  position: absolute;
  top: 9px;
  z-index: 2;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1;
}

.relocation-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: grayscale(0%);
  transition: filter 0.8s ease;
}

@keyframes colorToggle {
  0% {
    filter: grayscale(0%);
  }
  25% {
    filter: grayscale(0%);
  }
  50% {
    filter: grayscale(100%);
  }
  75% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}
.relocation-image-wrapper:first-child .relocation-image,
.relocation-image-wrapper:first-child .relocation-image-text {
  animation: colorToggle 4s ease-in-out infinite;
}

.relocation-image-wrapper:last-child .relocation-image,
.relocation-image-wrapper:last-child .relocation-image-text {
  animation: colorToggle 4s ease-in-out infinite 2s;
}

.relocation-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #667eea;
  font-style: italic;
}

.relocation-text-wrapper {
  font-size: clamp(3rem, 19vw, 5rem);
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin: 14px 0;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.relocation-text-wrapper:first-child {
  margin-top: 0;
}
.relocation-text-wrapper::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: grayscale(0%);
  z-index: 2;
  animation: textColorToggle 4s ease-in-out infinite;
}
.relocation-text-wrapper::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: grayscale(100%);
  z-index: 1;
  animation: textGrayscaleToggle 4s ease-in-out infinite;
}
.relocation-text-wrapper#relocation-text-msc::before, .relocation-text-wrapper#relocation-text-msc::after {
  background-image: url("../img/msc.jpg");
}
.relocation-text-wrapper#relocation-text-dbu::before {
  background-image: url("../img/dbu.avif");
  animation: textColorToggle 4s ease-in-out infinite 2s;
}
.relocation-text-wrapper#relocation-text-dbu::after {
  background-image: url("../img/dbu.avif");
  animation: textGrayscaleToggle 4s ease-in-out infinite 2s;
}

#relocation-text {
  padding: 0;
  margin: 0;
}
#relocation-text .divider {
  width: 100px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  opacity: 0.4;
}

@keyframes textColorToggle {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes textGrayscaleToggle {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.social-footer {
  padding: 40px 20px;
  background: #000;
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}
.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.social-link:hover::before {
  opacity: 0.2;
}
.social-link .social-icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.social-link:hover .social-icon {
  transform: scale(1.1);
}

.social-link-instagram {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}
.social-link-instagram::before {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}
.social-link-instagram .social-icon {
  color: #fff;
}

.social-link-threads {
  background: #fff;
}
.social-link-threads .social-icon {
  color: #fff;
}

.social-link-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
}
.social-link-telegram::before {
  background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
}
.social-link-telegram .social-icon {
  color: #fff;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.portfolio-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding: 20px 0;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.portfolio-grid::-webkit-scrollbar {
  height: 8px;
}
.portfolio-grid::-webkit-scrollbar-track {
  background: transparent;
}
.portfolio-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.portfolio-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.portfolio-item {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.portfolio-item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.portfolio-modal.active {
  opacity: 1;
  visibility: visible;
}

.portfolio-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.portfolio-modal.active .portfolio-modal-content {
  transform: scale(1);
}
.portfolio-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.portfolio-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}
.portfolio-modal-close svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .portfolio-item {
    width: 250px;
    height: 350px;
  }
  .portfolio-modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .portfolio-modal-close svg {
    width: 20px;
    height: 20px;
  }
  .portfolio-modal-content {
    max-width: 95%;
    max-height: 85%;
  }
}/*# sourceMappingURL=styles.css.map */