:root {
  --primary-color: black; /* Black */
  --secondary-color: white; /* White */
  --bordo-color: rgba(68, 4, 5); /* Bordo */
  --red-color: #620a1a; /* Red */
  --gold-color: #C6953f;
  --yellow-color: rgb(230, 138, 0);
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #000;
  /* background-image: url('Viktoria\ Ravik\ website\ background.jpg'); */
  background-image: url('Backgrounds/COMPUTER\ 2560X1440.jpg');
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat; 
  color: #fff;            
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 700px;
  font-style: normal;
  scroll-behavior: smooth;
}

/* page_conteiner */
.page_conteiner {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

/* header */
.header_conteiner {
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    margin-top: content;
    margin-bottom: 40px;
    align-content: center;
    align-items: center;
    position: fixed;
    background-color: var(--primary-color);
    top: 0;
    z-index: 1000;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
}

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
  }

  .header_menu {
    position: absolute;
    top: 100px;
    right: 0;
    max-width: 50%;
    width: 30%;
    background: black;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    /* display: none; */
    opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.25s ease;
  }

  .header_menu a {
    text-decoration: none;
    color: white;
  }

  .header_menu.active {
    display: flex;
    opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  }

.header_nav_conteiner a {
    text-decoration: none;
    color: white;
}

.header_nav_conteiner a:hover {
    color:var(--gold-color);
}

.header_nav_conteiner {
    display: flex;
    flex-direction: row;
    align-self: center;
    gap: 30px;    
}

.header_logo img {
    height: 100px;
    width: 140px;
}

.header_right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    justify-items: center;
    gap: 15px;
}

.hamburger_button {
    border-radius: 100px;
    width:fit-content;
    height: fit-content;
    background: var(--red-color);
    color:white;
    padding:8px 25px;
    margin: 5px;
    font-size: medium;
    text-decoration: none;
}

.hamburger_button:hover {
    background: #C6953f;
    cursor: pointer;
}
.imdb_icon {
    color: white;
    font-size: 18px;
    align-items: center;
    align-self: center;
    text-decoration: none;
}

.socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    align-self:center;
    align-items:center;
}

.header_right a {
    align-self:center;
    align-items:center;
}


/* hero */
.hero {
    margin-top:150px;
    min-height:80vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    /* gap: 20vh; */
}

.hero_top {
    text-align: center;
}

.hero_top h3 {
    margin: 50px;
}

.hero_left { 
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items:flex-end;
    width:50%; 
    gap: 30px;
    position: relative;
}

.hero_left .contact_form .hero_left_button {
    padding: 5px 10px;
    font-size: medium;
    border-radius: 10px;
    cursor: pointer;
}

.contact_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    text-align: center;
    min-width:330px;
    height: 100px;
    z-index: 100;
    border-radius: 100px;
    padding: 0 30px;
    justify-items: center;
    justify-content: center;
    background-image: linear-gradient(rgb(51, 2, 2), black);
    opacity: 0.7;
    color:white;
    padding-bottom: 15px;
    font-size: medium;
}

.contact_form:hover {
    background: #C6953f;
    color: black;
    cursor: pointer;
}

.get_in_touch_form {
    width: 300px;
    height: 500px;
    border-radius: 20px;
    background-color: white;
    color:#000;
    /* display: none; */
}

/* Open modal button */
.open-modal-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, grey, white);
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.open-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Modal overlay */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* Show modal when targeted */
.modal:target {
  opacity: 1;
  pointer-events: auto;
}

/* Modal box */
.modal-content {
  background: #fff;
  max-width: 350px;
  margin: 10vh auto;
  padding: 32px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease;
  justify-content: center;
  height: 450px;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  color: #999;
  text-decoration: none;
}

.close-modal:hover {
  color: #000;
}

/* Form styling */

.get_in_touch_form {
    justify-self: center;
    height: 400px;
}
.get_in_touch_form h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.get_in_touch_form input,
.get_in_touch_form textarea {
  width: 90%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.get_in_touch_form textarea {
  min-height: 120px;
  resize: vertical;
}

.get_in_touch_form input:focus,
.get_in_touch_form textarea:focus {
  outline: none;
  border-color: bordo;
  box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.15);
}

/* Submit button */
.get_in_touch_form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: var(--red-color);
  color:white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.get_in_touch_form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px grey;
  background: #C6953f;
  cursor: pointer;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.hero_right {
    display: flex;
    flex-direction: column;
    padding: 12px 12px;
    width: auto;
    gap: 15px;
    justify-content: center;
}

.demos_samples {
    color: rgb(230, 138, 0);
    margin: 30px;
}

.hero_rigth_conteiner {
    height: fit-content;
    border-radius: 10px;
    padding: 10px;
    z-index: 900;
    max-width: 60%;
    margin: 10px;
}

.demo_logo h1 {
    text-align: center;
}

.demo_block {
    display: flex;
    flex-direction: row;
    gap: 20px;
    /* backdrop-filter: blur(12px); */
    background-color: transparent;
    max-width: 100%;
    border-radius: 20px;
    cursor: pointer;
}

.demka {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items:center;
    max-width: calc(100% - 1em);
}

.demka img {
    height: 24px;
    width: 24px;
}

.demka img:hover {
    height: 32px; 
    width: 32px;
}

.demos {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    width: 100%;
}

.hero_title {
    font-size: 80px;
    margin-bottom: 0;
    margin-top: 0px;
}

.demo_conteiner .demo_listen {
    width: 400px;
}

.demo_listen {
    display: flex;
    flex-direction: row;
    gap:20px;
    background-image: linear-gradient(rgb(51, 2, 2), black);
    border-radius: 20px;
    padding: 8px 12px;
    justify-content: space-between;
    width: fit-content;
    justify-items: center;
    align-items:center;
    box-shadow: 0px 10px 10px -5px var(--yellow-color), 0 3px white;
}

.demo_listen a {
    width: 20px;
    height: 20px;
}
.demo_listen:hover {
    box-shadow: 0 4px 6px var(--red-color),   
              0 3px white;
}

.music-box__info-track,
.music-box__play,
.music-box__info,
svg {
    background-color: transparent;
}

.demo_conteiner {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 25px;
    
}

.demo_download_icon {
    width: 20px;
    height: 20px;
}


/* projects */
.projects_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.imgConteiner {
    width: 100%;
    height: 600px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items:center;
    transition: 1s;
    margin-top: 50px;
}

.slide_div {
    display: flex;
    align-items:center;
    justify-content: center;
    margin: 0 30px 0 30px;
    box-shadow: 0px 10px 30px -5px white;
    border-radius:20px;
}

.projects_img {
    position: relative;
    height: 370px;
    width: 300px;
    transition: 0.7s;
    background-color:rgba(0,0,0,0.4);
    border-radius:20px;
}

.button {
    position: absolute;
    width: 300px;
    height: 370px;
    transition: 0.7s;
    background-color:rgba(0, 0, 0, 0.4);
    background:transparent;
    border-radius:20px;
}

.button:hover {
    background-color:rgba(0, 0, 0, 0.2);
}

.slide_div:hover img,
.slide_div:hover .button {
    width:390px;
    height: 500px;
    background-color: transparent;
    filter: saturate(100%);
    cursor: pointer;
}

*[letter-animation="breath"] {
  & > span {
    display: inline-block;
    white-space: break-spaces;
  }

  & > span {
    animation: breath calc(var(--speed)) ease calc(var(--index) * 100 * 1ms)
      infinite alternate;
  }
}

@keyframes breath {
  from {
    animation-timing-function: ease-out;
  }
  to {
    transform: scale(1.25) translateY(-5px) perspective(1px);
    text-shadow: 0 0 20px var(--really-green);
    animation-timing-function: ease-in-out;
  }
}

/* Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background:transparent;
    color: white;
    border: none;
    font-size: 32px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.nav-arrow:hover {
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}

.left-arrow {
    left: -10px;
}

.right-arrow {
    right: -10px;
}

/* cv section */

.cv_section {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 120px;
}

.cv_section .open-popup {
    padding: 8px 50px;
    font-size: 40px;
    border-radius: 40px;
    background-image: linear-gradient(rgb(51, 2, 2), black);
    color:white;
    box-shadow: 0px 10px 30px -5px white;
    
}

.open-popup:hover {
    background: var(--gold-color);
    cursor: pointer;    
}

.cv_section .cv_download_button {
      padding: 10px 20px;
      background-color: var(--red-color);
      color: white;
      border: none;
      cursor: pointer;
      font-size: 16px;
      transition: background-color 0.3s ease, color 0.3s ease;
}

.cv_download_button:hover {
      background-color: var(--gold-color);
      color: rgb(248, 246, 246);
    }

.cv_section #close-btn {
      padding: 10px 20px;
      background-color: var(--red-color);
      color: white;
      border: none;
      cursor: pointer;
      font-size: 16px;
      transition: background-color 0.3s ease, color 0.3s ease;
}

#close-btn:hover {
      background-color: var(--gold-color);
      color: rgb(248, 246, 246);
    }

.close-btn_X {
  font-size: 60px;
  font-weight: bold;
  color: white;
  position: absolute;
  right: 30px;
  content: ' ';
  cursor: pointer;
}

::backdrop {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(5px);
    transition: backdrop-filter 0.3s ease;
}

dialog {
    box-sizing: border-box;
    /* width: calc(100% - 1em); */
    border:1px solid #ddd;
    border-radius: 0.5em;
    text-align: center;
    padding: 0.8em 1.5em 1em;
    gap:30px;
}

dialog img {
    max-width: 100%;
    max-height: 100%;
    fill: cover; 
} 

dialog h2 {
    margin-bottom: 0.5em;
    color:#111;
}

dialog p {
    margin-bottom: 1.25em;
    color:#555;
    padding: 0 0.5em;
    font-size: 15px;
}

dialog .controls {
    display: flex;
    flex-direction: row;
    gap: 1em;
    margin-bottom: 0.5em;
    justify-content: center;
}

/* home studio */
.home_studio {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content:center;
    gap: 70px;
}

.home_studio_gallery {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    align-items: center;
}

.thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbs img {
    width: 141px;
    height: 141px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    filter: grayscale(100%);
    transition: transform 0.2s, opacity 0.2s;
}

.thumbs img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.home_studio_preview {
    width: 600px;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.home_studio_preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio_left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 35%;
}

#studio_sample {
    width: fit-content;
    justify-self: center;
}

.studio_equipment_conteiner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.studio_left h1 {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    margin: 0;

}

.equipment_box {
    display: flex;
    flex-direction: row;
    gap: 70px;
}

.equipment_name_conteiner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100px;
    font-size: large;
}

.equipment_model_conteiner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: large;
}

.equipment_name {
    font-size: large;
    width: 130px;
}

.equipment_model {
    font-size: large;
    text-align: justify;
}

/* Testimonials */

.testimonial-slider {
  position: relative;
  width: 60%;
  margin: 50px auto;
  padding: 30px;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  font-family: 'Georgia', serif;
  text-align: center;
  font-size: large;
  margin-top: 120px;
  margin-bottom: 120px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.quote {
  font-size: 1.2em;
  font-style: italic;
  color: white;
  margin: 20px;
  overflow: hidden;
}

.author {
  font-weight: bold;
  color: #777;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.arrow:hover {
  background-color: #ddd;
}

.prev {
  left: -50px;
  background:black;
  color:white;
  border:none;
}

.next {
  right: -50px;
  background:black;
  color:white;
  border:none;
}

/* Background */

.about_me_conteiner {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    justify-content: center;
    gap: 40px;
    height: 600px;
    margin-bottom: 100px;
}

.about_me {
    font-size: large;
    text-align: justify;
    margin: 0 0 0 40px;
}

.about_foto {
    justify-self: right;
}
.about_foto img {
    width: 400px;
    height: 100%;
}

.accents_audiobooks_demos_conteiner {
    display: flex;
    flex-direction: row;
}


/* Footer */
footer {
    height: 50px;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.conteiner {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.conteiner input {
  display: none;
}

.mail_link {
    color: white;
}

.mail_link:hover {
    color: var(--red-color);;
}

/* Show play by default */
.play { display: block; }
.pause { display: none; }

/* When checked → show pause */
input:checked ~ .play { display: none; }
input:checked ~ .pause { display: block; }







/* responsive layout */

/* Tablet */
@media (max-width: 1024px) {
    .page_conteiner {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
    }
    html, body {
    max-width: 100%;
    background-image: url('Backgrounds/Tablet\ 1024x810.png');
    /* background-image: url('Tablet\ Website\ Background.png'); */
    background-size: contain;
    height: auto;
    overflow-x: hidden;
    font-size: 20px; 
    font-weight: 500px;
    font-style: normal;
    background-size: 140%;
    background-position: left 20px;
}
    .hero {
        min-height:60vh;
        display: flex;
        flex-direction: column-reverse;
        /* gap: 20px; */
        justify-content: center;
        align-items: end;
    }

    .hero_left { 
    padding: 0;
    width: 50%;
    align-items:center;
}

.hero_right {
    max-height: 100%;
    justify-content: center;
    max-width: 50%;
}

.contact_form {
    width:50%;
    padding: 5px;
    align-self: right;
}

.contact_form_text {
    font-size: 15px;
}

.hero_left_button {
    padding: 5px 10px;
    font-size: 12px;
}

    .hero_title {
    font-size: 50px;
    padding: 5px;
}

.hero h3 {
    font-size: 20px;
    margin: 0;
}

.hero_top {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero_right_conteiner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* max-width: 100%; */
    padding: 20px;
}

.demo_conteiner {
    width: 100%;
    padding: 0;
}

.demo_block {
    justify-content: center;
    width: 100%;
}
.demos_samples {
    margin: 0;
    font-size:30px;
}

.studio_sample {
    align-self: center;
}

.demos {
    gap: 5px;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.quote {
    margin: 10px;
}

/* cv section */
.cv_section {
    margin: 100px;
}

/* home studio */
    .home_studio {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        height: auto;
        gap: 100px;
        margin: 20px;
    }

    .home_studio_preview {
    max-width: 90%;
    height: 350px;
    justify-self: center;
}

    .home_studio_gallery {
        justify-content: center;
        max-width: 100%;
    }

.thumbs img {
    width: 80px;
    height: 80px;
}
#mainImage {
    max-width: 100%;
    width: 100%;
    max-height: 500px;
}

.studio_left {
    max-width: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items:center;
    align-self:center;
    padding: 5px;
    height: auto;
    gap: 80px;
    
}

.studio_equipment_conteiner {
    max-width: 100%;
}

.equipment_box {
    gap: 70px;
    display: flex;
    flex-direction: row;
    
}

.equipment_model,
.equipment_name {
    font-size: 20px;
}

/* Testimonials */

.testimonial-slider {
  margin: 100px;
  width: auto;
  padding: 5px;
  font-size: 20px;
}

footer {
    font-size: 20px;
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    max-width: 100%;
    gap: 15px;
    align-items: center;
    padding: 15px;
}
footer div {
    text-align: center;
}

/* header */
.header_logo img {
    height: 100px;
    width: 140px;
}

.header_conteiner {
    justify-content: space-between;
    max-width: 100%;
}

.header_nav_conteiner,
.header_right {
    display: none;
}

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    right: 50px;
  }

  .header_menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 30%;
    background: black;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .header_menu.active {
    display: flex;
  }

.hamburger_button {
    display: none;
}

    

/* projects */
.projects_container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    /* justify-content: space-around; */
    align-self:center;
    overflow: hidden;
}
  .imgConteiner {
    height: 400px;
    align-self:center;
    justify-items: center;
    justify-content: flex-start;
    gap:20px;
  }

  .slide_div {
    margin: 0 20px;
  }

  .projects_img {
    width: 260px;
    height: 340px;
  }

  /* Disable hover zoom on touch devices */
  .slide_div:hover img,
  .slide_div:hover .button {
    width: 260px;
    height: 340px;
    filter: saturate(100%);
  }

.left-arrow {
    left: -20px;
}

.right-arrow {
    right: -20px;
}
}
/* Phones */
@media (max-width: 600px) {
    .page_conteiner {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
    }
    html, body {
    /* background-image: url('Website\ Background\ Phone.png'); */
    background-image: url('Backgrounds/Phone\ 600x1080\ \(new\).png');
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
    /* background-color:white;   */
    font-size: 15px; 
  font-weight: 500px;
  font-style: normal;
  background-size: 140%;
  background-position: left 20px;
}
    .hero {
        width: 100%;
        max-width: 100%;
        margin-top: clamp(200px, 40vh, 500px);
        display: flex;
        /* flex-direction: column; */
        gap: 30px;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        min-height: fit-content;
    }

    .hero_left { 
    padding: 0;
    width: 100%;
    min-height: fit-content;
    width: fit-content;
    align-items: center;
    
}

.hero_right {
    max-height: 100%;
    justify-content: center;
    max-width: 100%;
}

.contact_form {
    width:100%;
    padding: 5px 5px;
    justify-content: center;
    min-width:250px;
    height: fit-content;
}

.contact_form_text {
    font-size: 11px;
}

.contact_form #contactBtn {
    padding: 5px 10px;
    font-size: 8px;
    cursor: pointer;
}
    .hero_title {
    font-size: 40px;
    padding: 5px;
}

.hero h3 {
    font-size: 12px;
    max-width: 100%;
    text-align: center;
    margin: 10px;
}

.hero_top {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero_right_conteiner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
    max-width: 100%;
    align-items:center;
    padding: 0;
    margin: 20px;
}

.demo_conteiner {
    width: 90%;
    max-width: 90%;
    padding: 0;
    gap: 20px;
}

.demo_listen {
    max-width: 100%;
    width: 90%;
}

.demos_samples {
    margin: 10px;
    font-size:30px;
}

.studio_sample {
    align-self: center;
    width: 100%;
}

.demos {
    gap: 5px;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.quote {
    margin: 10px;
}

/* Home studio */
    .home_studio {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        height: auto;
        gap: 20px;
        margin: 0;
    }

    .home_studio_preview {
    max-width: 90%;
    height: 350px;
    justify-self: center;
}

    .home_studio_gallery {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }

    .thumbs {
    display: flex;
    flex-direction: row;
    gap: 7px;
}

.thumbs img {
    width: 80px;
    height: 80px;
}
#mainImage {
    max-width: 100%;
    height: 350px;
}

.studio_left {
    max-width: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items:center;
    align-self:center;
    padding: 5px;
    height: auto;
    
}

.studio_equipment_conteiner {
    max-width: 100%;
}

.equipment_box {
    gap: 10px;
    display: flex;
    flex-direction: row;
    
}

.equipment_model,
.equipment_name {
    font-size: 15px;
}


/* projects */

  .projects_container {
    max-width: 100%;
    height: auto;
    overflow: hidden;
  }

  .imgConteiner {
    width: 100%;
    height: 330px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /* transition: transform 0.5s ease; */
    
  }

  .slide_div {
    min-width: 100%;
    width: 90%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin: 0;
    box-shadow: none;
    border-radius:20px;
  }

  .projects_img {
    width: 90%;
    height:370px;
    /* max-height: 50vh; */
    border-radius: 16px;
  }

  /* Disable hover zoom on mobile */
  .slide_div:hover img,
  .slide_div:hover .button {
    /* width: 100%; */
    /* height: auto; */
    transform: none;
  }

/* testimonials */
.testimonial-slider {
  margin: 30px;
  width: auto;
  padding: 5px;
  font-size: 14px;
}

.prev {
  left: -20px;
  background:black;
  color:white;
  border:none;
}

.next {
  right: -20px;
  background:black;
  color:white;
  border:none;
}

/* footer */
footer {
    font-size: 15px;
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    max-width: 100%;
    gap: 15px;
    align-items: center;
    padding: 15px;
}
footer div {
    text-align: center;
}


/* header */
.header_conteiner {
    height: 60px;
}
.header_logo img {
    height: 80px;
    width: 120px;
}


  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .header_menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 50%;
    background: black;
    flex-direction: column;
    align-items: left;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .header_menu.active {
    display: flex;
  }

.social-icon {
    width: 15px;
    height: 15px;
}

/* cv section */
  .cv_section .open-popup {
    padding: 8px 24px;
    font-size: 19px;
}

.cv_section {
    margin: 50px;
}
/* Modal box */
.modal-content {
  max-width: 80%;
}

.open-modal-btn {
  padding: 8px 24px;
  background: linear-gradient(135deg, grey, white);
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
}